
/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  --cream-page:    #FFF9EF;
  --cream:         #F3EFE6;
  --cream-deep:    #E8E1D3;

  --ink:           #2A1A08;
  --text:          #5B5046;
  --text-soft:     #7A6A55;
  --text-mute:     #9B8B75;

  --gold:          #B8924A;
  --gold-soft:     #C9A55A;
  --gold-dim:      rgba(184,146,74,0.45);
  --gold-border:   rgba(184,146,74,0.2);

  --red-accent:    #8B3A2A;
  --red-bright:    #9B4535;
  --red-deep:      #7A2E20;

  --dark-bg:       #3A2516;
  --dark-deep:     #1E1510;
  --dark-footer:   #2D1F14;
  --dark-text:     #E0C6A3;
  --dark-text-mute:#C4A67A;

  --ff-serif:      "Cormorant Garamond", "Cormorant", Georgia, serif;
  --ff-sans:       "Karla", ui-sans-serif, system-ui, sans-serif;
  --ff-caps:       "Montserrat", "Karla", ui-sans-serif, system-ui, sans-serif;

  --fs-xs:   clamp(0.6875rem, 0.67rem + 0.08vw, 0.75rem);
  --fs-sm:   clamp(0.8125rem, 0.79rem + 0.1vw, 0.875rem);
  --fs-base: clamp(0.9375rem, 0.92rem + 0.1vw, 1rem);
  --fs-md:   clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --fs-lg:   clamp(1.0625rem, 1.03rem + 0.15vw, 1.1875rem);
  --fs-xl:   clamp(1.1875rem, 1.1rem + 0.35vw, 1.4rem);
  --fs-2xl:  clamp(1.5rem, 1.35rem + 0.7vw, 1.9rem);
  --fs-3xl:  clamp(1.875rem, 1.6rem + 1.3vw, 2.625rem);
  --fs-hero: clamp(2rem, 1.6rem + 1.8vw, 3rem);

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 80px;

  --container: 1090px;
  --container-md: 820px;

  --radius: 6px;
  --radius-sm: 3px;

  --ease: cubic-bezier(.2,.8,.2,1);

  /* Ombre livre — 3 couches : 3e rapprochée pour ne pas déborder de la section */
  --shadow-book:
    drop-shadow(-15px 21px 18px rgba(42,20,8,.2))   /* ambiante : offset réduit */
    drop-shadow(-12px 17px 9px rgba(42,20,8,.22))   /* transition */
    drop-shadow(-7px 10px 4px rgba(42,20,8,.3));    /* contact */
  --shadow-book-sm:
    drop-shadow(-10px 14px 13px rgba(42,20,8,.18))
    drop-shadow(-7px  10px 6px  rgba(42,20,8,.2))
    drop-shadow(-4px  6px  3px  rgba(42,20,8,.28));
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

/* IMPORTANT : `scroll-behavior` LAISSÉ À `auto`.
   Ne PAS passer à `smooth` : ça entre en conflit avec le système
   d'inertie molette de landing4.js (chaque `window.scrollTo()` du
   loop d'inertia déclenche un smooth-scroll natif → défilement
   saccadé et lent). Le smooth scroll est géré entièrement par JS
   (landing4.js pour molette + ancres same-page,
    eds_snippet "smooth-scroll-global..." pour ancres cross-page). */
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  font-weight: 400;
  color: var(--text);
  background: var(--cream-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga";
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; touch-action: manipulation; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; touch-action: manipulation; }
button, a, input, textarea { -webkit-tap-highlight-color: rgba(139,58,42,.2); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--red-accent); color: var(--cream-page); }

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

.skip-link {
  position: absolute;
  top: -100px; left: var(--sp-4);
  background: var(--ink); color: var(--cream-page);
  padding: 0.75em 1.25em; z-index: 200;
  font-weight: 600; border-radius: 2px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

/* ============================================================
   3. PRIMITIVES / LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
/* Règle site : sous 1280px (hors mobile), padding latéral à 48px */
@media (max-width: 1279px) and (min-width: 601px) {
  .container { padding-inline: 48px; }
}
.container--md { max-width: var(--container-md); }

section {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
}

/* Eyebrow */
.eyebrow {
  font-family: var(--ff-caps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Badge genre */
.badge {
  display: inline-block;
  font-family: var(--ff-caps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0.36em 1.09em;
  border-radius: var(--radius);
  background: var(--cream);
}

/* Fleuron solo — un SEUL emplacement stratégique */
.fleuron-break {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(1.5rem, 4vw, 3rem);
  background: var(--cream-page);
}
.fleuron-break img {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  opacity: 0.72;
  filter: sepia(.15) hue-rotate(5deg);
}

/* ============================================================
   4. BOUTONS — dégradés cohérents
   ============================================================ */
/* Reset pour que <button class="btn"> s'aligne sur <a class="btn"> */
/* `color: inherit` et `font: inherit` ont été RETIRÉS : avec
   spécificité 0,1,1, ils écrasaient `.btn { font-size: 13px;
   padding: 1em 2em }` (0,1,0) et `.btn-primary { color: ... }`
   (0,1,0) → bouton à 16px noir au lieu de 13px crème.
   Seul `background: transparent` (override du Kadence btn-bg)
   et `appearance: none` (reset UA) restent utiles. */
button.btn {
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
button.btn:focus { outline: none; }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--ff-caps);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1em 2em;
  border: 0 none;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
  line-height: 1.2;
  /* Sortie hover : revert rapide, pas de delay */
  transition:
    transform .3s ease-in-out,
    box-shadow .3s ease-in-out,
    border-color .3s ease-in-out;
}
/* Pseudo-element qui porte le background — cible isolée du filter:brightness */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transition: filter .3s ease-in-out, box-shadow .3s ease-in-out;
}
/* Entrée hover : tous les effets démarrent simultanément 150ms après */
.btn:hover {
  transform: translateY(-1px);
  transition:
    transform .3s ease-in-out .15s,
    box-shadow .3s ease-in-out .15s,
    border-color .3s ease-in-out .15s;
}
.btn:hover::before {
  transition: filter .3s ease-in-out .15s, box-shadow .3s ease-in-out .15s;
}
.btn:active { transform: translateY(0); }

/* Bouton rouge */
.btn-primary {
  color: var(--cream-page);
  box-shadow:
    -0.07em 0.10em 0.24em rgba(42,20,8,.22),
    -0.20em 0.29em 0.68em rgba(42,20,8,.16);
}
.btn-primary::before {
  background: #8B3A2A;
  box-shadow:
    inset -0.18em 0.42em 0.38em -0.18em rgba(255,255,255,.40),
    inset  0.18em -0.42em 0.38em -0.18em rgba(0,0,0,.22);
}
.btn-primary:hover::before {
  filter: brightness(1.06);
  box-shadow:
    inset -0.18em 0.42em 0.38em -0.18em rgba(255,255,255,.48),
    inset  0.18em -0.42em 0.38em -0.18em rgba(0,0,0,.28);
}
.hero-cta:hover::before { filter: brightness(1.03); }
.btn-primary:hover {
  box-shadow:
    -0.10em 0.15em 0.29em rgba(42,20,8,.25),
    -0.27em 0.39em 0.87em rgba(42,20,8,.22);
}

/* Bouton blanc */
.btn-ghost {
  color: rgba(139,58,42,1);
  border: none;
  box-shadow:
    -0.07em 0.10em 0.34em rgba(42,20,8,.10),
    -0.20em 0.29em 0.97em rgba(42,20,8,.06);
}
.btn-ghost::before {
  background: #f0e8d5;
  box-shadow:
    inset -0.18em 0.42em 0.38em -0.18em rgba(255,255,255,.40),
    inset  0.18em -0.42em 0.38em -0.18em rgba(80,55,25,.10);
}
.btn-ghost:hover::before {
  filter: brightness(1.012);
  box-shadow:
    inset -0.18em 0.42em 0.38em -0.18em rgba(255,255,255,.48),
    inset  0.18em -0.42em 0.38em -0.18em rgba(80,55,25,.13);
}
.btn-ghost:hover {
  box-shadow:
    -0.14em 0.20em 0.49em rgba(42,20,8,.14),
    -0.34em 0.49em 1.36em rgba(42,20,8,.10);
}

.btn-link {
  font-family: var(--ff-caps);
  font-weight: 600;
  color: var(--red-accent);
  padding: 0.3em 0;
  border-bottom: 1.5px solid currentColor;
  letter-spacing: 0.08em;
  font-size: 11px;
  text-transform: uppercase;
  transition: color .3s var(--ease), letter-spacing .3s var(--ease);
}
.btn-link:hover {
  color: var(--red-deep);
  letter-spacing: 0.11em;
}

.btn .arrow { display: inline-block; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   5. HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  background: var(--cream);
  box-shadow: 0 4px 14px rgba(42,26,8,.12);
  transition: box-shadow .3s var(--ease);
}
#vedette, #catalogue, #maison, #auteurs, #contact {
  scroll-margin-top: 80px;
}
#vedette {
  scroll-margin-top: 90px;
}
section#maison {
  scroll-margin-top: 160px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-5);
}
.brand {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
}
/* Spécificité bumpée à (0,2,0) pour battre `.woocommerce img`
   (0,1,1) et `.woocommerce-page img` qui forcent height:auto sur
   toutes les pages WC (boutique, produit, panier, commande…). */
.site-header .brand-logo {
  height: 52px;
  width: auto;
  max-width: none;
  display: block;
  transition: height .3s var(--ease);
}
@media (max-width: 480px) {
  .site-header .brand-logo { height: 44px; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}
.nav-list a {
  font-family: var(--ff-caps);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-accent);
  padding: 0.5em 0;
  position: relative;
  transition: color .3s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-list a:hover { color: var(--red-deep); }
.nav-list a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  color: var(--red-accent);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
}
/* Pas d'effet hover/focus/active : juste le mouvement des barres. */
.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:focus-visible,
.nav-toggle:active {
  background: transparent !important;
  box-shadow: none !important;
}
.nav-toggle .bar {
  position: absolute;
  left: 50%;
  width: 25px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: translateX(-50%);
  transition: top .2s ease, opacity .15s ease, transform .4s .2s cubic-bezier(.6, 1.5, .6, 1.05);
}
.nav-toggle .bar:nth-child(1) { top: calc(50% - 7px); }
.nav-toggle .bar:nth-child(2) { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle .bar:nth-child(3) { top: calc(50% + 7px); }

/* État ouvert : barres 1 et 3 collisionnent au centre, puis rotent en X. */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transition: opacity .15s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Cart Kadence : même couleur que les liens du menu (red-accent) */
.site-header .header-cart-button,
.site-header .header-cart-button svg,
.site-header .header-cart-wrap-link,
.site-header .header-cart-wrap-link svg {
  color: var(--red-accent);
  fill: currentColor;
}

@media (max-width: 980px) {
  /* Menu déroulant centré (80% large), animation slide top-to-bottom.
     Le menu reste display:flex même fermé (max-height: 0) pour permettre
     la transition. .is-open ouvre la max-height + padding. */
  html body header.site-header .nav-toggle { display: inline-flex !important; }
  html body header.site-header .nav-list {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 10%;
    width: 80%;
    background: var(--cream);
    border-top: 1px solid var(--gold-border);
    box-shadow: 0 8px 20px rgba(42,26,8,.15);
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--sp-5);
    transition: max-height .35s ease, padding .35s ease;
    align-items: stretch;
    gap: 0;
  }
  html body header.site-header .nav-list.is-open {
    max-height: 360px;
    padding: var(--sp-3) var(--sp-5);
  }
  html body header.site-header .nav-list li { border-bottom: 1px solid var(--gold-border); }
  html body header.site-header .nav-list li:last-child { border-bottom: 0; }
  html body header.site-header .nav-list a { display: block; padding: 0.9em 0; }
}

/* ============================================================
   6. HERO — split texte-image, ombre portée cohérente
   ============================================================ */
/* wrap cream qui reçoit la drop-shadow du hero-inner (papier déchiré) */
.hero {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
  background: var(--cream-page);
}
/* hero-inner = la feuille avec l'image à alpha (bords déchirés) */
.hero-inner {
  position: relative;
  min-height: 85vh;
  padding-top: 110px;
  padding-bottom: 50px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(ellipse 50% 43% at 20% 50%,
      rgba(240,235,227,0.82) 0%,
      rgba(240,235,227,0.82) 35%,
      rgba(240,235,227,0.476) 57%,
      rgba(240,235,227,0.18) 73%,
      rgba(240,235,227,0) 88%),
    url("assets/Hero.webp");
  filter: drop-shadow(0px 6px 18px rgba(0,0,0,0.2));
}
.hero-content {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  position: relative;
}
.hero-text { max-width: 650px; }

/* Tailles et line-height test3 */
.hero-eyebrow {
  font-family: var(--ff-caps);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .15s forwards;
}
.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5.5vw, 54px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  max-width: 650px;
  margin-top: 14px;
  text-shadow: 0.03em 0.03em 0.03em rgba(42,20,8,0.2);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s var(--ease) .4s forwards;
}
.hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 4.5vw, 44px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  max-width: 550px;
  text-shadow: 0.03em 0.03em 0.03em rgba(42,20,8,0.2);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s var(--ease) forwards;
}
.hero-h1 + .hero-sub { animation-delay: .6s; }
.hero-sub + .hero-sub { animation-delay: .8s; }

/* Accent rouge : englobe le verbe + la ponctuation (virgule/point gardent le rouge) */
.hero-accent { color: var(--red-accent); }
.hero-accent em { font-style: italic; font-weight: 500; }

/* CTA hero : padding séparé des autres boutons (rendu différent selon le contexte) */
.hero-cta {
  display: inline-block;
  margin-top: 50px;
  padding: 1.1em 2em 1em;
  opacity: 0;
  animation: heroCta 1s var(--ease) 1s forwards;
  /* Ombre centrée — pas de direction comme les autres boutons */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 2px 5px rgba(42,20,8,.28),
    0 6px 14px rgba(42,20,8,.2);
}
.hero-cta:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 3px 6px rgba(42,20,8,.32),
    0 8px 18px rgba(42,20,8,.3);
}
@keyframes heroCta {
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bandeau meta sous le hero */
.hero-meta {
  background: var(--cream);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.hero-meta-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-5);
  align-items: center;
  padding-block: clamp(0.9rem, 2vw, 1.1rem);
}
.hero-meta-item {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.hero-meta-item::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .hero-inner {
    min-height: 70vh;
    padding-top: 96px;
    padding-bottom: 32px;
  }
  .hero-h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .hero-sub { font-size: clamp(1.1rem, 5vw, 1.5rem); }
}

/* ============================================================
   7. LIVRE EN VEDETTE — effet reliure + volume
   ============================================================ */
.featured {
  background: var(--cream-page);
  padding-top: clamp(3.5rem, 7vw, 5rem);
}

/* Layout row sans cadre ni bordure */
.featured-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  max-width: 860px;
  margin-inline: auto;
  justify-content: center;
}
@media (max-width: 720px) {
  .featured-layout {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* Contenu texte : line-height de référence test3 (hérité par défaut) */
.featured-text { line-height: 2em; }

/* Badge eyebrow — genre "Grands reportages" (sf-eyebrow test3) */
.featured-eyebrow {
  font-family: var(--ff-caps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--cream);
  display: inline-block;
  padding: 0.36em 1.09em;
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 8px;
}

/* Couverture — ombre franche + effet reliure (ligne fixe à gauche) */
/* La peur sans frontières : intensité +5% */
.featured .book-cover {
  filter:
    drop-shadow(-15px 21px 18px rgba(42,20,8,.210))
    drop-shadow(-12px 17px 9px  rgba(42,20,8,.231))
    drop-shadow(-7px  10px 4px  rgba(42,20,8,.315));
}
.book-cover {
  position: relative;
  display: inline-block;
  filter: var(--shadow-book);
  width: 300px;
  max-width: 100%;
  margin-inline: auto;
  line-height: 0;
}
.book-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  /* Mask : bords de l'image qui fondent en transparence sur 1px */
  --fade: 1px;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
  mask-composite: intersect;
}

/* Ligne verticale (ombre du pli) — sans blend mode, opacité basse pour être subtile partout */
.book-cover::before {
  content: "";
  position: absolute;
  top: 1px; bottom: 1px;
  left: 7px;
  width: 1.8px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.14) 35%,
    rgba(0,0,0,.22) 50%,
    rgba(0,0,0,.14) 65%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Reflet clair (lumière sur le pli) — screen : visible sur les covers sombres */
.book-cover::after {
  content: "";
  position: absolute;
  top: 1px; bottom: 1px;
  left: 9px;
  width: 1px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.12) 40%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.12) 60%,
    rgba(255,255,255,0) 100%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
}

.featured-title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  margin: 10px 0 4px;
  padding-bottom: 10px;
}
.featured-author {
  font-family: var(--ff-caps);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 1em;
}
.featured-genre { margin-bottom: var(--sp-4); }
.featured-pitch {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  border-left: 2px solid var(--gold-dim);
  padding-left: 0.8em;
  padding-bottom: 0;
  margin-bottom: 1em;
  max-width: 520px;
}
.featured-price {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0;
  padding-bottom: 0;
  font-variant-numeric: tabular-nums;
}
.featured-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 25.7px;
}

/* ============================================================
   8. CATALOGUE
   ============================================================ */
.catalog {
  background: var(--cream-page);
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(5.5rem, 9vw, 8rem);
}
.catalog > .container { max-width: 1200px; }
.catalog-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.catalog-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.catalog-title em { color: var(--gold); font-style: italic; }
.catalog-subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--text-soft);
  font-size: var(--fs-md);
}
.catalog-subtitle strong { color: var(--ink); font-weight: 600; }

/* Catalogue 2×2, texte à droite — mirror du featured */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: clamp(3rem, 5vw, 5rem);
  column-gap: clamp(2.5rem, 4vw, 4.5rem);
  max-width: 1160px;
  margin-inline: auto;
}
@media (max-width: 720px) {
  .catalog-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* Chaque carte en ligne : cover gauche + texte droite (texte top-aligné) */
.book-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}
@media (max-width: 480px) {
  .book-card { grid-template-columns: 140px 1fr; }
}

/* Cover catalogue — effet reliure + blend modes adaptatifs */
.book-card .book-cover {
  width: 200px;
  max-width: 100%;
  filter: var(--shadow-book-sm);
}
/* Une aventure humaine : intensité ajustée */
.book-card:nth-child(1) .book-cover {
  filter:
    drop-shadow(-10px 14px 13px rgba(42,20,8,.163))
    drop-shadow(-7px  10px 6px  rgba(42,20,8,.172))
    drop-shadow(-4px  6px  3px  rgba(42,20,8,.242));
}
/* Bakchich + Les hommes mariés : intensité ajustée */
.book-card:nth-child(2) .book-cover,
.book-card:nth-child(4) .book-cover {
  filter:
    drop-shadow(-10px 14px 13px rgba(42,20,8,.268))
    drop-shadow(-7px  10px 6px  rgba(42,20,8,.289))
    drop-shadow(-4px  6px  3px  rgba(42,20,8,.371));
}
/* Tapis rouge : ombre renforcée */
.book-card:nth-child(3) .book-cover {
  filter:
    drop-shadow(-10px 14px 13px rgba(42,20,8,.234))
    drop-shadow(-7px  10px 6px  rgba(42,20,8,.252))
    drop-shadow(-4px  6px  3px  rgba(42,20,8,.324));
}
@media (max-width: 480px) {
  .book-card .book-cover { width: 140px; }
}


.book-card .book-cover::before {
  left: 5px;
  width: 1.6px;
  z-index: 3;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.08) 35%,
    rgba(0,0,0,.14) 50%,
    rgba(0,0,0,.08) 65%,
    rgba(0,0,0,0) 100%
  );
}
.book-card .book-cover::after {
  left: 7px;
  width: 1px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.1) 40%,
    rgba(255,255,255,.15) 50%,
    rgba(255,255,255,.1) 60%,
    rgba(255,255,255,0) 100%
  );
}

/* Texte — légèrement descendu pour équilibrer avec le haut de la couverture */
.book-card-text {
  line-height: 1.4em;
  padding-top: 20px;
  padding-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
/* Carte 4 (Les hommes mariés) : bloc texte légèrement élargi pour que la description tienne sur 2 lignes */
.book-card:nth-child(4) .book-card-text {
  width: 105%;
}
@media (max-width: 480px) {
  .book-card-text { padding-top: 14px; }
}

/* ============================================================ */
/* HOVER COUVERTURES — PAGE BLANCHE QUI SE RETOURNE             */
/* ============================================================ */

.book-card .book-cover { overflow: hidden; }

/* Fondu 1px sur les bords — identique à .book-cover img, appliqué aux deux SVGs pour persister au survol */
.book-card .book-stage,
.book-card .curl {
  --fade: 1px;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
  mask-composite: intersect;
}

.book-stage {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
}
.book-stage .hole {
  opacity: 0;
  transform: scale(0);
  transform-origin: 586px 0;
  transition:
    transform 0.75s cubic-bezier(0.7, 0, 0.84, 0),
    opacity 0.08s linear 0.67s;
}
.book-card .book-cover:hover .book-stage .hole {
  opacity: 1;
  transform: scale(1);
  transition:
    transform 0.75s cubic-bezier(0.22, 0.9, 0.3, 1) 0.15s,
    opacity 0.12s linear 0.15s;
}

.book-card .curl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 4;
  opacity: 0;
  transform: scale(0);
  transform-origin: 100% 0%;
  transition:
    transform 0.75s cubic-bezier(0.7, 0, 0.84, 0),
    opacity 0.08s linear 0.67s;
  filter:
    drop-shadow(-12px 18px 20px rgba(12, 10, 8, 0.23))
    drop-shadow(-5px  8px  12px rgba(12, 10, 8, 0.18))
    drop-shadow(-1px  2px  3px  rgba(28, 24, 20, 0.27));
}
.book-card .book-cover:hover .curl {
  opacity: 1;
  transform: scale(1);
  transition:
    transform 0.75s cubic-bezier(0.22, 0.9, 0.3, 1) 0.15s,
    opacity 0.12s linear 0.15s;
}


@media (prefers-reduced-motion: reduce) {
  .book-card .curl { transition: none; }
}

/* Zone cliquable desktop : curl + background révélé uniquement */
.book-card .cover-link {
  display: contents;
}
.book-card .cover-hit-area {
  pointer-events: none;
  fill: transparent;
}
.book-card .book-stage {
  cursor: default;
}

@media (hover: hover) {
  /* Seule la cover-hit-area (forme exacte de la zone révélée) est cliquable.
     Le curl reste pointer-events: none — son rect plein cadre capterait partout sinon. */
  .book-card .book-stage,
  .book-card .book-stage > rect,
  .book-card .book-stage > image,
  .book-card .book-stage > text { pointer-events: none; }
  .book-card .cover-hit-area { pointer-events: auto; cursor: pointer; }
}

/* LIRE : letter-spacing serré au repos */
.book-card .book-stage > text:nth-of-type(2) {
  letter-spacing: 0px;
  transition: letter-spacing 600ms ease 150ms;
}

/* LIRE : letter-spacing s'ouvre au survol */
.book-card .book-stage:has(.cover-hit-area:hover) > text:nth-of-type(2) {
  letter-spacing: 5px;
  transition: letter-spacing 600ms ease 150ms;
}

/* En/plus s'effacent au survol pour laisser LIRE seul en scène */
.book-card .book-stage > text:nth-of-type(1),
.book-card .book-stage > text:nth-of-type(3) {
  transition: opacity 600ms ease 150ms;
}
.book-card .book-stage:has(.cover-hit-area:hover) > text:nth-of-type(1),
.book-card .book-stage:has(.cover-hit-area:hover) > text:nth-of-type(3) {
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .book-card .book-stage > text { transition: none; }
}


.book-eyebrow {
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--cream);
  display: inline-block;
  padding: 0.36em 1.09em;
  border-radius: 6px;
  margin-bottom: 5px;
  line-height: 2.3em;
}
.book-title {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  margin: 5px 0 3px;
  padding-bottom: 5px;
  transition: color .3s var(--ease);
}
.book-title a { color: inherit; }
.book-author {
  font-family: var(--ff-caps);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.book-extrait {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2em;
  color: var(--text);
  border-left: 2px solid var(--gold-dim);
  padding-left: 0.8em;
  padding-bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.book-price {
  margin-top: auto;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* Centrage vertical texte bouton (même fix Montserrat uppercase que .btn) */
.book-cta {
  display: inline-flex;
  margin-top: 14px;
  padding: 1em 2em;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  min-height: 0;
  line-height: 1.6;
}
.book-cta svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.catalog-footer {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   9. FLEURON break — une seule fois entre catalogue et maison
   ============================================================ */

/* ============================================================
   10. MAISON — fond sombre + texture papier gaufré
   ============================================================ */
.house {
  padding: 50px 0 40px;
  position: relative;
  background: #3a2516 url("assets/Papier-gaufre.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
}
.house .container { max-width: 1120px; }
.house::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 45% at 35% 45%, rgba(70,42,20,0) 0%, rgba(35,18,6,0.6) 55%, rgba(20,10,3,0.8) 100%);
  pointer-events: none;
}
.house > * { position: relative; z-index: 1; }
.maison-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 90px; align-items: stretch;
  padding-bottom: 30px;
}
@media (max-width: 640px) {
  .maison-layout { grid-template-columns: 1fr; }
}
.maison-left {
  display: flex; flex-direction: column; justify-content: center;
}
.house-title {
  font-family: var(--ff-serif); font-size: 36px; font-weight: 500;
  color: #f2e8d9; text-align: center;
  padding-bottom: 10px; line-height: 1.3;
  margin-bottom: 20px;
}
.house-title::before {
  content: ''; display: block;
  width: 180px; height: 82px;
  margin: -20px auto 20px;
  background: url("assets/Montagne_logo.png?v=1") center/contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(224,198,163,0.15));
}
.house-title em { color: #c9a55a; font-style: italic; }
.house-lead {
  font-family: var(--ff-caps); font-size: 14px; font-weight: 300;
  line-height: 2em; color: rgba(242,232,217,0.78);
  text-align: center; width: 95%;
}
.sm-vals { display: flex; flex-wrap: wrap; padding-top: 20px; }
.sm-val {
  width: 50%; padding: 0 20px 6px 24px;
  border-left: 1.6px solid var(--gold-dim); margin-bottom: 24px;
}
.sm-val p {
  font-family: var(--ff-caps); font-size: 12px; font-weight: 300;
  color: rgba(242,232,217,0.72); line-height: 1.6;
}
.sm-val p.sm-vt {
  font-family: var(--ff-serif); font-size: 24px; font-weight: 600;
  color: var(--gold); line-height: 1.6;
  padding-bottom: 24px; margin-bottom: -5px;
}

/* ============================================================
   11. AUTEURS — photos naturelles, pas de duotone
   ============================================================ */
.authors { background: #fff9ef; padding-bottom: calc(clamp(3rem, 6vw, 4.5rem) + 10px); }

.authors-header { text-align: center; margin-bottom: 40px; }
.authors-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.authors-title em { font-style: italic; color: var(--gold); }
.authors-title::after { display: none; }
.authors-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 16px auto 0;
  color: var(--gold);
  font-size: 10px; line-height: 1;
}
.authors-ornament::before,
.authors-ornament::after {
  content: ''; flex: 0 0 60px; height: 1px;
  background: currentColor; opacity: 0.55;
}
.authors-ornament span { transform: rotate(45deg); display: inline-block; width: 6px; height: 6px; background: currentColor; }

.auteurs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  /* Option 6 — ombre livre posé à plat, direction cohérente avec le reste de la page */
  box-shadow:
    -3px 4px 8px rgba(42,26,8,0.10),
    -10px 14px 32px rgba(42,26,8,0.14),
    -22px 30px 64px rgba(42,26,8,0.10);
}
/* Option 1 — pli central / reliure */
.auteurs-grid::after {
  content: '';
  position: absolute; top: 0; left: calc(50% - 14px);
  width: 28px; height: 100%;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(28,14,4,0.09) 35%,
    rgba(28,14,4,0.15) 50%,
    rgba(28,14,4,0.09) 65%,
    transparent 100%);
  pointer-events: none; z-index: 2;
}
@media (max-width: 720px) {
  .auteurs-grid { grid-template-columns: 1fr; }
  .auteurs-grid::after { display: none; }
}
.auteur-col {
  display: flex; flex-direction: column;
  padding: 28px 30px;
  background:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url("assets/Papier-gaufre.jpg") center/cover no-repeat;
  background-color: #f3efe6;
  background-blend-mode: normal, multiply;
  border: 0.8px solid rgba(184,146,74,0.12);
  border-right: none;
}
/* Option 2 — courbure de page gauche (plus clair côté extérieur, plus sombre vers la reliure) */
.auteur-col:first-child {
  box-shadow:
    inset 32px 0 40px -16px rgba(255,255,255,0.07),
    inset -56px 0 60px -28px rgba(28,14,4,0.07);
}
/* Option 2 — courbure de page droite */
.auteur-col:last-child {
  box-shadow:
    inset -32px 0 40px -16px rgba(255,255,255,0.07),
    inset  56px 0 60px -28px rgba(28,14,4,0.07);
}

/* ============================================================
   VARIANTES AUTEURS
   ============================================================ */
.auteur-variant-label {
  text-align: center; font-family: var(--ff-caps); font-size: 11px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(139,58,42,0.4); margin-bottom: 22px;
}

/* Shared reset pour les 3 variantes */
.auteurs-grid--vA,
.auteurs-grid--vB,
.auteurs-grid--vC,
.auteurs-grid--vD,
.auteurs-grid--vE {
  box-shadow: none; overflow: visible; border-radius: 0;
}
.auteurs-grid--vA::after,
.auteurs-grid--vC::after,
.auteurs-grid--vE::after { display: none; }

/* ── A — Contraste noble : cartes sombres sur fond clair ── */
.authors--vA { background: #fff9ef; }
.auteurs-grid--vA { gap: 24px; }
.auteurs-grid--vA .auteur-col {
  background: #3a2516 url("assets/Papier-gaufre.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
  border: 0.8px solid rgba(184,146,74,0.25);
  border-radius: 6px;
  box-shadow: -4px 6px 20px rgba(20,10,4,0.28), -10px 14px 36px rgba(20,10,4,0.18);
}
.auteurs-grid--vA .auteur-name { color: #f2e8d9; }
.auteurs-grid--vA .auteur-subtitle { color: var(--gold); }
.auteurs-grid--vA .auteur-text { color: rgba(242,232,217,0.80); }
.auteurs-grid--vA .auteur-photo-wrap { border-color: rgba(184,146,74,0.5); border-width: 2px; }

/* ── B — Éditorial à filets : typographie, séparateur vertical ── */
.authors--vB { background: #fff9ef; }
.auteurs-grid--vB { gap: 36px; }

/* vB — Portrait cliquable */
a.auteur-photo-link {
  display: block; border-radius: 50%; flex-shrink: 0; text-decoration: none;
}
a.auteur-photo-link .auteur-photo-wrap {
  transition: border-color 0.3s, box-shadow 0.3s;
}
a.auteur-photo-link:hover .auteur-photo-wrap,
a.auteur-photo-link:focus-visible .auteur-photo-wrap {
  border-color: rgba(184,146,74,0.6);
  box-shadow: 0 0 0 4px rgba(184,146,74,0.18);
}
.auteurs-grid--vB::after {
  content: '';
  position: absolute; top: 8%; left: calc(50% - 0.5px);
  width: 1px; height: 84%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(184,146,74,0.5) 15%,
    rgba(184,146,74,0.5) 85%,
    transparent 100%);
  pointer-events: none; z-index: 1;
}
.auteurs-grid--vB .auteur-col {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 40px 16px;
  box-shadow: none;
  position: relative;
}
.auteurs-grid--vB .auteur-name { font-size: 38px; }

/* Filets effilés haut et bas sur chaque colonne */
.auteurs-grid--vB .auteur-col::before,
.auteurs-grid--vB .auteur-col::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(184,146,74,0.55) 20%,
    rgba(184,146,74,0.55) 80%,
    transparent 100%);
}
.auteurs-grid--vB .auteur-col::before { top: 0; }
.auteurs-grid--vB .auteur-col::after  { bottom: 0; }

/* vB — Tagline italic Cormorant au lieu des petites capitales */
.auteurs-grid--vB .auteur-subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--gold);
}

/* vB — Lettrine sur le premier paragraphe */
.auteurs-grid--vB .auteur-text::first-letter {
  font-family: var(--ff-serif);
  font-size: 3.5em;
  font-weight: 700;
  line-height: 0.72;
  float: left;
  margin-right: 0.07em;
  margin-top: 0.06em;
  color: #3a2516;
}

/* vB — Ornement au centre du séparateur vertical */
.auteurs-ornement {
  display: none;
}
.auteurs-grid--vB .auteurs-ornement {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: rgba(184,146,74,0.7);
  background: #fff9ef;
  padding: 2px 6px;
  z-index: 3;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   D — Plaque commémorative : médaillon centré, typographie affiche
   ═══════════════════════════════════════════════════════════ */
.authors--vD { background: #fff9ef; }
.auteurs-grid--vD {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  position: relative;
}
/* Séparation décorative entre les 2 cartes */
.auteurs-grid--vD::after {
  content: ''; position: absolute; top: 12%; left: 50%;
  width: 1px; height: 76%;
  background: linear-gradient(to bottom, transparent 0%, rgba(184,146,74,0.45) 18%, rgba(184,146,74,0.45) 82%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.auteurs-grid--vD .auteurs-ornement {
  display: block; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 12px; color: rgba(184,146,74,0.75);
  background: #fff9ef; padding: 3px 7px;
  z-index: 2; line-height: 1; pointer-events: none; user-select: none;
}
.auteur-plaque {
  text-align: center; position: relative;
  background:
    linear-gradient(to bottom, #f3efe6 0%, #f3efe6 125px, #fefcf6 125px, #fefcf6 100%);
  border-radius: 8px;
  padding: 0 32px 40px;
  overflow: hidden;
}
/* Ombres dirigées vers l'extérieur (évite le bleed dans le gap central) */
.auteur-plaque {
  box-shadow:
    -15px 21px 18px rgba(42,20,8,.20),
    -12px 17px 9px  rgba(42,20,8,.22),
    -7px  10px 4px  rgba(42,20,8,.30);
}
/* Masque sous la décoration de la vignette — champagne uni */
.auteur-plaque::before {
  content: '';
  position: absolute;
  top: 42px; left: 50%;
  width: 166px; height: 166px; margin-left: -83px;
  background: #e8dcc2;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.auteur-plaque-photo {
  width: 150px; height: 150px; margin: 50px auto 24px; position: relative;
  border-radius: 50%; z-index: 2;
}
.auteur-plaque-photo::before {
  content: ''; position: absolute; inset: -8px;
  border: 1px solid rgba(184,146,74,0.5); border-radius: 50%;
  pointer-events: none;
}
.auteur-plaque-photo::after {
  content: ''; position: absolute; inset: -3px;
  border: 2px solid rgba(184,146,74,0.22); border-radius: 50%;
  pointer-events: none;
}
.auteur-plaque-photo img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; display: block;
}
.auteur-plaque-name {
  font-family: var(--ff-serif); font-size: 34px; font-weight: 500;
  line-height: 1.15; letter-spacing: 0.005em;
  color: #2a1a08; margin: 0 0 8px;
}
.auteur-plaque-tagline {
  font-family: var(--ff-serif); font-style: italic; font-size: 19px;
  font-weight: 500; color: var(--gold);
  margin: 0 0 22px; line-height: 1.3;
}
.auteur-plaque-bio {
  font-family: var(--ff-caps); font-size: 14px; line-height: 1.75;
  color: var(--text); max-width: 380px; margin: 0 auto 36px;
}
.auteur-plaque-actions {
  display: flex; justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   E — Banner magazine : bandes asymétriques empilées
   ═══════════════════════════════════════════════════════════ */
.authors--vE { background: #fff9ef; }
.auteurs-grid--vE {
  display: flex; flex-direction: column;
}
.auteur-banner {
  display: grid; grid-template-columns: 250px 1fr; gap: 48px;
  padding: 48px 0; position: relative;
  align-items: start;
}
.auteur-banner:first-of-type { padding-top: 20px; }
.auteur-banner:last-of-type  { padding-bottom: 0; }
.auteur-banner + .auteur-banner {
  border-top: 1px solid transparent;
  background-image: linear-gradient(to right, transparent 0%, rgba(184,146,74,0.4) 15%, rgba(184,146,74,0.4) 85%, transparent 100%);
  background-size: 100% 1px;
  background-position: top;
  background-repeat: no-repeat;
}
.auteur-banner--reverse {
  grid-template-columns: 1fr 250px;
}
.auteur-banner--reverse .auteur-banner-photo {
  order: 2;
}
.auteur-banner--reverse .auteur-banner-content { text-align: right; }
.auteur-banner--reverse .auteur-banner-bio {
  border-left: none; padding-left: 0;
  border-right: 2px solid var(--gold-dim); padding-right: 0.8em;
}
.auteur-banner--reverse .auteur-banner-actions { justify-content: flex-end; }
.auteur-banner-photo {
  width: 250px; height: 250px; position: relative;
}
.auteur-banner-photo::after {
  content: ''; position: absolute; inset: -10px;
  border: 1px solid rgba(184,146,74,0.4);
  pointer-events: none;
}
.auteur-banner-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.auteur-banner-meta {
  font-family: var(--ff-caps); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}
.auteur-banner-name {
  font-family: var(--ff-serif); font-size: 34px; font-weight: 500;
  line-height: 1.05; margin: 0 0 6px; color: #2a1a08;
  letter-spacing: -0.3px;
}
.auteur-banner-tagline {
  font-family: var(--ff-serif); font-style: italic; font-size: 22px;
  font-weight: 500; color: var(--gold);
  margin: 0 0 14px; line-height: 1.3;
}
.auteur-banner-bio {
  font-family: var(--ff-caps); font-size: 14px; line-height: 1.8;
  color: var(--text); margin: 0 0 20px; max-width: 740px;
  border-left: 2px solid var(--gold-dim);
  padding-left: 0.8em;
}
.auteur-banner-stats {
  display: flex; gap: 36px; margin: 0 0 32px;
}
.auteur-banner-stat {
  display: flex; flex-direction: column;
  padding-left: 14px; border-left: 1px solid rgba(184,146,74,0.4);
}
.auteur-banner-stat strong {
  font-family: var(--ff-serif); font-size: 26px; font-weight: 500;
  color: #2a1a08; line-height: 1;
}
.auteur-banner-stat span {
  font-family: var(--ff-caps); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute); margin-top: 6px;
}

/* ── C — Cartels de galerie : fond texturé, cartes blanches en saillie ── */
.authors--vC {
  background: #ede4cf url("assets/Papier-gaufre.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
}
.auteurs-grid--vC { gap: 28px; }
.auteurs-grid--vC .auteur-col {
  background: #fefcf6;
  border: 0.8px solid rgba(184,146,74,0.14);
  border-radius: 6px;
  box-shadow: -4px 5px 12px rgba(42,26,8,0.10), -10px 14px 32px rgba(42,26,8,0.08);
}
.auteur-header { display: flex; align-items: center; padding-bottom: 14px; }
.auteur-photo-wrap {
  width: 140px; height: 140px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(184,146,74,0.2); border-radius: 50%;
  overflow: hidden;
}
.auteur-photo {
  width: 134px; height: 134px; border-radius: 50%; object-fit: cover; display: block;
}
.auteur-info { margin-left: 24px; flex: 1; }
.auteur-name {
  font-family: var(--ff-serif); font-size: 32px; font-weight: 700;
  color: #333; line-height: 1.2; letter-spacing: -0.5px;
  margin-top: -8px; margin-bottom: 8px;
}
.auteur-subtitle {
  font-family: var(--ff-caps); font-size: 11px; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); line-height: 1.5;
}
.auteur-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.auteur-actions .btn { font-size: 12px; padding: 0.85em 1.8em; min-height: 0; }
.auteur-text {
  font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--text);
  font-family: var(--ff-caps); margin: 0;
}
.auteur-books {
  display: grid; grid-template-columns: repeat(4, 97px); gap: 16.7px;
  margin-bottom: 18px;
}
.auteur-books a {
  display: block; position: relative; overflow: hidden;
  filter: drop-shadow(rgba(20,22,23,0.35) 3px 6px 10px);
}
.auteur-books a img {
  width: 97px; height: 150px; object-fit: cover; display: block;
}
.auteur-books a::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg); z-index: 10; pointer-events: none; opacity: 0;
  transition: opacity 0s;
}
.auteur-books a:hover::before {
  opacity: 1; animation: reflet-slide 0.7s ease forwards;
}
.btn-rouge {
  background: linear-gradient(#9b4535, #7a2e20);
  color: #fff9ef; border: 0 none;
  box-shadow: 0 2px 4px rgba(139,58,42,0.25);
  display: inline-block; font-family: var(--ff-caps);
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 1em 2em; border-radius: 6px;
  transition: filter .3s, box-shadow .3s, transform .3s;
  text-align: center; line-height: 1.7em; min-height: 44px;
}
.btn-rouge:hover, .btn-rouge:focus-visible {
  filter: brightness(1.12);
  box-shadow: 0 3px 6px rgba(139,58,42,0.35);
  transform: translateY(-1px);
}
.btn-blanc {
  background: linear-gradient(to bottom, #f3efe6, #e8e1d3);
  color: rgba(139,58,42,0.85);
  border: 0.5px solid rgba(184,146,74,0.55);
  box-shadow: 0 2px 4px rgba(184,146,74,0.15);
  display: inline-block; font-family: var(--ff-caps);
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: calc(1em - 0.8px) 2em; border-radius: 6px;
  transition: filter .3s, box-shadow .3s, transform .3s;
  text-align: center; line-height: 1.7em; min-height: 44px;
}
.btn-blanc:hover, .btn-blanc:focus-visible {
  filter: brightness(0.96);
  box-shadow: 0 2px 4px rgba(184,146,74,0.2);
  border-color: rgba(184,146,74,0.4);
  transform: translateY(-1px);
}
.btn-sm {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; min-height: 0;
  padding: 0.65em 1.2em;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================
   12. RASSURANCE — pictogrammes thématiques dorés
   ============================================================ */
.reassurance {
  background: linear-gradient(180deg, var(--dark-deep) 0%, var(--dark-bg) 48%, var(--dark-bg) 52%, var(--dark-deep) 99%);
  color: var(--dark-text);
  padding-top: 36px;
  padding-bottom: 36px;
}
.reassurance > .container { max-width: 1160px; }
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 720px) {
  .reassurance-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .reassurance-item + .reassurance-item { border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--sp-6); }
}
.reassurance-item {
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
}
.reassurance-item + .reassurance-item {
  border-left: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 720px) {
  .reassurance-item + .reassurance-item { border-left: 0; }
}
.reassurance-icon-wrap {
  height: 90px; display: flex; align-items: center; justify-content: center;
  margin: 0 30px 30px;
}
.reassurance-icon {
  width: 82px; height: 82px; object-fit: contain; margin: 4px;
  filter: brightness(0.72) sepia(1) saturate(1.8) hue-rotate(-12deg) drop-shadow(0px 6px 12px rgba(20,10,3,0.8));
}
.reassurance-item:nth-child(1) .reassurance-icon-wrap {
  filter: brightness(1) sepia(1.3) saturate(1.8) hue-rotate(-12deg);
}
.reassurance-item:nth-child(3) .reassurance-icon-wrap {
  transform: scale(1.15, 0.95);
}
.reassurance-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 700;
  color: #c9a55a;
  line-height: 1;
  padding: 0 10px 10px;
  margin: -10px 0 0;
}
.reassurance-text {
  font-family: var(--ff-caps);
  font-size: 13px;
  font-weight: 400;
  line-height: 2.215;
  color: rgb(200,188,170);
}

/* ============================================================
   13. CONTACT
   ============================================================ */
.contact { background: var(--cream-page); padding: 70px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 60px; align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-text { width: 95%; margin-top: 2em; }
.contact-title {
  font-family: var(--ff-serif); font-size: 38px; font-weight: 500;
  color: var(--ink); text-align: left;
  padding-bottom: 10px; line-height: 1.5em;
}
.contact-title em { color: var(--gold); font-style: italic; }
.contact-intro {
  font-family: var(--ff-caps); font-size: 14px; font-weight: 400;
  line-height: 1.65em; color: var(--text);
}
.contact-form {
  box-shadow: 0 0 64px -12px rgba(20,22,23,0.2);
  padding: 28px; background: transparent;
}
.form-row { display: flex; gap: 14px; margin-bottom: 14px; }
.form-row .form-group { flex: 1; margin-bottom: 0; }
.form-group { margin-bottom: 14px; }
.form-group label {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 1.143em 1em; border: 0; border-radius: 0;
  background: #f3efe6; color: var(--ink);
  font-family: var(--ff-caps); font-size: 14px; transition: color .3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; color: rgba(42,26,8,0.8);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-submit { text-align: right; margin-top: 10px; }
.form-submit .btn {
  width: 30%; min-height: 0; padding: 0.8em 0;
  letter-spacing: 1px; font-size: 13px; font-weight: 600;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
#site-footer { background: #2D1F14; color: rgb(196,166,122); padding: 48px 0 0; }
#site-footer .footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 29.5px; padding: 0 48px 36px;
}
#site-footer .footer-brand {
  font-family: var(--ff-serif); font-size: 16px; font-weight: 700;
  letter-spacing: 1px; color: #9d7949; line-height: 1.2;
  margin-bottom: 14px;
}
#site-footer .footer-contact-line {
  font-family: var(--ff-caps); font-size: 12px; font-weight: 400;
  line-height: 2.4em; color: #e0c6a3; margin-bottom: 18px;
}
#site-footer .footer-contact-line p { margin: 0; }
#site-footer .footer-social { display: flex; gap: 8px; }
#site-footer .footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 0;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
#site-footer .footer-social a:hover { background: rgba(255,255,255,0.18); }
#site-footer .footer-social svg { width: 22px; height: 22px; fill: #c4a67a; transition: fill 0.3s; }
#site-footer .footer-social a:hover svg { fill: #f0dab8; }
#site-footer .footer-col-title {
  font-family: var(--ff-serif); font-size: 14px; font-weight: 700;
  letter-spacing: 1px; color: #9d7949; line-height: 1.2; margin-bottom: 14px;
}
#site-footer .footer-col-content { margin-bottom: 22px; }
#site-footer .footer-col-content:last-of-type { margin-bottom: 0; }
#site-footer .footer-col ul li { padding-bottom: 0; }
#site-footer .footer-col a {
  font-family: var(--ff-caps); font-size: 12px; font-weight: 400;
  line-height: 2.4em; color: rgb(196,166,122); transition: color .3s;
}
#site-footer .footer-nav a:hover { color: #e0c6a3; }
#site-footer .footer-social a { transition: background 0.3s, color 0.3s; }
#site-footer .footer-legal a { color: rgba(196,166,122,0.55); }
#site-footer .footer-legal a:hover { color: rgb(196,166,122); }
#site-footer .footer-ssl-badge {
  display: inline-flex; align-items: center; gap: 0.7em;
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(196,166,122,0.3);
  border-radius: 6px; padding: 0.7em 1.2em 0.7em 1em; margin-bottom: 14px;
}
#site-footer .footer-ssl-badge svg { display: block; width: 13px; height: 13px; stroke: #e0c6a3; fill: none; stroke-width: 2; }
#site-footer .footer-ssl-badge span {
  font-family: var(--ff-caps); font-size: 11px; font-weight: 300;
  line-height: 1.3em; letter-spacing: 0.55px; color: #e0c6a3;
}
#site-footer .footer-cb img { width: 160px; height: auto; display: block; border-radius: 0; }
#site-footer .footer-bottom {
  border-top: 1px solid rgba(196,166,122,0.18);
  padding: 22px 48px; text-align: center;
  font-family: var(--ff-caps); font-size: 10px; color: rgba(196,166,122,0.45);
}
#site-footer .footer-col-toggle { display: none; }

/* Footer responsive : sous 600px, stack 1 colonne pour éviter scroll horizontal */
@media (max-width: 600px) {
  #site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px 28px;
  }
  #site-footer .footer-bottom { padding: 18px 24px; }
  #site-footer .footer-cb img { max-width: 100%; }
  #site-footer .footer-ssl-badge { max-width: 100%; }
}

/* ============================================================
   15. REVEAL ANIMATIONS
   ============================================================ */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-h1, .hero-sub, .hero-eyebrow, .hero-cta { opacity: 1; animation: none; transform: none; }
}

