/* Couleurs, chacune avec un rôle :
   crème = respiration et clarté (fond principal)
   bordeaux = désir et passage à l'action (boutons et réservation uniquement)
   poudre = douceur et réassurance (formules, essentiels)
   quasi-noir = élégance et contraste (texte, avis) */
:root {
  --creme: #FBF7F4;
  --creme-fonce: #F3ECE7;
  --poudre: #F2E3DD;
  --bordeaux: #6E2E3A;
  --bordeaux-fonce: #57232D;
  --noir: #1C1517;
  --texte: #2A2224;
  --doux: #6D6063;
  --trait: rgba(42, 34, 36, .12);
  --titre: "Archivo", system-ui, -apple-system, sans-serif;
  --corps: "Archivo", system-ui, -apple-system, sans-serif;
  --rayon: 14px;
  --courbe: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--creme); color: var(--texte); font-family: var(--corps); font-stretch: 100%; font-size: 18px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, video { display: block; width: 100%; }
a { color: inherit; }

.conteneur { width: min(1200px, 100% - 48px); margin-inline: auto; }
.section { padding: clamp(80px, 10vw, 128px) 0; }
.section-poudre { background: var(--poudre); }
.section-creme { background: var(--creme-fonce); }
.section-sombre { background: var(--noir); color: var(--creme); }

h1, h2, h3 { font-family: var(--titre); font-stretch: 78%; font-weight: 800; letter-spacing: -.005em; line-height: .95; text-transform: uppercase; }
h1 { font-size: clamp(46px, 6.6vw, 100px); }
h2 { font-size: clamp(36px, 4.4vw, 62px); margin-bottom: 22px; }
h3 { font-size: clamp(22px, 2vw, 27px); letter-spacing: .005em; }
.etiquette { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--bordeaux); margin-bottom: 16px; }
.section-sombre .etiquette { color: var(--poudre); }
.chapo { font-size: 19px; color: var(--doux); max-width: 540px; margin-bottom: 30px; }

/* Boutons : le bordeaux est réservé à l'action */
.bouton { display: inline-flex; align-items: center; justify-content: center; padding: 18px 28px; border-radius: 3px; background: var(--bordeaux); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border: 1.5px solid var(--bordeaux); transition: background .25s, transform .25s var(--courbe); }
.bouton:hover { background: var(--bordeaux-fonce); transform: translateY(-2px); }
.bouton-petit { padding: 12px 18px; font-size: 12px; }
.bouton-clair { background: #fff; color: var(--bordeaux); border-color: #fff; }
.bouton-clair:hover { background: var(--poudre); }
.bouton-contour { background: transparent; color: var(--bordeaux); }
.bouton-contour:hover { background: var(--bordeaux); color: #fff; }
.bouton-contour-clair { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.bouton-contour-clair:hover { background: rgba(255, 255, 255, .12); }
.boutons { display: flex; flex-wrap: wrap; gap: 12px; }

/* Bandeau d'annonce */
.annonce { position: fixed; inset: 0 0 auto 0; z-index: 31; height: 36px; line-height: 36px; display: block; padding: 0 16px; background: var(--bordeaux); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* En-tête */
.entete { position: fixed; inset: 36px 0 auto 0; z-index: 30; transition: background .35s, box-shadow .35s; color: #fff; }
.entete.pleine { background: rgba(251, 247, 244, .96); color: var(--texte); box-shadow: 0 1px 0 var(--trait); }
.entete-ligne { display: flex; align-items: center; gap: 32px; padding: 18px 0; }
.logo { font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; font-weight: 600; letter-spacing: .26em; line-height: 1; text-decoration: none; display: inline-flex; flex-direction: column; margin-right: auto; }
.logo small { font-family: var(--corps); font-size: 9px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; margin-top: 5px; opacity: .8; }
.menu { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.menu a { text-decoration: none; opacity: .9; }
.menu a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }
.entete:not(.pleine) .entete-cta { background: #fff; color: var(--bordeaux); border-color: #fff; }
.burger { display: none; width: 42px; height: 42px; border: 0; background: none; position: relative; cursor: pointer; color: inherit; }
.burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: currentColor; transition: transform .3s, top .3s; }
.burger span:first-child { top: 15px; } .burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

/* Accueil */
.accueil { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.accueil-video { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.accueil-voile { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,21,23,.55) 0%, rgba(28,21,23,.2) 30%, rgba(28,21,23,.55) 60%, rgba(28,21,23,.88) 100%); }
.accueil-contenu { position: relative; z-index: 2; padding: 140px 0 64px; }
.accueil-lieu { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin-bottom: 18px; }
.accueil h1 { max-width: 900px; margin-bottom: 22px; }
.accueil-texte { font-size: clamp(18px, 1.6vw, 21px); max-width: 560px; opacity: .92; margin-bottom: 32px; }
.accueil-avis { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .22); max-width: 560px; }
.accueil-avis blockquote { font-size: 17px; font-style: italic; opacity: .92; }
.accueil-avis figcaption { font-size: 14px; opacity: .7; margin-top: 6px; }

/* Les essentiels */
.essentiels { background: var(--poudre); }
.essentiels-grille { display: grid; grid-template-columns: repeat(4, 1fr); }
.essentiels-grille div { padding: 28px 22px; }
.essentiels-grille div + div { border-left: 1px solid rgba(110, 46, 58, .18); }
.essentiels strong { display: block; font-stretch: 85%; font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.essentiels span { font-size: 15px; color: var(--doux); }

/* La séance */
.seance { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.seance-video { position: relative; aspect-ratio: 4 / 5; border-radius: var(--rayon); overflow: hidden; background: var(--noir); }
.etapes { list-style: none; }
.etapes li { display: grid; grid-template-columns: 44px 150px 1fr; gap: 10px; align-items: baseline; padding: 15px 0; border-top: 1px solid var(--trait); }
.etapes li:last-child { border-bottom: 1px solid var(--trait); }
.etapes span { font-size: 14px; font-weight: 600; color: var(--bordeaux); }
.etapes strong { font-stretch: 85%; font-size: 21px; font-weight: 700; }
.etapes em { font-style: normal; color: var(--doux); }

/* Formules */
.formules { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.formule { background: #fff; border-radius: var(--rayon); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 24px 50px -36px rgba(110, 46, 58, .45); }
.formule-media { aspect-ratio: 16 / 10; overflow: hidden; }
.formule-media video, .formule-media img { height: 100%; object-fit: cover; transition: transform 1.2s var(--courbe); }
.formule:hover .formule-media video, .formule:hover .formule-media img { transform: scale(1.04); }
.formule-corps { padding: 30px 30px 34px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.formule-prix { font-stretch: 85%; font-size: 28px; font-weight: 700; color: var(--bordeaux); }
.formule-prix small { font-stretch: 100%; font-size: 15px; font-weight: 400; color: var(--doux); }
.formule ul { list-style: none; margin-bottom: 10px; flex: 1; }
.formule li { padding: 9px 0 9px 26px; position: relative; color: var(--doux); border-top: 1px solid var(--trait); }
.formule li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 10px; height: 10px; border-radius: 50%; background: var(--poudre); border: 2px solid var(--bordeaux); }
.formule .bouton { align-self: flex-start; }
.tarifs { margin-top: 28px; background: #fff; border-radius: var(--rayon); padding: 6px 28px; }
.tarifs summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; color: var(--bordeaux); display: flex; justify-content: space-between; }
.tarifs summary::-webkit-details-marker { display: none; }
.tarifs summary::after { content: "+"; font-size: 22px; line-height: 1; transition: transform .3s; }
.tarifs[open] summary::after { transform: rotate(45deg); }
.tarifs-grille { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; padding: 8px 0 12px; }
.tarifs table { width: 100%; border-collapse: collapse; }
.tarifs caption { text-align: left; font-weight: 700; font-stretch: 85%; font-size: 19px; padding-bottom: 8px; }
.tarifs td { padding: 11px 0; border-top: 1px solid var(--trait); vertical-align: top; font-size: 16px; }
.tarifs td:last-child { text-align: right; font-weight: 600; white-space: nowrap; padding-left: 16px; }
.tarifs small { display: block; font-size: 14px; color: var(--doux); }
.petit { font-size: 14px; color: var(--doux); padding-bottom: 20px; }

/* Comment ça marche */
.trois-etapes { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 14px; }
.trois-etapes li { background: var(--creme-fonce); border-radius: var(--rayon); padding: 30px; }
.trois-etapes span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--bordeaux); color: #fff; font-weight: 700; margin-bottom: 22px; }
.trois-etapes h3 { margin-bottom: 8px; }
.trois-etapes p { color: var(--doux); }

/* Prochaines séances */
.entete-section { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 36px; }
.entete-section h2 { margin-bottom: 0; }
.entete-section-texte { max-width: 420px; opacity: .8; }
.creneaux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.creneau { background: #251C1F; border: 1px solid rgba(251, 247, 244, .1); border-radius: 6px; padding: 28px; display: flex; flex-direction: column; gap: 6px; transition: transform .35s var(--courbe), border-color .35s; }
.creneau:hover { transform: translateY(-4px); border-color: rgba(242, 227, 221, .35); }
.creneau-type { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--poudre); margin-bottom: 8px; }
.creneau h3 { font-size: 30px; }
.creneau-heure { font-weight: 600; font-size: 18px; margin-top: 6px; }
.creneau-detail { opacity: .7; font-size: 15px; }
.creneau-bas { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(251, 247, 244, .12); }
.creneau-coach { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; opacity: .85; }
.creneau-coach img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }

/* Ta première séance */
.premiere { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.conseils { list-style: none; }
.conseils li { padding: 24px 0; border-top: 1px solid var(--trait); }
.conseils li:last-child { border-bottom: 1px solid var(--trait); }
.conseils h3 { margin-bottom: 8px; color: var(--bordeaux); }
.conseils p { color: var(--doux); max-width: 560px; }

/* Avis */
.avis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 14px; }
.avis figure { background: #fff; border-radius: 6px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; box-shadow: 0 24px 50px -36px rgba(110, 46, 58, .45); }
.avis blockquote { font-stretch: 90%; font-size: 22px; font-weight: 500; line-height: 1.35; }
.avis figcaption { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bordeaux); }

/* Qui je suis */
.rolaine { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.rolaine img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--rayon); }
.rolaine p:not(.etiquette) { color: var(--doux); margin-bottom: 16px; max-width: 580px; }
.devise { font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; font-weight: 600; line-height: 1.3; color: var(--bordeaux) !important; margin-top: 24px; }

/* Questions */
.questions { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.faq details { border-top: 1px solid var(--trait); padding: 20px 0; }
.faq details:last-child { border-bottom: 1px solid var(--trait); }
.faq summary { cursor: pointer; list-style: none; font-stretch: 88%; font-size: 21px; font-weight: 700; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--bordeaux); font-size: 24px; line-height: 1; transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--doux); padding-top: 10px; max-width: 580px; }

/* Réserver */
.reserver { position: relative; overflow: hidden; background: var(--bordeaux); color: #fff; padding: clamp(90px, 11vw, 140px) 0; }
.reserver-fond { position: absolute; left: 50%; bottom: -.18em; transform: translateX(-50%); font-family: var(--titre); font-stretch: 75%; font-weight: 800; text-transform: uppercase; font-size: clamp(160px, 34vw, 520px); line-height: 1; letter-spacing: -.02em; color: rgba(255, 255, 255, .06); white-space: nowrap; pointer-events: none; user-select: none; }
.reserver-contenu { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.reserver .etiquette { color: var(--poudre); }
.reserver h2 { font-size: clamp(48px, 7vw, 100px); }
.reserver-contenu > p:not(.etiquette) { font-size: 19px; max-width: 560px; opacity: .92; margin-bottom: 32px; }
.reserver .boutons { justify-content: center; }
.reserver-infos { margin-top: 30px; font-size: 15px !important; opacity: .8 !important; }

/* Pied de page */
.pied { background: var(--noir); color: var(--poudre); padding: 24px 0 90px; font-size: 14px; }
.pied-ligne { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Barre de réservation mobile */
.barre-mobile { display: none; }

/* Apparition douce */
.revele { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--courbe), transform .9s var(--courbe); }
.revele.vu { opacity: 1; transform: none; }

/* Tablette */
@media (max-width: 980px) {
  .menu { display: none; }
  .burger { display: block; }
  .entete-cta { display: none; }
  .menu.ouvert { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 18px; padding: 24px; background: var(--creme); color: var(--texte); box-shadow: 0 10px 30px -20px rgba(0,0,0,.4); }
  .essentiels-grille { grid-template-columns: 1fr 1fr; }
  .essentiels-grille div:nth-child(3) { border-left: 0; }
  .essentiels-grille div:nth-child(n+3) { border-top: 1px solid rgba(110, 46, 58, .18); }
  .seance, .rolaine, .questions, .formules, .avis, .trois-etapes, .tarifs-grille, .creneaux, .premiere { grid-template-columns: 1fr; }
  .seance-video { aspect-ratio: 4 / 3; }
  .rolaine img { max-width: 440px; }
}

/* Mobile */
@media (max-width: 600px) {
  body { font-size: 17px; }
  .etapes li { grid-template-columns: 34px 1fr; row-gap: 2px; }
  .etapes em { grid-column: 2; }
  .barre-mobile { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40; padding: 16px; border-radius: 999px; background: var(--bordeaux); color: #fff; text-align: center; font-weight: 600; text-decoration: none; box-shadow: 0 12px 30px -10px rgba(110, 46, 58, .6); transform: translateY(140%); transition: transform .4s var(--courbe); }
  .barre-mobile.visible { transform: none; }
  .boutons .bouton { width: 100%; }
}

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

@media (max-width: 600px) { .annonce { font-size: 10px; letter-spacing: .06em; } .annonce-plus { display: none; } }

/* Vidéo des cours collectifs : lumière bleue réchauffée vers le rose de la palette */

/* Photo des coachings : cadrée sur le visage */
.formule-media-portrait img { object-position: 50% 6%; }

/* Solo violet de la séance : couleurs ramenées vers le rose poudré et le bordeaux du site */
.seance-video video { position: absolute; inset: 0; height: 100%; object-fit: cover; }

/* Photo de la séance (ancrage) : un peu éclaircie */
.seance-photo { background: var(--creme-fonce); }
.seance-photo img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 55% 60%; filter: brightness(1.14) contrast(1.06); }
