/* ═══════════════════════════════════════════════════════════════
   404 WHEELS — Hybride : chrome sombre cinématique + boutique claire arrondie
   Type : Big Shoulders Display (display) · Archivo (texte) · IBM Plex Mono (technique)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Corps clair (boutique) */
  --paper:      #F5F4F1;
  --paper-2:    #EDECE8;
  --card:       #FFFFFF;
  --ink:        #17171B;
  --ink-soft:   #4E4E56;
  --muted:      #86868F;
  --line:       rgba(20, 20, 28, .10);
  --line-2:     rgba(20, 20, 28, .17);

  /* Or */
  --gold:       #C9A961;
  --gold-deep:  #9A7A34;
  --gold-soft:  rgba(201, 169, 97, .16);

  /* Chrome sombre (header, hero, CTA, footer) */
  --dark:       #0D0D11;
  --dark-2:     #16161C;
  --dark-3:     #1D1D25;
  --dark-ink:   #F3F2EE;
  --dark-muted: #9C9BA4;
  --dark-line:  rgba(243, 242, 238, .13);
  --dark-line-2:rgba(243, 242, 238, .26);

  --shadow-sm:  0 6px 18px -10px rgba(20, 20, 34, .30);
  --shadow:     0 18px 40px -22px rgba(20, 20, 34, .32);
  --shadow-lg:  0 34px 66px -28px rgba(20, 20, 34, .40);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body:    "Archivo", "Helvetica Neue", sans-serif;
  --font-mono:    "IBM Plex Mono", "Consolas", monospace;

  --wrap: 1480px;
  --pad: clamp(20px, 4vw, 56px);
  --head-h: 76px;

  --ease-out: cubic-bezier(.22, .8, .26, .99);
  --ease-lux: cubic-bezier(.65, 0, .25, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: #0A0A0C; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 3000;
  padding: 10px 18px; background: var(--gold); color: #0A0A0C;
  font-family: var(--font-mono); font-size: 13px; border-radius: var(--r-pill);
  transition: top .2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* ── Typo utilitaires ──────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep);
}
.mono { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }

/* ── Boutons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: all .3s var(--ease-out);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #17120A; border-color: var(--gold); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: #d8bd7f; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-line { border-color: var(--line-2); color: var(--ink); }
.btn-line:hover { border-color: var(--gold-deep); color: var(--gold-deep); background: var(--gold-soft); transform: translateY(-2px); }
/* Sur fonds sombres (hero, bande CTA), la version outline doit être claire */
.hero .btn-line, .cta-band .btn-line { border-color: var(--dark-line-2); color: var(--dark-ink); }
.hero .btn-line:hover, .cta-band .btn-line:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,97,.10); }
.btn-dark { background: var(--dark); color: var(--dark-ink); }
.btn-dark:hover { background: var(--gold); color: #17120A; transform: translateY(-2px); }
.btn-s { padding: 10px 18px; font-size: 12px; }
.btn-full { width: 100%; }

/* ═══ HEADER (sombre) ══════════════════════════════════ */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s;
}
.site-head.scrolled {
  background: rgba(13, 13, 17, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--dark-line);
}
/* Pages à fond clair (hors accueil) : header sombre dès le chargement, sinon blanc-sur-blanc */
body:not([data-page="home"]) .site-head {
  background: rgba(13, 13, 17, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--dark-line);
}
.head-in { height: var(--head-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--dark-line-2);
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.16), transparent 55%),
    linear-gradient(150deg, #22222A, #0C0C0F);
  box-shadow: inset 0 0 0 4px rgba(243,242,238,.05);
  flex: none;
}
.brand-badge span {
  font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: .04em;
  background: linear-gradient(165deg, #EDEDEF 5%, #98999F 40%, #F6F6F8 55%, #7E7F86 75%, #D9D9DD 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-word {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: .16em; text-transform: uppercase;
  display: flex; flex-direction: column; line-height: 1.05; color: var(--dark-ink);
}
.brand-word em {
  font-family: var(--font-mono); font-style: normal; font-weight: 400;
  font-size: 9px; letter-spacing: .3em; color: var(--dark-muted);
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav a {
  font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dark-muted); padding: 6px 0; position: relative;
  transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-lux);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--dark-ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav .nav-cta { display: none; }

.head-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative; width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--dark-line-2); border-radius: 50%;
  color: var(--dark-ink);
  transition: border-color .3s, color .3s, transform .3s;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px;
  background: var(--gold); color: #17120A;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  display: grid; place-items: center;
}
.head-devis { border-color: var(--dark-line-2); color: var(--dark-ink); }
.head-devis:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.burger { display: none; }

/* ═══ HERO (sombre) ════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
  background: radial-gradient(118% 92% at 71% 42%, #1c1c25 0%, #111117 46%, #0a0a0e 100%);
}
.hero .eyebrow { color: var(--gold); }

/* Fond : halo doux + grain */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(52% 52% at 70% 44%, rgba(201,169,97,.12), transparent 62%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-in {
  position: relative; z-index: 1; width: 100%; flex: 1;
  padding-block: clamp(96px, 13vh, 150px) clamp(48px, 6vh, 84px);
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(24px, 4vw, 56px); align-items: center;
}
.hero-copy { display: flex; flex-direction: column; }
.hero-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; line-height: .84; display: flex; flex-direction: column; }
.hero-title .t1 {
  font-size: clamp(84px, 11vw, 176px);
  background: linear-gradient(168deg, #F1F1F3 0%, #9C9DA3 34%, #FAFAFC 50%, #74757C 72%, #D6D6DA 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .55));
}
.hero-title .t2 {
  font-size: clamp(44px, 6vw, 86px); font-weight: 700; letter-spacing: .085em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(243, 242, 238, .62); margin-left: 6px;
}
.hero-claim { font-size: clamp(19px, 2vw, 26px); font-weight: 600; line-height: 1.3; max-width: 22ch; margin-top: 22px; color: var(--dark-ink); }
.hero-claim strong { color: var(--gold); font-weight: 600; }
.hero-lead { color: var(--dark-muted); font-size: 15px; max-width: 44ch; margin-top: 20px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-stats { display: flex; gap: clamp(18px, 2.5vw, 40px); font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--dark-muted); text-transform: uppercase; margin-top: 30px; }
.hero-stats b { color: var(--dark-ink); font-weight: 500; display: block; font-size: 19px; letter-spacing: .04em; }

/* Scène jante réelle : spot tournant + flottement + fondu entre finitions */
.hero-stage { position: relative; justify-self: center; width: min(42vw, 560px); aspect-ratio: 620 / 458; display: grid; place-items: center; }
.stage-glow, .stage-ring { position: absolute; top: 50%; left: 50%; aspect-ratio: 1; border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.stage-glow {
  width: 94%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(201,169,97,.26) 55deg, transparent 135deg, rgba(255,255,255,.12) 205deg, transparent 285deg, rgba(201,169,97,.18) 335deg, transparent 360deg);
  filter: blur(36px); opacity: .9;
  animation: stageSpin 15s linear infinite;
}
.stage-ring { width: 80%; background: radial-gradient(circle, rgba(201,169,97,.16) 0%, rgba(201,169,97,.05) 46%, transparent 66%); }
.hero-wheel {
  position: absolute; z-index: 2; width: 100%; height: 100%;
  object-fit: contain; max-width: none;
  opacity: 0;
  filter: drop-shadow(0 38px 55px rgba(0,0,0,.62)) drop-shadow(0 0 26px rgba(201,169,97,.12));
  animation: heroFloat 6s ease-in-out infinite, wheelSwap 21s infinite;
}
.hero-wheel:nth-of-type(1) { animation-delay: 0s, 0s; }
.hero-wheel:nth-of-type(2) { animation-delay: -3s, 7s; }
.hero-wheel:nth-of-type(3) { animation-delay: -1.5s, 14s; }
@keyframes stageSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes wheelSwap { 0% { opacity: 0; } 4% { opacity: 1; } 29% { opacity: 1; } 34% { opacity: 0; } 100% { opacity: 0; } }

.marquee { position: relative; z-index: 1; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); background: rgba(13, 13, 17, .55); backdrop-filter: blur(6px); overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--dark-muted); white-space: nowrap; }
.marquee span i { color: var(--gold); font-style: normal; margin-inline: 28px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══ SECTIONS (claires) ═══════════════════════════════ */
.sec { padding-block: clamp(72px, 10vw, 130px); position: relative; }
.sec-tight { padding-block: clamp(48px, 6vw, 88px); }

/* La 1re section remonte sur le hero avec un coin arrondi (effet feuille) */
.hero + .sec {
  background: var(--paper);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: -34px; padding-top: clamp(64px, 8vw, 104px);
  position: relative; z-index: 2;
}

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  border-top: 1px solid var(--line); padding-top: 24px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.sec-head h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(38px, 4.6vw, 72px); line-height: .92; color: var(--ink); }
.sec-head h2 small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 12px; letter-spacing: .24em; color: var(--gold-deep); margin-bottom: 14px; }
.sec-head .sec-side { text-align: right; font-family: var(--font-mono); font-size: 13px; color: var(--muted); line-height: 1.7; padding-bottom: 8px; max-width: 34ch; }
.sec-side a { color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.sec-side a:hover { color: var(--gold-deep); }

/* ═══ CARTES PRODUIT (blanches, arrondies) ═════════════ */
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }

.p-card {
  background: var(--card); color: var(--ink);
  display: flex; flex-direction: column; position: relative;
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.p-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.p-top .p-ref { color: var(--ink); font-weight: 500; }
.p-top .p-serie { color: var(--muted); }

.p-media { position: relative; margin: 12px 12px 0; border-radius: var(--r-sm); background: var(--paper-2); aspect-ratio: 1080 / 1026; overflow: hidden; }
.p-media img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; transition: transform .7s var(--ease-out); }
.p-card:hover .p-media img { transform: scale(1.05); }

.p-info { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 3px; margin-top: auto; }
.p-info h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: .05em; text-transform: uppercase; }
.p-info .p-style { color: var(--muted); font-size: 13.5px; }
.p-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 13px; color: var(--ink); }
.p-price-row .arrow { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); transition: transform .3s var(--ease-out), background .3s; }
.p-card:hover .arrow { transform: translateX(4px); background: var(--gold); color: #17120A; }

/* Featured */
.feat-grid .p-card { grid-column: span 3; }
.feat-grid .p-card.is-hero { grid-column: span 6; grid-row: span 2; }
.feat-grid .p-card.is-hero .p-info h3 { font-size: 34px; }
.feat-grid .p-card.is-hero .p-media { aspect-ratio: auto; flex: 1; min-height: 380px; }
.feat-grid .p-card.is-hero .p-media img { inset: 0; width: 100%; height: 100%; object-position: center; }

/* ═══ SÉRIES (cartes claires) ══════════════════════════ */
.series-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.serie-tile {
  background: var(--card); border-radius: var(--r); box-shadow: var(--shadow-sm);
  padding: clamp(26px, 3vw, 40px); min-height: 320px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.serie-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.serie-tile .s-letter { font-family: var(--font-display); font-weight: 800; font-size: clamp(84px, 8vw, 124px); line-height: .8; color: transparent; -webkit-text-stroke: 1.4px var(--line-2); transition: all .45s var(--ease-out); }
.serie-tile:hover .s-letter { -webkit-text-stroke-color: var(--gold); transform: translateY(-4px); }
.serie-tile h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: .06em; margin-top: 26px; }
.serie-tile .s-sub { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.serie-tile p { color: var(--muted); font-size: 14px; max-width: 34ch; }
.serie-tile .s-count { margin-top: auto; padding-top: 22px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.serie-tile .s-count b { color: var(--ink); font-weight: 500; }

/* ═══ ATELIER (clair) ══════════════════════════════════ */
.atelier-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 100px); align-items: start; }
.atelier-sticky { position: sticky; top: calc(var(--head-h) + 32px); }
.atelier-sticky .eyebrow { display: block; margin-bottom: 18px; }
.atelier-sticky h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 4.6vw, 72px); line-height: .92; text-transform: uppercase; }
.atelier-sticky h2 em { font-style: normal; color: var(--gold-deep); }
.atelier-sticky > p { color: var(--muted); margin-top: 24px; max-width: 46ch; }
.mat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.mat-chips span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 9px 16px; border-radius: var(--r-pill); color: var(--ink-soft); }
.mat-chips span b { color: var(--gold-deep); font-weight: 500; }

.steps { display: flex; flex-direction: column; gap: 14px; }
.step { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 24px 26px; display: grid; grid-template-columns: 64px 1fr; gap: 16px; transition: transform .35s var(--ease-out), box-shadow .35s; }
.step:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.step .st-idx { font-family: var(--font-mono); font-size: 13px; color: var(--gold-deep); padding-top: 6px; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; max-width: 56ch; }

/* ═══ RÉALISATIONS (strip arrondie) ════════════════════ */
.strip-wrap { position: relative; }
.strip { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 18px; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.strip::-webkit-scrollbar { height: 4px; }
.strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }
.strip::-webkit-scrollbar-track { background: var(--line); }
.shot { flex: 0 0 clamp(270px, 30vw, 430px); scroll-snap-align: start; }
.shot figure { aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-2); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .8s; filter: saturate(.95); }
.shot:hover img { transform: scale(1.05); filter: saturate(1.05); }
.shot figcaption { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 14px 4px 0; }
.shot figcaption b { color: var(--ink); font-weight: 500; }

/* ═══ CLIENTS (clair) ══════════════════════════════════ */
.proof-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 5vw, 84px); align-items: center; }
.proof-photo { aspect-ratio: 4 / 5; overflow: hidden; position: relative; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.proof-photo img { width: 100%; height: 100%; object-fit: cover; }
.proof-photo .ph-tag { position: absolute; left: 16px; bottom: 16px; background: rgba(13, 13, 17, .82); backdrop-filter: blur(8px); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--dark-ink); padding: 9px 15px; border-radius: var(--r-pill); }
.proof-quote .eyebrow { display: block; margin-bottom: 26px; }
.proof-quote blockquote { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 3.6vw, 52px); line-height: 1.05; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); }
.proof-quote blockquote em { font-style: normal; color: var(--gold-deep); }
.proof-quote figcaption { margin-top: 26px; font-family: var(--font-mono); font-size: 13px; color: var(--muted); line-height: 1.9; }
.proof-quote figcaption b { color: var(--ink); font-weight: 500; }
.partner-line { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); max-width: 52ch; }
.partner-line strong { color: var(--ink); font-weight: 500; }

/* ═══ TARIFS (cartes blanches) ═════════════════════════ */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.price-card { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(26px, 3vw, 44px); position: relative; overflow: hidden; }
.price-card.is-two { box-shadow: var(--shadow-lg); outline: 1.5px solid var(--gold-soft); }
.price-card.is-two::before { content: "SIGNATURE"; position: absolute; top: 20px; right: 20px; background: var(--gold); color: #17120A; font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; padding: 6px 14px; border-radius: var(--r-pill); }
.price-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 32px; text-transform: uppercase; letter-spacing: .04em; }
.price-card .pc-sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 6px 0 26px; }
.price-rows { border-top: 1px solid var(--line); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 12px; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 14px; border-radius: var(--r-sm); transition: background .25s; }
.price-row:hover { background: var(--gold-soft); }
.price-row .d { color: var(--muted); }
.price-row .v { color: var(--ink); font-weight: 500; }
.price-note { margin-top: 26px; font-size: 13px; color: var(--muted); max-width: 72ch; }
.price-note b { color: var(--gold-deep); font-weight: 600; }

/* ═══ CTA BAND (bloc sombre arrondi) ═══════════════════ */
.cta-band { position: relative; }
.cta-band > .wrap {
  background: var(--dark); color: var(--dark-ink);
  border-radius: var(--r-xl); overflow: hidden;
  text-align: center; padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 80px);
  position: relative; box-shadow: var(--shadow-lg);
}
.cta-band { padding-block: clamp(40px, 6vw, 80px); }
.cta-band > .wrap::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(201, 169, 97, .22), transparent 70%); pointer-events: none; }
.cta-band .eyebrow { display: block; margin-bottom: 22px; color: var(--gold); }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(38px, 4.8vw, 74px); line-height: .92; position: relative; }
.cta-band h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.3px var(--gold); }
.cta-band p { color: var(--dark-muted); margin: 24px auto 38px; max-width: 52ch; position: relative; }
.cta-band .hero-ctas { justify-content: center; position: relative; }

/* ═══ FOOTER (sombre, coins hauts arrondis) ════════════ */
.site-foot { background: #08080A; color: var(--dark-ink); border-radius: var(--r-xl) var(--r-xl) 0 0; padding-top: clamp(48px, 6vw, 80px); margin-top: 10px; }
.site-foot .brand-word { color: var(--dark-ink); }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, .8fr); gap: clamp(32px, 5vw, 80px); padding-bottom: 56px; }
.foot-brand p { color: var(--dark-muted); font-size: 14px; margin-top: 20px; max-width: 46ch; }
.foot-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--dark-muted); text-transform: uppercase; }
.foot-brand .foot-mono { display: block; margin-top: 16px; color: var(--gold); }
.foot-col h3 { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot-col a, .foot-col p { display: block; color: var(--dark-muted); font-size: 14.5px; padding: 5px 0; }
.foot-col a:hover { color: var(--dark-ink); }
.foot-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--dark-line); padding-block: 22px; font-size: 12.5px; color: var(--dark-muted); }

/* ═══ PANIER (clair) ═══════════════════════════════════ */
.cart-layer { position: fixed; inset: 0; z-index: 1500; }
.cart-layer[hidden], .demo-modal[hidden], .cart-count[hidden] { display: none; }
.cart-veil { position: absolute; inset: 0; background: rgba(20, 20, 28, .40); backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s; }
.cart-layer.open .cart-veil { opacity: 1; }
.cart-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 100vw); background: var(--paper); border-radius: var(--r-lg) 0 0 var(--r-lg); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .45s var(--ease-lux); box-shadow: -30px 0 60px -30px rgba(20,20,30,.4); }
.cart-layer.open .cart-panel { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.cart-head h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; display: flex; align-items: baseline; gap: 12px; }
.cart-close { width: 34px; height: 34px; border-radius: 50%; background: var(--card); box-shadow: var(--shadow-sm); font-size: 16px; color: var(--muted); transition: color .2s, transform .3s; }
.cart-close:hover { color: var(--ink); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; font-size: 14.5px; }
.cart-empty .btn { margin-top: 22px; }
.ci { display: grid; grid-template-columns: 78px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ci-img { width: 78px; height: 78px; background: var(--card); border-radius: var(--r-sm); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.ci-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.ci-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.ci-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.ci-qty { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; background: var(--card); border-radius: var(--r-pill); padding: 3px; box-shadow: var(--shadow-sm); }
.ci-qty button { width: 26px; height: 26px; border-radius: 50%; font-family: var(--font-mono); font-size: 14px; display: grid; place-items: center; transition: background .2s, color .2s; }
.ci-qty button:hover { background: var(--gold-soft); color: var(--gold-deep); }
.ci-qty b { font-family: var(--font-mono); font-size: 13px; font-weight: 500; min-width: 16px; text-align: center; }
.ci-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.ci-price { font-family: var(--font-mono); font-size: 13.5px; font-weight: 500; }
.ci-rm { color: var(--muted); font-size: 12px; font-family: var(--font-mono); border-bottom: 1px solid transparent; }
.ci-rm:hover { color: #C4574E; border-bottom-color: #C4574E; }
.cart-foot { border-top: 1px solid var(--line); padding: 22px 26px; display: grid; gap: 12px; background: var(--card); border-radius: var(--r-lg) 0 0 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--muted); }
.cart-total-row strong { font-family: var(--font-mono); font-size: 20px; color: var(--ink); font-weight: 600; }
.cart-note { font-size: 12px; color: var(--muted); }

/* ═══ MODAL DÉMO (clair) ═══════════════════════════════ */
.demo-modal { position: fixed; inset: 0; z-index: 1600; display: grid; place-items: center; }
.demo-veil { position: absolute; inset: 0; background: rgba(20, 20, 28, .45); backdrop-filter: blur(5px); }
.demo-box { position: relative; background: var(--card); border-radius: var(--r-lg); max-width: 430px; margin: 20px; padding: 44px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; box-shadow: var(--shadow-lg); animation: pop .4s var(--ease-out); }
@keyframes pop { from { transform: translateY(14px); opacity: 0; } }
.demo-box h3 { font-family: var(--font-display); font-size: 30px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.demo-box p { color: var(--muted); font-size: 14.5px; }

/* ═══ PAGE HEAD (boutique / contact) ═══════════════════ */
.page-head { padding-top: calc(var(--head-h) + clamp(44px, 6vw, 84px)); }
.page-head .eyebrow { display: block; margin-bottom: 14px; }
.page-head h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 4.6vw, 72px); line-height: .92; text-transform: uppercase; }
.page-head .ph-sub { color: var(--muted); margin-top: 18px; max-width: 56ch; }

/* ═══ BOUTIQUE ═════════════════════════════════════════ */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px 26px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: 16px 20px;
  margin-block: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  position: sticky; top: calc(var(--head-h) + 12px); z-index: 500;
}
.shop-filters { display: flex; flex-direction: column; gap: 9px; flex: 1 1 auto; min-width: 0; }
.f-group { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.f-label { flex: none; width: 68px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.f-btn {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--line-2); border-radius: var(--r-pill);
  color: var(--ink-soft); background: transparent;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.f-btn:hover { border-color: var(--gold-deep); color: var(--gold-deep); background: var(--gold-soft); transform: translateY(-1px); }
.f-btn.on { background: var(--ink); border-color: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.f-btn .f-k { color: var(--gold); font-weight: 600; margin-right: 3px; }
.shop-count { flex: none; align-self: center; font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: .05em; white-space: nowrap; padding-left: 24px; border-left: 1px solid var(--line); }
.shop-count #shopCountN { color: var(--ink); font-weight: 500; }

.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.shop-grid .p-card.hide { display: none; }
.shop-empty { text-align: center; color: var(--muted); padding: 80px 20px; font-family: var(--font-mono); font-size: 14px; display: none; }
.shop-empty.show { display: block; }

/* ═══ FICHE PRODUIT ════════════════════════════════════ */
.prod-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 4vw, 64px); padding-top: calc(var(--head-h) + clamp(28px, 4vw, 52px)); align-items: start; }
.prod-media { position: sticky; top: calc(var(--head-h) + 24px); background: var(--card); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.prod-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: var(--paper-2); }
.prod-media .pm-badge { position: absolute; top: 18px; left: 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; background: var(--ink); color: var(--paper); padding: 8px 14px; border-radius: var(--r-pill); }
.prod-media .pm-badge.two { background: var(--gold); color: #17120A; }

.breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .sep { color: var(--gold); }

.prod-info .p-ref-line { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .16em; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 10px; }
.prod-info h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 4.6vw, 72px); line-height: .92; text-transform: uppercase; }
.prod-info .prod-finish { font-size: 16px; color: var(--muted); margin-top: 12px; }
.prod-info .prod-finish b { color: var(--ink); font-weight: 600; }
.prod-desc { color: var(--ink-soft); margin-top: 20px; max-width: 54ch; }

.opt-block { margin-top: 34px; }
.opt-label { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.opt-label span { color: var(--muted); letter-spacing: .06em; }
.sizes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.size-btn { border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 13px 6px 11px; text-align: center; transition: all .22s; display: grid; gap: 2px; background: var(--card); }
.size-btn b { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: .04em; }
.size-btn span { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); }
.size-btn:hover { border-color: var(--gold-deep); box-shadow: var(--shadow-sm); }
.size-btn.on { border-color: var(--gold); background: var(--gold-soft); }
.size-btn.on b { color: var(--gold-deep); }

.buy-row { display: flex; align-items: stretch; gap: 12px; margin-top: 30px; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-pill); background: var(--card); overflow: hidden; }
.qty-box button { width: 46px; align-self: stretch; font-family: var(--font-mono); font-size: 16px; color: var(--muted); transition: color .2s, background .2s; }
.qty-box button:hover { color: var(--gold-deep); background: var(--gold-soft); }
.qty-box b { font-family: var(--font-mono); font-size: 15px; font-weight: 500; min-width: 34px; text-align: center; }
.buy-row .btn-gold { flex: 1; }

.prod-price-line { display: flex; justify-content: space-between; align-items: baseline; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.prod-price-line .lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.prod-price-line strong { font-family: var(--font-mono); font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); color: var(--ink); }
.prod-price-line small { color: var(--muted); font-size: 12px; display: block; text-align: right; margin-top: 4px; }

.trust-rows { margin-top: 30px; background: var(--card); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 6px 20px; }
.trust-rows li { display: flex; gap: 14px; align-items: baseline; border-top: 1px solid var(--line); padding: 13px 2px; font-size: 13.5px; color: var(--ink-soft); }
.trust-rows li:first-child { border-top: 0; }
.trust-rows li::before { content: "✓"; color: var(--gold-deep); font-family: var(--font-mono); }

.specs { margin-top: 46px; }
.specs h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 18px; }
.spec-row { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 12px 14px; border-radius: var(--r-sm); font-size: 14px; }
.spec-row:nth-child(even) { background: var(--card); }
.spec-row .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }

.related { padding-block: clamp(64px, 8vw, 110px); }

/* ═══ CONTACT ══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px, 5vw, 84px); align-items: start; padding-block: clamp(36px, 5vw, 68px) clamp(72px, 9vw, 124px); }
.contact-info > p { color: var(--ink-soft); max-width: 44ch; margin-top: 18px; }
.contact-rows { margin-top: 36px; background: var(--card); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 8px 22px; }
.contact-rows .cr { border-top: 1px solid var(--line); padding: 16px 2px; display: grid; grid-template-columns: 130px 1fr; gap: 12px; font-size: 14.5px; }
.contact-rows .cr:first-child { border-top: 0; }
.contact-rows .k { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.contact-rows a { border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.contact-rows a:hover { color: var(--gold-deep); }

.form-panel { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(26px, 3.4vw, 46px); }
.form-panel h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.form-panel .fp-sub { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field label b { color: var(--gold-deep); font-weight: 400; }
.field input, .field select, .field textarea { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 13px 15px; color: var(--ink); font-size: 15px; transition: border-color .25s, background .25s, box-shadow .25s; width: 100%; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--card); box-shadow: 0 0 0 4px var(--gold-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%239A7A34' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form-ok { display: none; text-align: center; padding: 60px 20px; }
.form-ok.show { display: block; }
.form-ok .ok-badge { width: 62px; height: 62px; border-radius: 50%; background: var(--gold-soft); border: 1.5px solid var(--gold); display: grid; place-items: center; margin: 0 auto 22px; color: var(--gold-deep); font-size: 24px; }
.form-ok h3 { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; letter-spacing: .05em; }
.form-ok p { color: var(--muted); margin-top: 10px; font-size: 14.5px; }

/* ═══ REVEAL ═══════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.rv.on { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ═══════════════════════════════════════ */
@media (max-width: 1280px) {
  .feat-grid .p-card { grid-column: span 4; }
  .feat-grid .p-card.is-hero { grid-column: span 8; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1020px) {
  .nav { position: fixed; inset: 0; background: rgba(10, 10, 13, .98); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); flex-direction: column; justify-content: center; align-items: flex-start; gap: 10px; padding: 100px var(--pad) 60px; transform: translateX(102%); transition: transform .5s var(--ease-lux); z-index: 900; visibility: hidden; }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav a { font-family: var(--font-display); font-size: clamp(34px, 8vw, 54px); font-weight: 700; letter-spacing: .06em; color: var(--dark-ink); padding: 4px 0; }
  .nav a::after { height: 2px; }
  .nav .nav-cta { display: block; margin-top: 24px; color: var(--gold); }
  .head-devis { display: none; }
  .burger { display: grid; gap: 6px; width: 44px; height: 44px; place-content: center; border: 1px solid var(--dark-line-2); border-radius: 50%; }
  .burger span { display: block; width: 18px; height: 1.5px; background: var(--dark-ink); transition: transform .35s var(--ease-out), opacity .3s; }
  .burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

  .hero-in { grid-template-columns: 1fr; align-items: start; padding-top: calc(var(--head-h) + 28px); }
  .hero-stage { width: min(76vw, 360px); margin: 10px auto 0; }
  .atelier-grid, .proof-grid, .contact-grid { grid-template-columns: 1fr; }
  .atelier-sticky { position: static; }
  .series-grid { grid-template-columns: 1fr 1fr; }
  .serie-tile { min-height: 260px; }
  .prod-layout { grid-template-columns: 1fr; }
  .prod-media { position: static; }
  .proof-photo { max-width: 520px; }
}
@media (max-width: 720px) {
  .grid-12, .shop-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feat-grid .p-card, .feat-grid .p-card.is-hero { grid-column: span 2; grid-row: auto; }
  .feat-grid .p-card.is-hero .p-media { aspect-ratio: 1 / 1; min-height: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { flex-wrap: wrap; gap: 16px 28px; }
  .buy-row { flex-direction: column; }
  .qty-box { justify-content: space-between; }
  .p-info h3 { font-size: 20px; }
  .shot { flex-basis: 76vw; }
  .shop-toolbar { padding: 16px; }
  .shop-count { align-self: flex-start; padding-left: 0; border-left: 0; padding-top: 4px; }
  .f-label { width: 100%; }
}

/* ═══ MOTION SAFE ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rv { opacity: 1; transform: none; }
  .kb-img { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
}
body.no-scroll { overflow: hidden; }
