/* ============================================================
   Samira · Soins énergétiques à distance · Landing (piste A)
   Design system : ../DESIGN_SYSTEM.md (maquette piste-a-hd.png)
   v2 · retours Julien 18/07 : typos plus grosses, textures
   aquarelle, footer sombre, visuels agrandis, titres EB Garamond
   ============================================================ */

:root {
  --cream: #F8F0E2;
  --cream-deep: #F3E8D4;
  --card: #FFFDF8;
  --ink: #43262E;
  --ink-soft: #54382F;
  --ink-muted: #85685A;
  --rose: #C1808D;
  --rose-deep: #A9606F;
  --rose-pale: #EFD8D2;
  --gold: #C29A55;
  --gold-soft: #D9BE8C;
  --gold-champagne: #C9A15C;
  --eyebrow: #AE8440;
  --plum: #45263A;
  --title: #5A3540;
  --fs-h2: clamp(2.4rem, 5vw, 3.4rem);
  --fs-h3: clamp(1.9rem, 3.2vw, 2.4rem);
  --fs-text: clamp(1.2rem, 1.7vw, 1.35rem);
  --fs-lead: clamp(1.35rem, 2.1vw, 1.65rem);
  --font-title: 'EB Garamond', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --shadow-card: 0 22px 55px -22px rgba(67, 38, 46, 0.18);
  --shadow-deep: 0 34px 80px -30px rgba(67, 38, 46, 0.28);
  --radius: 18px;
  --grain:
    repeating-linear-gradient(0deg, rgba(67, 38, 46, 0.045) 0 1px, transparent 1px 19px),
    repeating-linear-gradient(90deg, rgba(67, 38, 46, 0.045) 0 1px, transparent 1px 19px);
}

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

html {
  overscroll-behavior: none;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  /* pas de scroll-behavior: smooth, les ancres arrivent d'un bloc */
  scroll-padding-top: 120px;
}

body {
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.72;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

main a:not([class]) {
  color: var(--rose-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.cta-band a:not([class]) { color: #FFFDF8; border-bottom: none; }

img { max-width: 100%; height: auto; }

::selection { background: var(--rose-pale); color: var(--ink); }

/* ---------- Accessibilité ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #FFFDF8;
  padding: 12px 22px;
  border-radius: 0 0 12px 0;
  z-index: 200;
  font-size: 1.05rem;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(rgba(193, 128, 141, 0.5), rgba(193, 128, 141, 0.5)),
    var(--plum) url("../img/texture-prune.webp") center / cover no-repeat;
  box-shadow: 0 16px 34px -12px rgba(67, 38, 46, 0.52);
}

.nav {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #FFFDF8;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-text { line-height: 1.15; }

.brand-name {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
}

.brand-sub {
  font-size: 0.92rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(248, 240, 226, 0.92);
  text-decoration: none;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  white-space: nowrap;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #FFFDF8;
  border-bottom-color: var(--gold-soft);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 22px;
  background: var(--rose);
  color: #FFFDF8;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease-out;
}

.nav-cta-btn:hover,
.nav-cta-btn:focus-visible {
  transform: translateY(-3px);
}

.site-header .nav-cta-btn {
  background: #F8F0E2;
  color: var(--plum);
}

.nav-mobile-only { display: none; }
.nav-desktop-only { display: inline-flex; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: #F8F0E2;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Ornements ---------- */

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 28px auto;
}

.ornament-divider::before,
.ornament-divider::after {
  content: "";
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.ornament-divider::after {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.ornament-divider .diamond { font-size: 1.05rem; }

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--eyebrow);
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 0;
}

.hero-frame {
  background: url("../img/hero-cadre.webp") center / cover no-repeat;
  padding: clamp(70px, 10vw, 150px) 24px 70px;
}

.hero h1 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: clamp(3.1rem, 7.5vw, 5.1rem);
  line-height: 1.06;
  color: var(--title);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}

.hero-disciplines {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--eyebrow);
  line-height: 2;
  position: relative;
  z-index: 2;
}

.sep-desktop { display: inline; }
@media (max-width: 640px) {
  .sep-desktop { display: none; }
}

/* ---------- Cadre vidéo précieux (signature maquette) ---------- */

.video-strip {
  position: relative;
  z-index: 5;
  padding: 0;
  margin: 46px auto 0;
}

.video-frame {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
  padding: 48px 50px 50px;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  pointer-events: none;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(217, 190, 140, 0.6);
  border-radius: 11px;
  pointer-events: none;
}

.frame-diamond {
  position: absolute;
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
  background: var(--card);
  padding: 0 6px;
  z-index: 2;
}

.frame-diamond.top { top: 5px; left: 50%; transform: translateX(-50%); }
.frame-diamond.bottom { bottom: 5px; left: 50%; transform: translateX(-50%); }
.frame-diamond.left { left: 6px; top: 50%; transform: translateY(-50%); padding: 6px 0; }
.frame-diamond.right { right: 6px; top: 50%; transform: translateY(-50%); padding: 6px 0; }

.video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-title);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--eyebrow);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.video-caption .flourish {
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.video-poster {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--rose-pale);
  z-index: 2;
}

.video-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--rose-deep);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(255, 253, 248, 0.55), 0 18px 40px -12px rgba(67, 38, 46, 0.45);
  transition: transform 0.25s, background 0.25s;
}

.play-button::after {
  content: "";
  display: block;
  margin-left: 8px;
  border-style: solid;
  border-width: 19px 0 19px 31px;
  border-color: transparent transparent transparent #FFFDF8;
}

.play-button:hover,
.play-button:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--rose);
}

.video-note {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 20px;
  color: var(--ink-muted);
  font-style: italic;
  font-size: 1.1rem;
}

/* ---------- Icônes de titres ---------- */

.title-icon {
  display: flex;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 4px;
}

.title-icon svg { width: 44px; height: 44px; }

.suite-item .title-icon svg { width: 44px; height: 44px; }

.chemin-text .title-icon { justify-content: flex-start; }

/* ---------- Sections ---------- */

section { padding: 104px 24px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

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

.section-head h2 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: var(--fs-h2);
  color: var(--title);
  line-height: 1.12;
}

/* Accompagnements : texture aquarelle crème, reçoit le cadre vidéo */
.accompagnements {
  background:
    linear-gradient(rgba(248, 240, 226, 0.62), rgba(248, 240, 226, 0.62)),
    var(--cream-deep) url("../img/texture-creme.webp") center / cover no-repeat;
  margin-top: -440px;
  padding-top: 500px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0,62 C240,34 480,86 720,58 C960,32 1200,78 1440,50 L1440,180 L0,180 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(#000, #000);
  -webkit-mask-size: 100% 90px, 100% calc(100% - 88px);
  -webkit-mask-position: top, 0 88px;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0,62 C240,34 480,86 720,58 C960,32 1200,78 1440,50 L1440,180 L0,180 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(#000, #000);
  mask-size: 100% 90px, 100% calc(100% - 88px);
  mask-position: top, 0 88px;
  mask-repeat: no-repeat, no-repeat;
}

/* Page intérieure : même texture crème que la section accompagnements,
   mais sans le masque ni la remontée sous le hero (il n'y a pas de hero ici). */
.page-band {
  background:
    linear-gradient(rgba(248, 240, 226, 0.62), rgba(248, 240, 226, 0.62)),
    var(--cream-deep) url("../img/texture-creme.webp") center / cover no-repeat;
  padding-top: 130px;
}

.page-band h1 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: var(--fs-h2);
  color: var(--title);
  line-height: 1.12;
}

/* Renvoi vers la page dédiée, sous les cartes de la landing */
.offres-plus {
  margin-top: 54px;
  text-align: center;
}

.offres-plus p {
  font-size: var(--fs-lead);
  margin-bottom: 22px;
}

/* le libellé se coupe en deux lignes sur mobile, texte centré */
.offres-plus .nav-cta-btn {
  text-align: center;
  line-height: 1.35;
  padding: 12px 26px;
}

/* Étiquette chiffrée des deux soins : une pastille dorée posée en haut de la
   première carte de chaque soin, pour qu'on distingue le premier du second. */
.soin-num {
  display: flex;
  align-items: center;
  justify-content: center;
  /* +10% et cercle plus épais (demande Julien 10/08) : 54 → 60px, filet 1 → 2px */
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  border: 2px solid var(--gold-champagne);
  border-radius: 50%;
  /* fond transparent : le cercle laisse voir la carte, pas de pastille pleine */
  background: transparent;
  font-family: var(--font-title);
  font-size: 1.87rem;
  line-height: 1;
  color: var(--eyebrow);
  /* le chiffre en EB Garamond est dessiné haut dans son cadratin */
  padding-top: 3px;
}

/* lu par les synthèses vocales, invisible à l'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Médaillon d'illustration entre les deux cartes d'un même soin.
   Même langage que les médaillons de roses de l'accueil : passe-partout ivoire
   en calque ::after (jamais en background, sinon il passe DEVANT les rayons),
   halo doré dessous, image au-dessus. */
.soin-medaillon {
  width: min(300px, 74vw);
  margin: 40px auto;
  padding: 9px;
  border-radius: 50%;
  box-shadow: 0 26px 60px -20px rgba(67, 38, 46, 0.16);
  position: relative;
}

.soin-medaillon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.soin-medaillon img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.soin-medaillon .roses-halo { width: calc(100% + 96px); }

/* (le bloc « Retour à l'accueil » a été retiré le 10/08 : Julien le trouvait
   inutile, la navigation du header et du footer suffit) */

/* `main` est nécessaire ici : la règle générale `main a:not([class])` pose un
   border-bottom doré et l'emporterait sur un simple `.page-retour a`. */



.approche-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: var(--fs-lead);
}

.approche-intro p + p { margin-top: 20px; }

.offres-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.offre-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 52px 44px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s ease-out;
}

.offre-card:hover {
  transform: translateY(-6px);
}

/* double filet doré intérieur, comme le cadre vidéo */
.offre-card::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  pointer-events: none;
}

.offre-card::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(217, 190, 140, 0.6);
  border-radius: 9px;
  pointer-events: none;
}

.offre-card .frame-diamond { z-index: 2; }
.offre-card > *:not(.frame-diamond) { position: relative; z-index: 1; }

.offre-mandala {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.offre-card h3 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: var(--fs-h3);
  color: var(--title);
}

.offre-divider {
  color: var(--gold);
  font-size: 0.85rem;
  margin: 10px 0 16px;
  letter-spacing: 6px;
}

.offre-format {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin-bottom: 16px;
}

.offre-desc { font-size: var(--fs-text); }

.offre-prix {
  font-family: var(--font-title);
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--rose-deep);
  margin-top: auto;
  padding-top: 24px;
}

.offre-note {
  font-size: 1.05rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 8px;
}

/* étiquette « Offre de lancement » sous le prix (Éclosion, Élan, séance sonore) */
.offre-lancement {
  margin-top: 12px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--rose-pale);
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* une carte sans étiquette garde son prix à la même hauteur que ses voisines */
.offre-card:not(:has(.offre-lancement)) .offre-prix { padding-bottom: 42px; }

/* « Pour quelles raisons choisir » : bloc de détail sous la grille des offres,
   dans le même habit de carte que les offres, sans le double filet doré. */
.offre-raisons {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 46px 44px 42px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.offre-raisons h3 {
  font-family: var(--font-title);
  font-weight: 500;
  /* titre de bloc secondaire : plus petit que les titres d'offres */
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.32;
  color: var(--title);
}

.raisons-list {
  list-style: none;
  margin: 0 auto;
  max-width: 560px;
  text-align: left;
}

.raisons-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.raisons-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.raisons-fin {
  margin-top: 26px;
  color: var(--ink-muted);
  font-style: italic;
}

.offre-prix-attente {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--rose-deep);
  margin-top: auto;
  padding-top: 24px;
}

.offres-modalites {
  max-width: 680px;
  margin: 52px auto 0;
  color: var(--ink-soft);
  font-size: var(--fs-text);
}

.offres-modalites p {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

.offres-modalites .modalite-icon {
  width: 30px;
  justify-content: center;
  margin-top: 3px;
}

.offres-modalites .modalite-text { flex: 1; }

.offres-modalites p + p { margin-top: 14px; }

.modalite-icon {
  display: inline-flex;
  color: var(--gold);
  flex-shrink: 0;
}

.modalite-icon svg { width: 30px; height: 30px; }

/* ---------- Les deux soins ---------- */

.soins {
  background: transparent;
  /* le bas doit compter les 88px que la bande suivante récupère en remontant */
  padding: 40px 24px 176px;
}

.soin-fiche {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 54px 58px 50px;
  max-width: 880px;
  margin: 0 auto;
}

.soin-fiche + .soin-fiche { margin-top: 44px; }

/* Le second soin est porté par sa PROPRE bande de fond (retour Julien 10/08) :
   même papier crème que les autres bandes, lavé de rose poudré. Les cartes,
   elles, restent ivoire comme partout ailleurs sur le site. */
.soins--cosmique {
  background:
    linear-gradient(rgba(239, 216, 210, 0.55), rgba(239, 216, 210, 0.55)),
    var(--cream-deep) url("../img/texture-creme.webp") center / cover no-repeat;
  /* raccord en vague comme les autres bandes du site, jamais une arête droite :
     la bande remonte de 88px et son bord haut est découpé par le masque.
     Le bas est pris en charge par la vague du bandeau contact qui suit. */
  margin-top: -88px;
  padding: 198px 24px 190px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0,62 C240,34 480,86 720,58 C960,32 1200,78 1440,50 L1440,180 L0,180 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(#000, #000);
  -webkit-mask-size: 100% 90px, 100% calc(100% - 88px);
  -webkit-mask-position: top, 0 88px;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0,62 C240,34 480,86 720,58 C960,32 1200,78 1440,50 L1440,180 L0,180 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(#000, #000);
  mask-size: 100% 90px, 100% calc(100% - 88px);
  mask-position: top, 0 88px;
  mask-repeat: no-repeat, no-repeat;
}

.soins--cosmique .soin-num {
  border-color: var(--rose);
  color: var(--rose-deep);
}

.soin-fiche h3 {
  font-family: var(--font-title);
  font-weight: 500;
  /* un cran sous --fs-h3 en bas de plage : le titre tient en lignes de sens
     dans la carte, même à 320 px, sans se replier */
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  color: var(--title);
  line-height: 1.16;
  text-align: center;
}

.soin-fiche .offre-divider { text-align: center; }

/* texte des cartes +10% (demande Julien 10/08) : 20px hérités du body → 22px */
.soin-fiche p { font-size: 1.375rem; }

/* une charnière de sens en gras par paragraphe : 600 suffit en EB Garamond,
   le 700 tape trop fort à côté du texte courant */
.soin-fiche p strong {
  font-weight: 600;
  color: var(--title);
}

.soin-fiche p + p { margin-top: 18px; }

.soin-lien {
  text-align: center;
  color: var(--rose-deep);
  margin-bottom: 24px;
}

.soin-lien strong { font-weight: 600; }

@media (max-width: 860px) {
  .soin-fiche { padding: 44px 26px 40px; }
  .soin-fiche + .soin-fiche { margin-top: 32px; }
}

@media (max-width: 640px) {
  /* marges intérieures réduites : les titres coupés à la main tiennent
     dans la largeur dès 320 px */
  .soin-fiche { padding: 40px 20px 36px; }
  /* le +10% s'arrête ici : à 320 px il ne reste que 240 px de colonne, et
     du 22px y laisse des mots seuls sur leur ligne en plein paragraphe */
  .soin-fiche p { font-size: 1.25rem; }
}

/* ---------- Mon chemin ---------- */

.chemin { background: transparent; }

.chemin-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 100px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.chemin-portrait {
  order: -1; /* dans le DOM après le texte (lecture d'écran : titre d'abord), affiché à gauche */
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.chemin-portrait .portrait-wrap {
  position: relative;
  background: var(--card); /* passe-partout ivoire */
  padding: 12px;
  border-radius: 999px 999px 6px 6px; /* arche : sommet arrondi, base droite */
  box-shadow: 0 26px 60px -20px rgba(67, 38, 46, 0.16); /* ombre très douce et diffuse */
}

/* double filet très fin, doré champagne mat */
.chemin-portrait .portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold-champagne);
  border-radius: 999px 999px 4px 4px;
  pointer-events: none;
  z-index: 2;
}

.chemin-portrait img {
  width: 100%;
  display: block;
  border-radius: 999px 999px 0 0; /* photo en arche, base droite */
  object-fit: cover;
  aspect-ratio: 3 / 4;
  position: relative;
  z-index: 1;
}

/* halo solaire : rayons fins derrière l'arche, tiers supérieur uniquement */
.portrait-halo {
  position: absolute;
  left: -48px;
  top: -56px;
  width: calc(100% + 96px);
  height: auto;
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .portrait-halo { animation: halo-souffle 8s ease-in-out infinite alternate; }
  @keyframes halo-souffle {
    from { opacity: 0.7; }
    to { opacity: 1; }
  }
}

@media (max-width: 768px) {
  .portrait-halo {
    left: -32px;
    top: -40px;
    width: calc(100% + 64px);
    transform: scale(0.95); /* rayons légèrement plus courts */
    transform-origin: 50% 100%;
  }
}

.portrait-note {
  margin-top: 12px;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-muted);
}

.chemin-text h2 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: var(--fs-h2);
  color: var(--title);
  margin-bottom: 6px;
}

.chemin-text .offre-divider { text-align: left; margin: 8px 0 24px; }

.chemin-text p { font-size: var(--fs-text); }
.chemin-text p + p { margin-top: 20px; }

.quote-card {
  position: relative;
  margin-top: 40px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px 44px 36px;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  pointer-events: none;
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(217, 190, 140, 0.6);
  border-radius: 9px;
  pointer-events: none;
}

.chemin-quote {
  text-align: center;
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(1.45rem, 2.3vw, 1.75rem);
  line-height: 1.45;
  color: var(--ink);
}

.chemin-quote::before {
  content: "\201C";
  display: block;
  margin: 0 auto 2px;
  font-size: 3.6rem;
  color: var(--gold);
  font-style: normal;
  line-height: 0.6;
}

/* Outils (pills) */

.outils-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto 60px;
}

.outil-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 46px;
  padding: 9px 20px;
  background: var(--rose);
  border: none;
  border-radius: 999px;
  font-size: var(--fs-text);
  line-height: 1.35; /* une pastille sur 2 lignes reste compacte (mobile) */
  color: #FFFDF8;
  transition: transform 0.3s ease;
}

.outil-pill:hover { transform: translateY(-4px); }

/* Au fil des séances · bloc qui prolonge Mon chemin */

.suite-band {
  background:
    linear-gradient(rgba(243, 232, 212, 0.8), rgba(243, 232, 212, 0.8)),
    var(--cream-deep) url("../img/texture-creme.webp") center / cover no-repeat;
  padding: 90px 24px 190px;
}

.chemin-suite {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.chemin-sub {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: var(--fs-h2);
  color: var(--title);
  margin-bottom: 8px;
}

.chemin-suite .approche-intro { margin-bottom: 46px; }

/* ===== Médaillons roses du jardin (photos de Samira) ===== */
.roses-medaillon {
  width: min(380px, 82vw);
  margin: 30px auto 0;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 26px 60px -20px rgba(67, 38, 46, 0.16);
  position: relative;
}

/* passe-partout ivoire posé en calque : il masque les rayons dorés,
   qui passent donc SOUS le médaillon et non par-dessus la photo */
.roses-medaillon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.roses-medaillon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold-champagne);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.roses-medaillon img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* rayons dorés latéraux (gauche/droite), même style que le halo du portrait */
.roses-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 126px);
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .roses-halo { animation: halo-souffle 8s ease-in-out infinite alternate; }
}

@media (max-width: 600px) {
  .roses-halo { width: calc(100% + 64px); }
  /* les rayons du médaillon des soins tiennent dans l'écran dès 320 px */
  .soin-medaillon { width: min(260px, 68vw); }
  .soin-medaillon .roses-halo { width: calc(100% + 48px); }
}

.roses-note {
  margin: 16px 0 42px;
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink-soft);
  text-align: center;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.suite-item {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 44px 36px 40px;
  transition: transform 0.18s ease-out;
}

.suite-item:hover {
  transform: translateY(-6px);
}

.suite-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  border-radius: 11px;
  pointer-events: none;
}

.suite-item::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(217, 190, 140, 0.6);
  border-radius: 8px;
  pointer-events: none;
}

.suite-item > * { position: relative; z-index: 1; }

.suite-item .title-icon { justify-content: center; margin-bottom: 12px; }

.suite-item h4 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--title);
  margin-bottom: 10px;
}

.suite-item p { font-size: var(--fs-text); }

@media (max-width: 860px) {
  .suite-grid { grid-template-columns: 1fr; max-width: 540px; }
  .chemin-suite { margin-top: 60px; }
}

/* ---------- Bandeau CTA (texture prune) ---------- */

.cta-band {
  background:
    linear-gradient(rgba(193, 128, 141, 0.5), rgba(193, 128, 141, 0.5)),
    var(--plum) url("../img/texture-prune.webp") center / cover no-repeat;
  color: #F8F0E2;
  margin-top: -88px;
  padding: 110px 24px 0;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0,56 C480,84 960,30 1440,58 L1440,180 L0,180 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(#000, #000);
  -webkit-mask-size: 100% 90px, 100% calc(100% - 88px);
  -webkit-mask-position: top, 0 88px;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0,56 C480,84 960,30 1440,58 L1440,180 L0,180 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(#000, #000);
  mask-size: 100% 90px, 100% calc(100% - 88px);
  mask-position: top, 0 88px;
  mask-repeat: no-repeat, no-repeat;
}

.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Carte large à coins arrondis sous le bouton RDV (bandeau CTA) */
.cta-roses {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.cta-roses .roses-medaillon {
  width: min(640px, 100%);
  margin: 0;
  border-radius: var(--radius);
  box-shadow: 0 26px 60px -20px rgba(0, 0, 0, 0.4);
}

.cta-roses .roses-medaillon::before { border-radius: 13px; }

.cta-roses .roses-medaillon img {
  border-radius: 12px;
  aspect-ratio: 16 / 9;
}

.cta-roses .roses-halo { width: calc(100% + 160px); }

.cta-lotus {
  width: 270px;
  height: 270px;
  object-fit: contain;
  opacity: 0.95;
}

.cta-band h2 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: var(--fs-h2);
  color: #FFFDF8;
  line-height: 1.18;
}

.cta-band p {
  margin-top: 16px;
  color: rgba(248, 240, 226, 0.9);
  font-size: var(--fs-text);
}

.cta-signature {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.35rem;
}

.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  margin-top: 30px;
  padding: 14px 42px;
  background: #F8F0E2;
  color: var(--plum);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease-out;
}

.btn-cream:hover,
.btn-cream:focus-visible {
  transform: translateY(-3px);
}

.btn-cream .arrow {
  display: inline-block;
  transition: transform 0.25s ease-out;
}

/* la flèche EB Garamond est dessinée haut dans son cadratin : on la recale sur le milieu du texte */
.btn-cream .arrow,
.nav-cta-btn .arrow {
  position: relative;
  top: 2px;
}

.btn-cream:hover .arrow,
.btn-cream:focus-visible .arrow { transform: translateX(6px); }

/* ---------- Footer sombre ---------- */

.footer {
  background:
    linear-gradient(rgba(193, 128, 141, 0.5), rgba(193, 128, 141, 0.5)),
    var(--plum) url("../img/texture-prune.webp") center / cover no-repeat;
  padding: 30px 28px;
  font-size: 1.08rem;
  color: rgba(248, 240, 226, 0.85);
}

.band-footer {
  background:
    linear-gradient(rgba(248, 240, 226, 0.72), rgba(248, 240, 226, 0.72)),
    var(--cream) url("../img/hero-cadre.webp") center / cover no-repeat;
  border-top: 2px solid rgba(194, 154, 85, 0.45);
  margin: 70px -24px 0;
  padding: 46px 28px 30px;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ===== Footer développé (marque · navigation · contact) ===== */
.footer-grid {
  max-width: 1040px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.footer-brand .fb-name {
  display: block;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 2rem;
  color: var(--title);
  line-height: 1.15;
}

.footer-brand .fb-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.footer-brand .fb-tagline {
  margin-top: 16px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.footer-col h3 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--eyebrow);
  margin-bottom: 14px;
}

.band-footer .footer-col a,
.band-footer .footer-col .footer-link-btn {
  display: block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 1.18rem;
  color: var(--ink-soft);
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.band-footer .footer-col a:hover,
.band-footer .footer-col a:focus-visible,
.band-footer .footer-col .footer-link-btn:hover,
.band-footer .footer-col .footer-link-btn:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.footer-col .footer-note {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.band-footer .footer-inner {
  border-top: 2px solid rgba(194, 154, 85, 0.55);
  padding-top: 22px;
  max-width: 1040px;
}

/* la règle .cta-band a:not([class]) (liens blancs du bandeau prune) ne doit pas
   déteindre sur la barre légale du footer clair */
.cta-band .band-footer .footer-inner a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.cta-band .band-footer .footer-inner a:hover,
.cta-band .band-footer .footer-inner a:focus-visible { color: var(--ink); }

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .band-footer .footer-col a,
  .band-footer .footer-col .footer-link-btn { text-align: center; margin: 0 auto; }
  .band-footer .footer-inner { justify-content: center; text-align: center; }
}

.band-footer a {
  color: var(--eyebrow);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}
.band-footer a:hover, .band-footer a:focus-visible { color: #FFFDF8; text-decoration-thickness: 2px; }

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer a:hover, .footer a:focus-visible { color: #FFFDF8; border-bottom-color: var(--gold-soft); }

/* ---------- Modal RDV ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(67, 38, 46, 0.55);
  display: none;
  justify-content: center;
  padding: 24px;
  z-index: 150;
  overflow-y: auto; /* c'est l'overlay qui scrolle : le filet du modal reste entier */
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--card);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  margin: auto; /* centré, et l'overlay prend le relais quand c'est trop haut */
  padding: 44px 40px 36px;
  position: relative;
  box-shadow: var(--shadow-deep);
}

.modal::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-soft);
  border-radius: 13px;
  pointer-events: none;
}

.modal h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 2.1rem;
  color: var(--ink);
  text-align: center;
  margin-bottom: 6px;
}

.modal-title-icon {
  display: inline-flex;
  color: var(--gold);
  flex-shrink: 0;
}

.modal .modal-sub {
  text-align: center;
  color: var(--ink-muted);
  font-size: 1.1rem;
  margin-bottom: 26px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: var(--ink-muted);
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.modal-close:hover, .modal-close:focus-visible { color: var(--ink); background: var(--rose-pale); }

.form-field { margin-bottom: 20px; position: relative; z-index: 1; }

.form-field label {
  display: block;
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid rgba(194, 154, 85, 0.5);
  border-radius: 10px;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23C29A55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-field textarea { min-height: 120px; resize: vertical; }

/* ===== Mini calendrier de créneaux (modale RDV) ===== */
.form-field .form-field-label {
  display: block;
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 7px;
}

.mini-cal {
  background: #FFFFFF;
  border: 1px solid rgba(194, 154, 85, 0.5);
  border-radius: 10px;
  padding: 14px 14px 12px;
  display: grid;
  grid-template-columns: 1fr 132px;
  grid-template-areas:
    "head slots"
    "grid slots";
  column-gap: 14px;
}

.cal-head {
  grid-area: head;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cal-month { font-size: 1.05rem; color: var(--ink); }

.cal-nav {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--cream);
  color: var(--eyebrow);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cal-nav:disabled { opacity: 0.35; cursor: default; }
.cal-nav:hover:not(:disabled),
.cal-nav:focus-visible { background: var(--rose-pale); color: var(--ink); }

.cal-grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-dow {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding: 2px 0;
}

.cal-day {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
}

button.cal-day { cursor: pointer; }
button.cal-day:hover,
button.cal-day:focus-visible { background: var(--rose-pale); }
.cal-day.off { color: rgba(133, 104, 90, 0.35); }
.cal-day.selected,
button.cal-day.selected:hover { background: var(--rose-deep); color: #FFFDF8; }

.cal-slots {
  grid-area: slots;
  border-left: 1px dashed rgba(194, 154, 85, 0.4);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cal-slots-label {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.cal-slots-btns { display: flex; flex-direction: column; gap: 10px; }

.slot-btn {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(194, 154, 85, 0.5);
  background: #FFFFFF;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
}

.slot-btn:hover:not(:disabled):not([aria-pressed="true"]),
.slot-btn:focus-visible:not([aria-pressed="true"]) { background: var(--rose-pale); }
.slot-btn:disabled { opacity: 0.4; cursor: default; }
.slot-btn[aria-pressed="true"]:hover { background: var(--rose-deep); }

@media (max-width: 560px) {
  .mini-cal {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "grid" "slots";
  }
  .cal-slots {
    border-left: none;
    padding-left: 0;
    border-top: 1px dashed rgba(194, 154, 85, 0.4);
    margin-top: 10px;
    padding-top: 12px;
  }
  .cal-slots-btns { flex-direction: row; }
}
.slot-btn[aria-pressed="true"] {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #FFFDF8;
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.modal .nav-cta-btn { width: 100%; margin-top: 4px; position: relative; z-index: 1; }

/* Modale RDV en 2 étapes */
.rdv-step-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.rdv-step-actions .nav-cta-btn { width: auto; flex: 1; margin-top: 0; }

.rdv-back {
  min-height: 52px;
  padding: 0 18px;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink-muted);
  cursor: pointer;
  border-radius: 10px;
  white-space: nowrap;
}

.rdv-back:hover,
.rdv-back:focus-visible { color: var(--ink); background: var(--rose-pale); }

/* honeypot anti-spam : hors écran, jamais visible */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.modal-alt {
  text-align: center;
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--ink-muted);
  position: relative;
  z-index: 1;
}

.modal-alt a,
.video-note a {
  color: var(--rose-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.modal-alt a:hover,
.modal-alt a:focus-visible { color: var(--rose); border-bottom-color: var(--rose); }

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  background: var(--card);
  color: var(--ink);
  padding: 32px 44px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-deep);
  font-size: 1.3rem;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 180;
  max-width: min(480px, calc(100vw - 40px));
  text-align: center;
}

.toast::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--gold-champagne);
  border-radius: 12px;
  pointer-events: none;
}

.toast.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------- Animations douces ---------- */

@keyframes hero-in {
  from { opacity: 0; translate: 0 30px; }
  to { opacity: 1; translate: 0 0; }
}

.hero-frame h1 { animation: hero-in 1s ease-out both; }
.hero-frame .ornament-divider { animation: hero-in 1s ease-out 0.25s both; }
.hero-frame .hero-sub { animation: hero-in 1s ease-out 0.45s both; }

@keyframes twinkle {
  from { opacity: 0.55; scale: 0.92; }
  to { opacity: 1; scale: 1.06; }
}

.ornament-divider .diamond,
.frame-diamond { animation: twinkle 2.6s ease-in-out infinite alternate; }

@keyframes mandala-breathe {
  from { scale: 1; }
  to { scale: 1.07; }
}

.offre-mandala { animation: mandala-breathe 5s ease-in-out infinite alternate; }

/* pas d'animation sur les icônes de titre (demande Julien 10/08) : le twinkle
   les faisait respirer de 0.92 à 1.06, ça bougeait sans rien apporter */

@keyframes pulse-halo {
  0% { box-shadow: 0 0 0 6px rgba(255, 253, 248, 0.55), 0 18px 40px -12px rgba(67, 38, 46, 0.45), 0 0 0 0 rgba(169, 96, 111, 0.45); }
  70% { box-shadow: 0 0 0 6px rgba(255, 253, 248, 0.55), 0 18px 40px -12px rgba(67, 38, 46, 0.45), 0 0 0 26px rgba(169, 96, 111, 0); }
  100% { box-shadow: 0 0 0 6px rgba(255, 253, 248, 0.55), 0 18px 40px -12px rgba(67, 38, 46, 0.45), 0 0 0 0 rgba(169, 96, 111, 0); }
}

.play-button { animation: pulse-halo 3s ease-out infinite; }

.video-frame { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.video-frame:hover { transform: translateY(-4px); }

@media (prefers-reduced-motion: reduce) {
  .play-button, .hero-frame h1, .hero-frame .ornament-divider, .hero-frame .hero-sub,
  .ornament-divider .diamond, .frame-diamond, .offre-mandala, .title-icon svg { animation: none; }
  .offre-card, .video-frame { transition: none; }
  .offre-card:hover, .video-frame:hover { transform: none; }
}

/* ---------- Parallaxe entre les blocs (desktop) ----------
   Les textures des sections restent fixes au scroll : les vagues et le
   contenu glissent par-dessus, comme si un bloc passait sous l'autre. */

@media (min-width: 1025px) and (hover: hover) and (prefers-reduced-motion: no-preference) {
  .accompagnements,
  .suite-band {
    background-attachment: fixed, fixed;
  }
  .cta-band {
    background-attachment: fixed, fixed;
  }
}

/* ---------- Reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .play-button, .nav-cta-btn, .btn-cream { transition: none; }
}

/* ---------- Responsive ---------- */

.br-desktop { display: inline; }
.br-mobile { display: none; }

@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(194, 154, 85, 0.35);
    box-shadow: 0 24px 40px -24px rgba(67, 38, 46, 0.3);
    flex-direction: column;
    padding: 18px 0 26px;
    display: none;
    flex: initial !important;
    justify-content: initial !important;
    gap: 4px;
  }
  /* couleurs inversées dans le menu clair */
  .nav-links a { color: var(--ink); }
  .nav-links a:hover, .nav-links a:focus-visible { color: var(--rose-deep); }
  .nav-links .nav-cta-btn {
    background: linear-gradient(rgba(193, 128, 141, 0.35), rgba(193, 128, 141, 0.35)), var(--plum);
    color: #FFFDF8;
  }
  .nav-links.open {
    display: flex;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
  }
  .nav-links a { display: block; padding: 13px 20px; font-size: 1.3rem; }
  .nav-mobile-only { display: list-item !important; margin-top: 10px; }
  .nav-desktop-only { display: none !important; }
  .hamburger { display: flex; }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 860px) {
  .offres-grid { grid-template-columns: 1fr; max-width: 560px; }
  .chemin-grid { grid-template-columns: 1fr; gap: 20px; }
  .chemin-portrait { max-width: 320px; }
}

@media (max-width: 640px) {
  body { font-size: 18px; }
  section { padding: 76px 20px; }
  .hero { padding-top: 0; }
  .hero-frame { padding: 48px 20px 50px; }
  .video-strip { margin-top: 34px; }
  .video-frame { padding: 32px 22px 32px; }
  .accompagnements { margin-top: -300px; padding-top: 350px; }
  .suite-band { padding: 76px 20px 190px; }
  .play-button { width: 80px; height: 80px; }
  .play-button::after { border-width: 14px 0 14px 23px; margin-left: 6px; }
  .brand-logo { width: 52px; height: 52px; }
  .brand-name { font-size: 1.4rem; letter-spacing: 3.5px; }
  .br-desktop { display: none; }
  .br-mobile { display: inline; }
  /* cartes : moins de marge intérieure, le texte respire sur toute la largeur */
  .offre-card { padding: 44px 24px 40px; }
  .offre-raisons { padding: 40px 24px 36px; }
  .raisons-list li { font-size: 1.05rem; }
  .suite-item { padding: 36px 24px 32px; }
  .quote-card { padding: 34px 24px 30px; }
  .band-footer { margin: 70px -20px 0; padding: 40px 20px 28px; }
  .cal-grid { gap: 2px; }
  .cal-day { min-height: 40px; font-size: 15px; }
  .mini-cal { padding: 12px 10px 10px; }

  /* ===== Modale RDV sur mobile =====
     Ancrée en haut (pas centrée) : quand le clavier iOS s'ouvre, Safari n'a
     plus à recentrer le contenu, donc le modal ne se décale plus. */
  .modal-overlay { padding: 14px 12px 24px; align-items: flex-start; }
  .modal { margin: 0 auto; padding: 36px 20px 28px; }
  .modal h2 { font-size: 1.8rem; gap: 9px; }
  .modal .modal-sub { font-size: 1.02rem; margin-bottom: 20px; }
  .modal-close { top: 7px; right: 7px; }
  .form-field label,
  .form-field .form-field-label { font-size: 1.05rem; }
  /* le champ visé reste visible sous le clavier */
  .form-field input,
  .form-field select,
  .form-field textarea { scroll-margin: 90px 0 24px; }
  /* « Envoyer ma demande » ne tient pas à côté de « Retour » : on empile */
  .rdv-step-actions { flex-direction: column-reverse; gap: 8px; }
  .rdv-step-actions .nav-cta-btn { flex: none; width: 100%; }
  .rdv-back { width: 100%; text-align: center; }
}

/* Fix hover vs reveal : le .reveal.visible { transform: none } écrasait le translate
   au survol (même spécificité, déclaré après). Ces règles plus spécifiques reprennent la main. */
.offres-grid .offre-card:hover,
.suite-grid .suite-item:hover {
  transform: translateY(-12px);
}

.video-strip .video-frame:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .offres-grid .offre-card:hover,
  .suite-grid .suite-item:hover,
  .video-strip .video-frame:hover { transform: none; }
}


/* ---------- Hardening mobile (skill ios-responsive-hardening) ---------- */

@media (max-width: 640px) {
  html { scrollbar-gutter: auto; }
  .form-field textarea { resize: none; min-height: 100px; }
}

/* iOS : les :hover persistent après un tap, on les neutralise sur tactile */
@media (hover: none) {
  .offres-grid .offre-card:hover,
  .suite-grid .suite-item:hover,
  .video-strip .video-frame:hover,
  .nav-cta-btn:hover,
  .btn-cream:hover,
  .outil-pill:hover { transform: none; }
  .btn-cream:hover .arrow { transform: none; }
}
