/* ==========================================================================
   Maverina — feuille de style
   Terre brûlée sur fond nuit. Boutique de drum kits.
   ========================================================================== */

:root {
    --night: #150b07;
    --panel: #1f110c;
    --panel-2: #2a1811;
    --edge: #3a241b;
    --edge-2: #4d3124;

    --ink: #f5e9dd;
    --ink-soft: #c3a695;
    --ink-faint: #8b7263;

    --sand: #d69a6a;
    --sand-hi: #e6ae80;
    --brick: #b25e52;
    --rust: #9e3b2c;
    --wine: #75211f;
    --deep: #4b1109;

    --ok: #6faa7c;
    --alert: #e0655a;

    --disp: 'Archivo', 'Space Grotesk', -apple-system, sans-serif;
    --body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    --pad: 40px;
    --max: 1240px;
    --glow: 0 18px 44px rgba(0, 0, 0, 0.5);
    --glow-sm: 0 8px 20px rgba(0, 0, 0, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }

body {
    font-family: var(--body);
    background: var(--night);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--body); }
:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }

.in { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.read { max-width: 840px; margin: 0 auto; padding: 0 var(--pad); }

.band { background: var(--panel); }
.band--deep { background: #100804; }

.eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 14px;
}

/* ---------------- Bandeau + navigation ---------------- */

.promo {
    background: var(--deep);
    color: #e8c9ae;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 9px var(--pad);
    line-height: 1.6;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 400;
    background: rgba(21, 11, 7, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--edge);
}

.nav__in {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; white-space: nowrap; }
.mark svg { width: 22px; height: 22px; flex-shrink: 0; }

.mark__t {
    font-family: var(--disp);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink);
}

.nav__links { display: flex; gap: 32px; }

.nav__links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: 0.18s;
}

.nav__links a:hover, .nav__links a[aria-current] { color: var(--sand); border-bottom-color: var(--sand); }

.nav__end { display: flex; align-items: center; gap: 12px; }

.bag { position: relative; display: grid; place-items: center; width: 36px; height: 36px; color: var(--ink); text-decoration: none; }
.bag svg { width: 20px; height: 20px; }

.bag__n {
    position: absolute;
    top: -2px; right: -3px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--sand);
    color: #1b0e08;
    font-size: 0.62rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.hamb { display: none; width: 36px; height: 36px; background: none; border: none; cursor: pointer; color: var(--ink); }
.hamb svg { width: 20px; height: 20px; }

/* Tiroir mobile */
.scrim { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.65); z-index: 800; }
.scrim.on { display: block; }

.drawer {
    position: fixed; inset: 0 0 0 auto;
    width: min(84vw, 330px);
    background: var(--panel);
    border-left: 1px solid var(--edge);
    z-index: 900;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex; flex-direction: column;
    padding: 22px 26px 34px;
}

.drawer.on { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.drawer__x { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }
.drawer__nav { display: flex; flex-direction: column; }

.drawer__nav a {
    font-family: var(--disp);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--edge);
}

.drawer__foot { margin-top: auto; font-size: 0.78rem; color: var(--ink-faint); line-height: 1.8; }

/* ---------------- Boutons ---------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: var(--disp);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: 0.18s;
}

.btn--fill { background: var(--sand); color: #1b0e08; }
.btn--fill:hover { background: var(--sand-hi); }

.btn--rust { background: var(--rust); color: #fff2e9; }
.btn--rust:hover { background: var(--brick); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--edge-2); }
.btn--ghost:hover { border-color: var(--sand); color: var(--sand); }

.btn--wide { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 0.68rem; letter-spacing: 1.4px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.textlink {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 500;
    color: var(--sand); text-decoration: none;
    border-bottom: 1px solid rgba(214, 154, 106, 0.4);
    padding-bottom: 2px; transition: 0.18s;
}

.textlink:hover { border-bottom-color: var(--sand); }

/* ---------------- Accueil ---------------- */

.hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; padding: 54px 0 12px; }

.shots { position: relative; height: 400px; }

.shots img {
    position: absolute;
    width: 250px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
}

.shots img:nth-child(1) { left: 0; top: 12%; transform: rotate(-7deg); z-index: 1; }
.shots img:nth-child(2) { left: 26%; top: 0; transform: rotate(-1deg); z-index: 3; }
.shots img:nth-child(3) { left: 52%; top: 14%; transform: rotate(6deg); z-index: 2; }

.hero__note p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.9; margin-bottom: 26px; max-width: 360px; }

.bigtitle {
    font-family: var(--disp);
    font-weight: 800;
    font-size: clamp(2.2rem, 7vw, 5rem);
    line-height: 1.02;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-align: center;
    padding: 30px 0 12px;
}

.bigtitle em { font-style: normal; color: var(--sand); }

.subtitle { text-align: center; color: var(--ink-faint); font-size: 0.9rem; letter-spacing: 1px; padding-bottom: 62px; }

/* ---------------- Garanties ---------------- */

.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 30px 0;
    border-top: 1px solid var(--edge);
    border-bottom: 1px solid var(--edge);
}

.trust__i { display: flex; align-items: flex-start; gap: 13px; }
.trust__i svg { width: 26px; height: 26px; stroke: var(--sand); fill: none; stroke-width: 1.4; flex-shrink: 0; margin-top: 2px; }
.trust__i b { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 2px; }
.trust__i span { font-size: 0.78rem; color: var(--ink-faint); line-height: 1.5; }

/* ---------------- Entêtes de section ---------------- */

.head { margin-bottom: 34px; }

.head h2 {
    font-family: var(--disp);
    font-weight: 800;
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    letter-spacing: -0.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.head p { color: var(--ink-soft); font-size: 0.93rem; max-width: 580px; }
.head--center { text-align: center; }
.head--center p { margin: 0 auto; }

.pad { padding: 84px 0; }
.pad--sm { padding: 56px 0; }

/* ---------------- Mise en avant ---------------- */

.spot { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.spot__vis { position: relative; }
.spot__vis img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; box-shadow: var(--glow); }

.spot h2 {
    font-family: var(--disp);
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.spot p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }

.price-lg { font-family: var(--disp); font-size: 2.1rem; font-weight: 700; color: var(--sand); margin-bottom: 24px; }

.spot__acts { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------- Grille de kits ---------------- */

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

.card {
    background: var(--panel);
    border: 1px solid var(--edge);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.22s;
}

.card:hover { border-color: var(--edge-2); transform: translateY(-4px); box-shadow: var(--glow); }

.card__vis { position: relative; display: block; }
.card__vis img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__vis img { transform: scale(1.03); }

.card__tag {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(21, 11, 7, 0.82);
    backdrop-filter: blur(4px);
    color: var(--sand);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 3px;
}

.card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }

.card__name {
    font-family: var(--disp);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.card__name a { text-decoration: none; }
.card__name a:hover { color: var(--sand); }

.card__desc { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; }

.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card__price { font-family: var(--disp); font-size: 1.3rem; font-weight: 700; color: var(--sand); }

/* ---------------- Chiffres ---------------- */

.facts { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--sand); border-radius: 8px; overflow: hidden; }
.facts__i { padding: 32px 24px; text-align: center; border-right: 1px solid rgba(27, 14, 8, 0.18); }
.facts__i:last-child { border-right: none; }
.facts__i b { display: block; font-family: var(--disp); font-size: 2.1rem; font-weight: 800; color: #1b0e08; line-height: 1.1; }
.facts__i span { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: #5a3520; }

/* ---------------- FAQ ---------------- */

.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 34px; }

.faq details { background: var(--panel); border: 1px solid var(--edge); border-radius: 6px; padding: 2px 20px; }

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sand); font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.8; padding: 0 0 18px; }

/* ---------------- Pied de page ---------------- */

.foot { background: #100804; border-top: 1px solid var(--edge); padding: 58px 0 26px; }

.foot__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-bottom: 38px; }

.foot__brand .mark { margin-bottom: 14px; }
.foot__brand p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.8; max-width: 300px; }

.foot h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.foot ul { display: flex; flex-direction: column; gap: 10px; }
.foot ul a { font-size: 0.84rem; color: var(--ink-soft); text-decoration: none; }
.foot ul a:hover { color: var(--sand); }

.foot__bar {
    border-top: 1px solid var(--edge);
    padding-top: 22px;
    display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
    font-size: 0.73rem; color: var(--ink-faint); line-height: 1.9;
}

/* ---------------- Fiche kit ---------------- */

.sheet { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; padding: 44px 0 20px; }

.sheet__vis img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; box-shadow: var(--glow); }

.sheet h1 {
    font-family: var(--disp);
    font-weight: 800;
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 8px 0 14px;
}

.sheet__price { font-family: var(--disp); font-size: 2rem; font-weight: 700; color: var(--sand); margin-bottom: 22px; }
.sheet__lede { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.9; margin-bottom: 24px; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--edge-2); border-radius: 4px; background: var(--panel); }
.qty button { width: 40px; height: 46px; background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--ink); }
.qty button:hover { color: var(--sand); }
.qty input { width: 42px; height: 46px; text-align: center; border: none; border-left: 1px solid var(--edge-2); border-right: 1px solid var(--edge-2); background: none; font-family: var(--body); font-size: 0.92rem; color: var(--ink); }
.qty input:focus { outline: none; }

.buy { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; margin-bottom: 12px; }
.buy .btn { flex: 1; min-width: 165px; }

.flash { display: none; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ok); margin-bottom: 18px; }
.flash.on { display: flex; }

.specs { border-top: 1px solid var(--edge); margin-top: 10px; }
.specs__row { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--edge); }
.specs__row dt { font-size: 0.66rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink-faint); padding-top: 3px; }
.specs__row dd { font-size: 0.88rem; color: var(--ink-soft); }
.specs__row dd a { color: var(--sand); }

.longtext { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.95; }

/* ---------------- Panier ---------------- */

.pagetop { padding: 42px 0 22px; }
.pagetop h1 { font-family: var(--disp); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.6rem); text-transform: uppercase; margin: 6px 0 6px; }
.pagetop p { color: var(--ink-soft); font-size: 0.9rem; }

.back { display: inline-flex; width: fit-content; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--ink-faint); text-decoration: none; margin-bottom: 16px; }
.back:hover { color: var(--sand); }

.lines { background: var(--panel); border: 1px solid var(--edge); border-radius: 8px; margin-bottom: 22px; }

.line { display: grid; grid-template-columns: 88px 1fr auto; gap: 20px; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--edge); }
.line:last-child { border-bottom: none; }
.line__vis { width: 88px; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 5px; }
.line__vis img { width: 100%; height: 100%; object-fit: cover; }
.line__tag { font-size: 0.62rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--sand); margin-bottom: 4px; }
.line__name { font-family: var(--disp); font-size: 1.1rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; }
.line__x { background: none; border: none; padding: 0; font-size: 0.76rem; color: var(--ink-faint); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.line__x:hover { color: var(--alert); }
.line__end { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.line__sum { font-family: var(--disp); font-size: 1.2rem; font-weight: 700; }

.void { background: var(--panel); border: 1px solid var(--edge); border-radius: 8px; text-align: center; padding: 58px 24px; }
.void p { color: var(--ink-soft); margin-bottom: 20px; }

.total { background: var(--panel); border: 1px solid var(--edge); border-radius: 8px; padding: 24px; }
.total h2 { font-family: var(--disp); font-weight: 800; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.total__row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.88rem; color: var(--ink-soft); padding: 6px 0; }
.total__row--big { border-top: 1px solid var(--edge); margin-top: 10px; padding-top: 14px; color: var(--ink); font-size: 1rem; }
.total__row--big b { font-family: var(--disp); font-size: 1.6rem; font-weight: 700; color: var(--sand); }
.total .btn { margin-top: 18px; }

.secure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.74rem; color: var(--ink-faint); margin-top: 12px; }

/* ---------------- Commande ---------------- */

.order { max-width: 640px; margin: 0 auto; padding: 0 var(--pad) 80px; }

.mini { display: flex; align-items: center; gap: 15px; background: var(--panel); border: 1px solid var(--edge); border-radius: 8px; padding: 14px 16px; margin-bottom: 24px; }
.mini__vis { width: 62px; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 5px; flex-shrink: 0; }
.mini__vis img { width: 100%; height: 100%; object-fit: cover; }
.mini__b { flex: 1; min-width: 0; }
.mini__name { font-family: var(--disp); font-size: 1rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.mini__meta { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sand); }
.mini__sum { font-family: var(--disp); font-size: 1.3rem; font-weight: 700; color: var(--sand); white-space: nowrap; }

.step { margin-bottom: 26px; }
.step__t { display: flex; align-items: center; gap: 11px; font-size: 0.68rem; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 15px; }
.step__t i { width: 22px; height: 22px; display: grid; place-items: center; background: var(--sand); color: #1b0e08; font-style: normal; font-size: 0.68rem; font-weight: 700; border-radius: 3px; }

.f { margin-bottom: 13px; }
.f label { display: block; font-size: 0.76rem; color: var(--ink-soft); margin-bottom: 6px; }

.f input[type="text"], .f input[type="email"] {
    width: 100%;
    padding: 13px 15px;
    background: var(--panel-2);
    border: 1px solid var(--edge-2);
    border-radius: 4px;
    color: var(--ink);
    /* 16px : empêche le zoom automatique d'iOS Safari */
    font-size: 16px;
    font-family: var(--body);
    transition: 0.18s;
}

.f input:focus { outline: none; border-color: var(--sand); }
.f input::placeholder { color: var(--ink-faint); }

.paybox { background: var(--panel); border: 1px solid var(--edge); border-radius: 8px; padding: 18px; }
.paybox .f:last-child { margin-bottom: 0; }

.slot { display: flex; align-items: center; height: 46px; padding: 0 15px; background: var(--panel-2); border: 1px solid var(--edge-2); border-radius: 4px; transition: 0.18s; }
.slot__m { flex: 1 1 auto; min-width: 0; }
.slot.on { border-color: var(--sand); }
.slot.ko { border-color: var(--alert); }

.ferr { display: none; margin-top: 5px; font-size: 0.74rem; color: var(--alert); }
.ferr.on { display: block; }

.agree { display: flex; align-items: flex-start; gap: 11px; margin: 18px 0 4px; padding: 15px; background: var(--panel); border: 1px solid var(--edge); border-radius: 6px; }
.agree input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--sand); flex-shrink: 0; }
.agree label { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.65; }
.agree a { color: var(--sand); }

.oops { display: none; margin-top: 15px; padding: 13px 15px; border: 1px solid var(--alert); background: rgba(224, 101, 90, 0.12); color: #f0a89f; border-radius: 5px; font-size: 0.84rem; }
.oops.on { display: block; }

.turn { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(27, 14, 8, 0.3); border-top-color: #1b0e08; border-radius: 50%; animation: sp 0.6s linear infinite; }
@keyframes sp { to { transform: rotate(360deg); } }

/* ---------------- Confirmation ---------------- */

.done { max-width: 560px; margin: 0 auto; padding: 60px var(--pad) 86px; text-align: center; }
.done__ok { width: 60px; height: 60px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(111, 170, 124, 0.16); color: var(--ok); font-size: 1.6rem; }
.done h1 { font-family: var(--disp); font-weight: 800; font-size: 2rem; text-transform: uppercase; margin: 8px 0 12px; }
.done > p { color: var(--ink-soft); margin-bottom: 28px; }
.done__steps { background: var(--panel); border: 1px solid var(--edge); border-radius: 8px; text-align: left; padding: 4px 20px; }
.done__s { display: flex; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--edge); }
.done__s:last-child { border-bottom: none; }
.done__s em { flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center; background: var(--sand); color: #1b0e08; font-style: normal; font-size: 0.72rem; font-weight: 700; border-radius: 3px; }
.done__s b { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.done__s span { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------------- Pages légales ---------------- */

.legal { padding: 10px 0 80px; }
.legal section { margin-bottom: 34px; }
.legal h2 { font-family: var(--disp); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 20px; }
.legal strong { color: var(--ink); }
.legal a { color: var(--sand); }

.idbox { background: var(--panel); border: 1px solid var(--edge); border-radius: 8px; padding: 24px; margin-bottom: 20px; }
.idbox dl { display: grid; grid-template-columns: minmax(150px, auto) 1fr; gap: 9px 24px; }
.idbox dt { font-size: 0.66rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-faint); }
.idbox dd { font-size: 0.9rem; }

/* ---------------- Responsive ---------------- */

@media (max-width: 1000px) {
    :root { --pad: 26px; }
    .nav__links { display: none; }
    .hamb { display: grid; place-items: center; }

    .hero { grid-template-columns: 1fr; gap: 22px; padding-top: 32px; }
    .shots { height: 300px; max-width: 480px; margin: 0 auto; width: 100%; }
    .shots img { width: 190px; }
    .hero__note { text-align: center; }
    .hero__note p { margin: 0 auto 22px; }
    .bigtitle { padding: 18px 0 10px; }
    .subtitle { padding-bottom: 44px; }

    .trust { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .spot { grid-template-columns: 1fr; gap: 26px; }
    .faq { grid-template-columns: 1fr; gap: 12px; }
    .sheet { grid-template-columns: 1fr; gap: 26px; padding-top: 26px; }

    .foot__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .foot__brand { grid-column: 1 / -1; }
    .pad { padding: 58px 0; }
}

@media (max-width: 620px) {
    :root { --pad: 22px; }

    .promo { font-size: 0.6rem; letter-spacing: 1.2px; }
    .mark__t { font-size: 0.88rem; letter-spacing: 3px; }
    .nav__in { height: 62px; }

    .shots { height: 230px; }
    .shots img { width: 148px; }
    .shots img:nth-child(1) { left: 2%; }
    .shots img:nth-child(3) { left: 50%; }

    .grid { grid-template-columns: 1fr; }
    .trust { grid-template-columns: 1fr; gap: 18px; }
    .facts { grid-template-columns: 1fr; }
    .facts__i { border-right: none; border-bottom: 1px solid rgba(27, 14, 8, 0.18); padding: 22px; }
    .facts__i:last-child { border-bottom: none; }

    .buy .btn { min-width: 0; width: 100%; flex: none; }
    .qty { align-self: center; }
    .specs__row { grid-template-columns: 1fr; gap: 3px; }

    .line { grid-template-columns: 68px 1fr; gap: 14px; padding: 16px; }
    .line__vis { width: 68px; }
    .line__end { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; border-top: 1px solid var(--edge); padding-top: 12px; }

    .foot__grid { grid-template-columns: 1fr; gap: 26px; }
    .idbox dl { grid-template-columns: 1fr; gap: 2px 0; }
    .idbox dd { margin-bottom: 10px; }
}
