/* ═══════════════════════════════════════════════════════════════════════
   LE FIL — GLOBAL STYLESHEET v2.0
   Palette nocturne · Noir végétal · Vert sauge silencieux
   Pour Divi/WordPress : coller dans Divi > Theme Options > Custom CSS
   ou dans l'enfant de thème (style.css)
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter+Tight:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ────────────────────────────────────────────────────────── */
:root {
  /* Palette nocturne officielle */
  --lf-night:        #0F120D;   /* Noir végétal — fond principal */
  --lf-night-1:      #141810;   /* Sections alternées légèrement */
  --lf-night-2:      #0A0C09;   /* Profondeur maximale */
  --lf-night-3:      #181D15;   /* Cartes / surfaces */
  --lf-night-4:      #1E2419;   /* Cartes en hover / élevées */

  /* Le vert — en trois états */
  --lf-sage:         #8C9278;   /* Sauge profond — couleur principale */
  --lf-stone:        #70755F;   /* Pierre désaturée — micro-contrastes */
  --lf-mist:         #B2B79C;   /* Lumière feutrée — usage rare */

  /* Texte sur fond sombre */
  --lf-text:         #B8BDAA;   /* Corps principal */
  --lf-text-soft:    #8A9078;   /* Secondaire */
  --lf-text-mute:    #556050;   /* Atténué */
  --lf-text-bright:  #D0D5BE;   /* Titres, mise en avant */

  /* Lignes et transparences */
  --lf-line:         rgba(140,146,120,.16);
  --lf-line-soft:    rgba(140,146,120,.08);
  --lf-sage-faint:   rgba(140,146,120,.07);
  --lf-sage-glow:    rgba(140,146,120,.20);
  --lf-mist-glow:    rgba(178,183,156,.12);

  /* Typographie */
  --lf-font-display: 'Cormorant Garamond', Georgia, serif;
  --lf-font-body:    'Inter Tight', -apple-system, system-ui, sans-serif;

  /* Layout */
  --lf-max:          1180px;
  --lf-pad-y:        clamp(80px, 12vw, 140px);
  --lf-pad-x:        clamp(20px, 5vw, 48px);
  --lf-ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --lf-ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Rythme de respiration — calé sur une respiration naturelle */
  --lf-breath: 16s; /* 4s montée · 4s maintien · 8s descente */
}

/* ─── RESET ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: var(--lf-font-body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--lf-text);
  background: var(--lf-night);
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .lf-reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ─── ANIMATIONS ───────────────────────────────────────────────────────── */

/* Respiration principale — suit le rythme du Fil */
@keyframes lf-breath {
  0%   { transform: scale(1);    opacity: .28; }
  25%  { transform: scale(1.15); opacity: .80; }
  50%  { transform: scale(1.15); opacity: .80; }
  75%  { transform: scale(1);    opacity: .28; }
  100% { transform: scale(1);    opacity: .28; }
}

/* Anneau pulsant */
@keyframes lf-ring {
  0%   { transform: scale(.88); opacity: 0;   }
  25%  { transform: scale(1.10); opacity: .32; }
  50%  { transform: scale(1.10); opacity: .32; }
  75%  { transform: scale(.88); opacity: 0;   }
  100% { transform: scale(.88); opacity: 0;   }
}

/* Halo de lumière */
@keyframes lf-glow {
  0%   { opacity: .10; filter: blur(80px); }
  25%  { opacity: .26; filter: blur(48px); }
  50%  { opacity: .26; filter: blur(48px); }
  75%  { opacity: .10; filter: blur(80px); }
  100% { opacity: .10; filter: blur(80px); }
}

/* Fil — tracé SVG animé */
@keyframes lf-draw {
  0%   { stroke-dashoffset: 3000; opacity: 0;   }
  6%   { opacity: .40; }
  80%  { opacity: .40; }
  100% { stroke-dashoffset: 0;    opacity: 0;   }
}

/* Dérive douce verticale */
@keyframes lf-float {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-10px); }
}

/* Shimmer sur texte */
@keyframes lf-shimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center;  }
}

/* Fade in depuis le bas */
@keyframes lf-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ─── REVEAL AU SCROLL ─────────────────────────────────────────────────── */
.lf-reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition:
    opacity   1.4s var(--lf-ease),
    transform 1.4s var(--lf-ease),
    filter    1.4s var(--lf-ease);
}
.lf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.lf-d1 { transition-delay: .12s; }
.lf-d2 { transition-delay: .26s; }
.lf-d3 { transition-delay: .40s; }
.lf-d4 { transition-delay: .54s; }
.lf-d5 { transition-delay: .68s; }

/* ─── PAGE HISTOIRE — forêt nocturne, palette mono-verte ──────────────── */
/* Le JS ajoute .page-histoire sur le vrai  → ça marche dans Divi  */

body.page-histoire,
body.page-histoire #page,
body.page-histoire #main-content,
body.page-histoire .et-main-area,
body.page-histoire .et_builder_outer_content {
  background: #1E2B1C !important;
}

/* Variables vertes sur fond forêt — différentes densités de vert */
body.page-histoire {
  --lf-night:        #1E2B1C;   /* fond principal — forêt profonde */
  --lf-night-1:      #192518;
  --lf-night-2:      #141E12;
  --lf-night-3:      #253523;
  --lf-night-4:      #2E4229;

  --lf-text:         #B8BDAA;   /* même que le hero */
  --lf-text-soft:    #8A9078;
  --lf-text-mute:    #556050;
  --lf-text-bright:  #D0D5BE;   /* même que "Une journée" */

  --lf-sage:         #8C9278;
  --lf-stone:        #70755F;
  --lf-mist:         #B2B79C;

  --lf-line:         rgba(140,146,120,.16);
  --lf-line-soft:    rgba(140,146,120,.08);
  --lf-sage-faint:   rgba(140,146,120,.07);
  --lf-sage-glow:    rgba(140,146,120,.20);

  color: #B8BDAA !important;
}

/* Header histoire — vert plus dense, lisible */
body.page-histoire .hist-header {
  background: rgba(20,30,18,.90) !important;
  border-bottom-color: rgba(100,160,70,.14) !important;
}

/* ─── CORRECTIF DIVI — fond sombre ────────────────────────────────────── */
/* La classe .lf-dark-page est ajoutée par le JS sur toutes les pages LeFil */

html:has(body.lf-dark-page) { background: #0F120D !important; }

body.lf-dark-page,
body.lf-dark-page #page,
body.lf-dark-page #main-content,
body.lf-dark-page .et-main-area,
body.lf-dark-page .et_builder_outer_content,
body.lf-dark-page .et_pb_section:not(.lf-footer):not([class*="lf-"]) {
  background: #0F120D !important;
}

/* ─── CORRECTIF DIVI — empilement z-index ──────────────────────────────── */
/* Divi crée ses propres stacking contexts — on force la hiérarchie */

/* Canvas thread : toujours derrière tout */
.lf-thread-canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  display: block !important;
}

/* Halos : derrière le contenu */
.lf-hero-halo,
.ctr-hero__halo,
.adh-hero__halo,
.sec-hero__halo,
.ccm-hero__halo,
.lf-access__halo,
.lf-quote-section__halo,
.ctr-merci__halo,
.ctr-jamais__halo,
.hist-halo {
  z-index: 0 !important;
  pointer-events: none !important;
}

/* Contenu des heroes : toujours devant */
.lf-home-hero__inner,
.ccm-hero__inner,
.sec-hero__inner,
.adh-hero__inner,
.ctr-hero__inner,
.hist-article,
.lf-quote-section__inner,
.ctr-merci__inner,
.ctr-jamais__inner {
  position: relative !important;
  z-index: 10 !important;
}

/* Anneaux concentriques : derrière le contenu mais devant canvas */
.lf-home-hero__rings {
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Canvas fixed sur histoire.html */
.hist-canvas {
  z-index: -1 !important;
  pointer-events: none !important;
}

/* Aura curseur : toujours au-dessus mais sans bloquer les clics */
#lf-aura {
  z-index: 9999 !important;
  pointer-events: none !important;
}

/* Sections avec overflow pour contenir le canvas */
.lf-home-hero,
.ccm-hero,
.sec-hero,
.adh-hero,
.ctr-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

/* ─── CURSOR AURA (desktop uniquement) ────────────────────────────────── */
#lf-aura {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,146,120,.07) 0%, transparent 65%);
  transform: translate(-160px, -160px);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  mix-blend-mode: screen;
}
@media (max-width: 900px) { #lf-aura { display: none; } }

/* ─── HEADER ───────────────────────────────────────────────────────────── */
.lf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: rgba(15,18,13,.65);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border-bottom: 1px solid transparent;
  transition: border-color .5s, background .5s;
}
.lf-header.scrolled {
  border-bottom-color: var(--lf-line-soft);
  background: rgba(15,18,13,.90);
}
.lf-header__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px var(--lf-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Brand ── */
.lf-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--lf-text-bright);
  flex-shrink: 0;
}
.lf-brand__logo {
  width:70px;
  height:60px;
  object-fit: contain;
  opacity: .85;
  transition: opacity .4s, transform .4s var(--lf-ease);
}
.lf-brand:hover .lf-brand__logo { opacity: 1; transform: scale(1.05); }
.lf-brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.lf-brand__name {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.38rem;
  color: var(--lf-mist);
  line-height: 1;
  letter-spacing: .01em;
}
.lf-brand__suf {
  font-family: var(--lf-font-body);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--lf-stone);
  line-height: 1;
}

/* ── Navigation ── */
.lf-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.lf-nav a {
  font-family: var(--lf-font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lf-text-mute);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .35s;
}
.lf-nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--lf-sage), transparent);
  transition: width .4s var(--lf-ease), left .4s var(--lf-ease);
}
.lf-nav a:hover,
.lf-nav a.is-current { color: var(--lf-mist); }
.lf-nav a:hover::after,
.lf-nav a.is-current::after { width: 100%; left: 0; }

/* CTA dans nav */
.lf-nav-cta {
  font-family: var(--lf-font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lf-night) !important;
  background: var(--lf-mist) !important;
  border: 1.5px solid var(--lf-mist) !important;
  padding: 9px 22px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: all .35s var(--lf-ease);
  white-space: nowrap;
  opacity: 1 !important;
}
.lf-nav-cta:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--lf-night) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(178,183,156,.50);
}

/* Burger mobile */
.lf-burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--lf-text);
  transition: color .3s;
}
.lf-burger:hover { color: var(--lf-sage); }

@media (max-width: 900px) {
  .lf-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(13,16,11,.98);
    border-bottom: 1px solid var(--lf-line-soft);
    padding: 8px var(--lf-pad-x) 28px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
  }
  .lf-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .lf-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--lf-line-soft);
    font-size: .88rem;
  }
  .lf-nav-cta { display: none; }
  .lf-burger { display: inline-flex; }
}

/* ─── LAYOUT SYSTÈME ───────────────────────────────────────────────────── */
section { isolation: isolate; }
.lf-section {
  position: relative;
  z-index: 1;
  padding: var(--lf-pad-y) var(--lf-pad-x);
}
.lf-inner { max-width: var(--lf-max); margin: 0 auto; }

/* Variantes de fond */
.lf-bg-base   { background: var(--lf-night);   }
.lf-bg-lift   { background: var(--lf-night-1);  }
.lf-bg-deep   { background: var(--lf-night-2);  }
.lf-bg-card   { background: var(--lf-night-3);  }

/* Texture végétale subtile en overlay */
.lf-bg-lift::before,
.lf-bg-base::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(140,146,120,.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(112,117,95,.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ─── TYPOGRAPHIE ──────────────────────────────────────────────────────── */

/* Eyebrow */
.lf-eyebrow {
  font-family: var(--lf-font-body);
  font-size: .70rem;
  font-weight: 500;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--lf-stone);
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.lf-eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lf-sage));
  opacity: .65;
}
.lf-eyebrow::after {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--lf-sage));
  opacity: .65;
}
.lf-eyebrow--left::after { display: none; }
.lf-eyebrow--center { display: flex; justify-content: center; text-align: center; }

/* Headings */
.lf-h1 {
  font-family: var(--lf-font-display);
  font-weight: 400;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 1.05;
  color: var(--lf-text-bright);
  letter-spacing: -.012em;
  margin: 0 0 1.6rem;
}
.lf-h1 em { font-style: italic; color: var(--lf-sage); }

.lf-h2 {
  font-family: var(--lf-font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.12;
  color: var(--lf-text-bright);
  margin: 0 0 1.4rem;
}
.lf-h2 em { font-style: italic; color: var(--lf-sage); }

.lf-h3 {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  color: var(--lf-text-bright);
  margin: 0 0 .7rem;
}

/* Lead / accroche */
.lf-lead {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.7;
  color: var(--lf-text);
  max-width: 640px;
  margin: 0 auto 2.8rem;
}

/* Corps de texte */
.lf-body {
  font-family: var(--lf-font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.82;
  color: var(--lf-text-soft);
  max-width: 680px;
  margin: 0 auto 1.4rem;
}
.lf-body em { color: var(--lf-mist); font-style: italic; }

/* Pull quote */
.lf-pull {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  color: var(--lf-sage);
  padding: 2rem 0 2rem 2.4rem;
  border-left: 2px solid var(--lf-stone);
  margin: 3rem 0;
}

/* ─── BOUTONS ──────────────────────────────────────────────────────────── */
.lf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lf-font-body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .4s var(--lf-ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.lf-btn--solid {
  background: var(--lf-sage);
  border-color: var(--lf-sage);
  color: var(--lf-night);
}
.lf-btn--solid:hover {
  background: var(--lf-mist);
  border-color: var(--lf-mist);
  color: var(--lf-night);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(140,146,120,.40);
}

.lf-btn--ghost {
  background: transparent;
  border-color: var(--lf-line);
  color: var(--lf-text-soft);
}
.lf-btn--ghost:hover {
  border-color: var(--lf-sage);
  color: var(--lf-mist);
  background: var(--lf-sage-faint);
}

.lf-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lf-btn-row--center { justify-content: center; }

/* ─── DIVISEUR SOUFFLE ─────────────────────────────────────────────────── */
.lf-breath-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 52px 0;
  position: relative;
  background: var(--lf-night);
}
.lf-breath-div__line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--lf-sage), transparent);
  opacity: .35;
}
.lf-breath-div__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lf-sage);
  box-shadow:
    0 0 0 1px rgba(140,146,120,.2),
    0 0 16px rgba(140,146,120,.4),
    0 0 32px rgba(140,146,120,.15);
  animation: lf-breath var(--lf-breath) ease-in-out infinite;
}

/* ─── ORBE RESPIRANT ───────────────────────────────────────────────────── */
.lf-orb {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lf-sage);
  box-shadow:
    0 0 0 2px rgba(140,146,120,.15),
    0 0 20px rgba(140,146,120,.40),
    0 0 48px rgba(140,146,120,.15);
  animation: lf-breath var(--lf-breath) ease-in-out infinite;
}

/* ─── CARTES ───────────────────────────────────────────────────────────── */
.lf-card {
  background: var(--lf-night-3);
  border: 1px solid var(--lf-line-soft);
  border-radius: 16px;
  padding: 32px 28px;
  transition:
    transform .5s var(--lf-ease),
    border-color .5s,
    box-shadow .5s,
    background .5s;
  position: relative;
  overflow: hidden;
}
.lf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lf-sage), transparent);
  transform: scaleX(0);
  transition: transform .6s var(--lf-ease);
  opacity: .6;
}
.lf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(140,146,120,.18);
  box-shadow:
    0 30px 60px -24px rgba(0,0,0,.6),
    0 0 0 1px rgba(140,146,120,.06),
    inset 0 1px 0 rgba(178,183,156,.05);
  background: var(--lf-night-4);
}
.lf-card:hover::before { transform: scaleX(1); }

/* ─── SECTION CITATION ─────────────────────────────────────────────────── */
.lf-quote-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(120px, 18vw, 200px);
  padding-bottom: clamp(120px, 18vw, 200px);
}
.lf-quote-section__halo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(140,146,120,.16) 0%, transparent 70%);
  animation: lf-glow var(--lf-breath) ease-in-out infinite;
}
.lf-quote-section__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--lf-pad-x);
}
.lf-quote-section__text {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.35;
  color: var(--lf-text-bright);
  margin: 0 0 1.8rem;
}
.lf-quote-section__text em { color: var(--lf-sage); }
.lf-quote-section__attr {
  font-family: var(--lf-font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--lf-stone);
}

/* ─── PIED DE PAGE ─────────────────────────────────────────────────────── */
.lf-footer {
  background: var(--lf-night-2);
  border-top: 1px solid var(--lf-line-soft);
  padding: 72px var(--lf-pad-x) 36px;
  position: relative;
  overflow: hidden;
}
.lf-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lf-stone), transparent);
  opacity: .4;
}
.lf-footer__inner { max-width: 1300px; margin: 0 auto; }
.lf-footer__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--lf-line-soft);
}
@media (max-width: 960px) {
  .lf-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .lf-footer__brand-col { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .lf-footer__top { grid-template-columns: 1fr; }
}
.lf-footer__logo {
  width: 100px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: .55;
  filter: brightness(1.2);
}
.lf-footer__brand {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--lf-mist);
  margin: 0 0 12px;
}
.lf-footer__tag {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--lf-stone);
  line-height: 1.8;
  max-width: 300px;
  margin: 0;
}
.lf-footer__col h4 {
  font-family: var(--lf-font-body);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--lf-stone);
  margin: 0 0 20px;
}
.lf-footer__col ul { list-style: none; padding: 0; margin: 0; }
.lf-footer__col li { margin-bottom: 10px; }
.lf-footer__col a {
  font-family: var(--lf-font-body);
  font-size: .84rem;
  color: var(--lf-text-mute);
  text-decoration: none;
  transition: color .3s;
}
.lf-footer__col a:hover { color: var(--lf-mist); }
.lf-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.lf-footer__copy {
  font-family: var(--lf-font-body);
  font-size: .70rem;
  color: var(--lf-text-mute);
  letter-spacing: .06em;
}
.lf-footer__legals { display: flex; gap: 24px; flex-wrap: wrap; }
.lf-footer__legals a {
  font-family: var(--lf-font-body);
  font-size: .70rem;
  color: var(--lf-text-mute);
  text-decoration: none;
  transition: color .3s;
}
.lf-footer__legals a:hover { color: var(--lf-sage); }

/* ─── FIL DE LECTURE — voyage dans la page ───────────────────────────── */
/* Position absolute sur le body : il vit dans la page, pas dans le     */
/* viewport. La perle descend au fil du scroll, ancrée à la colonne.    */

body { position: relative; } /* nécessaire pour le fil absolu */

#lf-scroll-thread {
  position: absolute;
  top: 0;
  width: 80px;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: opacity 1.2s var(--lf-ease) 0.6s;
}
#lf-scroll-thread.is-ready { opacity: 1; }

#lf-scroll-thread svg {
  display: block;
  width: 100%;
  overflow: visible;
}

/* Piste fantôme — chemin complet, très discret */
.lf-sthread-track {
  stroke: rgba(140,146,120,.06);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
}

/* Le fil révélé — se déroule avec le scroll */
.lf-sthread-drawn {
  stroke: rgba(140,146,120,.52);
  stroke-width: 1.2;
  fill: none;
  stroke-linecap: round;
}

/* Halo derrière la perle */
.lf-sthread-glow {
  fill: rgba(140,146,120,.13);
  transition: r .5s var(--lf-ease), opacity .5s var(--lf-ease);
}

/* La perle — bout vivant du fil */
.lf-sthread-dot {
  fill: var(--lf-sage);
  filter: drop-shadow(0 0 4px rgba(140,146,120,.60));
  transition: r .45s var(--lf-ease), filter .45s var(--lf-ease);
}
.lf-sthread-dot.is-focused {
  filter: drop-shadow(0 0 10px rgba(178,183,156,.85));
}

/* Masqué sur mobile — pas assez de marge */
@media (max-width: 900px) {
  #lf-scroll-thread { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════
   LE FIL — HOME PAGE STYLES
   Sortis de la page Accueil pour usage via assets.lefil.app
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Page-spécifique : index.html ── */

/* HERO */
.lf-home-hero {
  min-height: calc(90vh - 62px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px,14vw,160px) var(--lf-pad-x);
  position: relative;
  overflow: hidden;
  background: var(--lf-night);
}

/* Thread canvas — fond vivant */
.lf-home-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}

/* Halo respirant */
.lf-home-hero__halo {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 42% at 50% 52%, rgba(140,146,120,.16) 0%, transparent 68%),
    radial-gradient(ellipse 28% 22% at 22% 70%, rgba(112,117,95,.08) 0%, transparent 55%),
    radial-gradient(ellipse 20% 16% at 78% 28%, rgba(178,183,156,.06) 0%, transparent 50%);
  animation: lf-glow var(--lf-breath) ease-in-out infinite;
}

/* Anneaux concentriques */
.lf-home-hero__rings {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  width: min(580px, 80vw);
  height: min(580px, 80vw);
}
.lf-home-hero__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(140,146,120,.20);
  animation: lf-ring var(--lf-breath) ease-in-out infinite;
}
.lf-home-hero__rings span:nth-child(2) {
  inset: 14%;
  animation-delay: -2.6s;
  border-color: rgba(140,146,120,.14);
}
.lf-home-hero__rings span:nth-child(3) {
  inset: 28%;
  animation-delay: -5.2s;
  border-color: rgba(140,146,120,.10);
}

/* Contenu */
.lf-home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}
.lf-home-hero__eye {
  font-family: var(--lf-font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--lf-stone);
  margin: 0 0 2.8rem;
}
.lf-home-hero__title {
  font-family: var(--lf-font-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.04;
  color: var(--lf-text-bright);
  letter-spacing: -.014em;
  margin: 0 0 2rem;
}
.lf-home-hero__title em {
  font-style: italic;
  color: var(--lf-sage);
  display: block;
}
.lf-home-hero__lead {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.72;
  color: var(--lf-text);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.lf-home-hero__lead em { color: var(--lf-mist); }
.lf-home-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* POUR QUI */
.lf-forwhom { background: var(--lf-night-1); }
.lf-forwhom__head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.lf-forwhom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) { .lf-forwhom__grid { grid-template-columns: 1fr; } }

.persona { display: flex; flex-direction: column; }
.persona__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lf-sage-faint);
  border: 1px solid var(--lf-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.4rem;
  position: relative;
  flex-shrink: 0;
  transition: border-color .4s, background .4s;
}
.persona__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(140,146,120,.18);
  opacity: 0;
  animation: lf-ring var(--lf-breath) ease-in-out infinite;
}
.lf-card:hover .persona__icon {
  border-color: var(--lf-line);
  background: rgba(140,146,120,.12);
}
.persona__icon svg { width: 22px; height: 22px; color: var(--lf-sage); }
.persona__title {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--lf-text-bright);
  margin: 0 0 .9rem;
  line-height: 1.2;
}
.persona__desc {
  font-family: var(--lf-font-body);
  font-size: 15px;
  color: var(--lf-text-soft);
  line-height: 1.75;
  flex-grow: 1;
}
.persona__desc em { color: var(--lf-mist); font-style: italic; }

/* COMMENT ÇA MARCHE */
.lf-howto { background: var(--lf-night); }
.lf-howto__head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.lf-howto__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 760px) { .lf-howto__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lf-howto__grid { grid-template-columns: 1fr; } }

.lf-step { text-align: center; padding: 0 8px; }
.lf-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lf-night-3);
  border: 1px solid var(--lf-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
  font-family: var(--lf-font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--lf-sage);
  font-weight: 500;
  transition: all .5s var(--lf-ease);
}
.lf-step:hover .lf-step__num {
  background: var(--lf-sage);
  color: var(--lf-night);
  transform: scale(1.08);
  border-color: var(--lf-sage);
  box-shadow: 0 0 24px rgba(140,146,120,.30);
}
.lf-step__title {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--lf-text-bright);
  margin: 0 0 .7rem;
  line-height: 1.3;
}
.lf-step__desc {
  font-family: var(--lf-font-body);
  font-size: 14px;
  color: var(--lf-text-soft);
  line-height: 1.7;
}
.lf-howto__more { text-align: center; margin-top: 3.5rem; }

/* DEUX PORTES */
.lf-access { background: var(--lf-night-1); position: relative; overflow: hidden; }
.lf-access__halo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(140,146,120,.12) 0%, transparent 70%);
  animation: lf-glow var(--lf-breath) ease-in-out infinite;
}
.lf-access__inner { position: relative; z-index: 2; max-width: var(--lf-max); margin: 0 auto; }
.lf-access__head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.lf-access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 700px) { .lf-access__grid { grid-template-columns: 1fr; } }

.lf-access-card {
  background: var(--lf-night-3);
  border: 1px solid var(--lf-line-soft);
  border-radius: 20px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .5s var(--lf-ease), border-color .5s, box-shadow .5s;
  position: relative;
  overflow: hidden;
}
.lf-access-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lf-sage), transparent);
  transform: scaleX(0);
  transition: transform .6s var(--lf-ease);
}
.lf-access-card:hover {
  transform: translateY(-5px);
  border-color: rgba(140,146,120,.22);
  box-shadow: 0 32px 64px -28px rgba(0,0,0,.6);
}
.lf-access-card:hover::before { transform: scaleX(1); }

.lf-access-card--primary {
  background: linear-gradient(160deg, #1C221A 0%, #111510 100%);
  border-color: rgba(140,146,120,.20);
}
.lf-access-card--primary .lf-ac-title { color: var(--lf-mist); }
.lf-access-card--primary .lf-ac-desc  { color: rgba(178,183,156,.75); }
.lf-access-card--primary .lf-ac-cta   { color: var(--lf-sage); }

.lf-ac-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--lf-sage-faint);
  border: 1px solid var(--lf-line-soft);
  color: var(--lf-stone);
  font-family: var(--lf-font-body);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 1.4rem;
}
.lf-access-card--primary .lf-ac-chip {
  background: rgba(140,146,120,.12);
  border-color: rgba(140,146,120,.18);
  color: var(--lf-sage);
}
.lf-ac-title {
  font-family: var(--lf-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--lf-text-bright);
  margin: 0 0 1.1rem;
  line-height: 1.15;
}
.lf-ac-desc {
  font-family: var(--lf-font-body);
  font-size: 15px;
  line-height: 1.78;
  color: var(--lf-text-soft);
  flex-grow: 1;
  margin: 0 0 2rem;
}
.lf-ac-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lf-font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lf-stone);
  transition: gap .3s, color .3s;
}
.lf-access-card:hover .lf-ac-cta { gap: 14px; color: var(--lf-mist); }

/* SECTION FAMILLE */
.lf-family { background: var(--lf-night); text-align: center; }
.lf-family__inner { max-width: 800px; margin: 0 auto; }
.lf-family p {
  font-family: var(--lf-font-body);
  font-size: 16px;
  color: var(--lf-text-soft);
  line-height: 1.8;
  margin: 0 auto 1.5rem;
  max-width: 640px;
}
.lf-family p em { color: var(--lf-mist); font-style: italic; }


/* ═══════════════════════════════════════════════════════════════════════
   HISTOIRE — page premium
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Page premium : histoire.html ── */
/* Design éditorial — lecture longue sur fond forêt */

/* La palette verte est définie dans lefil-global.css via body.page-histoire.
   Le JS détecte la page et ajoute la classe sur le vrai <body> Divi.
   Ici on garde uniquement la typo éditoriale. */
body.page-histoire {
  font-family: var(--lf-font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.9;
}

/* Header simplifié pour l'article */
.hist-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(36,51,34,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(130,170,100,.14);
}
.hist-header__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px var(--lf-pad-x);
  display: flex; align-items: center; justify-content: space-between;
}
.hist-back {
  font-family: var(--lf-font-body);
  font-size: .76rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--lf-text-mute);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s;
}
.hist-back:hover { color: var(--lf-sage); }
.hist-brand {
  font-family: var(--lf-font-display);
  font-style: italic; font-weight: 500; font-size: 1.2rem;
  color: var(--lf-mist); text-decoration: none;
}

/* Halo de fond — poches de lumière verte dans la forêt */
.hist-halo {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 38% at 72% 16%, rgba(140,200,90,.09) 0%, transparent 60%),
    radial-gradient(ellipse 42% 28% at 18% 84%, rgba(100,160,60,.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 48% 52%, rgba(80,130,50,.05) 0%, transparent 65%);
  animation: lf-glow calc(var(--lf-breath) * 1.5) ease-in-out infinite;
}

/* Thread canvas arrière-plan */
.hist-canvas {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  opacity: .6;
}

/* ARTICLE */
article.hist-article {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(60px,10vw,120px) var(--lf-pad-x) clamp(80px,12vw,150px);
  position: relative;
}

/* Meta */
.hist-meta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--lf-font-body);
  font-size: .70rem; font-weight: 500; letter-spacing: .26em;
  text-transform: uppercase; color: var(--lf-stone); margin-bottom: 2rem;
}
.hist-meta::before {
  content: ''; width: 24px; height: 1px;
  background: linear-gradient(to right, transparent, var(--lf-sage));
  opacity: .65;
}
.hist-meta span { color: var(--lf-text-mute); }

/* Symbole visuel */
.hist-symbol {
  position: relative; width: 72px; height: 72px; margin: 0 0 3rem;
}
.hist-symbol::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--lf-stone); opacity: 0;
  animation: lf-ring var(--lf-breath) ease-in-out infinite;
}
.hist-symbol::after {
  content: ''; position: absolute; inset: 20%;
  background: radial-gradient(circle, var(--lf-sage) 0%, transparent 70%);
  border-radius: 50%; opacity: .55; filter: blur(10px);
  animation: lf-glow var(--lf-breath) ease-in-out infinite;
}

/* Titre principal */
.hist-title {
  font-family: var(--lf-font-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(36px, 6vw, 62px); line-height: 1.04;
  color: var(--lf-text-bright); letter-spacing: -.008em;
  margin: 0 0 1.4rem;
}

/* Sous-titre */
.hist-sub {
  font-family: var(--lf-font-display);
  font-style: italic; font-size: 1.15rem; line-height: 1.75;
  color: var(--lf-text-mute); margin: 0 0 3.5rem;
  padding-bottom: 2.8rem; border-bottom: 1px solid var(--lf-line-soft);
}

/* Corps de l'article */
.hist-body p {
  font-family: var(--lf-font-display);
  font-weight: 400; font-size: 19px; line-height: 1.92;
  color: var(--lf-text); margin: 0 0 1.8rem; letter-spacing: .006em;
}
.hist-body p em { color: var(--lf-mist); font-style: italic; }
.hist-body p strong { color: var(--lf-text-bright); font-weight: 500; }

.hist-body h2 {
  font-family: var(--lf-font-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.22;
  color: var(--lf-text-bright); margin: 3.5rem 0 1.5rem;
  letter-spacing: -.005em;
}
.hist-body h2 em { color: var(--lf-sage); }

.hist-body h3 {
  font-family: var(--lf-font-body);
  font-size: .70rem; font-weight: 500; letter-spacing: .26em;
  text-transform: uppercase; color: var(--lf-stone); margin: 3rem 0 .9rem;
}

/* Séparateur souffle interne */
.hist-breath {
  display: flex; justify-content: center; align-items: center;
  margin: 3rem 0; position: relative;
}
.hist-breath__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lf-sage);
  box-shadow: 0 0 12px rgba(140,146,120,.5), 0 0 24px rgba(140,146,120,.2);
  animation: lf-breath var(--lf-breath) ease-in-out infinite;
}

/* Pull quote */
.hist-pull {
  font-family: var(--lf-font-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.45;
  color: var(--lf-sage); margin: 3rem 0;
  padding: 2rem 0 2rem 2.4rem;
  border-left: 2px solid var(--lf-stone);
}

/* Signature */
.hist-sign {
  margin-top: 4.5rem; padding-top: 3rem;
  border-top: 1px solid var(--lf-line-soft);
}
.hist-sign__name {
  font-family: var(--lf-font-display); font-style: italic; font-weight: 500;
  font-size: 1.2rem; color: var(--lf-sage); margin: 0 0 4px;
}
.hist-sign__role {
  font-family: var(--lf-font-body);
  font-size: .76rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lf-text-mute);
}

/* CTA BAS D'ARTICLE */
.hist-cta {
  max-width: 720px; margin: 0 auto;
  padding: clamp(40px,6vw,72px) var(--lf-pad-x) clamp(80px,10vw,120px);
  text-align: center; border-top: 1px solid var(--lf-line-soft);
}
.hist-cta__phrase {
  font-family: var(--lf-font-display); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.6vw, 28px); line-height: 1.5;
  color: var(--lf-sage); margin: 0 0 2.2rem;
}

/* Footer simplifié pour lecture */
.hist-footer {
  background: var(--lf-night-2);
  border-top: 1px solid var(--lf-line-soft);
  padding: 56px var(--lf-pad-x) 36px;
  text-align: center;
}
.hist-footer__nav {
  display: flex; gap: 28px; justify-content: center;
  margin-bottom: 24px; flex-wrap: wrap;
}
.hist-footer__nav a {
  font-family: var(--lf-font-body);
  font-size: .76rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--lf-text-mute);
  text-decoration: none; transition: color .3s;
}
.hist-footer__nav a:hover { color: var(--lf-mist); }
.hist-footer__copy {
  font-family: var(--lf-font-body);
  font-size: .70rem; color: var(--lf-text-mute); letter-spacing: .06em;
}

@media (max-width: 600px) {
  .hist-pull { font-size: 20px; padding-left: 1.4rem; }
  .hist-body p { font-size: 17px; }
}

/* ─── HISTOIRE PREMIUM — polish assets.lefil.app ───────────────────────── */
.hist-header {
  box-shadow: 0 18px 44px -36px rgba(0,0,0,.85);
}
.hist-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hist-brand::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lf-sage);
  box-shadow: 0 0 18px rgba(140,146,120,.38);
  animation: lf-breath var(--lf-breath) ease-in-out infinite;
}
article.hist-article::before {
  content: '';
  position: absolute;
  top: clamp(48px,8vw,92px);
  left: calc(var(--lf-pad-x) * -0.35);
  width: 1px;
  height: calc(100% - 180px);
  background: linear-gradient(to bottom, transparent, rgba(140,146,120,.28), transparent);
  opacity: .42;
}
.hist-title {
  text-wrap: balance;
}
.hist-sub {
  text-wrap: balance;
}
.hist-body p {
  text-wrap: pretty;
}
.hist-body a {
  color: var(--lf-sage);
  text-decoration: underline;
  text-decoration-color: rgba(140,146,120,.28);
  text-underline-offset: 4px;
  transition: color .3s, text-decoration-color .3s;
}
.hist-body a:hover {
  color: var(--lf-mist);
  text-decoration-color: var(--lf-mist);
}
.hist-pull {
  position: relative;
  background: linear-gradient(90deg, rgba(140,146,120,.045), transparent 72%);
  border-radius: 0 18px 18px 0;
}
.hist-pull::before {
  content: '“';
  position: absolute;
  left: 18px;
  top: -24px;
  font-family: var(--lf-font-display);
  font-size: 72px;
  color: rgba(140,146,120,.12);
  line-height: 1;
}
.hist-sign {
  position: relative;
}
.hist-sign::after {
  content: '';
  position: absolute;
  right: 0;
  top: 3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(140,146,120,.18);
  background: radial-gradient(circle, rgba(140,146,120,.10), transparent 70%);
}
.hist-cta {
  position: relative;
}
.hist-cta::before {
  content: '';
  position: absolute;
  inset: 0 var(--lf-pad-x) auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(140,146,120,.22), transparent);
}
@media (max-width: 600px) {
  article.hist-article::before { display: none; }
  .hist-meta { display: flex; flex-wrap: wrap; gap: 8px; }
  .hist-symbol { margin-bottom: 2.2rem; }
  .hist-sign::after { display: none; }
}
/* Confirmation WPForms — Le Fil */
.wpforms-confirmation-container-full,
.wpforms-confirmation-scroll {
  background: #060a08 !important;
  color: #e7e2cf !important;
  border: 1px solid rgba(214, 207, 171, 0.18) !important;
  border-radius: 28px !important;
  padding: 28px !important;
  opacity: 1 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
}

.wpforms-confirmation-container-full p,
.wpforms-confirmation-container-full strong,
.wpforms-confirmation-container-full div,
.wpforms-confirmation-scroll p,
.wpforms-confirmation-scroll strong,
.wpforms-confirmation-scroll div {
  color: #e7e2cf !important;
  opacity: 1 !important;
}

.wpforms-confirmation-container-full a,
.wpforms-confirmation-scroll a {
  color: #d8d1ad !important;
  text-decoration: underline !important;
}
.wpforms-confirmation-container-full,
.wpforms-confirmation-scroll {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}
