/* ===================================================================
   MARY FLEUREAU — Styles spécifiques aux PAGES ROMAN (gabarit)
   À charger APRÈS styles.css. Ne redéfinit ni la nav, ni le footer,
   ni les boutons : uniquement les blocs propres aux pages roman.
   =================================================================== */

/* ---------- Hero vente (réutilise .hero / .book de styles.css) ---------- */
.hero-price {
  font-family: var(--display);
  color: var(--ember);
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  letter-spacing: .06em;
  margin: .2rem 0 1.1rem;
}
.hero-pitch { color: var(--bone); margin: 1rem 0; line-height: 1.6; }
.hero-quote { color: var(--bone-dim); font-style: italic; margin: 1rem 0 1.6rem; }
.hero-quote cite { color: var(--ember); font-style: normal; }

/* ---------- L'histoire (synopsis) ---------- */
.story {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.story-text p { color: var(--bone); margin-bottom: .9rem; line-height: 1.7; }
.story-text i, .story-text em { color: var(--bone-dim); }

/* Pitch « Cinq amies sont sur un bateau… » : resserré et plus petit */
.story-pitch {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem);
  letter-spacing: -.01em; word-spacing: -.04em; line-height: 1.4;
  color: var(--bone) !important; margin-bottom: 1.4rem !important;
}

/* Paragraphe de clôture (après le séparateur) : gris italique, titre du livre en gras */
.story-text hr + p { color: var(--bone-dim); font-style: italic; }
.story-text hr + p i, .story-text hr + p em { color: var(--bone-dim); font-style: normal; font-weight: 700; }

/* Image d'extrait ENTIÈRE (jamais rognée), centrée, avec le bouton posé dessus */
.story-aside { position: relative; }
.story-aside img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.story-aside .btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: rgba(16,15,13,.78); backdrop-filter: blur(2px);
  border: 2px solid var(--ember); color: var(--ember);
}
.story-aside .btn:hover {
  background: rgba(16,15,13,.92);
  box-shadow: 0 0 24px rgba(246,201,69,.35);
  transform: translate(-50%, -50%) scale(1.05);
}

.sep { border: none; border-top: 1px solid var(--line); width: 55%; margin: 2.2rem auto 1.6rem; }
/* Paragraphe de clôture déplacé SOUS la grille : gris italique centré, titre du livre en gras */
.story-closing { color: var(--bone-dim); font-style: italic; max-width: 100%; margin: 0 auto; text-align: left; line-height: 1.7; }
.story-closing strong { color: var(--bone-dim); font-weight: 700; font-style: normal; }
@media (max-width: 760px) {
  .story { grid-template-columns: 1fr; }
  .story-aside { max-width: 360px; margin-inline: auto; }
  .story-aside img { height: auto; }
}

/* ---------- Pourquoi ce roman ---------- */
.pourquoi {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: stretch;
}
.pourquoi-portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.pourquoi-text p { color: var(--bone); margin-bottom: 1rem; line-height: 1.7; }
.pourquoi-text i, .pourquoi-text em, .pourquoi-text u { color: var(--bone-dim); }
.signature { width: 190px; max-width: 60%; margin-top: 1.2rem; }
@media (max-width: 760px) {
  .pourquoi { grid-template-columns: 1fr; }
  .pourquoi-portrait { max-width: 320px; }
  .pourquoi-portrait img { height: auto; }
}

/* ---------- Avis ---------- */
.avis-platforms {
  display: flex; flex-wrap: wrap; gap: .8rem;
  justify-content: center; align-items: center; text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.avis-platforms a {
  font-family: var(--display); letter-spacing: .12em; text-transform: uppercase;
  font-size: var(--fs-label); color: var(--bone);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: .7em 1.2em; transition: border-color .2s ease, color .2s ease;
}
.avis-platforms a:hover { border-color: var(--ember); color: var(--ember); }

.reviews { columns: 3 300px; column-gap: 0.9rem; }
.review-card {
  break-inside: avoid;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.45rem;
  margin-bottom: 0.9rem;
}
.review-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .5rem; }
.review-avatar {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%;
  background: var(--ink-2); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--display); color: var(--ember); font-size: 1rem;
}
.review-name { font-family: var(--display); letter-spacing: .08em; text-transform: uppercase; color: var(--bone); font-size: 1.1rem; }
.review-stars { color: var(--ember); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .5rem; }
.review-text { color: var(--bone-dim); font-size: clamp(.9rem, .85rem + .2vw, 1.02rem); line-height: 1.55; }
.review-text mark { background: rgba(246,201,69,.22); color: var(--bone); }
@media (max-width: 900px) { .reviews { columns: 2 260px; } }
@media (max-width: 560px) { .reviews { columns: 1; } }

/* ---------- Bandeau CTA bas de page ---------- */
.cta-band {
  text-align: center; border: 1px solid var(--line); border-radius: var(--radius);
  background: radial-gradient(60% 100% at 50% 0%, rgba(246,201,69,.10), transparent 60%), var(--ink-2);
  padding: clamp(2.5rem, 6vw, 4rem);
}
.cta-band h2 { font-size: var(--fs-h2); color: var(--bone); margin-bottom: 1.4rem; }
.cta-band .hero-cta { justify-content: center; }

/* ===================================================================
   PAGE ROMAN — version « vendeuse » (sections additionnelles)
   =================================================================== */

/* Hero : preuve sociale sous le prix */
.hero-social { display: flex; align-items: center; gap: .5rem; margin: -.4rem 0 1rem; color: var(--bone-dim); font-size: var(--fs-small); }
.hero-social .stars { color: var(--ember); letter-spacing: 2px; }

/* « Est-ce pour vous ? » */
.selling-points { list-style: none; display: grid; gap: 1rem; max-width: 760px; }
.selling-points li { display: flex; gap: .8rem; align-items: flex-start; color: var(--bone); font-size: var(--fs-h3); line-height: 1.4; }
.selling-points li::before {
  content: "\2713"; color: var(--ink); background: var(--ember);
  font-family: var(--display); font-size: .8em; line-height: 1;
  flex: 0 0 auto; width: 1.6em; height: 1.6em; border-radius: 50%;
  display: grid; place-items: center; margin-top: .15em;
}
.selling-points strong { color: var(--ember); font-weight: inherit; }

/* Pitch court (accroche en lead) */
.pitch-lead { font-family: var(--title); text-transform: uppercase; color: var(--bone); font-size: var(--fs-h3); line-height: 1.25; margin-bottom: 1.6rem; }
.pitch-lead .accent { color: var(--blood); }

/* Citation choc */
.pullquote { text-align: center; padding-block: clamp(1rem, 3vw, 2rem); }
.pullquote p {
  font-family: var(--title); text-transform: uppercase;
  font-size: clamp(1.5rem, 1rem + 2.6vw, 2.8rem); line-height: 1.18;
  color: var(--bone); max-width: 32ch; margin: 0 auto;
}
.pullquote p .accent { color: var(--blood); }

/* Accroche + argument (section « pour vous ») */
.argument-hook {
  font-family: var(--title); text-transform: uppercase;
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.6rem); line-height: 1.2;
  color: var(--bone); text-align: center; max-width: 32ch; margin: 0 auto 5rem;
}
.argument-hook .accent { color: var(--blood); }
.argument-text {
  text-align: center; max-width: 62ch; margin: 0 auto;
  color: var(--bone-dim); font-size: var(--fs-h3); line-height: 1.6;
}
.argument-text strong { color: var(--bone); font-weight: 700; }

/* Témoignages punchy */
.punch { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.punch blockquote {
  background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--ember);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
}
.punch p { font-style: italic; color: var(--bone); margin-bottom: .7rem; line-height: 1.5; }
.punch cite { font-family: var(--display); letter-spacing: .09em; text-transform: uppercase; color: var(--ember); font-style: normal; font-size: var(--fs-small); }

/* Barre d'achat collante (mobile uniquement) */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(16,15,13,.96); border-top: 1px solid var(--line);
  padding: .65rem clamp(1rem, 4vw, 1.5rem); backdrop-filter: blur(8px);
}
.buybar .bb-info { display: flex; flex-direction: column; line-height: 1.15; }
.buybar .bb-title { font-family: var(--title); text-transform: uppercase; color: var(--bone); font-size: 1.05rem; }
.buybar .bb-price { font-family: var(--display); color: var(--ember); font-size: .82rem; letter-spacing: .05em; }
.buybar .btn { padding: .75em 1.4em; white-space: nowrap; }
@media (max-width: 760px) {
  .buybar { display: flex; }
  body { padding-bottom: 76px; }
}
