/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Manrope', sans-serif; color: #16210d; background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; }

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes floatA   { 0%,100% { transform: translate(0,0) scale(1) }    50% { transform: translate(40px,-30px) scale(1.12) } }
@keyframes floatB   { 0%,100% { transform: translate(0,0) scale(1) }    50% { transform: translate(-50px,30px) scale(1.08) } }
@keyframes rise     { from { opacity: 0; transform: translateY(26px) }  to  { opacity: 1; transform: translateY(0) } }
@keyframes marquee  { from { transform: translateX(0) }                  to  { transform: translateX(-50%) } }
@keyframes shimmer  { 0%   { background-position: 0%   50% }            100%{ background-position: 200% 50% } }

/* ── Composants ──────────────────────────────────────────────────────────── */
.rise { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }

.card-lift { transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s; }
.card-lift:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(106,168,31,.22); border-color: #6aa81f !important; }

.btn-pri { display: inline-block; transition: transform .25s, box-shadow .25s; }
.btn-pri:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(106,168,31,.4); }

.hero-ghost { transition: box-shadow .3s; }
.hero-ghost:hover { box-shadow: 0 0 0 3px rgba(255,255,255,.25), 0 18px 40px rgba(0,0,0,.3); }

.marq-wrap:hover .marq-inner { animation-play-state: paused; }

.fld { transition: border-color .2s, box-shadow .2s; font-family: 'Manrope', sans-serif; }
.fld:focus { outline: none; border-color: #6aa81f; box-shadow: 0 0 0 3px rgba(106,168,31,.15); }

/* ── Article content typography ──────────────────────────────────────────── */
.article-content p    { margin-bottom: 1em; font-size: 16px; line-height: 1.7; color: #3a4a2d; }
.article-content h2   { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; margin: 1.5em 0 .5em; }
.article-content h3   { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; margin: 1.2em 0 .4em; }
.article-content ul,
.article-content ol   { margin: 0 0 1em 1.4em; }
.article-content li   { margin-bottom: .4em; font-size: 16px; line-height: 1.6; color: #3a4a2d; }
