/* =============================================================================
   DREG SAS — Feuille de style
   Direction : LUXE SOMBRE · noir profond · or champagne · Playfair Display + Jost
   ========================================================================== */

:root {
    /* Fonds sombres */
    --noir:       #0a0a0c;
    --noir-2:     #0f0f12;
    --noir-3:     #141418;
    --noir-4:     #1b1b21;

    /* Texte clair (sémantique conservée : --ink / --cream = texte clair) */
    --ink:        #f3ede1;
    --cream:      #f3ede1;
    --muted:      #a39c8c;

    /* Or */
    --ochre:      #c7a86a;   /* or principal */
    --ochre-soft: #e4cd96;   /* or clair */
    --or-veil:    rgba(199, 168, 106, 0.12);

    /* Panneaux sombres (anciens noms conservés pour les styles inline) */
    --petrol:     #121218;
    --petrol-700: #0c0c10;
    --petrol-300: #8c7c56;
    --sand:       #18181d;
    --paper:      #131317;

    /* Lignes */
    --line:       rgba(243, 237, 225, 0.10);
    --line-or:    rgba(199, 168, 106, 0.30);

    --radius:     16px;
    --radius-sm:  10px;
    --shadow:     0 30px 80px -40px rgba(0, 0, 0, 0.9);
    --shadow-sm:  0 16px 40px -26px rgba(0, 0, 0, 0.85);

    --maxw:       1180px;
    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body:    'Jost', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--noir);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ochre); color: #0a0a0c; padding: 10px 16px; z-index: 1000; }
.skip-link:focus { left: 0; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.6em;
    font-family: var(--ff-body); font-weight: 500; font-size: 0.82rem;
    letter-spacing: 0.13em; text-transform: uppercase;
    padding: 1.05em 1.9em; border-radius: 2px; border: 1px solid transparent;
    cursor: pointer; transition: all .3s ease;
}
.btn-primary { background: var(--ochre); color: #0a0a0c; }
.btn-primary:hover { background: var(--ochre-soft); transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(199,168,106,.6); }
.btn-light { background: var(--cream); color: #0a0a0c; }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-dark { background: transparent; border-color: var(--line-or); color: var(--ochre-soft); }
.btn-dark:hover { background: var(--ochre); color: #0a0a0c; border-color: var(--ochre); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ochre); color: var(--ochre-soft); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.7em 1.2em; font-size: 0.72rem; }

/* ---------- En-tête ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 10, 12, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); }
.brand-mark { color: var(--ochre); display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--ff-display); font-weight: 700; font-size: 1.42rem; letter-spacing: 0.18em; color: var(--ink); }
.brand-text em { font-style: normal; font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--ochre); margin-top: 5px; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { font-weight: 400; font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); position: relative; padding: 4px 0; transition: color .25s; }
.site-nav a:hover { color: var(--ochre-soft); }
.site-nav a.actif { color: var(--ochre); }
.site-nav a.actif::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: var(--ochre); }

.nav-panier { display: inline-flex; align-items: center; position: relative; color: var(--ink); }
.nav-panier:hover { color: var(--ochre-soft); }
.panier-compteur {
    display: none; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 100px;
    background: var(--ochre); color: #0a0a0c; font-family: var(--ff-body); font-weight: 600;
    font-size: 0.66rem; align-items: center; justify-content: center;
    position: absolute; top: -8px; right: -11px; line-height: 1;
}
.panier-compteur.actif { display: inline-flex; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: .25s; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section--cream  { background: var(--noir); }
.section--paper  { background: var(--noir-2); }
.section--petrol { background: var(--noir-2); color: var(--cream); position: relative; }
.section--sand   { background: var(--noir-3); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--ff-body); font-weight: 400; font-size: 0.72rem;
    letter-spacing: 0.32em; text-transform: uppercase; color: var(--ochre);
    margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--ochre); }

.section-head { max-width: 680px; margin-bottom: 62px; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 700; }
.section-head h2 em { font-style: italic; color: var(--ochre-soft); }
.section-head p { margin-top: 20px; font-size: 1.06rem; color: var(--muted); font-weight: 300; }

.lead { font-size: 1.18rem; color: var(--muted); font-weight: 300; }

/* ---------- Héros ---------- */
.hero { position: relative; overflow: hidden; background: var(--noir); color: var(--cream); }
.hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 78% 12%, rgba(199,168,106,.18), transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 90%, rgba(199,168,106,.08), transparent 60%);
}
.hero::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px; opacity: .25; mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000, transparent 75%);
}
.hero-inner { position: relative; padding: 130px 0 140px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 68px; align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 5.8vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
.hero h1 .accent { font-style: italic; font-weight: 500; color: var(--ochre-soft); }
.hero p.hero-sub { margin-top: 30px; font-size: 1.18rem; max-width: 500px; color: rgba(243,237,225,.72); font-weight: 300; }
.hero-actions { margin-top: 42px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-card { background: rgba(243,237,225,.03); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; backdrop-filter: blur(6px); }
.hero-card h3 { font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--ff-body); font-weight: 400; color: var(--ochre); margin-bottom: 30px; }
.hero-stats { display: grid; gap: 26px; }
.hero-stat { display: flex; align-items: baseline; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat b { font-family: var(--ff-display); font-weight: 700; font-size: 2.2rem; color: var(--ochre-soft); min-width: 90px; }
.hero-stat span { font-size: 0.92rem; color: rgba(243,237,225,.7); font-weight: 300; }

.hero-marquee { position: relative; border-top: 1px solid var(--line); }
.hero-marquee .wrap { display: flex; gap: 48px; padding-block: 22px; flex-wrap: wrap; justify-content: center;
    font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(243,237,225,.4); font-family: var(--ff-body); }

/* ---------- Piliers ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.pilier {
    background: var(--noir-3); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 42px 34px; transition: all .3s ease; position: relative; overflow: hidden;
}
.pilier::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--ochre); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.pilier:hover { transform: translateY(-6px); border-color: var(--line-or); background: var(--noir-4); }
.pilier:hover::before { transform: scaleX(1); }
.pilier-num { font-family: var(--ff-display); font-style: italic; font-weight: 500; font-size: 1.3rem; color: var(--ochre); }
.pilier h3 { font-size: 1.5rem; margin: 16px 0 14px; font-weight: 700; }
.pilier p { color: var(--muted); font-size: 0.98rem; font-weight: 300; }

/* ---------- Chiffres ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.metric { padding: 10px; }
.metric b { display: block; font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.4rem, 4.4vw, 3.4rem); color: var(--ochre-soft); }
.metric span { font-size: 0.9rem; color: var(--muted); font-weight: 300; letter-spacing: 0.02em; }

/* ---------- Boutique ---------- */
.boutique-filtres { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 46px; }
.filtre-btn {
    font-family: var(--ff-body); font-weight: 400; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.65em 1.3em; border-radius: 2px; border: 1px solid var(--line);
    background: transparent; color: var(--muted); cursor: pointer; transition: .25s;
}
.filtre-btn:hover { border-color: var(--line-or); color: var(--ochre-soft); }
.filtre-btn.actif { background: var(--ochre); color: #0a0a0c; border-color: var(--ochre); }

.produits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.carte-produit {
    background: var(--noir-3); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; display: flex; flex-direction: column; position: relative;
    transition: all .3s ease;
}
.carte-produit:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-or); }
.carte-produit .cat { font-family: var(--ff-body); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ochre); }
.carte-produit h3 { font-size: 1.5rem; margin: 14px 0 12px; font-weight: 700; }
.carte-produit h3 a { transition: color .2s; }
.carte-produit h3 a:hover { color: var(--ochre-soft); }
.carte-produit .resume { color: var(--muted); font-size: 0.96rem; flex-grow: 1; font-weight: 300; }
.carte-meta { display: flex; gap: 16px; margin: 20px 0; font-size: 0.8rem; color: var(--muted); }
.carte-meta span { display: inline-flex; align-items: center; gap: 7px; }
.carte-meta svg { color: var(--ochre); flex: none; }
.carte-prix { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.carte-prix .montant { font-family: var(--ff-display); font-weight: 700; font-size: 1.55rem; color: var(--cream); }
.carte-prix .ht { font-size: 0.72rem; color: var(--muted); margin-left: 4px; }

.badge-pop {
    position: absolute; top: 22px; right: 22px; background: transparent; color: var(--ochre);
    border: 1px solid var(--line-or);
    font-family: var(--ff-body); font-weight: 400; font-size: 0.62rem; letter-spacing: 0.18em;
    text-transform: uppercase; padding: 5px 11px; border-radius: 100px;
}

/* ---------- Page produit ---------- */
.fil-ariane { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--muted); padding: 30px 0 0; text-transform: uppercase; }
.fil-ariane a:hover { color: var(--ochre-soft); }
.produit-detail { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; padding: 44px 0 110px; align-items: start; }
.produit-visuel {
    border-radius: var(--radius); min-height: 400px; position: relative; overflow: hidden;
    background: linear-gradient(150deg, var(--noir-3), var(--noir));
    border: 1px solid var(--line-or);
    color: var(--cream); padding: 40px; display: flex; flex-direction: column; justify-content: space-between;
}
.produit-visuel::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 75% 18%, rgba(199,168,106,.22), transparent 60%); }
.produit-visuel .pv-cat { position: relative; font-family: var(--ff-body); font-weight: 400; letter-spacing: 0.26em; text-transform: uppercase; font-size: 0.72rem; color: var(--ochre); }
.produit-visuel .pv-glyph { position: relative; font-family: var(--ff-display); font-style: italic; font-weight: 500; font-size: clamp(4rem,9vw,7rem); line-height: 1; color: var(--ochre-soft); }
.produit-detail h1 { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 700; }
.produit-detail .resume { font-size: 1.2rem; color: var(--ochre-soft); font-style: italic; font-family: var(--ff-display); font-weight: 500; margin: 18px 0 28px; line-height: 1.5; }
.produit-detail .desc { margin-bottom: 32px; color: var(--muted); font-weight: 300; }
.produit-detail h3 { font-size: 1.2rem; margin-bottom: 18px; font-weight: 700; }
.inclus-liste { list-style: none; display: grid; gap: 14px; margin-bottom: 32px; }
.inclus-liste li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); font-weight: 300; }
.inclus-liste li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 4px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c7a86a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; }

.achat-box { background: var(--noir-3); border: 1px solid var(--line-or); border-radius: var(--radius); padding: 34px; position: sticky; top: 104px; }
.achat-box .prix-gros { font-family: var(--ff-display); font-weight: 700; font-size: 2.6rem; color: var(--cream); }
.achat-box .prix-ht { font-size: 0.82rem; color: var(--muted); margin-bottom: 26px; }
.achat-box dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 16px; margin: 24px 0; font-size: 0.9rem; border-top: 1px solid var(--line); padding-top: 22px; }
.achat-box dt { color: var(--muted); font-weight: 300; }
.achat-box dd { text-align: right; font-weight: 400; color: var(--ink); }
.qte-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qte-input { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.qte-input button { width: 40px; height: 42px; border: none; background: var(--noir-4); font-size: 1.2rem; cursor: pointer; color: var(--ochre); transition: .2s; }
.qte-input button:hover { background: var(--ochre); color: #0a0a0c; }
.qte-input input { width: 46px; text-align: center; border: none; font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; background: var(--noir-4); color: var(--ink); }
.pour-qui { background: var(--noir-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; margin-top: 24px; font-size: 0.9rem; color: var(--muted); font-weight: 300; }
.pour-qui b { font-family: var(--ff-body); font-weight: 500; color: var(--ochre); display: block; margin-bottom: 5px; letter-spacing: 0.05em; }

/* ---------- Panier ---------- */
.panier-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.ligne-panier { display: grid; grid-template-columns: 1fr auto auto; gap: 22px; align-items: center;
    background: var(--noir-3); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px; margin-bottom: 14px; transition: border-color .25s; }
.ligne-panier:hover { border-color: var(--line-or); }
.ligne-panier .lp-info h3 { font-size: 1.22rem; font-weight: 700; }
.ligne-panier .lp-info h3 a:hover { color: var(--ochre-soft); }
.ligne-panier .lp-info .cat { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ochre); font-family: var(--ff-body); }
.ligne-panier .lp-prix { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; white-space: nowrap; color: var(--cream); }
.lp-actions { display: flex; align-items: center; gap: 14px; }
.lien-suppr { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 0.82rem; text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.lien-suppr:hover { color: #d98b6a; }

.recap { background: var(--noir-3); border: 1px solid var(--line-or); border-radius: var(--radius); padding: 34px; position: sticky; top: 104px; }
.recap h3 { color: var(--cream); font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; font-family: var(--ff-body); font-weight: 400; color: var(--ochre); margin-bottom: 26px; }
.recap-ligne { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.95rem; color: var(--muted); font-weight: 300; }
.recap-total { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 20px; border-top: 1px solid var(--line-or);
    font-family: var(--ff-display); font-weight: 700; font-size: 1.6rem; color: var(--cream); }
.recap .btn { margin-top: 26px; }
.recap-note { font-size: 0.76rem; color: var(--muted); margin-top: 16px; text-align: center; font-weight: 300; }

.panier-vide { text-align: center; padding: 90px 20px; }
.panier-vide .glyph { color: var(--ochre); margin-bottom: 24px; display: flex; justify-content: center; }
.panier-vide h2 { font-size: 2rem; margin-bottom: 14px; font-weight: 700; }
.panier-vide p { color: var(--muted); margin-bottom: 30px; font-weight: 300; }

/* ---------- Formulaires ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.champ { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.champ.full { grid-column: 1 / -1; }
.champ label { font-family: var(--ff-body); font-weight: 400; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.champ label .req { color: var(--ochre); }
.champ input, .champ textarea, .champ select {
    font-family: var(--ff-body); font-size: 0.98rem; font-weight: 300; padding: 0.9em 1.05em;
    border: 1px solid var(--line); border-radius: 2px; background: var(--noir); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.champ input::placeholder, .champ textarea::placeholder { color: #5f5a50; }
.champ input:focus, .champ textarea:focus, .champ select:focus { outline: none; border-color: var(--ochre); box-shadow: 0 0 0 3px rgba(199,168,106,.14); }
.champ textarea { resize: vertical; min-height: 130px; }
.champ select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c7a86a' stroke-width='2.4'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.bloc-form { background: var(--noir-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.bloc-form h2 { font-size: 1.7rem; margin-bottom: 8px; font-weight: 700; }
.bloc-form .sous { color: var(--muted); margin-bottom: 30px; font-weight: 300; }

/* ---------- Alertes ---------- */
.alerte { border-radius: 2px; padding: 16px 20px; margin-bottom: 26px; font-size: 0.95rem; display: flex; gap: 12px; align-items: flex-start; font-weight: 300; }
.alerte a { color: inherit; text-decoration: underline; }
.alerte-ok { background: rgba(199,168,106,.08); border: 1px solid var(--line-or); color: var(--ochre-soft); }
.alerte-err { background: rgba(217,139,106,.08); border: 1px solid rgba(217,139,106,.35); color: #e0a081; }
.alerte b { font-family: var(--ff-display); }

/* ---------- Confirmation ---------- */
.confirm-box { max-width: 640px; margin: 0 auto; text-align: center; }
.confirm-check { width: 80px; height: 80px; margin: 0 auto 28px; border-radius: 50%; background: transparent; border: 1px solid var(--line-or);
    display: flex; align-items: center; justify-content: center; color: var(--ochre); }
.confirm-check svg { stroke: var(--ochre); }
.confirm-box .eyebrow { color: var(--ochre); }
.confirm-ref { display: inline-block; font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.06em;
    background: transparent; border: 1px solid var(--line-or); padding: 12px 28px; border-radius: 2px; margin: 22px 0; color: var(--ochre-soft); }

/* ---------- CTA bandeau ---------- */
.cta-bandeau { background: var(--noir-3); border: 1px solid var(--line-or); color: var(--cream); border-radius: var(--radius); padding: 80px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-bandeau::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(199,168,106,.14), transparent 70%); }
.cta-bandeau > * { position: relative; }
.cta-bandeau h2 { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 700; }
.cta-bandeau h2 em { font-style: italic; color: var(--ochre-soft); }
.cta-bandeau p { max-width: 540px; margin: 20px auto 36px; color: var(--muted); font-weight: 300; }

/* ---------- Pages légales ---------- */
.legal { padding: 70px 0 110px; }
.legal-wrap { max-width: 800px; }
.legal h1 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 12px; font-weight: 700; }
.legal .maj { color: var(--muted); font-size: 0.86rem; margin-bottom: 46px; font-weight: 300; }
.legal h2 { font-size: 1.5rem; margin: 46px 0 16px; font-weight: 700; color: var(--ink); }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--ochre-soft); }
.legal p, .legal li { color: var(--muted); margin-bottom: 13px; font-weight: 300; }
.legal ul { padding-left: 22px; margin-bottom: 18px; }
.legal a { color: var(--ochre-soft); text-decoration: underline; text-underline-offset: 3px; }
.legal .tableau-legal { width: 100%; border-collapse: collapse; margin: 18px 0 26px; font-size: 0.92rem; }
.legal .tableau-legal th, .legal .tableau-legal td { text-align: left; padding: 13px 16px; border: 1px solid var(--line); color: var(--ink); font-weight: 300; }
.legal .tableau-legal th { background: var(--noir-3); font-family: var(--ff-body); font-weight: 500; width: 38%; color: var(--ochre); letter-spacing: 0.04em; }

/* ---------- À propos ---------- */
.apropos-hero { background: var(--noir); color: var(--cream); padding: 120px 0 110px; position: relative; overflow: hidden; }
.apropos-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 50% 60% at 85% 25%, rgba(199,168,106,.16), transparent 60%); }
.apropos-hero .wrap { position: relative; max-width: 780px; }
.apropos-hero h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); font-weight: 700; }
.apropos-hero h1 em { font-style: italic; color: var(--ochre-soft); }
.apropos-hero p { font-size: 1.2rem; margin-top: 26px; color: var(--muted); font-weight: 300; }

.valeurs-liste { display: grid; gap: 0; }
.valeur-item { display: grid; grid-template-columns: 90px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--line); transition: padding .3s; }
.valeur-item:last-child { border-bottom: none; }
.valeur-item:hover { padding-left: 12px; }
.valeur-item .num { font-family: var(--ff-display); font-style: italic; font-weight: 500; font-size: 2.2rem; color: var(--ochre); }
.valeur-item h3 { font-size: 1.5rem; margin-bottom: 10px; font-weight: 700; }
.valeur-item p { color: var(--muted); font-weight: 300; }

.timeline { display: grid; gap: 26px; }
.tl-item { display: grid; grid-template-columns: auto 1fr; gap: 24px; }
.tl-item .step { width: 48px; height: 48px; flex: none; border-radius: 50%; background: transparent; border: 1px solid var(--line-or); color: var(--ochre);
    display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; }
.tl-item h3 { font-size: 1.3rem; margin-bottom: 8px; font-weight: 700; }
.tl-item p { color: var(--muted); font-weight: 300; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.contact-info { background: var(--noir-3); border: 1px solid var(--line-or); color: var(--cream); border-radius: var(--radius); padding: 42px; }
.contact-info h3 { color: var(--ochre); margin-bottom: 30px; font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; font-family: var(--ff-body); font-weight: 400; }
.contact-bloc { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-bloc .ico { width: 44px; height: 44px; flex: none; border-radius: 2px; background: var(--or-veil); border: 1px solid var(--line-or);
    display: flex; align-items: center; justify-content: center; color: var(--ochre); }
.contact-bloc b { font-family: var(--ff-body); font-weight: 500; display: block; margin-bottom: 4px; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.contact-bloc a, .contact-bloc span { color: var(--ink); font-weight: 300; }
.contact-bloc a:hover { color: var(--ochre-soft); }

/* ---------- Témoignages ---------- */
.temoignages { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.temoignage { background: var(--noir-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; transition: border-color .3s; }
.temoignage:hover { border-color: var(--line-or); }
.temoignage .quote { font-size: 1.1rem; line-height: 1.6; margin-bottom: 24px; font-family: var(--ff-display); font-style: italic; font-weight: 500; color: var(--cream); }
.temoignage .quote::before { content: "“"; font-family: var(--ff-display); font-size: 3rem; color: var(--ochre); line-height: 0; vertical-align: -0.35em; margin-right: 6px; }
.temoignage .auteur { display: flex; align-items: center; gap: 14px; }
.temoignage .avatar { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1px solid var(--line-or); color: var(--ochre);
    display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; }
.temoignage .auteur b { font-family: var(--ff-body); font-weight: 500; display: block; font-size: 0.95rem; color: var(--ink); }
.temoignage .auteur span { font-size: 0.8rem; color: var(--muted); font-weight: 300; }

/* ---------- Utilitaires ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 48px; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .produit-detail { grid-template-columns: 1fr; gap: 38px; }
    .achat-box, .recap { position: static; }
    .panier-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .grid-3, .produits-grid, .temoignages { grid-template-columns: repeat(2, 1fr); }
    .metrics { grid-template-columns: repeat(2,1fr); gap: 40px 20px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed; inset: 82px 0 auto 0; background: var(--noir-2); flex-direction: column;
        align-items: flex-start; gap: 0; padding: 16px 24px 26px; border-bottom: 1px solid var(--line);
        transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow-sm);
    }
    .site-nav.ouvert { transform: translateY(0); }
    .site-nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line); }
    .site-nav a.actif::after { display: none; }
    .nav-panier { padding: 15px 0; }
    .section { padding: 72px 0; }
    .grid-3, .grid-2, .produits-grid, .temoignages, .metrics, .form-grid { grid-template-columns: 1fr; }
    .valeur-item { grid-template-columns: 1fr; gap: 10px; }
    .cta-bandeau { padding: 50px 26px; }
    .hero-inner { padding: 86px 0 92px; }
    .ligne-panier { grid-template-columns: 1fr; gap: 16px; }
}
