/* ══════════════════════════════════════
    HERO
══════════════════════════════════════ */
.engag-hero {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--color-dark);
}
.engag-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/sites/zenpal/img/hero-engage.webp');
    background-size: cover;
    background-position: center;
    opacity: .28;
}
.engag-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,45,45,.85) 0%, rgba(122,158,126,.35) 100%);
}
.engag-hero .container { position: relative; z-index: 2; }
.engag-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.1;
    font-weight: 700;
}
.engag-hero h1 em { color: var(--color-sage); font-style: normal; }
.engag-hero .hero-lead { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 560px; line-height: 1.75; }
.engag-hero .hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(122,158,126,.22);
    border: 1.5px solid rgba(122,158,126,.55);
    color: #a8d4ac;
    border-radius: 30px;
    padding: .4rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 1.5rem;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.4);
    font-size: .78rem;
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* Chiffres clés hero */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-sage);
    line-height: 1;
}
.hero-stat-lbl {
    font-size: .75rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    margin-top: .25rem;
    max-width: 90px;
}

/* ══════════════════════════════════════
    INTRO MANIFESTO
══════════════════════════════════════ */
.manifesto {
    background: #fff;
    padding: 5rem 0;
}
.manifesto-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.55;
    border-left: 4px solid var(--color-sage);
    padding-left: 1.75rem;
    margin: 0;
}
.manifesto-author {
    font-size: .88rem;
    color: var(--color-muted);
    font-weight: 600;
    margin-top: 1.25rem;
    padding-left: 1.75rem;
}

/* ══════════════════════════════════════
    TIMELINE FONDATION
══════════════════════════════════════ */
.timeline-section { padding: 5rem 0; background: var(--color-cream); }
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: .9rem; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-sage), var(--color-beige));
}
.tl-item { position: relative; margin-bottom: 2.75rem; }
.tl-dot {
    position: absolute;
    left: -2.1rem;
    top: .2rem;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--color-sage);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: .6rem;
    color: #fff;
}
.tl-year {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-sage);
    margin-bottom: .2rem;
}
.tl-title { font-weight: 700; font-size: 1.05rem; margin-bottom: .35rem; }
.tl-desc  { color: var(--color-muted); font-size: .9rem; line-height: 1.65; }

/* ══════════════════════════════════════
    PILIERS (grandes cartes)
══════════════════════════════════════ */
.pillars-section { padding: 5.5rem 0; background: #fff; }

.pillar-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.09);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .3s, box-shadow .3s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 16px 56px rgba(0,0,0,.14); }

.pillar-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}
.pillar-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.pillar-card:hover .pillar-img img { transform: scale(1.06); }
.pillar-img .pillar-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 55%);
}
.pillar-img .pillar-num {
    position: absolute;
    top: 1rem; left: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,.18);
    line-height: 1;
}
.pillar-img .pillar-badge {
    position: absolute;
    bottom: 1rem; left: 1.25rem;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    border-radius: 20px;
    padding: .25rem .85rem;
    font-size: .75rem;
    font-weight: 700;
}

.pillar-body {
    background: #fff;
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pillar-icon { font-size: 2rem; margin-bottom: .75rem; }
.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .75rem;
}
.pillar-desc { color: var(--color-muted); font-size: .9rem; line-height: 1.7; flex: 1; }

.pillar-checks { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.pillar-check  { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; }
.pillar-check .ck { color: var(--color-sage); font-weight: 700; flex-shrink: 0; }

/* ══════════════════════════════════════
    SECTION NATURALITÉ (alternée)
══════════════════════════════════════ */
.alt-section { padding: 5rem 0; }
.alt-section.bg-beige { background: var(--color-beige); }
.alt-section.bg-dark  { background: var(--color-dark); }

.alt-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-sage);
    background: rgba(122,158,126,.12);
    border: 1px solid rgba(122,158,126,.3);
    border-radius: 20px;
    padding: .25rem .8rem;
    margin-bottom: 1rem;
}
.alt-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.alt-desc { color: var(--color-muted); font-size: .95rem; line-height: 1.8; }
.alt-desc.light { color: rgba(255,255,255,.7); }

.alt-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.14);
}
.alt-img img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }

/* Ingrédient pills */
.ingredient-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.ingredient-pill {
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 20px;
    padding: .3rem .85rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--color-dark);
}
.ingredient-pill.highlight { border-color: var(--color-sage); color: var(--color-sage); background: rgba(122,158,126,.07); }

/* ══════════════════════════════════════
    SECTION ECO (dark)
══════════════════════════════════════ */
.eco-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 1.75rem;
    transition: background .2s;
}
.eco-card:hover { background: rgba(255,255,255,.12); }
.eco-card .eco-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.eco-card .eco-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.eco-card .eco-desc  { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.65; }

/* Barre CO2 */
.co2-bar-wrap { margin-top: 1.5rem; }
.co2-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: .35rem; display: flex; justify-content: space-between; }
.co2-track { background: rgba(255,255,255,.1); border-radius: 4px; height: 8px; }
.co2-fill  { height: 8px; border-radius: 4px; background: var(--color-sage); transition: width 1.5s ease; }

/* ══════════════════════════════════════
    VÉTÉRINAIRES
══════════════════════════════════════ */
.veto-section { padding: 5rem 0; background: var(--color-cream); }
.veto-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    padding: 1.75rem;
    text-align: center;
    transition: transform .25s;
}
.veto-card:hover { transform: translateY(-5px); }
.veto-card img {
    width: 88px; height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-beige);
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    margin-bottom: 1rem;
}
.veto-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; }
.veto-role { font-size: .78rem; color: var(--color-muted); font-weight: 500; margin-top: .2rem; }
.veto-spec { display: inline-block; margin-top: .6rem; background: var(--color-beige); border-radius: 12px; padding: .25rem .75rem; font-size: .75rem; font-weight: 600; color: var(--color-sage); }
.veto-quote { font-size: .82rem; color: var(--color-muted); font-style: italic; margin-top: .85rem; line-height: 1.55; }

/* ══════════════════════════════════════
    CERTIFICATIONS
══════════════════════════════════════ */
.cert-section { padding: 5rem 0; background: #fff; }
.cert-card {
    border: 2px solid var(--color-beige);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color .2s, transform .2s;
}
.cert-card:hover { border-color: var(--color-sage); transform: translateY(-4px); }
.cert-logo { font-size: 3rem; margin-bottom: 1rem; }
.cert-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; margin-bottom: .4rem; }
.cert-desc { font-size: .82rem; color: var(--color-muted); line-height: 1.55; }

/* ══════════════════════════════════════
    COMPTEURS ANIMÉS
══════════════════════════════════════ */
.counters-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-sage) 0%, #5a8560 100%);
}
.counter-item { text-align: center; }
.counter-val {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.counter-suffix { font-size: 2rem; color: rgba(255,255,255,.7); }
.counter-lbl { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500; margin-top: .5rem; }

/* ══════════════════════════════════════
    ENGAGEMENT ANIMAL
══════════════════════════════════════ */
.animal-section { padding: 5rem 0; background: var(--color-beige); }
.pledge-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
    transition: transform .2s;
}
.pledge-item:hover { transform: translateX(4px); }
.pledge-num {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--color-sage);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.pledge-title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.pledge-desc  { font-size: .85rem; color: var(--color-muted); line-height: 1.6; }

/* ══════════════════════════════════════
    CTA FINAL
══════════════════════════════════════ */
.engag-cta {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: var(--color-dark);
    text-align: center;
}
.engag-cta::before {
    content: '🐾';
    position: absolute;
    font-size: 20rem;
    opacity: .04;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.engag-cta .container { position: relative; z-index: 1; }
.engag-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,3rem); color: #fff; margin-bottom: 1rem; }
.engag-cta p  { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }

/* ══════════════════════════════════════
    UTILITAIRES
══════════════════════════════════════ */
.underline-terra {
    position: relative;
    display: inline-block;
}
.underline-terra::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 3px;
    background: var(--color-terra);
    border-radius: 2px;
}
.fade-in-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }