/*!
Theme Name: Le Monde au Naturel
Theme URI: https://mondenaturel.ca
Author: Umbeli — Agence digitale
Author URI: https://umbeli.com
Description: Thème WordPress sur mesure pour Le Monde au Naturel — distributeur de produits naturels depuis 1990 à Trois-Rivières. Inclut accueil, boutique, guide santé, commerçants, à propos, contact et blog.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: monde-au-naturel
Tags: custom, business, blog, fr-ca
*/

/* ── VARIABLES ── */
:root {
  --gd: #2D5016;
  --gm: #4A7C2E;
  --gl: #8BC34A;
  --ed: #8B6914;
  --el: #D4A843;
  --cream: #F5F0E8;
  --blk: #1A1A1A;
  --gray: #6B7280;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Nunito', system-ui, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --shadow: 0 4px 32px rgba(0,0,0,.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--blk); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── ADMIN BAR FIX ── */
body.admin-bar .merchant-bar { top: 32px; }
body.admin-bar.home-page:not(.page-scrolled) .hdr { top: 74px; }
body.admin-bar .hdr { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .merchant-bar { top: 46px; }
  body.admin-bar .hdr { top: 46px; }
}

/* ── HEADER ── */
.merchant-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  min-height: 42px; padding: .55rem 2.5rem;
  display: none; align-items: center; justify-content: center; gap: 1rem;
  background: rgba(54,40,31,.96); color: white;
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s var(--ease);
}
body.home-page:not(.page-scrolled) .merchant-bar { display: flex; }
.merchant-bar.hide {
  opacity: 0; transform: translateY(-100%); visibility: hidden;
}
.merchant-bar span { color: rgba(255,255,255,.78); }
.merchant-bar a {
  display: inline-flex; align-items: center; gap: .45rem;
  color: white; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  font-size: .72rem; padding: .35rem .75rem; border-radius: 2rem;
  background: var(--gm); transition: all .2s var(--ease);
}
.merchant-bar a:hover { background: var(--gl); color: var(--blk); }
.merchant-bar svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.2; fill: none; }

.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: all .4s var(--ease);
}
body.home-page:not(.page-scrolled) .hdr { top: 42px; }
.hdr.solid {
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  padding: 1rem 2.5rem;
}
.logo-wrap { display: flex; align-items: center; gap: .75rem; cursor: pointer; }
.logo-img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s var(--ease);
}
.hdr.solid .logo-img { filter: none; }

.nav { display: flex; align-items: center; gap: .2rem; }
.nav a {
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .48rem .9rem; border-radius: 2rem;
  color: #fff; transition: all .2s;
}
.nav a.on, .nav a.current-menu-item, .nav .current-menu-item > a { background: rgba(255,255,255,.25); color: #fff; }
.nav a:hover { background: rgba(255,255,255,.2); color: #fff; }
.hdr.solid .nav a { color: var(--blk); }
.hdr.solid .nav a.on,
.hdr.solid .nav a.current-menu-item,
.hdr.solid .nav .current-menu-item > a,
.hdr.solid .nav a:hover { background: var(--gd); color: white; }

.hdr-cta {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em;
  color: #fff; border: 1.5px solid rgba(255,255,255,.75); border-radius: 2rem;
  padding: .48rem 1.1rem; transition: all .2s;
}
.hdr-cta:hover { background: rgba(255,255,255,.2); color: #fff; }
.hdr.solid .hdr-cta { color: var(--gd); border-color: var(--gd); }
.hdr.solid .hdr-cta:hover { background: var(--gd); color: white; }
.hdr-cta svg { width: 13px; height: 13px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hdr.solid .burger span { background: var(--blk); }

.mob-nav {
  display: none; position: fixed; inset: 0; background: var(--cream); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--gd); }
.mob-nav ul { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.mob-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--gd); cursor: pointer; }

/* ── HERO PRINCIPAL ── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 14s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.20) 75%, rgba(0,0,0,.10) 100%);
}
.hero-cnt {
  position: relative; z-index: 2;
  max-width: 820px; padding: 0 2.5rem 0 7rem; color: white;
}
.hero-lbl {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--el); margin-bottom: 1.5rem;
}
.hero-lbl::before { content: ''; width: 32px; height: 1.5px; background: var(--el); }
.hero h1 {
  font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.07; letter-spacing: -.01em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--el); }
.hero-sub { font-size: 1.05rem; font-weight: 400; line-height: 1.72; opacity: .88; max-width: 510px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--el); color: var(--blk);
  font-weight: 700; font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 2rem;
  transition: all .25s var(--ease);
}
.btn-gold:hover { background: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn-wh {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1.5px solid rgba(255,255,255,.55); color: white;
  font-weight: 600; font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 2rem; transition: all .25s var(--ease);
}
.btn-wh:hover { background: rgba(255,255,255,.15); border-color: white; }

.hero-ctas {
  display: flex; align-items: stretch; gap: .9rem; flex-wrap: wrap;
}
.hero-choice {
  display: inline-flex; align-items: center; gap: .85rem;
  min-height: 58px;
  padding: .9rem 1.5rem .9rem 1.2rem;
  border-radius: 2.5rem;
  transition: all .25s var(--ease);
}
.hero-choice.is-primary {
  background: var(--el); color: var(--blk);
  box-shadow: 0 8px 24px rgba(212,168,67,.32);
}
.hero-choice.is-secondary {
  background: rgba(45,80,22,.78); color: white;
  border: 1.5px solid rgba(255,255,255,.26);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.hero-choice:hover { transform: translateY(-2px); }
.hero-choice.is-primary:hover {
  background: white;
  box-shadow: 0 12px 32px rgba(212,168,67,.45);
}
.hero-choice.is-secondary:hover {
  background: rgba(74,124,46,.88);
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
}
.hero-choice svg.cta-ic { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }
.hero-choice .cta-tx { display: flex; flex-direction: column; line-height: 1.15; }
.hero-choice .cta-h { font-size: .92rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero-choice .cta-s { font-size: .72rem; font-weight: 500; opacity: .72; letter-spacing: .01em; margin-top: 1px; }
.hero-choice svg.cta-ar { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.4; fill: none; transition: transform .25s; }
.hero-choice:hover svg.cta-ar { transform: translateX(3px); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
}
.hero-scroll span { width: 1px; height: 48px; background: rgba(255,255,255,.28); animation: scrollPulse 2.2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.25;transform:scaleY(.4)} 50%{opacity:1;transform:scaleY(1)} }

/* ── HERO SOUS-PAGES ── */
.hero-sm {
  position: relative; height: 50vh; min-height: 350px; max-height: 450px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-sm .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: none; transition: none; }
.hero-sm .hero-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,80,22,.9) 0%, rgba(45,80,22,.4) 50%, rgba(0,0,0,.2) 100%); }
.hero-sm .hero-cnt { padding: 2.5rem 7rem; }
.hero-sm h1 { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: white; line-height: 1.1; }

/* ── SECTIONS ── */
.sec { padding: 7rem; }
.sec-sm { padding: 5rem 7rem; }
.sec-lbl {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ed); margin-bottom: 1rem;
}
.sec-lbl::before { content: ''; width: 24px; height: 1.5px; background: var(--ed); }
.sec-h {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--gd);
}
.sec-h em { font-style: italic; color: var(--ed); }
.sec-p { font-size: 1rem; line-height: 1.75; color: var(--gray); max-width: 560px; margin-top: 1.2rem; }
.sec-dk { background: var(--gd); }
.sec-dk .sec-h { color: white; }
.sec-dk .sec-p { color: rgba(255,255,255,.72); }
.sec-dk .sec-lbl { color: var(--el); }
.sec-dk .sec-lbl::before { background: var(--el); }
.sec-cr { background: var(--cream); }
.sec-wh { background: white; }
.sec-ea { background: #F9F4E8; }

/* ── STATS ── */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--gd);
}
.stat {
  padding: 3rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--gm); }
.stat-n {
  font-family: var(--serif); font-size: 3.6rem; font-weight: 300;
  color: var(--el); display: block; line-height: 1;
}
.stat-n sup { font-size: 1.4rem; vertical-align: super; }
.stat-l { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: .5rem; }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.split.rev .si { order: 2; }
.split.rev .st { order: 1; }
.si { position: relative; overflow: hidden; }
.si img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; display: block; }
.split:hover .si img { transform: scale(1.05); }
.si-ov {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(45,80,22,.18) 0%, transparent 60%);
}
.st {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem; background: var(--cream);
}
.split.rev .st { background: white; }
.st ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.st ul li { display: flex; align-items: flex-start; gap: .75rem; font-size: .93rem; line-height: 1.62; color: var(--gray); }
.st ul li svg { width: 18px; height: 18px; stroke: var(--gl); stroke-width: 2; fill: none; flex-shrink: 0; margin-top: .15rem; }
.st-btn { margin-top: 2.5rem; }
.btn-gn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gd); color: white;
  font-weight: 700; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .85rem 1.75rem; border-radius: 2rem; transition: all .25s var(--ease);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-gn:hover { background: var(--gm); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,80,22,.3); }
.btn-gn svg, .btn-gold svg, .btn-wh svg { width: 15px; height: 15px; }

/* ── CARDS ── */
.grid { display: grid; gap: 2rem; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: white; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: all .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.13); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 1.75rem; }
.c-tag {
  display: inline-block; font-size: .63rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ed); background: rgba(139,105,20,.1);
  padding: .28rem .7rem; border-radius: 2rem; margin-bottom: .7rem;
}
.card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--gd); line-height: 1.25; margin-bottom: .55rem; }
.card p { font-size: .88rem; line-height: 1.64; color: var(--gray); }
.c-lnk {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gd); margin-top: .9rem; transition: gap .2s;
}
.c-lnk:hover { gap: .7rem; }
.c-lnk svg { width: 13px; height: 13px; stroke: var(--gd); }

/* ── MARQUEE ── */
.mq-band {
  overflow: hidden; padding: 1.75rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(45,80,22,.1); border-bottom: 1px solid rgba(45,80,22,.1);
}
.mq-track { display: flex; gap: 4rem; white-space: nowrap; animation: mqScroll 32s linear infinite; }
.mq-track:hover { animation-play-state: paused; }
.mq-w { font-family: var(--serif); font-size: 2.1rem; font-weight: 300; font-style: italic; color: var(--gd); opacity: .18; }
@keyframes mqScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── PARALLAX ── */
.parallax {
  position: relative; height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.px-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.px-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,80,22,.87) 0%, rgba(139,105,20,.65) 100%);
}
.px-cnt { position: relative; z-index: 2; text-align: center; color: white; max-width: 760px; padding: 0 2rem; }
.px-cnt h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.2; margin-bottom: 1.25rem; }
.px-cnt p { font-size: 1rem; opacity: .83; line-height: 1.72; margin-bottom: 2rem; }

/* ── CATEGORIES ── */
.cat-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cat { position: relative; height: 300px; border-radius: 1rem; overflow: hidden; cursor: pointer; }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.cat:hover img { transform: scale(1.08); }
.cat-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,80,22,.88) 0%, rgba(45,80,22,.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem;
}
.cat h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; color: white; margin-bottom: .35rem; }
.cat p { font-size: .8rem; color: rgba(255,255,255,.72); }

/* ── TIMELINE ── */
.tl { display: flex; flex-direction: column; max-width: 740px; margin: 3rem auto 0; }
.tl-r { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 1.75rem 0; border-bottom: 1px solid rgba(45,80,22,.12); }
.tl-r:last-child { border-bottom: none; }
.tl-y { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ed); padding-top: .2rem; }
.tl-b h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--gd); margin-bottom: .35rem; }
.tl-b p { font-size: .9rem; line-height: 1.64; color: var(--gray); }

/* ── FORMULAIRE ── */
.form-g { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fg { display: flex; flex-direction: column; gap: .45rem; }
.fg.full { grid-column: 1/-1; }
.fg label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gd); }
.fg input, .fg textarea, .fg select {
  padding: .82rem 1.2rem; border: 1.5px solid rgba(45,80,22,.2);
  border-radius: .5rem; background: white; font-family: var(--sans);
  font-size: .9rem; color: var(--blk); outline: none; transition: border-color .2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gm); }
.fg textarea { resize: vertical; min-height: 130px; }
.form-feedback {
  padding: 1rem 1.2rem; border-radius: .5rem; margin-bottom: 1rem;
  font-size: .9rem; line-height: 1.5;
}
.form-feedback.ok { background: rgba(139,195,74,.15); color: var(--gd); border: 1px solid rgba(45,80,22,.2); }
.form-feedback.err { background: rgba(220,38,38,.08); color: #b91c1c; border: 1px solid rgba(220,38,38,.2); }

/* ── CONTACT INFO ── */
.ci-list { display: flex; flex-direction: column; gap: 1.75rem; }
.ci { display: flex; align-items: flex-start; gap: 1rem; }
.ci-ic {
  width: 46px; height: 46px; border-radius: .75rem;
  background: rgba(45,80,22,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-ic svg { width: 21px; height: 21px; stroke: var(--gd); stroke-width: 1.5; fill: none; }
.ci-lb { font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ed); margin-bottom: .22rem; }
.ci-v { font-size: .93rem; color: var(--blk); line-height: 1.5; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.step { text-align: center; }
.step-n {
  width: 60px; height: 60px; border-radius: 50%; background: rgba(45,80,22,.1);
  color: var(--gd); font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
}
.step h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--gd); margin-bottom: .4rem; }
.step p { font-size: .88rem; line-height: 1.64; color: var(--gray); }

/* ── VALEURS ── */
.valeurs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-top: 2.5rem; }
.val {
  display: flex; gap: 1.2rem; padding: 1.75rem;
  background: rgba(45,80,22,.04); border-radius: 1rem;
  border-left: 3px solid var(--gl);
}
.val-ic { flex-shrink: 0; margin-top: .1rem; }
.val-ic svg { width: 26px; height: 26px; stroke: var(--gd); stroke-width: 1.5; fill: none; }
.val h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--gd); margin-bottom: .35rem; }
.val p { font-size: .88rem; line-height: 1.63; color: var(--gray); }

/* ── AVANTAGES B2B ── */
.avantages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.av {
  display: flex; gap: 1rem; padding: 1.75rem;
  background: white; border-radius: 1rem; box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.av-ic {
  width: 46px; height: 46px; border-radius: .75rem;
  background: rgba(45,80,22,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.av-ic svg { width: 21px; height: 21px; stroke: var(--gd); stroke-width: 1.5; fill: none; }
.av h4 { font-family: var(--serif); font-size: 1.08rem; color: var(--gd); margin-bottom: .3rem; }
.av p { font-size: .86rem; line-height: 1.6; color: var(--gray); }

/* ── ABONNEMENT ── */
.abo-box {
  background: var(--gd); color: white; border-radius: 1.5rem;
  padding: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.abo-box h3 { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; line-height: 1.2; margin-bottom: 1rem; }
.abo-box p { font-size: .93rem; line-height: 1.72; opacity: .78; }
.abo-form { display: flex; flex-direction: column; gap: 1rem; }
.abo-form label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: .5rem;
}
.abo-form input {
  padding: .9rem 1.2rem; border: none; border-radius: .5rem;
  font-family: var(--sans); font-size: .9rem; width: 100%; outline: none;
  color: var(--blk);
}
.abo-form input:focus { outline: 2px solid var(--el); }
.abo-form .form-feedback { color: white; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.abo-form .form-feedback.ok { background: rgba(139,195,74,.25); border-color: rgba(139,195,74,.4); }

/* ── KLAVIYO embed — habille le widget natif dans .abo-box ── */
[class^="klaviyo-form-"], [class*=" klaviyo-form-"] { width: 100%; }
.abo-box [class^="klaviyo-form-"], .abo-box [class*=" klaviyo-form-"] { color: var(--blk); }
.abo-box [class^="klaviyo-form-"] form, .abo-box [class*=" klaviyo-form-"] form {
  background: transparent !important;
}

/* ── ARTICLE / POST CARD ── */
.art {
  background: white; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.art:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.art-img { height: 220px; overflow: hidden; background: var(--cream); }
.art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.art:hover .art-img img { transform: scale(1.07); }
.art-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.art-meta { display: flex; gap: .7rem; align-items: center; margin-bottom: .7rem; flex-wrap: wrap; }
.art-cat { font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ed); }
.art-date { font-size: .72rem; color: var(--gray); }
.art-body h2, .art-body h3, .art-body h4 { font-family: var(--serif); font-size: 1.25rem; color: var(--gd); margin-bottom: .45rem; line-height: 1.25; }
.art-body h2 a, .art-body h3 a, .art-body h4 a { color: inherit; transition: color .2s; }
.art-body h2 a:hover, .art-body h3 a:hover, .art-body h4 a:hover { color: var(--gm); }
.art-body p { font-size: .9rem; color: var(--gray); line-height: 1.62; flex: 1; }
.art .c-lnk { margin-top: 1rem; }

/* ── SINGLE POST ── */
.post-hero {
  position: relative; min-height: 50vh; padding: 9rem 7rem 4rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--gd); color: white; overflow: hidden;
}
.post-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,80,22,.92) 0%, rgba(45,80,22,.55) 100%);
  z-index: 1;
}
.post-hero.has-img::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--bg); background-size: cover; background-position: center;
  z-index: 0;
}
.post-hero > * { position: relative; z-index: 2; }
.post-hero .hero-lbl { color: var(--el); margin-bottom: 1rem; }
.post-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.1; max-width: 900px;
}
.post-hero h1 em { font-style: italic; color: var(--el); }
.post-meta-row {
  display: flex; gap: 1.25rem; align-items: center; margin-top: 1.25rem;
  font-size: .85rem; color: rgba(255,255,255,.8);
}
.post-meta-row a { color: rgba(255,255,255,.95); text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); }
.post-meta-row a:hover { color: var(--el); }

.post-body {
  max-width: 760px; margin: 0 auto; padding: 5rem 2rem 4rem;
  font-size: 1.05rem; line-height: 1.78; color: #2d2d2d;
}
.post-body h2 { font-family: var(--serif); color: var(--gd); font-size: 2rem; margin: 2.5rem 0 1rem; line-height: 1.2; }
.post-body h3 { font-family: var(--serif); color: var(--gd); font-size: 1.5rem; margin: 2rem 0 .75rem; }
.post-body h4 { font-family: var(--serif); color: var(--gd); font-size: 1.2rem; margin: 1.5rem 0 .6rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-body a { color: var(--gm); text-decoration: underline; text-decoration-color: rgba(74,124,46,.4); }
.post-body a:hover { color: var(--gd); text-decoration-color: currentColor; }
.post-body ul, .post-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-body ul li, .post-body ol li { margin-bottom: .5rem; list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body blockquote {
  border-left: 3px solid var(--gl);
  padding: .25rem 0 .25rem 1.5rem; margin: 2rem 0;
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
  color: var(--gd);
}
.post-body img { border-radius: .75rem; margin: 1.5rem 0; }
.post-body figure { margin: 2rem 0; }
.post-body figcaption { font-size: .85rem; color: var(--gray); text-align: center; margin-top: .5rem; font-style: italic; }
.post-body code { background: var(--cream); padding: .1rem .4rem; border-radius: .25rem; font-size: .92em; }
.post-body pre { background: var(--blk); color: white; padding: 1.25rem; border-radius: .5rem; overflow-x: auto; margin: 1.5rem 0; }
.post-body pre code { background: none; padding: 0; color: inherit; }

.post-share {
  max-width: 760px; margin: 0 auto; padding: 0 2rem 2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(45,80,22,.12);
  padding-top: 2rem;
}
.post-share .lbl { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ed); }
.post-share a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream); display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.post-share a:hover { background: var(--gd); color: white; }
.post-share svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.post-tags { max-width: 760px; margin: 0 auto; padding: 0 2rem 3rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.post-tags a {
  font-size: .72rem; padding: .35rem .8rem; border-radius: 2rem;
  background: rgba(45,80,22,.07); color: var(--gd); font-weight: 600;
  transition: all .2s;
}
.post-tags a:hover { background: var(--gd); color: white; }

/* ── PAGINATION ── */
.pagination {
  display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap;
  margin-top: 3.5rem;
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 .85rem; border-radius: 2rem;
  background: white; color: var(--gd); font-weight: 700; font-size: .85rem;
  transition: all .2s;
  border: 1.5px solid rgba(45,80,22,.15);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--gd); color: white; border-color: var(--gd); }

/* ── COMMENTS ── */
.comments-area {
  max-width: 760px; margin: 0 auto; padding: 3rem 2rem 5rem;
  border-top: 1px solid rgba(45,80,22,.12);
}
.comments-area h2 { font-family: var(--serif); color: var(--gd); font-size: 1.8rem; margin-bottom: 1.5rem; }
.comment-list { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.comment-body { padding: 1.5rem; background: var(--cream); border-radius: 1rem; }
.comment-author { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.comment-author .fn { font-weight: 700; color: var(--gd); font-family: var(--serif); font-size: 1.05rem; }
.comment-metadata { font-size: .75rem; color: var(--gray); margin-bottom: .5rem; }
.comment-content { font-size: .94rem; line-height: 1.65; color: #333; }
.comment-respond label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gd); display: block; margin-bottom: .4rem; }
.comment-form { display: grid; gap: 1rem; }
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  padding: .82rem 1.2rem; border: 1.5px solid rgba(45,80,22,.2);
  border-radius: .5rem; background: white; font-family: var(--sans);
  font-size: .9rem; width: 100%; outline: none;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--gm); }
.comment-form .submit, .comment-form input[type=submit] {
  display: inline-flex; background: var(--gd); color: white;
  font-weight: 700; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .85rem 1.75rem; border-radius: 2rem; border: none; cursor: pointer; justify-self: start;
}

/* ── BLOG SIDEBAR ── */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; max-width: 1400px; margin: 0 auto; }
.sidebar-widget { background: white; border-radius: 1rem; padding: 1.75rem; margin-bottom: 1.5rem; box-shadow: 0 2px 16px rgba(0,0,0,.04); }
.sidebar-widget h3, .sidebar-widget .widget-title { font-family: var(--serif); color: var(--gd); font-size: 1.15rem; margin-bottom: 1rem; }
.sidebar-widget ul li { padding: .4rem 0; border-bottom: 1px solid rgba(45,80,22,.08); font-size: .9rem; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--gd); transition: color .2s; }
.sidebar-widget ul li a:hover { color: var(--ed); }
.sidebar-widget input[type=search] {
  padding: .7rem 1rem; border: 1.5px solid rgba(45,80,22,.2);
  border-radius: 2rem; background: var(--cream); font-family: var(--sans);
  font-size: .88rem; width: 100%; outline: none;
}

/* ── FOOTER ── */
.ftr { background: var(--blk); color: white; padding: 6rem 7rem 3rem; }
.ftr-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.ftr-logo { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.25rem; cursor: pointer; }
.ftr-desc { font-size: .87rem; line-height: 1.72; color: rgba(255,255,255,.52); max-width: 270px; }
.ftr-soc { display: flex; gap: .7rem; margin-top: 1.5rem; }
.ftr-soc a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.ftr-soc a:hover { background: var(--gm); border-color: var(--gm); }
.ftr-soc svg { width: 15px; height: 15px; stroke: white; stroke-width: 1.5; fill: none; }
.ftr-h { font-size: .67rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--el); margin-bottom: 1.2rem; }
.ftr-links { display: flex; flex-direction: column; gap: .55rem; }
.ftr-links a { font-size: .87rem; color: rgba(255,255,255,.52); transition: color .2s; }
.ftr-links a:hover { color: white; }
.ftr-contact { display: flex; flex-direction: column; gap: .9rem; }
.ftr-contact li { display: flex; align-items: flex-start; gap: .7rem; font-size: .85rem; color: rgba(255,255,255,.56); line-height: 1.5; }
.ftr-contact li svg { width: 15px; height: 15px; stroke: var(--el); fill: none; flex-shrink: 0; margin-top: .15rem; }
.ftr-bot { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.ftr-bot p { font-size: .78rem; color: rgba(255,255,255,.32); }
.ftr-bot a { color: var(--el); transition: opacity .2s; }
.ftr-bot a:hover { opacity: .7; }

/* ── SVG DÉCORATIFS ── */
.deco { position: absolute; pointer-events: none; opacity: .04; }

/* ── FLIPBOOK ── */
.flip-stage {
  position: relative; width: 100%; max-width: 1100px; margin: 0 auto;
  background: linear-gradient(180deg, var(--gd) 0%, #1f380f 100%);
  padding: 3rem 1.5rem; border-radius: 1rem;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  display: flex; align-items: center; justify-content: center;
  min-height: 600px;
}
.flip-stage .flipbook { margin: 0 auto; transition: transform .55s cubic-bezier(.4,0,.2,1), clip-path .55s cubic-bezier(.4,0,.2,1); }
.flip-stage.on-cover .flipbook { transform: translateX(-25%); clip-path: inset(0 0 0 50%); }
.flip-stage.on-back .flipbook { transform: translateX(25%); clip-path: inset(0 50% 0 0); }
.pdf-modal .flipbook-modal > .flipbook { transition: transform .55s cubic-bezier(.4,0,.2,1), clip-path .55s cubic-bezier(.4,0,.2,1); }
.pdf-modal.on-cover .flipbook-modal > .flipbook { transform: translateX(-25%); clip-path: inset(0 0 0 50%); }
.pdf-modal.on-back .flipbook-modal > .flipbook { transform: translateX(25%); clip-path: inset(0 50% 0 0); }
.stf__parent, .stf__block, .stf__wrapper { background: transparent !important; }
.flip-loader {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); gap: 1rem; pointer-events: none;
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.flip-spin {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.18); border-top-color: var(--el);
  animation: flipSpin .85s linear infinite;
}
@keyframes flipSpin { to { transform: rotate(360deg); } }
.flip-controls {
  display: flex; align-items: center; gap: .8rem;
  max-width: 1100px; margin: 1.25rem auto 0;
  padding: 0 .5rem;
}
.flip-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gd); color: white;
  font-weight: 700; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .65rem 1.1rem; border-radius: 2rem; transition: all .2s;
  cursor: pointer; border: none;
}
.flip-btn:hover:not(:disabled) { background: var(--gm); }
.flip-btn:disabled { opacity: .4; cursor: not-allowed; }
.flip-btn svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.4; fill: none; }
.flip-pages { font-size: .82rem; color: var(--gray); font-weight: 600; margin-left: auto; }
.flip-expand {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ed); color: white;
  font-weight: 700; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .65rem 1.1rem; border-radius: 2rem; transition: all .2s;
  cursor: pointer; border: none;
}
.flip-expand:hover { background: var(--el); color: var(--blk); }
.flip-expand svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.4; fill: none; }

.pdf-modal {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: linear-gradient(180deg, var(--gd) 0%, #14250a 100%);
  align-items: center; justify-content: center;
  padding: 4.5rem 2rem 5.5rem;
  flex-direction: column;
}
.pdf-modal.open { display: flex; }
.pdf-modal .flipbook-modal { flex: 1; width: 100%; max-width: 1500px; display: flex; align-items: center; justify-content: center; }
.pdf-modal .flipbook-modal .flipbook { width: 100%; height: 100%; }
.pdf-modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pdf-modal-close:hover { background: rgba(255,255,255,.3); transform: scale(1.08); }
.pdf-modal-close svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }
.pdf-modal-controls {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 1rem;
  background: rgba(0,0,0,.55); backdrop-filter: blur(10px);
  padding: .55rem .9rem; border-radius: 2.5rem;
}
.pdf-modal-controls .flip-pages { color: rgba(255,255,255,.85); margin: 0; }
.pdf-modal-controls .flip-btn { background: rgba(255,255,255,.18); }
.pdf-modal-controls .flip-btn:hover:not(:disabled) { background: rgba(255,255,255,.32); }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transition: opacity .75s var(--ease), transform .75s var(--ease); }
.rv.up { transform: translateY(44px); }
.rv.left { transform: translateX(-44px); }
.rv.right { transform: translateX(44px); }
.rv.scale { transform: scale(.9); }
.rv.vis { opacity: 1 !important; transform: none !important; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .22s; }
.d3 { transition-delay: .34s; }
.d4 { transition-delay: .46s; }

/* ── NATHALIE ── */
.nathalie-grid { display: grid; grid-template-columns: 220px 1fr; gap: 3.5rem; align-items: center; max-width: 880px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .sec, .sec-sm, .ftr { padding-left: 3.5rem; padding-right: 3.5rem; }
  .hero-cnt { padding-left: 3.5rem; }
  .hero-sm .hero-cnt { padding-left: 3.5rem; }
  .st { padding: 3.5rem; }
  .ftr-g { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .blog-layout { grid-template-columns: 1fr; }
  .post-hero { padding: 8rem 3.5rem 4rem; }
}
@media (max-width: 768px) {
  .nav, .hdr-cta { display: none; }
  .merchant-bar {
    padding: .55rem 1.5rem; justify-content: space-between;
    font-size: .72rem; gap: .75rem; min-height: 44px;
  }
  body.home-page:not(.page-scrolled) .hdr { top: 44px; }
  .merchant-bar a { white-space: nowrap; }
  .burger { display: flex; }
  .sec, .sec-sm { padding: 4rem 1.5rem; }
  .ftr { padding: 4rem 1.5rem 2rem; }
  .hero-cnt { padding: 0 1.5rem; }
  .hero-sm .hero-cnt { padding: 2rem 1.5rem; }
  .post-hero { padding: 7rem 1.5rem 3rem; }
  .hdr { padding: 1rem 1.5rem; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:nth-child(2n) { border-right: none; }
  .split { grid-template-columns: 1fr; }
  .split.rev .si { order: 0; }
  .si { height: 260px; }
  .st { padding: 2.5rem 1.5rem; }
  .g3, .g4 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .cat-g { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .valeurs, .avantages { grid-template-columns: 1fr; }
  .abo-box { grid-template-columns: 1fr; padding: 2.5rem 1.75rem; gap: 2rem; }
  .form-g { grid-template-columns: 1fr; }
  .ftr-g { grid-template-columns: 1fr; gap: 2.5rem; }
  .ftr-bot { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.6rem; }
  .nathalie-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}
