/* =========================================================
   Nathalie WALTER, Maquette LUMINIA
   Design system partagé (palette terracotta / olive / moutarde)
   ========================================================= */

:root {
  --brown:      #81361d;   /* rust profond, titres forts */
  --terracotta: #d05b34;   /* accent principal / CTA       */
  --coral:      #d56a50;   /* secondaire chaud             */
  --peach:      #e39e87;   /* tons doux / tuiles claires   */
  --olive:      #83845e;   /* secondaire calme             */
  --mustard:    #e2aa2d;   /* highlight / étoiles          */

  --bg:         #fbf7f1;   /* crème chaud                  */
  --bg-2:       #f4ece2;   /* crème plus soutenu           */
  --bg-olive:   #eef0e6;   /* voile olive très clair       */
  --surface:    #ffffff;
  --ink:        #3a2c24;   /* texte courant brun chaud     */
  --ink-soft:   #6b5a4f;   /* texte secondaire             */
  --border:     #ece2d6;   /* filets                       */
  --border-2:   #e0d3c3;

  --radius:     22px;
  --radius-sm:  14px;
  --shadow:     0 18px 48px -22px rgba(90, 45, 25, .28);
  --shadow-sm:  0 8px 26px -14px rgba(90, 45, 25, .22);
  --nav-h:      72px;
  --maxw:       1200px;
  --ease:       cubic-bezier(.22, 1, .36, 1);
  --font-body:  "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head:  "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--brown);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p  { margin: 0 0 1rem; }
strong { color: var(--brown); font-weight: 600; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(44px, 6vw, 76px) 0; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 12px 26px -12px rgba(208, 91, 52, .8); }
.btn-primary:hover { background: #bf4d2a; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(208, 91, 52, .9); }
.btn-ghost { background: transparent; color: var(--brown); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--olive); color: var(--olive); transform: translateY(-2px); }
.btn-olive { background: var(--olive); color: #fff; }
.btn-olive:hover { background: #6e6f4d; transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-light { background: #fff; color: var(--brown); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 10px 0;
  background: transparent; border: 1px solid transparent; border-radius: 0; box-shadow: none;
  transition: top .55s var(--ease), left .55s var(--ease), right .55s var(--ease),
    padding .45s var(--ease), background .5s var(--ease), border-color .5s var(--ease),
    border-radius .5s var(--ease), box-shadow .5s var(--ease);
}
.nav.scrolled {
  top: 14px; left: 20px; right: 20px; padding: 4px 0; border-radius: 18px;
  background: rgba(251, 247, 241, .9);
  backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 6px 26px -6px rgba(90, 45, 25, .12), 0 1px 0 rgba(255, 255, 255, .6) inset;
}
.nav > .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: var(--nav-h); flex-wrap: nowrap; }

.brand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; letter-spacing: -.01em; line-height: 1; display: flex; align-items: baseline; gap: .28em; }
.brand .b1 { color: var(--terracotta); font-style: italic; font-weight: 500; }
.brand .b2 { color: var(--olive); text-transform: uppercase; letter-spacing: .06em; font-size: .92em; }

.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav-links > li { position: relative; list-style: none; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 9px 12px; border-radius: 10px; transition: color .25s, background .25s;
}
.nav-tel { white-space: nowrap; }
/* état resserré au scroll : on compacte un peu pour que tout tienne sur une ligne */
.nav.scrolled .nav-link { padding: 8px 10px; font-size: 14.5px; }
.nav.scrolled > .container { gap: 12px; }
.nav.scrolled .nav-cta { gap: 10px; }
.nav-link:hover, .nav-link.active { color: var(--terracotta); background: rgba(208, 91, 52, .07); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.has-drop:hover .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 8px;
  min-width: 250px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: .3s var(--ease);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink); transition: background .2s, color .2s; }
.dropdown a:hover { background: var(--bg-2); color: var(--terracotta); }
.dropdown a .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-tel { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; color: var(--brown); }
.nav-tel svg { width: 16px; height: 16px; color: var(--terracotta); }

.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--border-2); background: rgba(255,255,255,.7); border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; flex: none; }
.burger span { display: block; width: 20px; height: 2px; background: var(--brown); border-radius: 2px; position: relative; transition: .3s var(--ease); }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--brown); border-radius: 2px; transition: .3s var(--ease); }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

/* =========================================================
   HERO (accueil)
   ========================================================= */
.hero { position: relative; display: grid; grid-template-columns: 54fr 46fr; min-height: 100dvh; padding-top: 66px; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: clamp(18px, 3vh, 48px) 48px clamp(18px, 3vh, 48px) clamp(24px, 6vw, 110px); }
.hero h1 { font-size: clamp(2.3rem, 4vw, 3.4rem); margin-bottom: clamp(10px, 1.4vh, 15px); }
.hero h1 .hl { color: var(--terracotta); font-style: italic; }
.hero-sub { font-size: clamp(1rem, 1.05rem + .2vw, 1.12rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: clamp(16px, 2.2vh, 26px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(10px, 1.6vh, 16px); }
/* micro-copie de réassurance sous un CTA (technique CRO) */
.cta-reassure { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--ink-soft); margin-bottom: clamp(14px, 2.2vh, 24px); }
.cta-reassure svg { width: 15px; height: 15px; color: #5f8a55; flex: none; }
.center .cta-reassure { justify-content: center; }
.cta-band .cta-reassure { color: rgba(255,255,255,.9); margin: 14px 0 0; }
.cta-band .cta-reassure svg { color: rgba(255,255,255,.9); }

.hero-proof { display: flex; align-items: center; gap: 26px; padding-top: clamp(14px, 2vh, 22px); border-top: 1px solid var(--border); }
.proof-item { display: flex; flex-direction: column; gap: 3px; }
.proof-item .stars { display: flex; gap: 2px; color: var(--mustard); }
.proof-item .stars svg { width: 15px; height: 15px; }
.proof-num { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--brown); line-height: 1; }
.proof-label { font-size: 12.5px; color: var(--ink-soft); }
.proof-sep { width: 1px; align-self: stretch; background: var(--border-2); }

.hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: clamp(28px,5vh,60px) clamp(28px,4vw,64px) clamp(44px,6vh,80px) 8px; }
.hero-photo { position: relative; width: 100%; max-width: min(500px, 62vh); aspect-ratio: 4/5; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(129,54,29,.42)); }
.hero-namecard { position: absolute; left: 18px; bottom: 18px; right: 18px; z-index: 2; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-radius: 16px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; box-shadow: var(--shadow-sm); }
.hero-namecard .n { font-family: var(--font-head); font-weight: 600; color: var(--brown); font-size: 1.05rem; line-height: 1.1; }
.hero-namecard .r { font-size: 12.5px; color: var(--ink-soft); }
.hero-namecard .badge-mini { background: var(--bg-olive); color: var(--olive); font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 999px; text-align: center; line-height: 1.15; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: -1; }
.hero-tree { position: absolute; z-index: -1; pointer-events: none; user-select: none;
  left: -6%; top: 50%; transform: translateY(-50%);
  height: min(840px, 102vh); width: auto; opacity: .11; }

/* =========================================================
   PAGE HERO (sous-pages : titre + visuel)
   ========================================================= */
.pagehero { padding: calc(var(--nav-h) + 70px) 0 clamp(48px, 6vw, 80px); background: var(--bg-olive); position: relative; }
.pagehero.warm { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.pagehero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
.pagehero-grid.single { grid-template-columns: 1fr; text-align: center; }
.pagehero h1 { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-bottom: 14px; }
.pagehero .lead { margin-bottom: 26px; }
.pagehero-visual { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; position: relative; }
.pagehero-visual img { width: 100%; height: 100%; object-fit: cover; }
.pagehero-visual .credit { position: absolute; left: 10px; bottom: 8px; font-size: 10px; color: rgba(255,255,255,.75); writing-mode: vertical-rl; transform: rotate(180deg); }
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--terracotta); }

/* marges latérales généreuses sur les heros de sous-pages (comme l'accueil) */
.pagehero .container { width: min(100% - clamp(48px, 14vw, 220px), var(--maxw)); margin-inline: auto; }

/* pagehero plein écran (fit), la photo tient entièrement dans la fenêtre */
.pagehero.fit { min-height: 100dvh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 22px) 0 22px; }
.pagehero.fit .pagehero-grid { align-items: center; }
.pagehero.fit .pagehero-visual { aspect-ratio: 4/5; max-width: min(440px, 62vh);
  width: 100%; margin-inline: auto; justify-self: center; }

/* =========================================================
   CARDS & GRIDS
   ========================================================= */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* pilier / tuiles colorées (méthode EARN) */
.pillar-tile { border-radius: var(--radius); padding: 30px 26px; color: #fff; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.pillar-tile:hover { transform: translateY(-5px); }
.pillar-tile .k { font-family: var(--font-head); font-size: 2.4rem; opacity: .35; line-height: 1; margin-bottom: auto; }
.pillar-tile h3 { color: #fff; margin-bottom: 6px; }
.pillar-tile p { color: rgba(255,255,255,.9); font-size: .93rem; margin: 0; }

/* =========================================================
   EARN diagram
   ========================================================= */
.earn-diagram { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 440px; }
.earn-node { border-radius: 18px; padding: 22px 18px; color: #fff; text-align: center; font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.earn-center { grid-column: 1 / -1; background: var(--bg); color: var(--brown); border: 2px dashed var(--terracotta); }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-photo { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-tag { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.92); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-sm); }
.about-tag .big { font-family: var(--font-head); font-size: 1.6rem; color: var(--terracotta); font-weight: 600; line-height: 1; }
.about-tag .small { font-size: 12.5px; color: var(--ink-soft); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.value { text-align: center; }
.value .vico { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-olive); color: var(--olive); display: grid; place-items: center; margin: 0 auto 10px; }
.value .vico svg { width: 24px; height: 24px; }
.value p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.value strong { display: block; color: var(--brown); font-size: 14.5px; }

/* =========================================================
   TESTIMONIALS marquee
   ========================================================= */
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 22px; width: max-content; animation: marquee 44s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review { width: 380px; flex: none; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.review .top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.review .av.ph { display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; color: #fff; }
.review .who { font-weight: 600; color: var(--brown); font-size: 15px; line-height: 1.2; }
.review .stars { display: flex; gap: 2px; color: var(--mustard); margin-top: 3px; }
.review .stars svg { width: 14px; height: 14px; }
.review p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.review .quote { font-family: var(--font-head); font-size: 2.4rem; color: var(--peach); line-height: .4; height: 20px; }

/* =========================================================
   PUBLICATIONS
   ========================================================= */
.pubs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pub { text-align: center; }
.pub-cover { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/4; background: var(--bg-2); transition: transform .35s var(--ease); }
.pub:hover .pub-cover { transform: translateY(-6px) rotate(-1deg); }
.pub-cover img { width: 100%; height: 100%; object-fit: cover; }
.pub h4 { font-size: 1rem; margin: 16px 0 2px; }
.pub p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* =========================================================
   PROCESS steps (SANE)
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; position: relative; }
.step .num { width: 68px; height: 68px; border-radius: 50%; background: var(--terracotta); color: #fff; font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; display: grid; place-items: center; margin: 0 auto 16px; box-shadow: 0 12px 26px -12px rgba(208,91,52,.7); }
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 34px; right: -12px; width: 24px; height: 2px; background: var(--border-2); }

/* convergence NRJ + TEMPO -> alignement (accueil) */
/* =========================================================
   SCHÉMA ACCUEIL : 2 méthodes -> alignement (jauge + traits)
   ========================================================= */
.schema { max-width: 940px; }
/* jauge chronologique : moutarde (avant, gauche) -> burn-out (centre) -> vert (après, droite) */
.schema-gauge { max-width: 760px; margin: 0 auto 34px; }
.schema-track { position: relative; height: 14px; border-radius: 999px; background: linear-gradient(90deg, var(--mustard), #b06a3a 50%, #7a8b5a); }
.schema-track .pin { position: absolute; top: 50%; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--terracotta); transform: translate(-50%, -50%); box-shadow: var(--shadow-sm); }
.schema-track .pin.a { left: 16%; } .schema-track .pin.b { left: 84%; }
/* éclair = le burn-out, point de bascule au centre */
.schema-burnout { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: var(--brown); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 18px -6px rgba(129,54,29,.7); z-index: 2; }
.schema-burnout svg { width: 20px; height: 20px; }
.schema-ends { display: flex; justify-content: space-between; margin-top: 12px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.schema-ends .mid { color: var(--brown); }
/* cartes */
.schema-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.schema-card { display: block; text-decoration: none; color: inherit; background: var(--surface); border: 1.5px solid var(--border-2); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.schema-card:hover { transform: translateY(-4px); border-color: var(--terracotta); box-shadow: var(--shadow); }
.schema-card .sc-head { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.sc-chip { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.sc-chip svg { width: 25px; height: 25px; }
.schema-card h3 { font-size: 1.4rem; line-height: 1.05; }
.schema-card .sc-q { font-family: var(--font-head); font-style: italic; color: var(--terracotta); font-size: 1.05rem; margin-bottom: 12px; }
.schema-card .sc-body { color: var(--ink-soft); font-size: .93rem; margin-bottom: 15px; }
.sc-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 8px; }
.sc-list li { display: flex; gap: 10px; font-size: .89rem; color: var(--ink); }
.sc-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; margin-top: 8px; flex: none; }
.schema-card.nrj .sc-list li::before { background: var(--olive); }
.schema-card.tempo .sc-list li::before { background: var(--mustard); }
.sc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--terracotta); font-size: .95rem; }
.sc-link svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.schema-card:hover .sc-link svg { transform: translateX(4px); }
/* traits de jonction */
.schema-join { line-height: 0; margin: -4px 0; }
.schema-join svg { width: 100%; height: auto; display: block; overflow: visible; }
/* carte alignement */
.schema-goal { max-width: 520px; margin: 0 auto; background: linear-gradient(160deg, #c15a33, #8f3f22); color: #fff; border-radius: 24px; text-align: center; padding: 34px 38px; box-shadow: var(--shadow); }
.schema-goal .sg-ico { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.16); display: grid; place-items: center; margin: 0 auto 16px; }
.schema-goal .sg-ico svg { width: 30px; height: 30px; color: #fff; }
.schema-goal h3 { color: #fff; font-size: 1.9rem; margin-bottom: 10px; }
.schema-goal p { color: rgba(255,255,255,.92); font-size: .97rem; max-width: 400px; margin: 0 auto; }

/* checklist */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .97rem; }
.check-list li svg { width: 20px; height: 20px; flex: none; color: var(--terracotta); margin-top: 2px; }

/* offers */
.offer { border: 1.5px solid var(--border-2); border-radius: var(--radius); padding: 28px; background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s; }
.offer:hover { transform: translateY(-5px); border-color: var(--terracotta); }
.offer .dur { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--olive); }
.offer h3 { margin: 6px 0 14px; }
.offer .offer-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 9px; }
.offer .offer-list li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-soft); }
.offer .offer-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--peach); margin-top: 8px; flex: none; }
.offer .btn { margin-top: auto; }

/* =========================================================
   Split feature (image + texte)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split-media { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* bandeau coloré */
.band { color: #fff; }
.band.olive { background: var(--olive); }
.band.terra { background: var(--terracotta); }
.band.brown { background: var(--brown); }
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(255,255,255,.92); }
.band .eyebrow { color: rgba(255,255,255,.85); }

/* section teintée */
.tint { background: var(--bg-olive); }
.tint-2 { background: var(--bg-2); }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.post { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-img { aspect-ratio: 16/10; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post-img img { transform: scale(1.05); }
.post-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.post h3 { margin-bottom: 10px; }
.post p { color: var(--ink-soft); font-size: .95rem; }
.post .btn { margin-top: auto; align-self: flex-start; }

/* =========================================================
   ARTICLE (page de blog)
   ========================================================= */
.article { max-width: 760px; margin: 0 auto; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: .88rem; color: var(--ink-soft); margin-bottom: 22px; }
.article-meta .cat { font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--terracotta); font-size: 12.5px; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-2); }
.article-cover { border-radius: var(--radius); overflow: hidden; margin: 0 0 40px; box-shadow: var(--shadow-sm); }
.article-cover img { width: 100%; height: auto; display: block; }
.article-lead { font-family: var(--font-head); font-size: 1.3rem; line-height: 1.5; color: var(--brown); margin-bottom: 34px; }
.article p { color: var(--ink); font-size: 1.06rem; line-height: 1.8; margin-bottom: 20px; }
.article h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 42px 0 16px; }
.article h3 { font-size: 1.25rem; color: var(--brown); margin: 30px 0 12px; }
.article ul, .article ol { margin: 0 0 22px; padding-left: 4px; list-style: none; display: grid; gap: 12px; }
.article ul li, .article ol li { position: relative; padding-left: 30px; color: var(--ink); font-size: 1.04rem; line-height: 1.7; }
.article ul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }
.article ol { counter-reset: n; }
.article ol li::before { counter-increment: n; content: counter(n); position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--terracotta); color: #fff; font-size: .78rem; font-weight: 700; display: grid; place-items: center; }
.article strong { color: var(--brown); }
.article a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
.article blockquote { margin: 30px 0; padding: 6px 0 6px 24px; border-left: 3px solid var(--terracotta); font-family: var(--font-head); font-style: italic; font-size: 1.2rem; color: var(--brown); }
/* encadré "à retenir" */
.callout { background: var(--bg-olive); border: 1.5px solid #dde1cf; border-radius: 18px; padding: 24px 28px; margin: 34px 0; }
.callout h3 { margin: 0 0 8px; color: var(--brown); font-size: 1.15rem; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }
/* mini-CTA méthode dans l'article */
.article-cta { background: linear-gradient(120deg, var(--brown), var(--terracotta)); color: #fff; border-radius: 20px; padding: 30px 32px; margin: 40px 0; text-align: center; }
.article-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,.9); margin-bottom: 20px; font-size: 1rem; }
/* FAQ */
.faq { margin: 40px 0 8px; }
.faq details { border: 1.5px solid var(--border-2); border-radius: 14px; padding: 4px 22px; margin-bottom: 12px; background: #fff; }
.faq summary { cursor: pointer; font-family: var(--font-head); font-size: 1.1rem; color: var(--brown); padding: 16px 0; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--terracotta); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-bottom: 18px; margin: 0; font-size: 1rem; }
/* navigation entre articles */
.article-nav { max-width: 760px; margin: 10px auto 0; display: flex; justify-content: center; }

/* =========================================================
   CTA final band
   ========================================================= */
.cta-band { background: linear-gradient(120deg, var(--brown), var(--terracotta)); color: #fff; border-radius: clamp(20px, 3vw, 32px); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 54ch; margin-inline: auto; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #2e1c12; color: #e9dbcd; padding: clamp(52px, 7vw, 80px) 0 0; }
.footer a { color: #d9c8b8; transition: color .25s; }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { font-size: 1.4rem; margin-bottom: 14px; }
.footer .brand .b1 { color: var(--peach); } .footer .brand .b2 { color: #c9caa6; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14.5px; }
.footer-desc { font-size: 14.5px; color: #c3b3a4; max-width: 34ch; }
.footer-contact li { display: flex; gap: 9px; align-items: center; margin-bottom: 10px; font-size: 14.5px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--peach); flex: none; }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer-social a:hover { background: var(--terracotta); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 22px 0; font-size: 13px; color: #b4a495; }
.footer-bottom .fb-center { text-align: center; }
.footer-bottom .fb-right { display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; }
.footer-bottom a.lum { color: var(--peach); font-weight: 600; }

/* =========================================================
   STICKY CTA
   ========================================================= */
.sticky-cta { position: fixed; bottom: 26px; right: 26px; z-index: 90; opacity: 0; visibility: hidden; transform: translateY(20px) scale(.9); transition: .45s var(--ease); }
.sticky-cta.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.sticky-cta .btn { box-shadow: 0 16px 34px -10px rgba(208,91,52,.75); position: relative; }
.sticky-cta .btn::before { content: ""; position: absolute; inset: 0; border-radius: 999px; border: 2px solid var(--terracotta); animation: ring 2.2s infinite; }
@keyframes ring { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.35);opacity:0} }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie { position: fixed; left: 20px; bottom: 20px; z-index: 120; max-width: 380px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px 22px; box-shadow: var(--shadow); transform: translateY(20px); opacity: 0; visibility: hidden; transition: .4s var(--ease); }
.cookie.show { transform: translateY(0); opacity: 1; visibility: visible; }
.cookie h4 { font-size: 1.05rem; margin-bottom: 8px; }
.cookie p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.cookie p a { color: var(--terracotta); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1; padding: 11px 14px; font-size: 14px; }

/* =========================================================
   FORMS (contact)
   ========================================================= */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--brown); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--border-2); border-radius: 12px;
  background: #fff; transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(208,91,52,.12);
}
.field input.invalid, .field textarea.invalid, .field select.invalid { border-color: #c0392b; }
.field-err { display: none; font-size: 12.5px; color: #c0392b; }
.field-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field-check input { width: auto; margin-top: 3px; }
.field-check label { font-weight: 400; color: var(--ink-soft); font-size: 13px; }
.form-success { display: none; background: #e7f0e2; color: #3f6a34; border-radius: 12px; padding: 14px 16px; font-size: 14.5px; font-weight: 500; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info .ci { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .ci .ci-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-olive); color: var(--olive); display: grid; place-items: center; flex: none; }
.contact-info .ci .ci-ico svg { width: 22px; height: 22px; }
.contact-info .ci .ci-t { font-weight: 600; color: var(--brown); font-size: 15px; }
.contact-info .ci .ci-v { color: var(--ink-soft); font-size: 14.5px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }

/* DISC wheel */
.disc-wheel { width: 220px; height: 220px; border-radius: 50%; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; overflow: hidden; box-shadow: var(--shadow); margin: 0 auto; position: relative; }
.disc-wheel span { display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.disc-wheel::after { content: ""; position: absolute; inset: 40%; background: #fff; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,255,255,.6); }

/* legal prose */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.5rem; margin-top: 40px; }
.legal h3 { font-size: 1.15rem; margin-top: 26px; }
.legal p, .legal li { color: var(--ink-soft); font-size: .97rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .9rem; }
.legal th, .legal td { border: 1px solid var(--border-2); padding: 10px 12px; text-align: left; }
.legal th { background: var(--bg-olive); color: var(--brown); }
.note-box { background: #faedcf; border-left: 4px solid var(--mustard); border-radius: 10px; padding: 14px 18px; font-size: .9rem; color: #7a5a12; margin: 20px 0; }

/* =========================================================
   MOBILE MENU
   ========================================================= */
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: rgba(46,28,18,.4); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .35s var(--ease); }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(88%, 360px); background: var(--bg); padding: 26px 24px; transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; display: flex; flex-direction: column; }
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mm-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-2); background: #fff; display: grid; place-items: center; cursor: pointer; }
.mm-close svg { width: 20px; height: 20px; color: var(--brown); }
.mobile-panel .brand { margin-bottom: 30px; }
.mm-links { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; }
.mm-links > li > a, .mm-sub-title { display: block; padding: 14px 0; font-size: 17px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border); font-family: var(--font-head); }
.mm-links > li > a:hover { color: var(--terracotta); }
.mm-sub { list-style: none; padding: 4px 0 10px 14px; margin: 0; display: grid; gap: 2px; }
.mm-sub a { display: block; padding: 8px 0; font-size: 14.5px; color: var(--ink-soft); }
.mm-sub a:hover { color: var(--terracotta); }
.mm-cta { margin-top: auto; display: grid; gap: 12px; padding-top: 20px; }

/* =========================================================
   REVEAL
   ========================================================= */
/* Contenu visible par défaut ; l'animation ne s'applique que si le JS est actif (classe .js sur <html>). */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } * { scroll-behavior: auto; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav-links, .nav-tel, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav .container { width: calc(100% - 40px); }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--nav-h) + 40px); }
  .hero-left { padding: 10px 24px 30px; align-items: flex-start; }
  .hero-right { padding: 0 24px 40px; }
  .hero-photo { max-width: 380px; }
  .pagehero-grid { grid-template-columns: 1fr; }
  .pagehero-visual { order: 2; max-width: 520px; }
  .pagehero.fit { min-height: auto; display: block; padding-top: calc(var(--nav-h) + 30px); }
  .pagehero.fit .pagehero-visual { max-width: 380px; margin-inline: auto; }
  .about-grid, .split { grid-template-columns: 1fr; }
  .about-photo, .split-media { order: 2; max-width: 480px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .pubs, .steps, .blog-grid, .values, .earn-diagram, .form-row, .contact-grid, .schema-cards { grid-template-columns: 1fr; }
  .schema-join { display: none; }
  .schema-goal { margin-top: 22px; }
  .hero-tree { height: 480px; left: -22%; top: 40%; opacity: .07; }
  .earn-diagram { max-width: 320px; }
  .step:not(:last-child)::after { display: none; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .hero-proof { flex-wrap: wrap; gap: 14px 20px; }
  .hero-proof .proof-sep { display: none; }
  .proof-item { flex: 0 0 auto; }
  .review { width: 300px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom .fb-right { justify-content: center; }
  .cookie { left: 12px; right: 12px; max-width: none; }
  .sticky-cta { left: 12px; right: 12px; bottom: 0; }
  .sticky-cta.visible { transform: none; }
  .sticky-cta .btn { width: 100%; border-radius: 0; padding: 16px; }
  .sticky-cta .btn::before { display: none; }
}
@media (max-width: 480px) {
  .values { grid-template-columns: repeat(2, 1fr); }
}
