/* =========================================================================
   FGRE — Cabinet de conseil en gestion
   Direction : éditorial organique chaleureux
   Palette : vert forêt #1E3A31 · sable #D8C4A0 · ivoire #F6F1E7 · terracotta #B4703F
   Typo : Newsreader (titres, serif) · Public Sans (corps)
   ========================================================================= */

:root {
    --forest:        #1E3A31;
    --forest-deep:   #16291F;
    --forest-soft:   #2C4C41;
    --sand:          #D8C4A0;
    --sand-deep:     #C4AC80;
    --ivory:         #F6F1E7;
    --ivory-warm:    #EFE7D6;
    --terra:         #B4703F;
    --terra-deep:    #9A5C30;
    --terra-soft:    #C88A5C;

    --ink:           #22302A;
    --muted:         #5D6A62;
    --line:          #E1D8C7;
    --line-warm:     rgba(30, 58, 49, .12);

    --ff-display: 'Newsreader', Georgia, 'Times New Roman', serif;
    --ff-body:    'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --wrap: 1160px;
    --radius: 4px;
    --shadow: 0 24px 60px -30px rgba(30, 58, 49, .45);
    --shadow-soft: 0 14px 40px -24px rgba(30, 58, 49, .38);

    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--ff-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 500;
    line-height: 1.12;
    color: var(--forest);
    margin: 0 0 .5em;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 1.1rem; }

a { color: var(--terra-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--forest); }

img { max-width: 100%; display: block; }

em, .it { font-style: italic; }

::selection { background: var(--sand); color: var(--forest-deep); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.center { text-align: center; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--forest); color: var(--ivory); padding: 10px 18px; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2.5px solid var(--terra); outline-offset: 3px; border-radius: 2px; }

/* ---------- Eyebrow / filets ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-body); font-weight: 600;
    font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--terra-deep); margin-bottom: 18px;
}
.eyebrow::before {
    content: ""; width: 26px; height: 1px; background: var(--terra); display: inline-block;
}
.eyebrow.center-eb { justify-content: center; }

.lead {
    font-size: clamp(1.1rem, 1.6vw, 1.32rem);
    line-height: 1.65; color: var(--muted);
    font-weight: 300;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(246, 241, 231, .88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
    font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem;
    color: var(--forest); letter-spacing: .04em;
}
.brand-text em {
    font-style: normal; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--terra-deep); margin-top: 3px; font-weight: 500;
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a {
    font-size: .92rem; font-weight: 500; color: var(--ink);
    position: relative; padding: 4px 0;
}
.site-nav > a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
    background: var(--terra); transition: width .3s var(--ease);
}
.site-nav > a:hover::after, .site-nav > a.actif::after { width: 100%; }
.site-nav > a.actif { color: var(--forest); }

.nav-panier { display: inline-flex; align-items: center; color: var(--forest); position: relative; }
.panier-compteur {
    position: absolute; top: -8px; right: -10px;
    background: var(--terra); color: var(--ivory);
    font-size: .66rem; font-weight: 700; font-family: var(--ff-body);
    min-width: 17px; height: 17px; border-radius: 9px; padding: 0 4px;
    display: none; align-items: center; justify-content: center; line-height: 1;
}
.panier-compteur.actif { display: inline-flex; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: 0;
    cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: .3s; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--ff-body); font-weight: 600; font-size: .92rem;
    padding: 14px 30px; border-radius: 40px; border: 1.5px solid transparent;
    cursor: pointer; transition: all .3s var(--ease); text-align: center;
    letter-spacing: .01em;
}
.btn-primary { background: var(--terra); color: var(--ivory); border-color: var(--terra); }
.btn-primary:hover { background: var(--terra-deep); border-color: var(--terra-deep); color: var(--ivory); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-dark { background: var(--forest); color: var(--ivory); border-color: var(--forest); }
.btn-dark:hover { background: var(--forest-deep); color: var(--ivory); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-light { background: var(--ivory); color: var(--forest); border-color: var(--ivory); }
.btn-light:hover { background: #fff; color: var(--forest); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--line-warm); border-color: rgba(30,58,49,.22); }
.btn-ghost:hover { border-color: var(--forest); background: var(--forest); color: var(--ivory); }
.btn-outline-light { background: transparent; color: var(--ivory); border-color: rgba(246,241,231,.4); }
.btn-outline-light:hover { background: var(--ivory); color: var(--forest); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-block { width: 100%; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 118px) 0; }
.section--forest { background: var(--forest); color: var(--ivory); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--ivory); }
.section--sand { background: var(--ivory-warm); }
.section--cream { background: var(--ivory); }

.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center-head { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; background: var(--forest-deep); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(22,41,31,.92) 0%, rgba(22,41,31,.72) 42%, rgba(22,41,31,.35) 100%);
}
.hero-inner {
    position: relative; z-index: 2;
    padding: clamp(90px, 15vw, 168px) 0 clamp(70px, 11vw, 128px);
    max-width: 720px;
}
.hero .eyebrow { color: var(--sand); }
.hero .eyebrow::before { background: var(--sand); }
.hero h1 { color: var(--ivory); font-weight: 500; margin-bottom: .35em; }
.hero h1 em { color: var(--sand); font-weight: 500; }
.hero-lead { color: rgba(246,241,231,.86); font-size: clamp(1.1rem, 1.7vw, 1.32rem); font-weight: 300; max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
    color: rgba(246,241,231,.6); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { width: 1px; height: 34px; background: rgba(246,241,231,.4); animation: scrolldrop 2.2s var(--ease) infinite; }
@keyframes scrolldrop { 0%,100%{opacity:.3;transform:scaleY(.5) translateY(-6px);} 50%{opacity:1;transform:scaleY(1) translateY(0);} }

/* ---------- Bandeau chiffres / stats ---------- */
.stats-band { border-top: 1px solid rgba(246,241,231,.15); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 8px 0; }
.stat .num { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--sand); line-height: 1; }
.stat .num em { color: var(--terra-soft); font-style: italic; }
.stat .lab { font-size: .86rem; color: rgba(246,241,231,.72); margin-top: 10px; }

/* ---------- Intro / manifeste ---------- */
.manifeste { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.manifeste-media { position: relative; }
.manifeste-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.manifeste-media .tag-flottant {
    position: absolute; bottom: -20px; left: -20px; background: var(--terra); color: var(--ivory);
    padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow-soft); max-width: 210px;
}
.manifeste-media .tag-flottant b { font-family: var(--ff-display); font-size: 1.4rem; display: block; font-weight: 500; }
.manifeste-media .tag-flottant span { font-size: .82rem; opacity: .9; }
.manifeste-texte h2 em { color: var(--terra-deep); font-style: italic; }
.manifeste-texte .lead { margin-bottom: 1.4rem; }
.signature { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.signature .nom { font-family: var(--ff-display); font-size: 1.15rem; color: var(--forest); font-weight: 500; }
.signature .role { font-size: .82rem; color: var(--muted); }
.signature-trait { width: 40px; height: 1px; background: var(--terra); }

/* ---------- Piliers / valeurs ---------- */
.piliers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pilier {
    background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 38px 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pilier:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--sand-deep); }
.pilier .num { font-family: var(--ff-display); font-style: italic; font-size: 1.1rem; color: var(--terra); }
.pilier h3 { margin: 14px 0 10px; }
.pilier p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Citation en exergue ---------- */
.exergue { text-align: center; max-width: 860px; margin: 0 auto; }
.exergue blockquote {
    font-family: var(--ff-display); font-weight: 400; font-style: italic;
    font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.35; margin: 0; color: var(--ivory);
}
.exergue .q-mark { font-family: var(--ff-display); font-size: 4rem; color: var(--terra-soft); line-height: .5; display: block; margin-bottom: 10px; }
.exergue cite { display: block; margin-top: 26px; font-style: normal; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sand); }

/* ---------- Offres — grille cartes ---------- */
.produits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.carte-produit {
    background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 28px; display: flex; flex-direction: column; position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.carte-produit:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--sand-deep); }
.carte-produit.hidden { display: none; }
.carte-produit .badge-pop {
    position: absolute; top: 20px; right: 20px; background: var(--forest); color: var(--sand);
    font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 40px;
}
.carte-produit .cat {
    font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--terra-deep); font-weight: 600;
}
.carte-produit h3 { margin: 12px 0 12px; font-size: 1.4rem; }
.carte-produit h3 a { color: var(--forest); }
.carte-produit h3 a:hover { color: var(--terra-deep); }
.carte-produit .resume { color: var(--muted); font-size: .96rem; flex-grow: 1; margin-bottom: 20px; }
.carte-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.carte-meta span { display: inline-flex; align-items: center; gap: 6px; }
.carte-prix {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 18px; border-top: 1px solid var(--line);
}
.carte-prix .montant { font-family: var(--ff-display); font-weight: 600; font-size: 1.35rem; color: var(--forest); }
.carte-prix .ht { font-size: .78rem; color: var(--muted); }

/* ---------- Filtres boutique ---------- */
.boutique-filtres { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filtre-btn {
    font-family: var(--ff-body); font-size: .86rem; font-weight: 500;
    padding: 8px 18px; border-radius: 40px; border: 1px solid var(--line);
    background: var(--ivory); color: var(--muted); cursor: pointer; transition: .25s var(--ease);
}
.filtre-btn:hover { border-color: var(--forest); color: var(--forest); }
.filtre-btn.actif { background: var(--forest); border-color: var(--forest); color: var(--ivory); }

/* ---------- Page intérieure — hero simple ---------- */
.page-hero { background: var(--forest); color: var(--ivory); padding: clamp(80px, 11vw, 132px) 0 clamp(52px, 7vw, 80px); }
.page-hero .eyebrow { color: var(--sand); }
.page-hero .eyebrow::before { background: var(--sand); }
.page-hero h1 { color: var(--ivory); font-weight: 500; max-width: 15ch; }
.page-hero h1 em { color: var(--sand); }
.page-hero p { color: rgba(246,241,231,.82); max-width: 560px; font-size: 1.1rem; font-weight: 300; margin-bottom: 0; }

/* ---------- Fil d'ariane ---------- */
.fil-ariane { padding: 26px 0 0; font-size: .84rem; color: var(--muted); }
.fil-ariane a { color: var(--terra-deep); }
.fil-ariane span { color: var(--forest); }

/* ---------- Produit détail ---------- */
.produit-detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(36px, 5vw, 68px); padding: 40px 26px 90px; align-items: start; }
.produit-visuel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); margin-bottom: 34px; aspect-ratio: 16/10; }
.produit-visuel img { width: 100%; height: 100%; object-fit: cover; }
.produit-visuel .pv-cat {
    position: absolute; top: 18px; left: 18px; background: rgba(30,58,49,.9); color: var(--sand);
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: 40px;
}
.produit-detail .resume { font-family: var(--ff-display); font-style: italic; font-size: 1.3rem; color: var(--forest-soft); line-height: 1.4; margin-bottom: 1rem; }
.produit-detail .desc { color: var(--ink); font-size: 1.04rem; }
.produit-detail h3 { margin-top: 34px; }
.inclus-liste { list-style: none; padding: 0; margin: 0 0 10px; }
.inclus-liste li { position: relative; padding: 11px 0 11px 34px; border-bottom: 1px solid var(--line); color: var(--ink); }
.inclus-liste li::before {
    content: ""; position: absolute; left: 4px; top: 17px; width: 15px; height: 9px;
    border-left: 2px solid var(--terra); border-bottom: 2px solid var(--terra); transform: rotate(-45deg);
}
.pour-qui {
    margin-top: 30px; background: var(--ivory-warm); border-left: 3px solid var(--terra);
    padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
}
.pour-qui b { font-family: var(--ff-display); color: var(--forest); display: block; margin-bottom: 4px; }

.achat-box {
    position: sticky; top: 100px; background: var(--forest); color: var(--ivory);
    border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow);
}
.achat-box .prix-gros { font-family: var(--ff-display); font-weight: 600; font-size: 2.6rem; color: var(--sand); line-height: 1; }
.achat-box .prix-ht { font-size: .82rem; color: rgba(246,241,231,.7); margin: 8px 0 24px; }
.achat-box dl { margin: 0 0 24px; display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; font-size: .9rem; }
.achat-box dt { color: rgba(246,241,231,.6); }
.achat-box dd { margin: 0; text-align: right; color: var(--ivory); font-weight: 500; }
.achat-box a { color: var(--sand); }

.qte-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.qte-input { display: inline-flex; align-items: center; border: 1px solid rgba(246,241,231,.3); border-radius: 40px; overflow: hidden; }
.qte-input button {
    background: none; border: 0; color: var(--ivory); width: 36px; height: 40px; font-size: 1.2rem; cursor: pointer;
}
.qte-input input {
    width: 44px; text-align: center; border: 0; background: transparent; color: var(--ivory);
    font-family: var(--ff-body); font-size: 1rem; -moz-appearance: textfield;
}
.qte-input input::-webkit-outer-spin-button, .qte-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Version claire du sélecteur (panier) */
.qte-input--clair { border-color: var(--line); }
.qte-input--clair input { color: var(--ink); }

/* ---------- Panier / checkout layout ---------- */
.panier-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }

.ligne-panier {
    display: grid; grid-template-columns: 1.4fr auto auto; gap: 20px; align-items: center;
    padding: 22px 0; border-bottom: 1px solid var(--line);
}
.lp-info .cat { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--terra-deep); font-weight: 600; }
.lp-info h3 { font-size: 1.2rem; margin: 6px 0 4px; }
.lp-info h3 a { color: var(--forest); }
.lp-actions { display: flex; align-items: center; gap: 12px; }
.lp-prix { font-family: var(--ff-display); font-weight: 600; font-size: 1.2rem; color: var(--forest); }
.lien-suppr { font-size: .82rem; color: var(--muted); }
.lien-suppr:hover { color: var(--terra-deep); }

.recap {
    background: var(--forest); color: var(--ivory); border-radius: var(--radius);
    padding: 32px 30px; box-shadow: var(--shadow); position: sticky; top: 100px;
}
.recap h3 { color: var(--ivory); margin-bottom: 20px; }
.recap-ligne { display: flex; justify-content: space-between; gap: 16px; font-size: .95rem; color: rgba(246,241,231,.86); padding: 7px 0; }
.recap-total {
    display: flex; justify-content: space-between; align-items: baseline; margin: 14px 0 22px;
    padding-top: 16px; border-top: 1px solid rgba(246,241,231,.2);
    font-family: var(--ff-display); font-size: 1.5rem; color: var(--sand); font-weight: 600;
}
.recap-note { font-size: .8rem; color: rgba(246,241,231,.62); text-align: center; margin: 14px 0 0; }

.panier-vide { text-align: center; max-width: 480px; margin: 30px auto; padding: 40px 0; }
.panier-vide .glyph { color: var(--sand-deep); margin-bottom: 20px; display: flex; justify-content: center; }
.panier-vide h2 { margin-bottom: 12px; }
.panier-vide p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Formulaires ---------- */
.bloc-form { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); }
.bloc-form h2 { font-size: 1.6rem; }
.bloc-form .sous { color: var(--muted); font-size: .92rem; margin-top: -6px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.champ { display: flex; flex-direction: column; }
.champ.full { grid-column: 1 / -1; }
.champ label { font-size: .84rem; font-weight: 600; color: var(--forest); margin-bottom: 7px; }
.champ .req { color: var(--terra); }
.champ input, .champ select, .champ textarea {
    font-family: var(--ff-body); font-size: .98rem; color: var(--ink);
    padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.champ textarea { min-height: 130px; resize: vertical; }
.champ input:focus, .champ select:focus, .champ textarea:focus {
    outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(180,112,63,.14);
}
.champ small { margin-top: 6px; font-size: .8rem; }

/* ---------- Alertes ---------- */
.alerte { display: flex; align-items: flex-start; gap: 12px; padding: 15px 20px; border-radius: var(--radius); margin-bottom: 26px; font-size: .94rem; }
.alerte b { font-weight: 700; flex-shrink: 0; }
.alerte-ok { background: #E7EFE4; color: #2C4C2E; border: 1px solid #BFD8B8; }
.alerte-err { background: #F6E5DC; color: #8A3F1E; border: 1px solid #E3C2AC; }
.alerte-info { background: var(--ivory-warm); color: var(--forest); border: 1px solid var(--sand-deep); }

/* ---------- Confirmation ---------- */
.confirm-box { text-align: center; max-width: 620px; margin: 0 auto; }
.confirm-check {
    width: 66px; height: 66px; border-radius: 50%; background: var(--terra);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.confirm-ref {
    display: inline-block; margin-top: 22px; background: var(--forest); color: var(--sand);
    font-family: var(--ff-display); letter-spacing: .06em; padding: 10px 22px; border-radius: 40px; font-size: 1rem;
}

/* ---------- Méthode — étapes ---------- */
.etapes { display: flex; flex-direction: column; gap: 0; }
.etape {
    display: grid; grid-template-columns: auto 1fr; gap: 28px;
    padding: 34px 0; border-top: 1px solid var(--line); align-items: start;
}
.etape:last-child { border-bottom: 1px solid var(--line); }
.etape .num {
    font-family: var(--ff-display); font-style: italic; font-size: 2.4rem; color: var(--terra);
    line-height: 1; min-width: 66px;
}
.etape h3 { margin-bottom: 8px; }
.etape p { color: var(--muted); margin: 0; max-width: 60ch; }
.etape .duree { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--terra-deep); font-weight: 600; margin-bottom: 6px; display: block; }

/* ---------- Convictions ---------- */
.convictions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 44px; }
.conviction { display: grid; grid-template-columns: auto 1fr; gap: 18px; }
.conviction .ico {
    width: 44px; height: 44px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--sand-deep);
    display: flex; align-items: center; justify-content: center; color: var(--terra-deep); flex-shrink: 0;
}
.section--forest .conviction .ico { background: var(--forest-soft); border-color: rgba(216,196,160,.35); color: var(--sand); }
.conviction h3 { font-size: 1.25rem; margin-bottom: 6px; }
.conviction p { color: var(--muted); margin: 0; font-size: .96rem; }
.section--forest .conviction p { color: rgba(246,241,231,.78); }

/* ---------- Cabinet / fondatrice ---------- */
.portrait-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.portrait-split img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.portrait-split .lead:first-of-type { color: var(--forest-soft); font-family: var(--ff-display); font-style: italic; font-size: 1.35rem; }

.valeurs-cle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.valeur-cle { border-top: 2px solid var(--terra); padding-top: 16px; }
.valeur-cle b { font-family: var(--ff-display); color: var(--forest); font-size: 1.1rem; display: block; margin-bottom: 4px; }
.valeur-cle span { font-size: .9rem; color: var(--muted); }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-final h2 { color: var(--ivory); }
.cta-final h2 em { color: var(--sand); font-style: italic; }
.cta-final p { color: rgba(246,241,231,.82); font-size: 1.1rem; margin-bottom: 30px; }
.cta-final .hero-cta { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact-info { background: var(--forest); color: var(--ivory); border-radius: var(--radius); padding: 38px 34px; }
.contact-info h3 { color: var(--ivory); margin-bottom: 24px; }
.contact-bloc { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid rgba(246,241,231,.14); }
.contact-bloc:last-of-type { border-bottom: 0; }
.contact-bloc .ico { color: var(--sand); margin-top: 2px; }
.contact-bloc b { display: block; font-family: var(--ff-display); font-weight: 500; color: var(--ivory); font-size: 1.02rem; }
.contact-bloc a, .contact-bloc span { color: rgba(246,241,231,.8); font-size: .92rem; }
.contact-bloc a:hover { color: var(--sand); }
.coord-attente { color: var(--muted); font-style: italic; }

/* ---------- Pages légales ---------- */
.legal { max-width: 780px; margin: 0 auto; padding: clamp(50px, 8vw, 90px) 26px; }
.legal h1 { margin-bottom: 8px; }
.legal .maj { font-size: .84rem; color: var(--muted); margin-bottom: 40px; }
.legal h2 { font-size: 1.5rem; margin: 44px 0 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.legal h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink); font-size: 1rem; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal .bloc-coord { background: var(--ivory-warm); border-radius: var(--radius); padding: 22px 26px; margin: 20px 0; }
.legal .bloc-coord p { margin: 4px 0; }

/* ---------- Reveal au scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.vu { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
    .produits-grid, .piliers-grid, .valeurs-cle { grid-template-columns: repeat(2, 1fr); }
    .manifeste, .portrait-split, .produit-detail, .panier-layout, .contact-grid, .convictions { grid-template-columns: 1fr; }
    .produit-detail { padding-bottom: 60px; }
    .achat-box, .recap { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
    .manifeste-media img { max-width: 440px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
        background: var(--ivory); padding: 16px 26px 26px; gap: 0; border-bottom: 1px solid var(--line);
        transform: translateY(-140%); transition: transform .38s var(--ease); box-shadow: var(--shadow-soft); gap: 0;
    }
    .site-nav.ouvert { transform: translateY(0); }
    .site-nav > a { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .site-nav > a::after { display: none; }
    .nav-panier { padding: 14px 0; }
    .panier-compteur { position: static; margin-left: 8px; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .produits-grid, .piliers-grid, .valeurs-cle, .form-grid { grid-template-columns: 1fr; }
    .ligne-panier { grid-template-columns: 1fr; gap: 12px; }
    .etape { grid-template-columns: 1fr; gap: 8px; }
    .etape .num { font-size: 1.8rem; }
    .manifeste-media .tag-flottant { position: static; margin-top: 16px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
