/*!
Theme Name: EtherikMind
Theme URI: https://etherikmind.com/
Author: Valentino.me
Author URI: https://etherikmind.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: etherikmind
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
/* ══════════════════════════════════════════
   ETHERIK MIND — SYSTÈME DE DESIGN
   DA: Noir & Or · Luxe Ésotérique · Editorial
   Psychologie : Désir · Rareté · Identité · Preuve
══════════════════════════════════════════ */
:root {
  --noir: #0a0806;
  --noir-soft: #13100d;
  --noir-mid: #1c1812;
  --noir-warm: #2a2318;
  --or: #c4973a;
  --or-bright: #d9ae58;
  --or-pale: #edd89a;
  --or-dim: #8b6a26;
  --creme: #f5efe4;
  --creme-dark: #ede4d5;
  --creme-deep: #ddd0bc;
  --encre: #1e1a14;
  --texte: #2c2519;
  --texte-soft: #5c4f3a;
  --texte-muted: #8c7a60;
  --blanc: #fffdf8;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Raleway", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* FIX #1 — hauteur de la barre d'annonce utilisée partout */
  --announce-h: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--noir);
  color: var(--creme);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: var(--sans);
}
::selection {
  background: rgba(196, 151, 58, 0.25);
  color: var(--or-bright);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-track {
  background: var(--noir);
}
::-webkit-scrollbar-thumb {
  background: var(--or-dim);
}

/* ── GRAIN ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
   FIX #2 — role="banner" retiré (doit être unique sur la page)
   FIX #3 — hauteur fixée via var pour cohérence avec la nav
══════════════════════════════════════════ */
.announce {
  background: var(--or);
  padding: 10px 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--noir);
  font-weight: 500;
  position: relative;
  z-index: 200;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.announce span {
  opacity: 0.7;
  margin: 0 12px;
}

/* ══════════════════════════════════════════
   NAVIGATION
   FIX #4 — nav décalée sous la barre d'annonce au chargement
   FIX #5 — menu hamburger ajouté pour mobile
══════════════════════════════════════════ */
nav {
  position: fixed;
  /* FIX #4 : top = hauteur announce bar, JS ajuste au scroll */
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 76px;
  transition:
    background 0.6s var(--ease),
    border-color 0.6s,
    top 0.3s var(--ease);
}
nav.solid {
  top: 0;
  background: rgba(10, 8, 6, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196, 151, 58, 0.15);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--creme);
}
.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.logo em {
  color: var(--or);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.5);
  transition: color 0.3s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--or);
  border-bottom-color: var(--or);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border: 1px solid var(--or);
  color: var(--or);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 1px;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.nav-cta:hover {
  background: var(--or);
  color: var(--noir);
  transform: translateY(-1px);
}

/* FIX #5 — Hamburger menu mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--creme);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Menu mobile déroulant */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--announce-h) + 76px);
  left: 0;
  right: 0;
  background: rgba(10, 8, 6, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196, 151, 58, 0.15);
  padding: 24px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
}
nav.solid ~ .nav-mobile {
  top: 76px;
}
.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.6);
  border-bottom: 1px solid rgba(196, 151, 58, 0.08);
  transition: color 0.3s;
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  color: var(--or);
}

/* ══════════════════════════════════════════
   HERO
   FIX #6 — padding-top ajusté pour nav + announce
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* FIX #6 : 36px announce + 76px nav + 48px marge = 160px */
  padding: 160px 40px 120px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(196, 151, 58, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 50% 100%,
      rgba(196, 151, 58, 0.04) 0%,
      transparent 60%
    ),
    var(--noir);
}

.hero-geo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.geo-svg {
  width: min(800px, 90vw);
  height: min(800px, 90vw);
  opacity: 0.055;
  animation: geoRotate 120s linear infinite;
}
.geo-svg2 {
  position: absolute;
  width: min(500px, 60vw);
  height: min(500px, 60vw);
  opacity: 0.04;
  animation: geoRotate 80s linear infinite reverse;
}
@keyframes geoRotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--or));
}
.hero-eyebrow::after {
  background: linear-gradient(to left, transparent, var(--or));
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--creme);
  margin-bottom: 8px;
  opacity: 0;
  animation: riseIn 1.2s var(--ease) 0.4s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--or);
}

.hero-h2 {
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--texte-muted);
  letter-spacing: 0.02em;
  margin-top: 16px;
  margin-bottom: 40px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.65s forwards;
}

.hero-identity {
  background: rgba(196, 151, 58, 0.07);
  border: 1px solid rgba(196, 151, 58, 0.15);
  border-radius: 2px;
  padding: 20px 36px;
  max-width: 620px;
  margin: 0 auto 52px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.85s forwards;
}
.hero-identity p {
  font-size: 14px;
  color: rgba(245, 239, 228, 0.65);
  line-height: 1.85;
  font-style: italic;
}
.hero-identity p strong {
  color: var(--or-pale);
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1s var(--ease) 1.05s forwards;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--or);
  color: var(--noir);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 1px;
  transition:
    background 0.3s,
    transform 0.35s var(--ease-spring),
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-hero:hover {
  background: var(--or-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(196, 151, 58, 0.35);
}
.btn-hero:hover::after {
  opacity: 1;
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border: 1px solid rgba(245, 239, 228, 0.2);
  color: rgba(245, 239, 228, 0.55);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 1px;
  transition:
    border-color 0.3s,
    color 0.3s,
    transform 0.3s;
}
.btn-ghost-hero:hover {
  border-color: var(--or);
  color: var(--or);
  transform: translateY(-4px);
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 1.25s forwards;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(245, 239, 228, 0.35);
  letter-spacing: 0.06em;
}
.proof-item svg {
  color: var(--or);
  opacity: 0.7;
  flex-shrink: 0;
}
.proof-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(196, 151, 58, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 2s forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(196, 151, 58, 0.5);
}
.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}

/* ══════════════════════════════════════════
   TRUST
══════════════════════════════════════════ */
.trust {
  background: var(--noir-soft);
  border-top: 1px solid rgba(196, 151, 58, 0.1);
  border-bottom: 1px solid rgba(196, 151, 58, 0.1);
  padding: 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(196, 151, 58, 0.08);
  transition: background 0.3s;
}
.trust-item:last-child {
  border-right: none;
}
.trust-item:hover {
  background: rgba(196, 151, 58, 0.04);
}
.trust-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(196, 151, 58, 0.1);
  border: 1px solid rgba(196, 151, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--or);
}
.trust-label strong {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--creme);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.trust-label span {
  font-size: 11px;
  color: var(--texte-muted);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════ */
.s {
  padding: 120px 64px;
  position: relative;
}
.s-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.s-light {
  background: var(--creme);
}
.s-light .eyebrow {
  color: var(--or-dim);
}
.s-light .s-title {
  color: var(--texte);
}
.s-light .s-sub {
  color: var(--texte-soft);
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.s-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--creme);
  margin-bottom: 20px;
}
.s-title em {
  font-style: italic;
  color: var(--or);
}
.s-title strong {
  font-weight: 700;
}

.s-sub {
  font-size: 16px;
  color: rgba(245, 239, 228, 0.5);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 72px;
}

/* Reveal */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}
.rv.d1 {
  transition-delay: 0.1s;
}
.rv.d2 {
  transition-delay: 0.2s;
}
.rv.d3 {
  transition-delay: 0.3s;
}
.rv.d4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
   DOULEUR → SOLUTION
══════════════════════════════════════════ */
.pain {
  background: var(--noir-soft);
  border-top: 1px solid rgba(196, 151, 58, 0.08);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pain-statements {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(196, 151, 58, 0.08);
  transition: border-color 0.3s;
}
.pain-item:first-child {
  border-top: 1px solid rgba(196, 151, 58, 0.08);
}
.pain-item:hover {
  border-color: rgba(196, 151, 58, 0.2);
}
.pain-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(196, 151, 58, 0.12);
  border: 1px solid var(--or-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-check svg {
  color: var(--or);
}
.pain-item p {
  font-size: 15px;
  color: rgba(245, 239, 228, 0.65);
  line-height: 1.75;
  font-style: italic;
}
.pain-item p strong {
  color: var(--creme);
  font-weight: 400;
  font-style: normal;
}

.pain-solution-card {
  background: var(--noir-warm);
  border: 1px solid rgba(196, 151, 58, 0.2);
  border-radius: 3px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.pain-solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--or-dim),
    var(--or),
    var(--or-dim)
  );
}
.pain-solution-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 28px;
  line-height: 1.3;
}
.pain-solution-card h3 em {
  font-style: italic;
  color: var(--or);
}
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(245, 239, 228, 0.65);
  line-height: 1.75;
}
.sol-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--or);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  margin-top: -2px;
}

/* ══════════════════════════════════════════
   PRODUIT VEDETTE
══════════════════════════════════════════ */
.product-hero {
  background: var(--creme);
  overflow: hidden;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 680px;
}
.product-visual {
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
}
.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    rgba(196, 151, 58, 0.06) 0%,
    transparent 70%
  );
}
.book-3d {
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-18deg) rotateX(4deg);
  transition: transform 0.8s var(--ease);
  transform-style: preserve-3d;
}
.book-3d:hover {
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) translateY(-12px);
}
.book-front {
  width: 220px;
  background: var(--noir-warm);
  border-radius: 2px 8px 8px 2px;
  box-shadow:
    -12px 18px 60px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(196, 151, 58, 0.15),
    6px 0 24px rgba(196, 151, 58, 0.08);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
}
.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  background: linear-gradient(135deg, var(--or-dim), var(--or), var(--or-dim));
  border-radius: 2px 0 0 2px;
}
.book-front-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  opacity: 0.04;
}
.book-vol {
  font-size: 8px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 32px;
  font-family: var(--sans);
}
.book-symbol {
  display: block;
  margin: 0 auto 28px;
}
.book-title-front {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--creme);
  line-height: 1.25;
  margin-bottom: 16px;
}
.book-line {
  width: 36px;
  height: 1px;
  background: var(--or);
  opacity: 0.5;
  margin: 20px 0;
}
.book-pages-label {
  font-size: 10px;
  color: rgba(245, 239, 228, 0.3);
  letter-spacing: 0.12em;
}
.book-shadow {
  position: absolute;
  bottom: -20px;
  left: 8px;
  right: -28px;
  height: 20px;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(12px);
  border-radius: 50%;
}
.book-badge-price {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--or);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(196, 151, 58, 0.45);
  z-index: 10;
}
.book-badge-price span:first-child {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--noir);
  line-height: 1;
}
.book-badge-price span:last-child {
  font-size: 8px;
  letter-spacing: 0.1em;
  color: rgba(10, 8, 6, 0.6);
  text-transform: uppercase;
}

.product-content {
  background: var(--creme);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 151, 58, 0.12);
  border: 1px solid rgba(196, 151, 58, 0.25);
  border-radius: 2px;
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or-dim);
  margin-bottom: 28px;
  align-self: flex-start;
}
.product-main-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--texte);
  margin-bottom: 10px;
}
.product-sub-title {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--texte-muted);
  margin-bottom: 28px;
}
.product-teaser {
  font-size: 15px;
  color: var(--texte-soft);
  line-height: 1.95;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 2px solid rgba(196, 151, 58, 0.35);
}
.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
}
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--texte-soft);
  line-height: 1.7;
}
.ben-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--or-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ben-dot::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--or);
}

.price-block {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}
.price-main {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  color: var(--texte);
  line-height: 1;
}
.price-detail {
  padding-bottom: 6px;
}
.price-detail .was {
  font-size: 14px;
  color: var(--texte-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-detail .save {
  font-size: 12px;
  background: rgba(196, 151, 58, 0.15);
  border: 1px solid rgba(196, 151, 58, 0.3);
  border-radius: 2px;
  padding: 2px 10px;
  color: var(--or-dim);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-buy-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--texte);
  color: var(--creme);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 1px;
  transition:
    background 0.3s,
    transform 0.35s var(--ease-spring),
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-buy-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--or);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn-buy-main:hover::before {
  transform: translateX(0);
}
.btn-buy-main span {
  position: relative;
  z-index: 1;
}
.btn-buy-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28, 24, 18, 0.3);
}

.btn-buy-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  border: 1px solid rgba(28, 24, 18, 0.2);
  color: var(--texte-muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 1px;
  transition:
    border-color 0.3s,
    color 0.3s,
    transform 0.3s;
}
.btn-buy-alt:hover {
  border-color: var(--texte);
  color: var(--texte);
  transform: translateY(-3px);
}

.secure-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--texte-muted);
  letter-spacing: 0.04em;
}
.secure-badge svg {
  color: var(--or-dim);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   COLLECTION LIVRES
══════════════════════════════════════════ */
.collection {
  background: var(--noir);
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(196, 151, 58, 0.1);
}
.book-card-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(196, 151, 58, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.4s var(--ease);
  overflow: hidden;
}
.book-card-item:last-child {
  border-right: none;
}
.book-card-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--or);
  transition: height 0.4s var(--ease);
}
.book-card-item:hover::after {
  height: 2px;
}
.book-card-item:hover {
  background: rgba(196, 151, 58, 0.04);
}
.bk-num {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 400;
  color: rgba(196, 151, 58, 0.12);
  line-height: 0.9;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.book-card-item:hover .bk-num {
  color: rgba(196, 151, 58, 0.22);
}
.bk-cat {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}
.bk-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--creme);
  line-height: 1.3;
  margin-bottom: 14px;
  flex: 1;
}
.bk-desc {
  font-size: 13px;
  color: rgba(245, 239, 228, 0.4);
  line-height: 1.8;
  margin-bottom: 32px;
}
.bk-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 151, 58, 0.1);
}
.bk-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--or-bright);
}
.bk-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196, 151, 58, 0.1);
  border: 1px solid rgba(196, 151, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  transition:
    background 0.3s,
    transform 0.4s var(--ease-spring);
}
.bk-btn:hover {
  background: var(--or);
  color: var(--noir);
  transform: scale(1.15) rotate(8deg);
}

/* ══════════════════════════════════════════
   EXTRAIT / PREUVE DE CONTENU
══════════════════════════════════════════ */
.preview {
  background: var(--noir-soft);
}
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.preview-chapters {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chapter-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(196, 151, 58, 0.07);
  cursor: default;
  transition: padding-left 0.3s var(--ease);
}
.chapter-item:hover {
  padding-left: 8px;
}
.chapter-item:first-child {
  border-top: 1px solid rgba(196, 151, 58, 0.07);
}
.ch-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--or-dim);
  opacity: 0.7;
  width: 32px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.ch-text {
  font-size: 14px;
  color: rgba(245, 239, 228, 0.6);
  line-height: 1.5;
}
.ch-text strong {
  color: rgba(245, 239, 228, 0.85);
  font-weight: 400;
}
.ch-arrow {
  margin-left: auto;
  color: rgba(196, 151, 58, 0.25);
  font-size: 14px;
  transition: color 0.3s;
}
.chapter-item:hover .ch-arrow {
  color: var(--or);
}

.preview-visual {
  background: var(--noir-warm);
  border: 1px solid rgba(196, 151, 58, 0.12);
  border-radius: 4px;
  padding: 52px 44px;
  position: relative;
}
.preview-visual::before {
  content: "EXTRAIT";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 8px;
  letter-spacing: 0.4em;
  color: rgba(196, 151, 58, 0.3);
  border: 1px solid rgba(196, 151, 58, 0.15);
  padding: 4px 10px;
  border-radius: 1px;
}
.preview-page-num {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--or-dim);
  opacity: 0.5;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}
.preview-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(245, 239, 228, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
}
.preview-text::before {
  content: '"';
  font-size: 80px;
  line-height: 0.7;
  color: rgba(196, 151, 58, 0.12);
  position: absolute;
  top: 0;
  left: -16px;
  font-style: normal;
}
.preview-blur {
  background: linear-gradient(to bottom, transparent 0%, var(--noir-warm) 70%);
  height: 80px;
  margin-top: -20px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 12px;
}
.preview-cta-small {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  border-bottom: 1px solid rgba(196, 151, 58, 0.3);
  padding-bottom: 2px;
  cursor: pointer;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.preview-cta-small:hover {
  color: var(--or-bright);
  border-color: var(--or);
}

/* ══════════════════════════════════════════
   TÉMOIGNAGES
══════════════════════════════════════════ */
.social {
  background: var(--creme);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--blanc);
  border: 1px solid rgba(196, 151, 58, 0.12);
  border-radius: 3px;
  padding: 40px 36px;
  transition:
    border-color 0.3s,
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.testi-card:hover {
  border-color: rgba(196, 151, 58, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(196, 151, 58, 0.08);
}
.testi-stars {
  color: var(--or);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testi-text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--texte-soft);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196, 151, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--or-dim);
  font-weight: 500;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--texte);
  margin-bottom: 2px;
}
.testi-role {
  font-size: 11px;
  color: var(--texte-muted);
  letter-spacing: 0.04em;
}
.testi-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--or-dim);
}

/* ══════════════════════════════════════════
   MANIFESTE / À PROPOS
══════════════════════════════════════════ */
.about {
  background: var(--noir-mid);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-geo-wrap {
  position: sticky;
  top: 120px;
}
.about-p {
  font-size: 16px;
  color: rgba(245, 239, 228, 0.55);
  line-height: 2;
  margin-bottom: 24px;
}
.about-p strong {
  color: rgba(245, 239, 228, 0.85);
  font-weight: 400;
}
.about-quote {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--or-pale);
  line-height: 1.5;
  padding: 28px 36px;
  border-left: 2px solid var(--or);
  margin: 44px 0;
}
.about-sig {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--or);
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-sig::before {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--or-dim);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(196, 151, 58, 0.12);
  margin-top: 60px;
}
.stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(196, 151, 58, 0.12);
  border-bottom: 1px solid rgba(196, 151, 58, 0.12);
}
.stat:nth-child(2n) {
  border-right: none;
}
.stat:nth-child(n + 3) {
  border-bottom: none;
}
.stat-n {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--creme);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-n em {
  color: var(--or);
  font-style: normal;
}
.stat-l {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texte-muted);
}

/* ══════════════════════════════════════════
   URGENCE
══════════════════════════════════════════ */
.urgency {
  background: var(--or);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='200,10 390,105 390,295 200,390 10,295 10,105' fill='none' stroke='rgba(10,8,6,0.06)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='rgba(10,8,6,0.04)' stroke-width='1'/%3E%3C/svg%3E")
    center/600px no-repeat;
  pointer-events: none;
}
.urgency-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
}
.urgency h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--noir);
  line-height: 1.15;
  margin-bottom: 16px;
}
.urgency h2 strong {
  font-weight: 700;
}
.urgency p {
  font-size: 15px;
  color: rgba(10, 8, 6, 0.6);
  line-height: 1.8;
  max-width: 520px;
}
.btn-urgency {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--noir);
  color: var(--or);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 1px;
  transition:
    background 0.3s,
    transform 0.35s var(--ease-spring),
    box-shadow 0.3s;
  white-space: nowrap;
}
.btn-urgency:hover {
  background: var(--encre);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 8, 6, 0.4);
}

/* ══════════════════════════════════════════
   FAQ
   FIX #7 — max-height augmenté pour ne pas tronquer les réponses longues
══════════════════════════════════════════ */
.faq {
  background: var(--noir-soft);
}
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(196, 151, 58, 0.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: rgba(245, 239, 228, 0.8);
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--or);
}
.faq-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(196, 151, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(196, 151, 58, 0.5);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.4s var(--ease),
    color 0.3s;
}
.faq-item.open .faq-ico {
  background: var(--or);
  border-color: var(--or);
  color: var(--noir);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  /* FIX #7 : 180px trop court, on passe à 400px */
  transition: max-height 0.5s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a p {
  font-size: 14px;
  color: rgba(245, 239, 228, 0.45);
  line-height: 1.9;
  padding-bottom: 28px;
}

/* ══════════════════════════════════════════
   FOOTER
   FIX #8 — ajout du style manquant sur les h5 du footer
══════════════════════════════════════════ */
footer {
  background: var(--noir);
  border-top: 1px solid rgba(196, 151, 58, 0.08);
  padding: 80px 64px 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(196, 151, 58, 0.07);
  margin-bottom: 40px;
}
.footer-brand-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--creme);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 16px;
}
.footer-brand-logo em {
  color: var(--or);
  font-style: normal;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(245, 239, 228, 0.3);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 28px;
}

/* FIX #8 — h5 footer explicitement stylisés */
.f-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.35);
  margin-bottom: 20px;
}
.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-col a {
  font-size: 13px;
  color: rgba(245, 239, 228, 0.4);
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.f-col a:hover {
  color: var(--or);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(245, 239, 228, 0.18);
  letter-spacing: 0.06em;
}
.footer-right {
  display: flex;
  gap: 24px;
}
.footer-right a {
  font-size: 12px;
  color: rgba(245, 239, 228, 0.2);
  transition: color 0.2s;
}
.footer-right a:hover {
  color: rgba(245, 239, 228, 0.5);
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   FIX #9 — nav-burger affiché sur mobile
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .s {
    padding: 80px 32px;
  }
  nav {
    padding: 0 32px;
  }
  .nav-links {
    display: none;
  }
  .pain-grid,
  .product-hero-grid,
  .preview-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .books-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .product-visual {
    min-height: 420px;
  }
  .urgency-inner {
    grid-template-columns: 1fr;
  }
  .about-geo-wrap {
    position: relative;
    top: 0;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  /* FIX #9 — affichage du burger sur mobile */
  .nav-burger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }
  .s {
    padding: 64px 20px;
  }
  .hero {
    padding: 130px 24px 100px;
  }
  .announce {
    font-size: 11px;
    padding: 8px 16px;
  }
  .trust-inner {
    flex-direction: column;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(196, 151, 58, 0.08);
  }
  .books-grid {
    grid-template-columns: 1fr;
  }
  .book-card-item {
    border-right: none;
    border-bottom: 1px solid rgba(196, 151, 58, 0.1);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .urgency {
    padding: 48px 24px;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none;
  }
}
