/* ============================================================
   Traço de Iara — Landing page V2 (révision « ça doit vendre »)
   - 0 italique. Distinction de voix par la POLICE (Playfair upright).
   - Beaucoup plus de gras + surligneur or sur les promesses.
   - Corps plus compact, contraste plus fort.
   ============================================================ */

:root {
  --bordeaux: #7A1F2B;
  --brique: #B8332E;
  --or: #C9A24A;
  --or-soft: #D9B968;
  --or-mark: rgba(201, 162, 74, 0.42);
  --creme: #F5E9D8;
  --creme-clair: #FAF7F2;
  --beige: #E8D5B5;
  --noir: #000000;
  --bordeaux-sombre: #5A1018;
  --gris-60: #000000;
  --gris-50: #000000;

  --serif-display: 'Montserrat', -apple-system, sans-serif;
  --serif-voice: 'Montserrat', -apple-system, sans-serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --cursive: 'Allura', cursive;

  --shadow-card: 0 4px 16px rgba(122, 31, 43, 0.10);
  --shadow-cta: 0 6px 16px rgba(122, 31, 43, 0.34);
  --shadow-cta-hover: 0 10px 26px rgba(122, 31, 43, 0.45);
  --shadow-topbar: 0 2px 8px rgba(0, 0, 0, 0.08);

  --maxw: 440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--creme);
  font-family: var(--sans);
  color: var(--noir);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.app {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--creme);
  position: relative;
  overflow-x: clip;
  box-shadow: 0 0 60px rgba(0,0,0,0.18);
}

/* ---------- Scroll progress bar ---------- */
.scroll-prog {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--or-soft), var(--or));
  z-index: 200;
  transition: width .08s linear;
  pointer-events: none;
}

/* ---------- Emphasis system (NO italics — weight + colour + marker) ---------- */
strong, b { font-weight: 800; }
/* legacy <em> → now heavy bordeaux, never italic */
em { font-style: normal; font-weight: 800; color: var(--bordeaux); }
.b-bordeaux { color: var(--bordeaux); font-weight: 800; }
.c-bordeaux { color: var(--bordeaux); font-weight: 700; }
.b-or { color: #9c7b22; font-weight: 800; }
.i-or, .i-or-b { font-style: normal; color: #9c7b22; font-weight: 800; }
.whisper, .term { font-style: normal; font-weight: 700; }
/* Highlighter marker for the punchiest selling phrases */
.mark {
  font-weight: 800;
  color: var(--noir);
  background: linear-gradient(transparent 56%, var(--or-mark) 56%);
  padding: 0 2px;
  border-radius: 1px;
}
.mark-b {
  font-weight: 800;
  color: var(--bordeaux);
  background: linear-gradient(transparent 56%, rgba(122,31,43,0.16) 56%);
  padding: 0 2px;
}

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.sec-pad { padding: 40px 22px; }
.sec-pad-lg { padding: 52px 22px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9c7b22;
  text-align: center;
  margin: 0 0 14px;
}
.h2 {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 27px;
  line-height: 1.16;
  letter-spacing: -0.4px;
  color: var(--bordeaux);
  text-align: center;
  margin: 0;
  text-wrap: balance;
}
.sub {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gris-60);
  text-align: center;
  margin: 12px auto 0;
  max-width: 360px;
  text-wrap: pretty;
}

/* ---------- 1. Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bordeaux);
  color: #fff;
  box-shadow: var(--shadow-topbar);
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
.topbar svg { flex: none; }
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }
.topbar .b-or { color: var(--or-soft); }
.topbar em { color: #fff; font-weight: 600; }

/* TYP topbar — styles réellement chargés par Astro (typ.html n'est pas servi). */
body.page-typ .topbar {
  min-height: auto;
  border-bottom: 1.5px solid #C9A24A;
}
body.page-typ .topbar-inner {
  max-width: 440px;
  margin: 0 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}
body.page-typ .topbar-photo {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #C9A24A;
}
body.page-typ .topbar-id {
  display: flex;
  flex-direction: column;
  flex: none;
}
body.page-typ .topbar-id .tb-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.02;
  color: #D9B968;
  letter-spacing: 0.2px;
}
body.page-typ .topbar-pills {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
  text-align: right;
}
body.page-typ .topbar-pills .pill {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #FAF7F2;
  border: 1.3px solid #C9A24A;
  border-radius: 999px;
  padding: 3px 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  color: #2A1410;
}
body.page-typ .topbar-pills .pill .star {
  color: #C9A24A;
  font-size: 10px;
  line-height: 1;
}

/* ---------- 2. Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #2a1410;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  z-index: 0;
}
.hero-grad-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 58%;
  z-index: 1;
  background: linear-gradient(to bottom,
    var(--creme) 0%,
    rgba(245,233,216,0.98) 16%,
    rgba(245,233,216,0.88) 32%,
    rgba(245,233,216,0.55) 50%,
    rgba(245,233,216,0) 100%);
  pointer-events: none;
}
.hero-grad-bot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48%;
  z-index: 1;
  background: linear-gradient(to top,
    var(--creme) 0%,
    rgba(245,233,216,0.94) 24%,
    rgba(245,233,216,0.55) 54%,
    rgba(245,233,216,0) 100%);
  pointer-events: none;
}
.hero-top {
  position: relative;
  z-index: 2;
  padding: 24px 22px 0;
  text-align: center;
}
.wordmark {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 26px;
  color: #9c7b22;
  letter-spacing: 0.3px;
  margin: 0;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9c7b22;
  margin: 8px 0 0;
}
.hero-h1 {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: -0.4px;
  color: var(--bordeaux);
  margin: 14px auto 0;
  max-width: 90%;
  text-wrap: pretty;
}
.hero-h1 .visage {
  color: #9c7b22;
  font-weight: 800;
}
.hero-h1 + .hero-sub { margin-top: 30px; }
.hero-sub {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  color: var(--noir);
  margin: 18px auto 0;
  max-width: 90%;
  text-wrap: pretty;
}
.hero-bot {
  position: relative;
  z-index: 2;
  padding: 0 22px 26px;
  text-align: center;
}
.hero-microcopy {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--gris-60);
  margin: 12px 0 0;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--noir);
  font-weight: 700;
}
.trust-row .sep { color: var(--or); }
.trust-row .ti { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.trust-row svg { flex: none; }

/* ---------- Hero stats bar ---------- */
.hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 330px;
  margin: 18px auto 0;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--or);
  border-radius: 14px;
  padding: 12px 8px;
  box-shadow: 0 4px 16px rgba(122,31,43,0.10);
}
.hero-stats .stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 6px;
}
.hero-stats .stat-num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #9c7b22;
}
.hero-stats .stat-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--noir);
  text-align: center;
}
.hero-stats .stat-div {
  width: 1px;
  background: var(--or);
  opacity: 0.55;
  margin: 3px 0;
  flex: 0 0 auto;
}

/* ---------- CTA ---------- */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 88%;
  max-width: 360px;
  margin: 0 auto;
  min-height: 58px;
  padding: 18px 28px;
  background: var(--brique);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow-cta);
  transition: transform .2s ease, box-shadow .2s ease;
  line-height: 1.2;
}
.cta .arrow { transition: transform .2s ease; }
.cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta-hover); }
.cta:hover .arrow { transform: translateX(3px); }
.cta:active { transform: translateY(0); }
.cta.cta-sm { font-size: 15px; }
.cta.cta-final {
  width: 94%;
  font-size: 17px;
  min-height: 64px;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), box-shadow .2s ease;
}
.cta.cta-final.in { transform: scale(1.05); }
.cta.cta-final.in:hover { transform: scale(1.05) translateY(-2px); }

/* ---------- CTA flottant (zone de scroll) ---------- */
.float-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(120px);
  width: 100%;
  max-width: var(--maxw);
  z-index: 60;
  padding: 22px 16px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--creme) 58%, rgba(245, 233, 216, 0.92) 80%, rgba(245, 233, 216, 0) 100%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  text-align: center;
}
.float-cta .cta {
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
}
.float-cta-micro {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--bordeaux);
  opacity: 0.7;
  margin: 9px auto 0;
}
/* Variante compacte du bouton checkout dans la barre flottante */
.float-cta .cta-final-checkout.cta-float {
  width: 100%;
  max-width: 360px;
  min-height: 56px;
  padding: 15px 24px;
}

/* ---------- 2b. Bande couples (single-row marquee) ---------- */
.couples {
  background: var(--creme);
  padding: 26px 0 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.couples-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: couplesScroll 48s linear infinite;
}
.couple-item { flex: none; }
.couple-item img {
  display: block;
  width: 188px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(40,20,10,0.22);
}
@keyframes couplesScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .couples-track { animation: none; }
}

/* ---------- 3. Mini-lecture (voix d'Iara = Playfair upright) ---------- */
.lecture { position: relative; overflow: hidden; background: var(--creme); text-align: center; }
.lecture-bg {
  position: absolute;
  inset: -4% -3%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 54% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 64%, #000 90%);
          mask-image: radial-gradient(ellipse 54% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 64%, #000 90%);
}
.lecture-bg img {
  position: absolute;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.16;
  filter: grayscale(0.4) sepia(0.12) contrast(0.95);
  box-shadow: 0 10px 26px rgba(90,16,24,0.08);
}
.lecture-avatar {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 22px;
  border: 1px solid var(--or);
  padding: 2px;
  background: var(--creme);
}
.lecture-blocks {
  position: relative;
  z-index: 1;
  max-width: 384px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.lecture-block p {
  font-family: var(--serif-voice);
  font-weight: 600;
  font-size: 18.5px;
  line-height: 1.5;
  color: var(--noir);
  margin: 0 0 10px;
  text-wrap: pretty;
}
.lecture-block p:last-child { margin-bottom: 0; }
.lecture-block em { font-style: italic; font-weight: 600; color: var(--bordeaux); }
.lecture-block p.lead { font-size: 24px; font-weight: 700; color: var(--bordeaux); }
.lecture-block strong, .lecture-block .b-bordeaux { font-weight: 700; }
.lecture-prompt {
  font-family: var(--serif-voice);
  font-weight: 700;
  color: var(--bordeaux);
}
.lecture-instruction {
  display: block;
  font-family: var(--serif-voice);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  color: var(--bordeaux);
  text-align: center;
  margin: 12px auto;
}

/* ---------- 4. Mosaïque ---------- */
.mosaique { background: var(--bordeaux); }
.mosaique .eyebrow { color: var(--or-soft); }
.mosaique .h2 { color: var(--creme); }
.mosaique .sub { color: #fff; }
.mosaic-head { margin-bottom: 24px; }
.mq {
  margin: 0 -22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.mq-row { overflow: hidden; }
.mq-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mqScroll 46s linear infinite;
}
.mq-row--1 .mq-track { margin-left: -72px; }
.mq-row--2 .mq-track { animation-duration: 52s; }
.mq-item { flex: none; width: 132px; margin-right: 12px; }
.mq-item img {
  display: block;
  width: 132px;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.32);
}
@keyframes mqScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .mq-track { animation: none; }
}
.mosaic-closing {
  font-family: var(--serif-voice);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin: 26px auto 0;
  max-width: 330px;
  line-height: 1.5;
}
.mosaique .b-or { color: var(--or-soft); }

/* ---------- 5. Story (magazine) ---------- */
.story { background: var(--creme); }
.story-wrap { max-width: 400px; margin: 0 auto; }
.story-head { text-align: center; margin-bottom: 22px; }
.story-head .h2 { text-align: center; }
.story p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--noir);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.story p strong, .story p .b-bordeaux { font-weight: 800; }
.story p.tight { margin-bottom: 10px; }

.story .story-body-1::first-letter {
  font-family: var(--serif-display);
  font-size: 58px;
  line-height: 0.86;
  color: var(--bordeaux);
  float: left;
  margin: 6px 8px 0 0;
  font-weight: 800;
}

.story-num {
  color: #9c7b22;
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 20px;
}

/* Pull-quotes (Playfair upright, no italic) */
p.story-pullquote {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--bordeaux);
  text-align: center;
  margin: 28px auto 18px;
  max-width: 340px;
  padding: 0 12px;
  position: relative;
  clear: both;
  text-wrap: balance;
}
.story-pullquote::before,
p.story-pullquote::after {
  content: "";
  display: block;
  width: 40px; height: 2px;
  background: var(--or);
  margin: 14px auto;
}

.story-photo-float {
  width: 30%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
}
.story-photo-float.left {
  float: left;
  margin: 4px 18px 14px 0;
  shape-outside: inset(0 round 6px);
}
.story-photo-float.right {
  float: right;
  margin: 4px 0 14px 18px;
  shape-outside: inset(0 round 6px);
}
.story-clearfix::after { content: ""; display: block; clear: both; }

.quote-block {
  text-align: center;
  margin: 26px auto;
  max-width: 340px;
  clear: both;
}
.quote-block .rule {
  width: 60px; height: 2px;
  background: var(--bordeaux);
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.34;
  color: #9c7b22;
  margin: 18px 0;
  text-wrap: balance;
}
.quote-block.small blockquote { font-size: 21px; color: var(--bordeaux); }
.quote-block cite {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #9c7b22;
}
.story-signature {
  font-family: var(--cursive);
  font-size: 62px;
  line-height: 1;
  color: #9c7b22;
  text-align: right;
  margin: 8px 0 0;
  clear: both;
}

/* ---------- 6. Teaser quiz ---------- */
/* ---------- 6. Témoignages WhatsApp (coverflow) ---------- */
.wa-sec { background: var(--creme-clair); overflow: hidden; }
.wa-head { text-align: center; max-width: 460px; margin: 0 auto 40px; }
.wa-h2 {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 27px;
  line-height: 1.18;
  color: var(--bordeaux);
  margin: 0 0 10px;
  text-wrap: balance;
}
.wa-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gris-60);
  margin: 0;
}

.wa-flow {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-stage {
  position: relative;
  width: 100%;
}
.wa-spacer {
  width: 92%;
  aspect-ratio: 1506 / 2677;
  margin: 0 auto;
  visibility: hidden;
  pointer-events: none;
}
.wa-card {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  width: 92%;
  aspect-ratio: 1506 / 2677;
  border-radius: 16px;
  overflow: hidden;
  background: #ECE5DD;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1), opacity 0.5s ease, filter 0.5s ease;
  will-change: transform, opacity;
}
.wa-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-user-drag: none;
}
.wa-card.is-center {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  opacity: 1;
  filter: none;
  cursor: default;
  box-shadow: 0 24px 54px rgba(40,20,10,0.30);
}
.wa-card.is-right {
  transform: translate(34%, -50%) scale(0.74);
  z-index: 2;
  opacity: 0.9;
  filter: saturate(0.92);
  box-shadow: 0 18px 40px rgba(40,20,10,0.26);
}
.wa-card.is-left {
  transform: translate(-134%, -50%) scale(0.74);
  z-index: 2;
  opacity: 0.9;
  filter: saturate(0.92);
  box-shadow: 0 18px 40px rgba(40,20,10,0.26);
}
.wa-card.is-hidden {
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.wa-arrow {
  position: relative;
  z-index: 5;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--or-soft);
  background: var(--creme-clair);
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(40,20,10,0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}
.wa-arrow:hover { background: #fff; transform: scale(1.06); }
.wa-arrow:active { transform: scale(0.96); }
.wa-arrow--left { margin-right: -14px; }
.wa-arrow--right { margin-left: -14px; }

.wa-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(122,31,43,0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wa-dot.is-on { background: var(--bordeaux); transform: scale(1.25); }

/* ---------- 7. Méthode ---------- */
.methode { background: var(--creme); }
.methode-head { margin-bottom: 24px; }
.methode-cards {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.m-card {
  background: var(--beige);
  border-radius: 12px;
  padding: 22px 22px 28px;
  box-shadow: var(--shadow-card);
}
.m-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.m-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--bordeaux);
  margin: -50px auto 16px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--creme);
  box-shadow: 0 4px 14px rgba(201,162,74,0.45);
}
.m-title {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.22;
  color: var(--bordeaux);
  text-align: center;
  margin: 0 0 12px;
  text-wrap: balance;
}
.m-card h3 + p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(201,162,74,0.35);
}
.m-body {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--noir);
  text-align: center;
  margin: 0;
  text-wrap: pretty;
}
.methode-closing {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--bordeaux);
  text-align: center;
  margin: 24px auto 0;
  max-width: 330px;
}

/* ---------- 8. Témoignages — style Trustpilot ---------- */
.avis { background: var(--creme-clair); }

.tp-head {
  max-width: 460px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tp-logo-lg { width: 172px; height: auto; }
.tp-stars-lg { width: 210px; height: auto; margin-top: 12px; }
.tp-count {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--noir);
  margin: 15px 0 0;
}
.tp-count .tp-count-num { color: #00b67a; text-decoration: underline; text-underline-offset: 2px; }

.tp-list {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.tp-review {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,0.09);
}
.tp-review:first-child { border-top: none; padding-top: 0; }
.tp-avatar {
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}
.tp-content { flex: 1 1 auto; min-width: 0; }
.tp-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-bottom: 9px;
}
.tp-stars-sm { width: 100px; height: auto; flex: none; }
.tp-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  color: var(--noir);
}
.tp-posted {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  color: #9aa0a6;
  white-space: nowrap;
}
.tp-posted img { width: 72px; height: auto; }
.tp-quote {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.62;
  color: #2c2622;
  margin: 0;
  white-space: pre-line;
  text-wrap: pretty;
}
.tp-quote::before { content: "\201C"; }
.tp-quote::after { content: "\201D"; }

/* ---------- 9 + 10. Avertissement (note intime signée) ---------- */
.warn-box {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  background:
    radial-gradient(130% 90% at 50% -10%, rgba(201,162,74,0.13), transparent 58%),
    var(--bordeaux-sombre);
  border: 1px solid rgba(201,162,74,0.42);
  border-radius: 3px;
  padding: 42px 36px 34px;
  box-shadow: 0 26px 60px rgba(40,8,12,0.42);
}
.warn-box::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,162,74,0.22);
  border-radius: 1px;
  pointer-events: none;
}
.warn-emblem {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
}
.warn-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--or-soft);
  margin: 0 0 22px;
}
.warn-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,162,74,0.55), rgba(201,162,74,0));
}
.warn-lead {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.42;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.warn-body {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(245,233,216,0.82);
  margin: 0;
  text-wrap: pretty;
}
.warn-rule {
  width: 38px;
  height: 1px;
  border: 0;
  background: rgba(201,162,74,0.6);
  margin: 24px 0;
}
.warn-prog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 26px 0 12px;
}
.wp-frame {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 5px;
  background: var(--creme-clair);
  border-radius: 2px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.32);
}
.wp-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 1px;
  filter: sepia(0.12);
}
.wp-arrow {
  flex: none;
  width: 26px;
  height: 14px;
  opacity: 0.9;
}
.warn-prog-cap {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-align: center;
  color: var(--or-soft);
  margin: 0;
}
.warn-close {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,233,216,0.92);
  margin: 0;
  text-wrap: pretty;
}
.warn-close strong { color: var(--or-soft); font-weight: 800; }
.warn-sign {
  font-family: var(--cursive);
  font-size: 46px;
  line-height: 1;
  color: var(--or-soft);
  text-align: right;
  margin: 14px 0 0;
}

/* ---------- 11. FAQ ---------- */
.faq { background: var(--creme); }
.faq-head { margin-bottom: 24px; }
.faq-list {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--creme-clair);
  border: 1px solid var(--or);
  border-radius: 8px;
  overflow: hidden;
  transition: background .2s ease;
}
.faq-item[open] { background: var(--beige); }
.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 22px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.32;
  color: var(--noir);
  cursor: pointer;
  text-wrap: pretty;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  flex: none;
  color: var(--or);
  transition: transform .2s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px 18px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--noir);
  text-wrap: pretty;
}
.faq-a p { margin: 0; }

/* ---------- 12. CTA final ---------- */
.final { background: var(--creme); text-align: center; }
.final-wrap { max-width: 400px; margin: 0 auto; }
.final-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-card);
}
.final .h2 { margin-bottom: 16px; font-size: 31px; }
.final-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--noir);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.final-seal-box {
  background: var(--beige);
  border-radius: 16px;
  padding: 26px 22px;
  margin: 30px -22px;
  box-shadow: var(--shadow-card);
}
.final-tagline {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.45;
  color: var(--bordeaux);
  margin: 14px auto 0;
  max-width: 320px;
  text-wrap: pretty;
}
.final-whisper {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #9c7b22;
  margin: 26px auto 20px;
  max-width: 320px;
  text-wrap: pretty;
}
.final-micro {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--gris-60);
  margin: 12px 0 0;
}

/* ---------- Wax seal ---------- */
.seal-wrap { margin: 26px auto 8px; display: flex; justify-content: center; }
.seal {
  position: relative;
  width: 140px; height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  filter: drop-shadow(0 8px 16px rgba(90,16,24,0.45));
}
.seal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 38% 32%, #9a3340 0%, #7A1F2B 46%, #5A1018 100%);
  clip-path: polygon(
    50% 0%, 63% 7%, 76% 4%, 82% 17%, 95% 22%, 92% 36%,
    100% 47%, 92% 60%, 96% 74%, 82% 79%, 78% 93%, 63% 91%,
    50% 100%, 37% 91%, 22% 93%, 18% 79%, 4% 74%, 8% 60%,
    0% 47%, 8% 36%, 5% 22%, 18% 17%, 24% 4%, 37% 7%);
}
.seal-inner {
  position: relative;
  z-index: 1;
  width: 104px; height: 104px;
  border: 2px solid var(--or);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.seal-inner .gj {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
}
.seal-inner .gj-num { font-size: 16px; color: var(--or-soft); }
.seal-inner .gj-sig {
  font-family: var(--cursive);
  font-size: 32px;
  color: var(--or-soft);
  line-height: 1;
  margin-top: 1px;
  text-transform: none;
}

/* ---------- 13. Footer ---------- */
.footer {
  background: var(--bordeaux-sombre);
  color: #fff;
  padding: 44px 24px;
  text-align: center;
}
.footer-wrap {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer em { color: inherit; font-weight: 600; font-style: normal; }
.footer-logo {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--or-soft);
  margin: 0;
}
.footer-tagline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  margin: 6px 0 0;
}
.footer-addr {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.footer-contact {
  font-family: var(--sans);
  font-size: 13px;
  color: #fff;
}
.footer-contact a { color: var(--or-soft); text-decoration: none; font-weight: 600; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.82);
}
.footer-legal a { text-decoration: none; transition: color .15s ease; }
.footer-legal a:hover { color: var(--or-soft); text-decoration: underline; }
.footer-disclaimer {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 360px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.72);
}
.footer-divider {
  width: 40px; height: 1px;
  background: rgba(201,162,74,0.4);
  margin: 4px auto;
  border: none;
}

/* ---------- Scroll fade-in ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .cta { transition: none; }
}

/* ============================================================
   Story V2 — « Avant toi » (article continu, photos 30%)
   Namespacé sous .story-v2 — n'affecte rien d'autre.
   ============================================================ */
.story-v2 {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 44px 24px 52px;
}
.story-v2 .sv-eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 12px;
}
.story-v2 .sv-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bordeaux);
  margin: 0 0 24px;
  text-wrap: balance;
}
.story-v2 p {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.7;
  color: #000;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.story-v2 p em { font-style: italic; }
.story-v2 .sv-key {
  font-weight: 700;
  font-size: 17.5px;
  color: var(--bordeaux);
}
.story-v2 .sv-diva {
  font-style: italic;
  color: #9c7b22;
}
.story-v2 .sv-diva .sv-src {
  font-style: normal;
  font-weight: 700;
}
.story-v2 .sv-beat { overflow: hidden; }
.story-v2 .sv-beat img {
  width: 30%;
  height: auto;
  display: block;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(122, 31, 43, 0.16);
}
.story-v2 .sv-beat img.sv-left {
  float: left;
  margin: 4px 18px 8px 0;
  shape-outside: inset(0 round 3px);
}
.story-v2 .sv-beat img.sv-right {
  float: right;
  margin: 4px 0 8px 18px;
  shape-outside: inset(0 round 3px);
}
.story-v2 .sv-sign {
  font-family: 'Mr Dafoe', cursive;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.9;
  color: var(--bordeaux);
  margin: 18px 0 0;
  transform: rotate(-5deg);
  transform-origin: left center;
}
