/* =============================================================================
   TRPF — Feuille de style
   Direction : BOUTIQUE STRATÉGIE RAFFINÉE · pierre/greige clair · graphite
               · accent COBALT · Instrument Serif + Instrument Sans
   ========================================================================== */

:root {
    /* Fonds clairs dominants */
    --stone:      #ECE6DB;   /* pierre / greige chaud — fond principal */
    --paper:      #F7F4EE;   /* blanc cassé — panneaux clairs */
    --stone-2:    #E4DCCE;   /* greige légèrement plus soutenu */

    /* Encre */
    --ink:        #1D1C1A;   /* graphite */
    --ink-soft:   #3A3833;
    --muted:      #6C665C;   /* texte secondaire */
    --muted-2:    #8B857A;

    /* Accent cobalt (signature unique) */
    --cobalt:     #1E32D6;
    --cobalt-deep:#1526A8;
    --cobalt-veil:rgba(30, 50, 214, 0.09);

    /* Lignes fines */
    --line:       rgba(29, 28, 26, 0.14);
    --line-soft:  rgba(29, 28, 26, 0.08);
    --line-cobalt:rgba(30, 50, 214, 0.28);

    --radius:     18px;
    --radius-sm:  11px;
    --shadow:     0 34px 70px -46px rgba(29, 28, 26, 0.42);
    --shadow-sm:  0 18px 40px -30px rgba(29, 28, 26, 0.38);

    --maxw:       1180px;
    --ff-display: 'Instrument Serif', Georgia, serif;
    --ff-body:    'Instrument Sans', system-ui, -apple-system, 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(--stone);
    line-height: 1.7;
    font-weight: 400;
    -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.06;
    font-weight: 400;
    letter-spacing: -0.005em;
}

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

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

::selection { background: var(--cobalt); color: #fff; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.6em;
    font-family: var(--ff-body); font-weight: 500; font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 1.02em 1.8em; border-radius: 100px; border: 1px solid transparent;
    cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn-primary { background: var(--cobalt); color: #fff; }
.btn-primary:hover { background: var(--cobalt-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(30,50,214,.6); }
.btn-light { background: var(--ink); color: var(--paper); }
.btn-light:hover { background: #000; transform: translateY(-2px); }
.btn-dark { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-dark:hover { border-color: var(--cobalt); color: var(--cobalt); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--cobalt); color: var(--cobalt); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.7em 1.25em; font-size: 0.74rem; }

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

.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); }
.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: 400; font-size: 1.66rem; letter-spacing: 0.16em; color: var(--ink); }
.brand-text em { font-style: normal; font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cobalt); margin-top: 5px; font-family: var(--ff-body); font-weight: 500; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { font-family: var(--ff-body); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .25s; }
.site-nav a:hover { color: var(--cobalt); }
.site-nav a.actif { color: var(--cobalt); }
.site-nav a.actif::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: var(--cobalt); }

.nav-panier { display: inline-flex; align-items: center; position: relative; color: var(--ink); }
.nav-panier:hover { color: var(--cobalt); }
.panier-compteur {
    display: none; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 100px;
    background: var(--cobalt); color: #fff; font-family: var(--ff-body); font-weight: 600;
    font-size: 0.64rem; 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.6px; background: var(--ink); transition: .25s; border-radius: 2px; }

/* ---------- Sections ---------- */
.section { padding: 118px 0; }
.section--stone { background: var(--stone); }
.section--paper { background: var(--paper); }
.section--ink   { background: var(--ink); color: var(--paper); }
.section--cobalt{ background: var(--cobalt); color: #fff; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--ff-body); font-weight: 600; font-size: 0.7rem;
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--cobalt);
    margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--cobalt); }

.section--ink .eyebrow, .section--cobalt .eyebrow { color: inherit; }
.section--ink .eyebrow { color: #A9B4F0; }
.section--ink .eyebrow::before { background: #A9B4F0; }
.section--cobalt .eyebrow::before { background: #fff; }

.section-head { max-width: 700px; margin-bottom: 66px; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.section-head h2 em { font-style: italic; color: var(--cobalt); }
.section--ink .section-head h2 em, .section--cobalt .section-head h2 em { color: inherit; }
.section-head p { margin-top: 22px; font-size: 1.1rem; color: var(--muted); }
.section--ink .section-head p { color: rgba(247,244,238,.72); }

.lead { font-size: 1.24rem; color: var(--muted); }

/* ---------- Héros (accueil) ---------- */
.hero { position: relative; overflow: hidden; background: var(--stone); }
.hero::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 68px 68px; opacity: .5;
    mask-image: radial-gradient(ellipse 90% 70% at 30% 30%, #000, transparent 78%);
}
.hero-inner { position: relative; padding: 96px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(3rem, 6.6vw, 5.6rem); letter-spacing: -0.02em; }
.hero h1 .accent { font-style: italic; color: var(--cobalt); }
.hero p.hero-sub { margin-top: 30px; font-size: 1.2rem; max-width: 500px; color: var(--muted); }
.hero-actions { margin-top: 42px; display: flex; gap: 15px; flex-wrap: wrap; }
.hero-tags { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.78rem; letter-spacing: 0.03em; color: var(--muted-2); }
.hero-tags span { display: inline-flex; align-items: center; gap: 9px; }
.hero-tags span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cobalt); }

.hero-media {
    position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4 / 5; background: var(--stone-2);
}
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media .hero-badge {
    position: absolute; left: 20px; bottom: 20px; right: 20px;
    background: rgba(247,244,238,.9); backdrop-filter: blur(6px);
    border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
    padding: 18px 22px; display: flex; align-items: baseline; gap: 14px;
}
.hero-media .hero-badge b { font-family: var(--ff-display); font-size: 2rem; color: var(--cobalt); line-height: 1; }
.hero-media .hero-badge span { font-size: 0.86rem; color: var(--muted); }

/* Ruban défilant */
.hero-marquee { position: relative; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--paper); }
.hero-marquee .wrap { display: flex; gap: 46px; padding-block: 20px; flex-wrap: wrap; justify-content: center;
    font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; color: var(--muted-2); }
.hero-marquee .wrap span { position: relative; }
.hero-marquee .wrap span::after { content: "·"; position: absolute; right: -26px; color: var(--cobalt); }
.hero-marquee .wrap span:last-child::after { display: none; }

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

.pilier {
    background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
    padding: 44px 36px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; position: relative; overflow: hidden;
}
.pilier::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--cobalt); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.pilier:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-sm); }
.pilier:hover::before { transform: scaleX(1); }
.pilier-num { font-family: var(--ff-display); font-style: italic; font-size: 1.5rem; color: var(--cobalt); }
.pilier h3 { font-size: 1.7rem; margin: 14px 0 12px; }
.pilier p { color: var(--muted); font-size: 0.99rem; }

/* ---------- Chiffres ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: left; }
.metric { padding: 4px 0; }
.metric b { display: block; font-family: var(--ff-display); font-size: clamp(2.8rem, 5vw, 4rem); color: #fff; line-height: 1; }
.metric span { display: block; margin-top: 12px; font-size: 0.92rem; color: rgba(255,255,255,.72); }
.section--cobalt .metric b { color: #fff; }

/* ---------- Missions / boutique ---------- */
.boutique-filtres { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filtre-btn {
    font-family: var(--ff-body); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.03em;
    padding: 0.62em 1.25em; border-radius: 100px; border: 1px solid var(--line);
    background: transparent; color: var(--muted); cursor: pointer; transition: .25s;
}
.filtre-btn:hover { border-color: var(--cobalt); color: var(--cobalt); }
.filtre-btn.actif { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }

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

.carte-produit {
    background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
    padding: 34px 32px; display: flex; flex-direction: column; position: relative;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.carte-produit:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.carte-produit .cat { font-family: var(--ff-body); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cobalt); }
.carte-produit h3 { font-size: 1.72rem; margin: 12px 0 12px; }
.carte-produit h3 a { transition: color .2s; }
.carte-produit h3 a:hover { color: var(--cobalt); }
.carte-produit .resume { color: var(--muted); font-size: 0.98rem; flex-grow: 1; }
.carte-meta { display: flex; flex-wrap: wrap; gap: 16px; margin: 22px 0; font-size: 0.8rem; color: var(--muted); }
.carte-meta span { display: inline-flex; align-items: center; gap: 7px; }
.carte-meta svg { color: var(--cobalt); 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-soft); }
.carte-prix .montant { font-family: var(--ff-display); font-size: 1.75rem; color: var(--ink); }
.carte-prix .ht { font-size: 0.72rem; color: var(--muted-2); margin-left: 4px; }

.badge-pop {
    position: absolute; top: 22px; right: 22px; background: var(--cobalt-veil); color: var(--cobalt);
    border: 1px solid var(--line-cobalt);
    font-family: var(--ff-body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.16em;
    text-transform: uppercase; padding: 5px 11px; border-radius: 100px;
}

/* ---------- Page mission (produit) ---------- */
.fil-ariane { font-size: 0.78rem; letter-spacing: 0.02em; color: var(--muted); padding: 30px 0 0; }
.fil-ariane a:hover { color: var(--cobalt); }
.produit-detail { display: grid; grid-template-columns: 1.4fr 1fr; gap: 58px; padding: 44px 0 118px; align-items: start; }
.produit-visuel {
    border-radius: var(--radius); aspect-ratio: 4 / 3; position: relative; overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; justify-content: space-between; padding: 30px;
    background: linear-gradient(150deg, var(--stone-2), var(--paper));
}
.produit-visuel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.produit-visuel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(29,28,26,.05), rgba(29,28,26,.35)); z-index: 1; }
.produit-visuel .pv-cat, .produit-visuel .pv-glyph { position: relative; z-index: 2; }
.produit-visuel .pv-cat { font-family: var(--ff-body); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.7rem; color: #fff; }
.produit-visuel .pv-glyph { font-family: var(--ff-display); font-style: italic; font-size: clamp(4rem,9vw,7rem); line-height: 1; color: #fff; }
.produit-detail h1 { font-size: clamp(2.4rem, 4.6vw, 3.4rem); }
.produit-detail .resume { font-size: 1.3rem; color: var(--cobalt); font-style: italic; font-family: var(--ff-display); margin: 18px 0 28px; line-height: 1.4; }
.produit-detail .desc { margin-bottom: 34px; color: var(--muted); font-size: 1.02rem; }
.produit-detail h3 { font-size: 1.4rem; margin-bottom: 18px; }
.inclus-liste { list-style: none; display: grid; gap: 13px; margin-bottom: 34px; }
.inclus-liste li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); }
.inclus-liste li::before { content: ""; flex: none; width: 19px; height: 19px; margin-top: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%231E32D6' stroke-width='2.6' 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(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; position: sticky; top: 108px; box-shadow: var(--shadow-sm); }
.achat-box .prix-gros { font-family: var(--ff-display); font-size: 2.9rem; color: var(--ink); line-height: 1; }
.achat-box .prix-ht { font-size: 0.82rem; color: var(--muted); margin: 8px 0 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-soft); padding-top: 22px; }
.achat-box dt { color: var(--muted); }
.achat-box dd { text-align: right; 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: 100px; overflow: hidden; background: var(--stone); }
.qte-input button { width: 40px; height: 42px; border: none; background: transparent; font-size: 1.2rem; cursor: pointer; color: var(--cobalt); transition: .2s; }
.qte-input button:hover { background: var(--cobalt); color: #fff; }
.qte-input input { width: 46px; text-align: center; border: none; font-family: var(--ff-display); font-size: 1.2rem; background: transparent; color: var(--ink); }
.pour-qui { background: var(--stone); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 22px; margin-top: 26px; font-size: 0.92rem; color: var(--muted); }
.pour-qui b { font-family: var(--ff-body); font-weight: 600; color: var(--cobalt); display: block; margin-bottom: 5px; letter-spacing: 0.04em; font-size: 0.72rem; text-transform: uppercase; }

/* ---------- 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(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 26px; margin-bottom: 14px; transition: border-color .25s; }
.ligne-panier:hover { border-color: var(--line); }
.ligne-panier .lp-info h3 { font-size: 1.35rem; }
.ligne-panier .lp-info h3 a:hover { color: var(--cobalt); }
.ligne-panier .lp-info .cat { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cobalt); font-family: var(--ff-body); font-weight: 600; }
.ligne-panier .lp-prix { font-family: var(--ff-display); font-size: 1.35rem; white-space: nowrap; color: var(--ink); }
.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: var(--cobalt); }

.recap { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); border-radius: var(--radius); padding: 36px; position: sticky; top: 108px; box-shadow: var(--shadow); }
.recap h3 { color: #A9B4F0; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--ff-body); font-weight: 600; margin-bottom: 26px; }
.recap-ligne { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.95rem; color: rgba(247,244,238,.78); gap: 16px; }
.recap-total { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 20px; border-top: 1px solid rgba(247,244,238,.2);
    font-family: var(--ff-display); font-size: 1.9rem; color: #fff; }
.recap .btn { margin-top: 26px; }
.recap-note { font-size: 0.78rem; color: rgba(247,244,238,.6); margin-top: 16px; text-align: center; }

.panier-vide { text-align: center; padding: 96px 20px; }
.panier-vide .glyph { color: var(--cobalt); margin-bottom: 24px; display: flex; justify-content: center; }
.panier-vide h2 { font-size: 2.4rem; margin-bottom: 14px; }
.panier-vide p { color: var(--muted); margin-bottom: 30px; }

/* ---------- 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: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.champ label .req { color: var(--cobalt); }
.champ input, .champ textarea, .champ select {
    font-family: var(--ff-body); font-size: 0.98rem; font-weight: 400; padding: 0.88em 1.05em;
    border: 1px solid var(--line); border-radius: 10px; background: var(--stone); color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.champ input::placeholder, .champ textarea::placeholder { color: var(--muted-2); }
.champ input:focus, .champ textarea:focus, .champ select:focus { outline: none; border-color: var(--cobalt); background: var(--paper); box-shadow: 0 0 0 3px var(--cobalt-veil); }
.champ textarea { resize: vertical; min-height: 130px; }
.champ .err-txt { color: #b23a2a; font-size: 0.8rem; }
.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='%231E32D6' stroke-width='2.6'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.bloc-form { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow-sm); }
.bloc-form h2 { font-size: 2rem; margin-bottom: 8px; }
.bloc-form .sous { color: var(--muted); margin-bottom: 30px; }

/* ---------- Alertes ---------- */
.alerte { border-radius: 12px; padding: 16px 20px; margin-bottom: 26px; font-size: 0.95rem; display: flex; gap: 12px; align-items: flex-start; }
.alerte a { color: inherit; text-decoration: underline; }
.alerte-ok { background: var(--cobalt-veil); border: 1px solid var(--line-cobalt); color: var(--cobalt-deep); }
.alerte-err { background: rgba(178,58,42,.08); border: 1px solid rgba(178,58,42,.32); color: #9d3324; }
.alerte b { font-family: var(--ff-display); font-size: 1.1rem; line-height: 1; }

/* ---------- Confirmation ---------- */
.confirm-box { max-width: 660px; margin: 0 auto; text-align: center; }
.confirm-check { width: 82px; height: 82px; margin: 0 auto 28px; border-radius: 50%; background: var(--cobalt); box-shadow: 0 18px 34px -16px rgba(30,50,214,.7);
    display: flex; align-items: center; justify-content: center; color: #fff; }
.confirm-box .eyebrow { justify-content: center; }
.confirm-box h1 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.confirm-ref { display: inline-block; font-family: var(--ff-display); font-size: 1.5rem; letter-spacing: 0.05em;
    background: var(--paper); border: 1px solid var(--line-cobalt); padding: 12px 28px; border-radius: 100px; margin: 22px 0; color: var(--cobalt); }

/* ---------- CTA bandeau ---------- */
.cta-bandeau { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: 84px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-bandeau::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 90% at 50% 0%, rgba(30,50,214,.4), transparent 66%); }
.cta-bandeau > * { position: relative; }
.cta-bandeau h2 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); }
.cta-bandeau h2 em { font-style: italic; color: #A9B4F0; }
.cta-bandeau p { max-width: 560px; margin: 20px auto 36px; color: rgba(247,244,238,.76); }

/* ---------- Pages légales ---------- */
.legal { padding: 72px 0 118px; }
.legal-wrap { max-width: 810px; }
.legal h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); margin-bottom: 12px; }
.legal .maj { color: var(--muted); font-size: 0.86rem; margin-bottom: 48px; }
.legal h2 { font-size: 1.65rem; margin: 48px 0 16px; color: var(--ink); }
.legal h3 { font-size: 1.2rem; margin: 26px 0 8px; color: var(--cobalt); }
.legal p, .legal li { color: var(--muted); margin-bottom: 13px; }
.legal ul { padding-left: 22px; margin-bottom: 18px; }
.legal li::marker { color: var(--cobalt); }
.legal a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--ink-soft); font-weight: 600; }
.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-soft); color: var(--ink-soft); }
.legal .tableau-legal th { background: var(--paper); font-family: var(--ff-body); font-weight: 600; width: 40%; color: var(--cobalt); letter-spacing: 0.02em; }

/* ---------- Intro de page (hero secondaire) ---------- */
.page-hero { background: var(--paper); padding: 116px 0 96px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.page-hero::before { content:""; position:absolute; inset:0; pointer-events:none;
    background-image: linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 68px 100%;
    mask-image: radial-gradient(ellipse 70% 90% at 80% 20%, #000, transparent 70%); opacity: .6; }
.page-hero .wrap { position: relative; max-width: 820px; }
.page-hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.4rem); }
.page-hero h1 em { font-style: italic; color: var(--cobalt); }
.page-hero p { font-size: 1.24rem; margin-top: 26px; color: var(--muted); max-width: 640px; }

/* ---------- Cabinet / à-propos ---------- */
.portrait-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/5; }
.portrait-media img { width: 100%; height: 100%; object-fit: cover; }
.signature { font-family: var(--ff-display); font-style: italic; font-size: 1.9rem; color: var(--cobalt); margin-top: 8px; }

.fiche-cabinet { background: var(--stone); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px; }
.fiche-cabinet h3 { font-family: var(--ff-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cobalt); margin-bottom: 24px; }
.fiche-cabinet dl { display: grid; gap: 0; }
.fiche-cabinet .fc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.fiche-cabinet .fc-row:last-child { border-bottom: none; }
.fiche-cabinet dt { color: var(--muted); font-size: 0.9rem; }
.fiche-cabinet dd { font-family: var(--ff-display); font-size: 1.3rem; color: var(--ink); text-align: right; }

.valeurs-liste { display: grid; gap: 0; }
.valeur-item { display: grid; grid-template-columns: 96px 1fr; gap: 32px; padding: 42px 0; border-bottom: 1px solid var(--line); transition: padding .3s; }
.valeur-item:first-child { border-top: 1px solid var(--line); }
.valeur-item:hover { padding-left: 12px; }
.valeur-item .num { font-family: var(--ff-display); font-style: italic; font-size: 2.6rem; color: var(--cobalt); }
.valeur-item h3 { font-size: 1.75rem; margin-bottom: 10px; }
.valeur-item p { color: var(--muted); }

/* ---------- Démarche (timeline) ---------- */
.timeline { display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: auto 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line); position: relative; }
.tl-item:last-child { border-bottom: none; }
.tl-item .step { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--cobalt-veil); border: 1px solid var(--line-cobalt); color: var(--cobalt);
    display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1.4rem; }
.tl-item h3 { font-size: 1.5rem; margin-bottom: 8px; }
.tl-item p { color: var(--muted); }

.domaine-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; display: flex; flex-direction: column; }
.domaine-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.domaine-card .dc-media { aspect-ratio: 16/10; overflow: hidden; }
.domaine-card .dc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.domaine-card:hover .dc-media img { transform: scale(1.05); }
.domaine-card .dc-body { padding: 28px 30px 32px; }
.domaine-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.domaine-card p { color: var(--muted); font-size: 0.96rem; }
.domaine-card .dc-cat { font-family: var(--ff-body); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cobalt); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-info { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.contact-info h3 { color: #A9B4F0; margin-bottom: 30px; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--ff-body); font-weight: 600; }
.contact-bloc { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-bloc .ico { width: 44px; height: 44px; flex: none; border-radius: 10px; background: rgba(169,180,240,.14); border: 1px solid rgba(169,180,240,.3);
    display: flex; align-items: center; justify-content: center; color: #A9B4F0; }
.contact-bloc b { font-family: var(--ff-body); font-weight: 600; display: block; margin-bottom: 4px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,244,238,.6); }
.contact-bloc a, .contact-bloc span { color: var(--paper); }
.contact-bloc a:hover { color: #A9B4F0; }

/* ---------- Témoignages ---------- */
.temoignages { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.temoignage { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 38px; transition: border-color .3s, transform .3s; }
.temoignage:hover { border-color: var(--line); transform: translateY(-4px); }
.temoignage .quote { font-size: 1.24rem; line-height: 1.5; margin-bottom: 26px; font-family: var(--ff-display); color: var(--ink); }
.temoignage .quote::before { content: "“"; font-family: var(--ff-display); font-size: 3rem; color: var(--cobalt); line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.temoignage .auteur { display: flex; align-items: center; gap: 14px; }
.temoignage .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cobalt-veil); border: 1px solid var(--line-cobalt); color: var(--cobalt);
    display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1.05rem; }
.temoignage .auteur b { font-family: var(--ff-body); font-weight: 600; display: block; font-size: 0.94rem; color: var(--ink); }
.temoignage .auteur span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Split image + texte ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 3/2; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Micro-révélation ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

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

/* ---------- Pied de page ---------- */
.site-footer { background: var(--ink); color: rgba(247,244,238,.72); padding: 78px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(247,244,238,.12); }
.footer-brand .brand--footer .brand-text strong { color: var(--paper); font-size: 1.5rem; }
.footer-brand .brand--footer .brand-text em { color: #A9B4F0; }
.footer-pitch { font-family: var(--ff-display); font-style: italic; font-size: 1.24rem; color: var(--paper); margin: 20px 0 18px; max-width: 320px; }
.footer-legal-mini { font-size: 0.82rem; color: rgba(247,244,238,.55); }
.footer-col h4 { font-family: var(--ff-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: #A9B4F0; margin-bottom: 20px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(247,244,238,.72); transition: color .2s; font-size: 0.94rem; }
.footer-col a:hover { color: var(--paper); }
.footer-contact p { font-size: 0.92rem; margin-bottom: 14px; }
.footer-contact a:hover { color: #A9B4F0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-size: 0.82rem; color: rgba(247,244,238,.5); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-media { aspect-ratio: 16/11; max-height: 440px; }
    .produit-detail { grid-template-columns: 1fr; gap: 40px; }
    .achat-box, .recap { position: static; }
    .panier-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .grid-3, .produits-grid, .temoignages { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .metrics { grid-template-columns: repeat(2,1fr); gap: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed; inset: 84px 0 auto 0; background: var(--paper); flex-direction: column;
        align-items: flex-start; gap: 0; padding: 12px 26px 24px; border-bottom: 1px solid var(--line);
        transform: translateY(-135%); 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-soft); }
    .site-nav a.actif::after { display: none; }
    .nav-panier { padding: 15px 0; }
    .section { padding: 76px 0; }
    .grid-3, .grid-2, .produits-grid, .temoignages, .metrics, .form-grid { grid-template-columns: 1fr; }
    .valeur-item { grid-template-columns: 1fr; gap: 8px; }
    .cta-bandeau { padding: 54px 26px; }
    .hero-inner { padding: 70px 0 76px; }
    .ligne-panier { grid-template-columns: 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .produit-detail { padding-bottom: 80px; }
}
