/* ============================================================================
   TONEBARK — design system (audio maison éco)
   Recette : spec-tech · logo centré + nav dessous · hero plein-cadre ·
   grille diagonale · carte cadre+ruban · footer colonne latérale ·
   arrondi doux · marquee · icônes line fines · tracking large · terreux.
   Classes préfixées tb- (uniques à ce site).
   ========================================================================== */
:root {
  --tb-primary: #2f3a2b;      /* olive foncé */
  --tb-secondary: #ece3d0;    /* lin */
  --tb-accent: #b5763a;       /* miel / bois */
  --tb-ink: #1c231a;          /* encre */
  --tb-paper: #efe7d5;        /* fond page */
  --tb-paper-2: #f5efe1;      /* fond alt clair */
  --tb-card: #f7f2e6;         /* fond carte */
  --tb-line: #cabfa4;         /* filets */
  --tb-line-2: #d8cfb6;
  --tb-muted: #6b6a55;
  --tb-primary-2: #3a4634;
  --tb-radius: 14px;
  --tb-radius-sm: 8px;
  --tb-wrap: 1240px;
  --tb-display: "Melodrama", Georgia, serif;
  --tb-body: "Bricolage Grotesque", system-ui, sans-serif;
  --tb-mono: "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--tb-paper); color: var(--tb-ink);
  font-family: var(--tb-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--tb-display); font-weight: 500; line-height: 1.04; margin: 0; letter-spacing: -.01em; }
.tb-wrap { width: 100%; max-width: var(--tb-wrap); margin: 0 auto; padding: 0 26px; }

/* spec-tech : labels mono + index */
.tb-mono, .tb-idx, .tb-eyebrow { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .2em; font-size: .62rem; }
.tb-idx { color: var(--tb-accent); }
.tb-eyebrow { color: var(--tb-muted); display: inline-block; }
.tb-icn { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ── boutons ─────────────────────────────────────────────────────────── */
.tb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--tb-primary); color: var(--tb-secondary);
  font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .16em; font-size: .64rem;
  padding: 13px 22px; border: 1px solid var(--tb-primary); border-radius: var(--tb-radius-sm);
  transition: background .2s, color .2s, transform .2s; line-height: 1;
}
.tb-btn:hover { background: var(--tb-primary-2); transform: translateY(-2px); }
.tb-btn--lg { padding: 16px 30px; font-size: .68rem; }
.tb-btn--ghost { background: transparent; color: var(--tb-primary); border-color: var(--tb-line); }
.tb-btn--ghost:hover { background: var(--tb-primary); color: var(--tb-secondary); }
.tb-btn--accent { background: var(--tb-accent); border-color: var(--tb-accent); color: #fff; }
.tb-btn--accent:hover { background: #9d6530; }
.tb-btn--block { width: 100%; }

/* ── barre annonce (marquee) ─────────────────────────────────────────── */
.tb-announce { background: var(--tb-primary); color: var(--tb-secondary); overflow: hidden; border-bottom: 1px solid rgba(0,0,0,.15); }
.tb-announce__track { display: inline-flex; gap: 46px; white-space: nowrap; padding: 8px 0; animation: tb-marq 32s linear infinite; }
.tb-announce__track span { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .18em; font-size: .58rem; opacity: .92; }
.tb-announce__track span::before { content: "◦"; margin-right: 46px; color: var(--tb-accent); }
@keyframes tb-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── header : logo centré + nav dessous ──────────────────────────────── */
.tb-head { position: sticky; top: 0; z-index: 60; background: var(--tb-paper); border-bottom: 1px solid var(--tb-line); transition: box-shadow .25s; }
.tb-head--stuck { box-shadow: 0 10px 30px -18px rgba(28,35,26,.5); }
.tb-head__top { position: relative; display: flex; align-items: center; justify-content: center; padding: 16px 0 12px; }
.tb-brand { display: block; }
.tb-brand img { height: 40px; width: auto; }
.tb-brand__txt { font-family: var(--tb-display); font-size: 1.8rem; color: var(--tb-primary); letter-spacing: .02em; }
.tb-head__tools { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 4px; }
.tb-head__util { position: absolute; left: 0; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 6px; }
.tb-head__util .tb-ship-note { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .14em; font-size: .54rem; color: var(--tb-muted); }
.tb-iconbtn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: transparent; border: 1px solid transparent; border-radius: 50%;
  color: var(--tb-primary); transition: background .2s;
}
.tb-iconbtn:hover { background: var(--tb-paper-2); }
.tb-cartcount {
  position: absolute; top: 3px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--tb-accent); color: #fff; border-radius: 999px;
  font-family: var(--tb-mono); font-size: .56rem; display: flex; align-items: center; justify-content: center;
}
.tb-langsel {
  font-family: var(--tb-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--tb-line); border-radius: 6px; color: var(--tb-primary);
  padding: 7px 6px; cursor: pointer;
}
.tb-nav {
  display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap;
  border-top: 1px solid var(--tb-line); padding: 11px 0;
}
.tb-nav a { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .16em; font-size: .6rem; color: var(--tb-ink); position: relative; padding: 3px 0; }
.tb-nav a:hover { color: var(--tb-accent); }
.tb-burger { display: none; }

/* mobile nav */
.tb-mnav { position: fixed; inset: 0; z-index: 90; background: var(--tb-primary); color: var(--tb-secondary); transform: translateX(100%); transition: transform .3s; display: flex; flex-direction: column; padding: 22px; overflow-y: auto; }
.tb-mnav.tb-open { transform: none; }
.tb-mnav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.tb-mnav__top .tb-brand__txt { color: var(--tb-secondary); }
.tb-mnav .tb-iconbtn { color: var(--tb-secondary); }
.tb-mnav a { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; padding: 15px 0; border-bottom: 1px solid rgba(236,227,208,.16); }

/* ── hero plein-cadre ────────────────────────────────────────────────── */
.tb-hero { position: relative; min-height: 82vh; display: flex; align-items: flex-end; color: var(--tb-secondary); overflow: hidden; }
.tb-hero__bg { position: absolute; inset: 0; }
.tb-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.tb-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,35,26,.15) 0%, rgba(28,35,26,.35) 45%, rgba(28,35,26,.82) 100%); }
.tb-hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: 56px; }
.tb-hero__coord { display: flex; justify-content: space-between; font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .18em; font-size: .56rem; opacity: .85; border-top: 1px solid rgba(236,227,208,.35); padding-top: 12px; margin-bottom: 26px; }
.tb-hero h1 { font-size: clamp(2.9rem, 8vw, 6.4rem); max-width: 15ch; margin-bottom: 16px; }
.tb-hero h1 em { font-style: italic; color: var(--tb-accent); }
.tb-hero__lead { max-width: 46ch; font-size: 1.08rem; opacity: .95; margin: 0 0 26px; }
.tb-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.tb-hero__cta .tb-btn--ghost { color: var(--tb-secondary); border-color: rgba(236,227,208,.5); }
.tb-hero__cta .tb-btn--ghost:hover { background: var(--tb-secondary); color: var(--tb-primary); }
.tb-hero__meta { display: flex; gap: 34px; margin-top: 30px; flex-wrap: wrap; }
.tb-hero__meta div { display: flex; flex-direction: column; }
.tb-hero__meta b { font-family: var(--tb-display); font-size: 1.7rem; }
.tb-hero__meta span { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .54rem; opacity: .85; }

/* ── réassurance ─────────────────────────────────────────────────────── */
.tb-trust { background: var(--tb-primary); color: var(--tb-secondary); }
.tb-trust__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.tb-trust__row > div { display: flex; align-items: center; gap: 12px; padding: 20px 22px; border-left: 1px solid rgba(236,227,208,.14); }
.tb-trust__row > div:first-child { border-left: none; }
.tb-trust__row .tb-icn { color: var(--tb-accent); flex: 0 0 auto; }
.tb-trust b { display: block; font-family: var(--tb-body); font-weight: 600; font-size: .82rem; letter-spacing: 0; }
.tb-trust small { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .5rem; opacity: .8; }

/* ── sections ────────────────────────────────────────────────────────── */
.tb-sec { padding: 78px 0; }
.tb-sec--tight { padding: 56px 0; }
.tb-sec--paper2 { background: var(--tb-paper-2); }
.tb-sechead { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; align-items: end; margin-bottom: 38px; border-bottom: 1px solid var(--tb-line); padding-bottom: 22px; }
.tb-sechead h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-top: 10px; }
.tb-sechead .tb-lead { color: var(--tb-muted); font-size: 1rem; }
.tb-sechead__link { justify-self: end; }

/* ── ticker (marquee géant) ──────────────────────────────────────────── */
.tb-ticker { background: var(--tb-accent); color: #fff; overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(0,0,0,.12); border-bottom: 1px solid rgba(0,0,0,.12); }
.tb-ticker__inner { width: 100%; overflow: hidden; white-space: nowrap; }
.tb-ticker__inner::before {
  content: "Son chaud  ❋  Bois certifié FSC  ❋  Réparable à vie  ❋  Zéro plastique jetable  ❋  Assemblé en Normandie  ❋  Son chaud  ❋  Bois certifié FSC  ❋  Réparable à vie  ❋  Zéro plastique jetable  ❋  Assemblé en Normandie  ❋  ";
  display: inline-block; font-family: var(--tb-display); font-size: 1.7rem;
  animation: tb-marq 34s linear infinite;
}

/* ── grille diagonale + carte cadre+ruban ────────────────────────────── */
.tb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 20px; }
.tb-grid--home { grid-template-columns: repeat(4, 1fr); }
.tb-grid .tb-card:nth-child(4n+2) { transform: translateY(26px); }
.tb-grid .tb-card:nth-child(4n+3) { transform: translateY(52px); }
.tb-grid .tb-card:nth-child(4n+4) { transform: translateY(20px); }

.tb-card {
  position: relative; background: var(--tb-card); border: 1px solid var(--tb-line);
  border-radius: var(--tb-radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tb-card:hover { border-color: var(--tb-accent); box-shadow: 0 22px 40px -26px rgba(28,35,26,.55); }
.tb-card__media { position: relative; display: block; aspect-ratio: 1/1; background: var(--tb-paper-2); overflow: hidden; }
.tb-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tb-card:hover .tb-card__media img { transform: scale(1.05); }
.tb-card__badges { position: absolute; top: 0; left: 0; display: flex; }
/* ruban */
.tb-badge {
  background: var(--tb-accent); color: #fff; font-family: var(--tb-mono);
  text-transform: uppercase; letter-spacing: .12em; font-size: .5rem; padding: 6px 12px;
  border-bottom-right-radius: 10px;
}
.tb-card__quick { position: absolute; left: 12px; right: 12px; bottom: 12px; opacity: 0; transform: translateY(8px); transition: .25s; }
.tb-card:hover .tb-card__quick { opacity: 1; transform: none; }
.tb-card__cap { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tb-card__cat { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .16em; font-size: .5rem; color: var(--tb-muted); }
.tb-card__name { font-family: var(--tb-display); font-size: 1.28rem; line-height: 1.05; color: var(--tb-ink); }
.tb-card__name:hover { color: var(--tb-accent); }
.tb-card__rate { display: flex; align-items: center; gap: 7px; }
.tb-card__rate em { font-family: var(--tb-mono); font-style: normal; font-size: .54rem; letter-spacing: .06em; color: var(--tb-muted); }
.tb-stars { display: inline-flex; gap: 1px; }
.tb-stars svg { width: 13px; height: 13px; fill: var(--tb-accent); stroke: none; }
.tb-stars svg.e { fill: var(--tb-line); }
.tb-card__foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--tb-line-2); }
.tb-price { display: flex; align-items: baseline; gap: 8px; }
.tb-price b { font-family: var(--tb-display); font-size: 1.2rem; }
.tb-price s { color: var(--tb-muted); font-size: .8rem; }
.tb-qadd { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--tb-line); color: var(--tb-primary); transition: .2s; }
.tb-qadd:hover { background: var(--tb-primary); color: var(--tb-secondary); border-color: var(--tb-primary); }
.tb-qadd .tb-icn { width: 17px; height: 17px; }

/* ── manifeste ───────────────────────────────────────────────────────── */
.tb-manif { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border: 1px solid var(--tb-line); border-radius: var(--tb-radius); overflow: hidden; }
.tb-manif__img { min-height: 420px; }
.tb-manif__img img { width: 100%; height: 100%; object-fit: cover; }
.tb-manif__body { padding: 48px; background: var(--tb-card); }
.tb-manif__body h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0 18px; }
.tb-manif__body p { color: var(--tb-muted); margin: 0 0 14px; }
.tb-manif__sign { font-family: var(--tb-display); font-style: italic; font-size: 1.3rem; color: var(--tb-primary); margin-top: 20px; }

/* ── carte origines ──────────────────────────────────────────────────── */
.tb-orig { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tb-orig__media { position: relative; border-radius: var(--tb-radius); overflow: hidden; border: 1px solid var(--tb-line); }
.tb-orig__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tb-orig__pin { position: absolute; font-family: var(--tb-mono); font-size: .52rem; text-transform: uppercase; letter-spacing: .1em; background: var(--tb-paper); border: 1px solid var(--tb-line); padding: 5px 9px; border-radius: 999px; box-shadow: 0 6px 16px -8px rgba(0,0,0,.4); }
.tb-orig__list { display: grid; gap: 4px; }
.tb-orig__row { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--tb-line); }
.tb-orig__row:last-child { border-bottom: 1px solid var(--tb-line); }
.tb-orig__row .n { font-family: var(--tb-mono); color: var(--tb-accent); font-size: .8rem; }
.tb-orig__row h3 { font-family: var(--tb-body); font-weight: 600; font-size: 1rem; margin-bottom: 3px; }
.tb-orig__row p { margin: 0; color: var(--tb-muted); font-size: .92rem; }

/* ── lookbook éditorial ──────────────────────────────────────────────── */
.tb-look { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tb-look__item { position: relative; border-radius: var(--tb-radius); overflow: hidden; border: 1px solid var(--tb-line); display: block; }
.tb-look__item:nth-child(2) { transform: translateY(30px); }
.tb-look__item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .5s; }
.tb-look__item:hover img { transform: scale(1.04); }
.tb-look__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; background: linear-gradient(0deg, rgba(28,35,26,.85), transparent); color: var(--tb-secondary); }
.tb-look__cap span { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .14em; font-size: .52rem; color: var(--tb-accent); }
.tb-look__cap h3 { font-size: 1.4rem; margin-top: 4px; }

/* ── par besoin ──────────────────────────────────────────────────────── */
.tb-needs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tb-need { display: block; padding: 26px 22px; border: 1px solid var(--tb-line); border-radius: var(--tb-radius); background: var(--tb-card); transition: .25s; }
.tb-need:hover { background: var(--tb-primary); color: var(--tb-secondary); transform: translateY(-4px); }
.tb-need .tb-icn { width: 30px; height: 30px; color: var(--tb-accent); margin-bottom: 16px; }
.tb-need:hover .tb-icn { color: var(--tb-secondary); }
.tb-need h3 { font-size: 1.35rem; margin-bottom: 6px; }
.tb-need p { margin: 0 0 14px; color: var(--tb-muted); font-size: .9rem; }
.tb-need:hover p { color: rgba(236,227,208,.85); }
.tb-need span { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .14em; font-size: .54rem; }

/* ── timeline ────────────────────────────────────────────────────────── */
.tb-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.tb-tstep { padding: 26px 22px 26px 0; border-top: 2px solid var(--tb-primary); position: relative; }
.tb-tstep::before { content: ""; position: absolute; top: -6px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--tb-accent); }
.tb-tstep .tb-idx { display: block; margin-bottom: 10px; }
.tb-tstep h3 { font-size: 1.4rem; margin-bottom: 6px; }
.tb-tstep p { margin: 0; color: var(--tb-muted); font-size: .92rem; }

/* ── stats ───────────────────────────────────────────────────────────── */
.tb-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.tb-stats > div { padding: 20px; border: 1px solid var(--tb-line); border-radius: var(--tb-radius); background: var(--tb-card); }
.tb-stats b { display: block; font-family: var(--tb-display); font-size: 2.6rem; color: var(--tb-primary); line-height: 1; }
.tb-stats b em { font-style: normal; font-size: 1.1rem; color: var(--tb-accent); }
.tb-stats span { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .54rem; color: var(--tb-muted); }

/* ── quiz finder ─────────────────────────────────────────────────────── */
.tb-quiz { border: 1px solid var(--tb-line); border-radius: var(--tb-radius); background: var(--tb-card); padding: 40px; }
.tb-quiz__q { margin-bottom: 26px; }
.tb-quiz__q > span { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .14em; font-size: .58rem; color: var(--tb-accent); display: block; margin-bottom: 12px; }
.tb-quiz__opts { display: flex; gap: 10px; flex-wrap: wrap; }
.tb-quiz__opts button { background: var(--tb-paper); border: 1px solid var(--tb-line); border-radius: 999px; padding: 11px 20px; font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .58rem; color: var(--tb-ink); transition: .2s; }
.tb-quiz__opts button:hover { border-color: var(--tb-accent); }
.tb-quiz__opts button.tb-on { background: var(--tb-primary); color: var(--tb-secondary); border-color: var(--tb-primary); }
#tb-quiz-result { margin-top: 10px; opacity: 0; transform: translateY(6px); transition: .3s; }
#tb-quiz-result.tb-show { opacity: 1; transform: none; }
.tb-quiz__lead { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .14em; font-size: .58rem; color: var(--tb-muted); margin: 0 0 12px; }

/* ── témoignages ─────────────────────────────────────────────────────── */
.tb-testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tb-testi { border: 1px solid var(--tb-line); border-radius: var(--tb-radius); background: var(--tb-card); padding: 26px; }
.tb-testi p { font-family: var(--tb-display); font-size: 1.15rem; line-height: 1.35; margin: 12px 0 16px; }
.tb-testi__who { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .54rem; color: var(--tb-muted); }

/* ── newsletter ──────────────────────────────────────────────────────── */
.tb-news { background: var(--tb-primary); color: var(--tb-secondary); border-radius: var(--tb-radius); padding: 48px; text-align: center; }
.tb-news h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 10px; }
.tb-news p { max-width: 48ch; margin: 0 auto 22px; opacity: .9; }
.tb-news__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.tb-news__form input { flex: 1; min-width: 200px; background: rgba(236,227,208,.1); border: 1px solid rgba(236,227,208,.35); border-radius: var(--tb-radius-sm); padding: 14px 16px; color: var(--tb-secondary); font-family: var(--tb-body); }
.tb-news__form input::placeholder { color: rgba(236,227,208,.6); }
.tb-news__legal { font-family: var(--tb-mono); font-size: .5rem; text-transform: uppercase; letter-spacing: .1em; opacity: .6; margin-top: 14px; }

/* ── footer : colonne latérale ───────────────────────────────────────── */
.tb-foot { background: var(--tb-primary); color: var(--tb-secondary); }
.tb-foot__grid { display: grid; grid-template-columns: 300px 1fr; gap: 0; }
.tb-foot__side { padding: 46px 34px; border-right: 1px solid rgba(236,227,208,.14); display: flex; flex-direction: column; }
.tb-foot__side .tb-brand__txt { color: var(--tb-secondary); font-size: 2rem; }
.tb-foot__side p { color: rgba(236,227,208,.75); font-size: .9rem; margin: 14px 0 20px; }
.tb-foot__social { display: flex; gap: 10px; margin-top: auto; }
.tb-foot__social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid rgba(236,227,208,.28); border-radius: 50%; color: var(--tb-secondary); transition: .2s; }
.tb-foot__social a:hover { background: var(--tb-accent); border-color: var(--tb-accent); }
.tb-foot__main { padding: 46px 40px; }
.tb-foot__cols { display: grid; grid-template-columns: repeat(3, 1fr) 1.3fr; gap: 30px; }
.tb-foot__cols h4 { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .14em; font-size: .58rem; color: var(--tb-accent); margin-bottom: 14px; font-weight: 400; }
.tb-foot__cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.tb-foot__cols a { font-size: .88rem; color: rgba(236,227,208,.82); }
.tb-foot__cols a:hover { color: var(--tb-secondary); }
.tb-foot__mini-news label { display: block; font-size: .85rem; color: rgba(236,227,208,.8); margin-bottom: 10px; }
.tb-foot__mini-news .row { display: flex; gap: 8px; }
.tb-foot__mini-news input { flex: 1; min-width: 0; background: rgba(236,227,208,.1); border: 1px solid rgba(236,227,208,.3); border-radius: 6px; padding: 10px 12px; color: var(--tb-secondary); font-family: var(--tb-body); font-size: .82rem; }
.tb-foot__pay { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.tb-foot__pay svg { height: 30px; width: 46px; border-radius: 4px; }
.tb-foot__bar { border-top: 1px solid rgba(236,227,208,.14); padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.tb-foot__bar p { margin: 0; font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .08em; font-size: .5rem; opacity: .7; }
.tb-foot__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.tb-foot__legal a { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .5rem; opacity: .7; }
.tb-foot__legal a:hover { opacity: 1; }

/* ── drawer panier ───────────────────────────────────────────────────── */
.tb-scrim { position: fixed; inset: 0; background: rgba(28,35,26,.5); opacity: 0; pointer-events: none; transition: .3s; z-index: 95; }
.tb-scrim.tb-open { opacity: 1; pointer-events: auto; }
.tb-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 92vw; background: var(--tb-paper); z-index: 100; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -20px 0 50px -24px rgba(0,0,0,.5); }
.tb-drawer.tb-open { transform: none; }
.tb-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--tb-line); }
.tb-drawer__head h3 { font-size: 1.4rem; }
.tb-ship { padding: 16px 22px; border-bottom: 1px solid var(--tb-line); }
.tb-ship p { margin: 0 0 8px; font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .08em; font-size: .54rem; color: var(--tb-muted); }
.tb-ship__bar { height: 6px; background: var(--tb-line-2); border-radius: 999px; overflow: hidden; }
.tb-ship__fill { height: 100%; width: 0; background: var(--tb-accent); transition: width .4s; }
.tb-items { flex: 1; overflow-y: auto; padding: 8px 22px; }
.tb-li { display: grid; grid-template-columns: 66px 1fr auto; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--tb-line-2); align-items: start; }
.tb-li img { width: 66px; height: 66px; object-fit: cover; border-radius: var(--tb-radius-sm); border: 1px solid var(--tb-line); }
.tb-li__name { font-family: var(--tb-display); font-size: 1.05rem; line-height: 1.1; }
.tb-li__var { font-family: var(--tb-mono); font-size: .5rem; text-transform: uppercase; letter-spacing: .08em; color: var(--tb-muted); margin: 3px 0; }
.tb-qty { display: inline-flex; align-items: center; gap: 0; margin-top: 6px; border: 1px solid var(--tb-line); border-radius: 6px; width: max-content; }
.tb-qty button { width: 28px; height: 28px; background: transparent; border: none; color: var(--tb-primary); font-size: 1rem; }
.tb-qty span { min-width: 26px; text-align: center; font-family: var(--tb-mono); font-size: .7rem; }
.tb-li__rm { display: block; margin-top: 8px; background: none; border: none; padding: 0; font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .5rem; color: var(--tb-muted); text-decoration: underline; }
.tb-li__price { font-family: var(--tb-display); font-size: 1.05rem; }
.tb-drawer__foot { padding: 18px 22px; border-top: 1px solid var(--tb-line); }
.tb-drawer__tot { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tb-drawer__tot span:first-child { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; }
.tb-drawer__tot span:last-child { font-family: var(--tb-display); font-size: 1.5rem; }
.tb-empty { padding: 40px 0; text-align: center; color: var(--tb-muted); font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; }

/* ── shop filters ────────────────────────────────────────────────────── */
.tb-shophead { padding: 46px 0 24px; }
.tb-shophead h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.tb-shophead .tb-lead { color: var(--tb-muted); max-width: 54ch; margin-top: 8px; }
.tb-filterbar { position: sticky; top: 108px; z-index: 40; background: var(--tb-paper); border-top: 1px solid var(--tb-line); border-bottom: 1px solid var(--tb-line); padding: 12px 0; margin-bottom: 40px; }
.tb-filterbar__row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tb-chip { background: transparent; border: 1px solid var(--tb-line); border-radius: 999px; padding: 9px 16px; font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .56rem; color: var(--tb-ink); transition: .2s; }
.tb-chip:hover { border-color: var(--tb-accent); }
.tb-chip.tb-on { background: var(--tb-primary); color: var(--tb-secondary); border-color: var(--tb-primary); }
.tb-filterbar__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.tb-count { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .54rem; color: var(--tb-muted); }
.tb-sort { font-family: var(--tb-mono); font-size: .56rem; text-transform: uppercase; letter-spacing: .08em; background: var(--tb-paper); border: 1px solid var(--tb-line); border-radius: 6px; padding: 9px 12px; color: var(--tb-ink); }
.tb-shop-grid { grid-template-columns: repeat(4, 1fr); }
.tb-shop-grid .tb-card { transform: none !important; }
#tb-noresult { text-align: center; padding: 60px 0; color: var(--tb-muted); font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .64rem; }
#tb-noresult.tb-hide { display: none; }

/* ── PDP ─────────────────────────────────────────────────────────────── */
.tb-pdp { padding: 40px 0 20px; }
.tb-pdp__crumb { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .54rem; color: var(--tb-muted); margin-bottom: 22px; }
.tb-pdp__crumb a:hover { color: var(--tb-accent); }
.tb-pdp__top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start; }
.tb-pdp__gallery { position: sticky; top: 130px; }
.tb-pdp__main { border: 1px solid var(--tb-line); border-radius: var(--tb-radius); overflow: hidden; background: var(--tb-card); aspect-ratio: 1/1; }
.tb-pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.tb-pdp__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.tb-pdp__thumbs button { width: 84px; height: 84px; padding: 0; border: 1px solid var(--tb-line); border-radius: var(--tb-radius-sm); overflow: hidden; background: none; }
.tb-pdp__thumbs button.tb-on { border-color: var(--tb-accent); }
.tb-pdp__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.tb-pdp__cat { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .16em; font-size: .56rem; color: var(--tb-accent); }
.tb-pdp__name { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: 8px 0 12px; }
.tb-pdp__rate { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-family: var(--tb-mono); font-size: .6rem; color: var(--tb-muted); }
.tb-pdp__pricerow { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.tb-pdp__price { font-family: var(--tb-display); font-size: 2.2rem; color: var(--tb-primary); }
.tb-pdp__compare { color: var(--tb-muted); text-decoration: line-through; font-size: 1.1rem; }
.tb-pdp__save { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .56rem; color: var(--tb-accent); margin-bottom: 18px; min-height: 14px; }
.tb-pdp__short { font-size: 1.05rem; color: var(--tb-ink); margin-bottom: 22px; }
.tb-vgroup { margin-bottom: 18px; }
.tb-vgroup > span { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .54rem; color: var(--tb-muted); display: block; margin-bottom: 8px; }
.tb-vopts { display: flex; gap: 8px; flex-wrap: wrap; }
.tb-vopt { background: var(--tb-card); border: 1px solid var(--tb-line); border-radius: 6px; padding: 9px 15px; font-family: var(--tb-mono); font-size: .56rem; text-transform: uppercase; letter-spacing: .08em; color: var(--tb-ink); transition: .2s; }
.tb-vopt.tb-on { background: var(--tb-primary); color: var(--tb-secondary); border-color: var(--tb-primary); }
.tb-pdp__buy { display: flex; gap: 12px; align-items: stretch; margin: 22px 0 14px; }
.tb-qtybox { display: inline-flex; align-items: center; border: 1px solid var(--tb-line); border-radius: var(--tb-radius-sm); }
.tb-qtybox button { width: 44px; background: none; border: none; font-size: 1.2rem; color: var(--tb-primary); }
.tb-qtybox span { min-width: 34px; text-align: center; font-family: var(--tb-mono); }
.tb-pdp__reassure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; padding: 16px 0; border-top: 1px solid var(--tb-line); border-bottom: 1px solid var(--tb-line); }
.tb-pdp__reassure div { display: flex; align-items: center; gap: 8px; font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .06em; font-size: .5rem; color: var(--tb-muted); }
.tb-pdp__reassure .tb-icn { width: 18px; height: 18px; color: var(--tb-accent); flex: 0 0 auto; }
.tb-pdp__benefits { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.tb-pdp__benefits li { display: flex; gap: 10px; align-items: flex-start; }
.tb-pdp__benefits .tb-icn { width: 20px; height: 20px; color: var(--tb-accent); flex: 0 0 auto; margin-top: 2px; }
.tb-pdp__sections { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 20px; }
.tb-block { margin-bottom: 32px; }
.tb-block h2 { font-size: 1.7rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--tb-line); }
.tb-block p { color: var(--tb-ink); }
.tb-specs { width: 100%; border-collapse: collapse; }
.tb-specs td { padding: 11px 0; border-bottom: 1px solid var(--tb-line-2); font-size: .92rem; }
.tb-specs td:first-child { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .08em; font-size: .54rem; color: var(--tb-muted); width: 42%; }
.tb-faq details { border-bottom: 1px solid var(--tb-line-2); padding: 14px 0; }
.tb-faq summary { font-family: var(--tb-body); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.tb-faq summary::after { content: "+"; color: var(--tb-accent); }
.tb-faq details[open] summary::after { content: "–"; }
.tb-faq p { margin: 10px 0 0; color: var(--tb-muted); font-size: .92rem; }
.tb-reviews__head { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.tb-reviews__big { font-family: var(--tb-display); font-size: 3rem; color: var(--tb-primary); line-height: 1; }
.tb-rev__list { display: grid; gap: 14px; }
.tb-rev__item { border: 1px solid var(--tb-line); border-radius: var(--tb-radius); padding: 18px; background: var(--tb-card); }
.tb-rev__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.tb-rev__meta b { font-size: .95rem; }
.tb-rev__meta time { font-family: var(--tb-mono); font-size: .5rem; text-transform: uppercase; letter-spacing: .08em; color: var(--tb-muted); }
.tb-rev__item p { margin: 8px 0 0; font-size: .92rem; }

/* sticky ATC mobile */
.tb-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: var(--tb-paper); border-top: 1px solid var(--tb-line); padding: 10px 16px; display: none; align-items: center; gap: 12px; box-shadow: 0 -10px 30px -18px rgba(0,0,0,.5); }
.tb-sticky__info { display: flex; flex-direction: column; min-width: 0; }
.tb-sticky__info b { font-family: var(--tb-display); font-size: 1.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tb-sticky__info span { font-family: var(--tb-mono); font-size: .5rem; text-transform: uppercase; letter-spacing: .08em; color: var(--tb-muted); }
.tb-sticky .tb-btn { margin-left: auto; }

/* ── cart page ───────────────────────────────────────────────────────── */
.tb-cartpage { padding: 46px 0 80px; }
.tb-cartpage__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: start; }
.tb-li--page { grid-template-columns: 84px 1fr auto; }
.tb-li--page img { width: 84px; height: 84px; }
.tb-summary { border: 1px solid var(--tb-line); border-radius: var(--tb-radius); background: var(--tb-card); padding: 26px; position: sticky; top: 130px; }
.tb-summary h3 { font-size: 1.5rem; margin-bottom: 18px; }
.tb-summary__row { display: flex; justify-content: space-between; padding: 9px 0; font-size: .92rem; }
.tb-summary__row--tot { border-top: 1px solid var(--tb-line); margin-top: 8px; padding-top: 14px; font-family: var(--tb-display); font-size: 1.3rem; }

/* ── contenus légaux / about ─────────────────────────────────────────── */
.tb-page { padding: 50px 0 70px; }
.tb-page__head { border-bottom: 1px solid var(--tb-line); padding-bottom: 24px; margin-bottom: 34px; }
.tb-page__head h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.tb-prose { max-width: 760px; }
.tb-prose h2 { font-size: 1.6rem; margin: 30px 0 12px; }
.tb-prose h3 { font-size: 1.2rem; margin: 22px 0 8px; font-family: var(--tb-body); font-weight: 600; }
.tb-prose p, .tb-prose li { color: var(--tb-ink); margin: 0 0 12px; }
.tb-prose ul { padding-left: 20px; }
.tb-prose a { color: var(--tb-accent); text-decoration: underline; }
.tb-prose__toc { border: 1px solid var(--tb-line); border-radius: var(--tb-radius); padding: 18px 22px; background: var(--tb-card); margin-bottom: 30px; }
.tb-prose__toc a { display: block; font-family: var(--tb-mono); font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; padding: 5px 0; text-decoration: none; color: var(--tb-ink); }
.tb-prose__toc a:hover { color: var(--tb-accent); }

.tb-about__hero { position: relative; border-radius: var(--tb-radius); overflow: hidden; border: 1px solid var(--tb-line); margin-bottom: 40px; }
.tb-about__hero img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.tb-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tb-value { border: 1px solid var(--tb-line); border-radius: var(--tb-radius); padding: 26px; background: var(--tb-card); }
.tb-value .tb-icn { width: 28px; height: 28px; color: var(--tb-accent); margin-bottom: 14px; }
.tb-value h3 { font-size: 1.3rem; margin-bottom: 6px; }
.tb-value p { color: var(--tb-muted); font-size: .92rem; margin: 0; }

.tb-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tb-form { display: grid; gap: 14px; }
.tb-form label { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .56rem; color: var(--tb-muted); display: block; margin-bottom: 6px; }
.tb-form input, .tb-form textarea { width: 100%; background: var(--tb-card); border: 1px solid var(--tb-line); border-radius: var(--tb-radius-sm); padding: 12px 14px; font-family: var(--tb-body); color: var(--tb-ink); }
.tb-form textarea { min-height: 140px; resize: vertical; }
.tb-contact__info { border: 1px solid var(--tb-line); border-radius: var(--tb-radius); background: var(--tb-card); padding: 28px; }
.tb-contact__info dt { font-family: var(--tb-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .54rem; color: var(--tb-accent); margin-top: 16px; }
.tb-contact__info dd { margin: 4px 0 0; }

/* ── reveal ──────────────────────────────────────────────────────────── */
.tb-reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.tb-reveal.tb-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .tb-reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .tb-announce__track, .tb-ticker__track { animation: none; }
}

/* ── responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .tb-grid, .tb-grid--home, .tb-shop-grid { grid-template-columns: repeat(3, 1fr); }
  .tb-grid .tb-card:nth-child(4n+2), .tb-grid .tb-card:nth-child(4n+3), .tb-grid .tb-card:nth-child(4n+4) { transform: none; }
  .tb-grid .tb-card:nth-child(3n+2) { transform: translateY(30px); }
  .tb-needs, .tb-timeline, .tb-stats, .tb-trust__row { grid-template-columns: repeat(2, 1fr); }
  .tb-foot__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .tb-nav { display: none; }
  .tb-burger { display: inline-flex; }
  .tb-head__util { display: none; }
  .tb-sechead { grid-template-columns: 1fr; }
  .tb-sechead__link { justify-self: start; }
  .tb-manif, .tb-orig, .tb-pdp__top, .tb-cartpage__grid, .tb-contact { grid-template-columns: 1fr; }
  .tb-pdp__gallery, .tb-summary { position: static; }
  .tb-look, .tb-testis, .tb-values { grid-template-columns: 1fr; }
  .tb-look__item:nth-child(2) { transform: none; }
  .tb-pdp__sections { grid-template-columns: 1fr; gap: 0; }
  .tb-manif__img { min-height: 260px; }
  .tb-hero { min-height: 74vh; }
}
@media (max-width: 620px) {
  .tb-wrap { padding: 0 18px; }
  .tb-grid, .tb-grid--home, .tb-shop-grid, .tb-needs, .tb-timeline, .tb-stats, .tb-trust__row { grid-template-columns: 1fr 1fr; }
  .tb-grid .tb-card:nth-child(n) { transform: none; }
  .tb-foot__grid { grid-template-columns: 1fr; }
  .tb-foot__side { border-right: none; border-bottom: 1px solid rgba(236,227,208,.14); }
  .tb-foot__cols { grid-template-columns: 1fr 1fr; }
  .tb-news, .tb-quiz, .tb-manif__body { padding: 28px 20px; }
  .tb-sticky { display: flex; }
  .tb-hero__meta { gap: 20px; }
  .tb-trust__row > div { border-left: none; border-top: 1px solid rgba(236,227,208,.14); }
}
@media (max-width: 400px) {
  .tb-grid, .tb-grid--home, .tb-shop-grid, .tb-needs, .tb-stats { grid-template-columns: 1fr; }
  .tb-foot__cols { grid-template-columns: 1fr; }
}
