/* ==========================================================================
   Butty Moto EVO — Clean Riding Technology
   Palette reprise du site d'origine : noir #020202 / #141414,
   blanc cassé chaud #EEE6E6, gris chaud #A29C9C (+ rouge signal, très rare)
   ========================================================================== */

:root {
  --ink: #020202;
  --ink-2: #141414;
  --ink-3: #1d1c1c;
  --paper: #eee6e6;
  --paper-2: #e2d9d9;
  --stone: #a29c9c;
  --stone-d: #6e6868;
  --white: #ffffff;
  --signal: #ea1818;

  --line-d: rgba(238, 230, 230, .14);
  --line-l: rgba(2, 2, 2, .14);

  --f-display: "Barlow Condensed", "DIN Condensed", "Arial Narrow", sans-serif;
  --f-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "Roboto Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --maxw: 1480px;
  --hd-h: 72px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-io: cubic-bezier(.7, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--hd-h) + 12px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--paper); color: var(--ink); }
:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }
.sec--paper :focus-visible { outline-color: var(--ink); }

.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--paper); color: var(--ink); padding: 10px 14px; font-family: var(--f-mono); font-size: 13px; }
.skip-link:focus { top: 12px; }

/* grain analogique très léger */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typographie ---------- */
.display, .h-xxl, .h-xl, .h-l, .h-m {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin: 0;
}
.h-xxl { font-size: clamp(3.3rem, 10.6vw, 11.4rem); line-height: .84; }
.h-xl  { font-size: clamp(2.7rem, 7.4vw, 7.6rem); line-height: .88; }
.h-l   { font-size: clamp(2.1rem, 4.6vw, 4.6rem); line-height: .92; }
.h-m   { font-size: clamp(1.55rem, 2.5vw, 2.35rem); line-height: 1; }
.muted { color: var(--stone); }
.sec--paper .muted { color: var(--stone-d); }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--paper); }
.sec--paper .outline { -webkit-text-stroke-color: var(--ink); }

.label {
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}
.sec--paper .label { color: var(--stone-d); }
.label b { color: var(--paper); font-weight: 500; }
.sec--paper .label b { color: var(--ink); }
.lead { font-size: clamp(1.1rem, 1.55vw, 1.38rem); line-height: 1.5; font-weight: 400; max-width: 46ch; }
.prose p { margin: 0 0 1em; max-width: 64ch; }
.prose p:last-child { margin-bottom: 0; }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- layout ---------- */
.wrap { position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.sec { position: relative; padding: clamp(80px, 11vw, 170px) 0; }
.sec--tight { padding: clamp(56px, 7vw, 100px) 0; }
.sec--ink { background: var(--ink); color: var(--paper); }
.sec--ink2 { background: var(--ink-2); color: var(--paper); }
.sec--paper { background: var(--paper); color: var(--ink); }
.sec__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.sec__num { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.sec__num::after { content: ""; flex: 0 0 56px; height: 1px; background: currentColor; opacity: .5; }
.rule { height: 1px; background: var(--line-d); border: 0; margin: 0; }
.sec--paper .rule { background: var(--line-l); }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 2vw, 32px); }

/* ---------- boutons ---------- */
.btn {
  --bc: currentColor;
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 15px 22px 14px;
  border: 1px solid var(--bc);
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--paper);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); }
.btn:hover, .btn:focus-visible { color: var(--ink); }
.btn .arr { width: 18px; height: 10px; flex: none; transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--solid { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--solid::before { background: var(--ink); }
.btn--solid:hover, .btn--solid:focus-visible { color: var(--paper); }
.sec--paper .btn::before { background: var(--ink); }
.sec--paper .btn:hover, .sec--paper .btn:focus-visible { color: var(--paper); }
.sec--paper .btn--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sec--paper .btn--solid::before { background: var(--paper); }
.sec--paper .btn--solid:hover { color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-u { background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; padding-bottom: 2px; transition: background-size .4s var(--ease); }
.link-u:hover { background-size: 0 1px; background-position: 100% 100%; }

/* ---------- header ---------- */
.hd {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--hd-h);
  display: flex; align-items: center; gap: 28px;
  padding: 0 var(--gutter);
  transition: transform .5s var(--ease), background-color .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.hd.is-solid { background: rgba(2, 2, 2, .86); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom-color: var(--line-d); }
.hd.is-hidden { transform: translateY(-100%); }
.hd__logo { flex: none; display: block; }
.hd__logo img, .ft__logo img {
  height: 22px; width: auto;
  filter: url(#knock);
}
.hd__nav { display: flex; gap: clamp(14px, 1.7vw, 28px); margin-left: auto; }
.hd__nav a {
  font-family: var(--f-display); font-weight: 600; font-size: 17px; letter-spacing: .04em; text-transform: uppercase;
  position: relative; padding: 6px 0; color: var(--paper); opacity: .78; transition: opacity .25s;
}
.hd__nav a:hover, .hd__nav a[aria-current="page"] { opacity: 1; }
.hd__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.hd__nav a:hover::after, .hd__nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.hd__cta { flex: none; display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .05em; padding: 10px 14px; border: 1px solid var(--line-d); transition: border-color .3s, background .3s; }
.hd__cta:hover { border-color: var(--paper); }
.hd__cta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--paper); box-shadow: 0 0 0 0 rgba(238,230,230,.6); animation: ping 2.4s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(238,230,230,.55);} 70%,100% { box-shadow: 0 0 0 9px rgba(238,230,230,0);} }
.hd__burger { display: none; width: 44px; height: 44px; margin-left: auto; position: relative; }
.hd__burger span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--paper); transition: transform .45s var(--ease), top .45s var(--ease); }
.hd__burger span:nth-child(1) { top: 17px; }
.hd__burger span:nth-child(2) { top: 26px; }
.hd__burger[aria-expanded="true"] span:nth-child(1) { top: 21.5px; transform: rotate(45deg); }
.hd__burger[aria-expanded="true"] span:nth-child(2) { top: 21.5px; transform: rotate(-45deg); }

/* menu plein écran (mobile) */
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--ink);
  padding: calc(var(--hd-h) + 20px) var(--gutter) 32px;
  display: flex; flex-direction: column;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-io);
  visibility: hidden;
}
.menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.menu__links { display: flex; flex-direction: column; border-top: 1px solid var(--line-d); }
.menu__links a {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.1rem, 9.5vw, 3.4rem); line-height: 1; padding: 12px 0 10px;
  border-bottom: 1px solid var(--line-d);
  transform: translateY(24px); opacity: 0; transition: transform .6s var(--ease), opacity .6s;
}
.menu__links a span { font-family: var(--f-mono); font-size: 11px; font-weight: 400; color: var(--stone); letter-spacing: .08em; }
.menu.is-open .menu__links a { transform: none; opacity: 1; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .04s; } .menu.is-open .menu__links a:nth-child(3) { transition-delay: .08s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: .12s; } .menu.is-open .menu__links a:nth-child(5) { transition-delay: .16s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: .2s; } .menu.is-open .menu__links a:nth-child(7) { transition-delay: .24s; }
.menu.is-open .menu__links a:nth-child(8) { transition-delay: .28s; }
.menu__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 6px; font-family: var(--f-mono); font-size: 13px; color: var(--stone); }
.menu__foot a { color: var(--paper); }

/* ---------- intro « silence électrique » ---------- */
.intro {
  position: fixed; inset: 0; z-index: 100;
  pointer-events: auto;
  --split: 58%;
}
.intro__half { position: absolute; left: 0; right: 0; background: var(--ink); transition: transform 1s var(--ease-io); }
.intro__half--top { top: 0; height: var(--split); }
.intro__half--bot { top: var(--split); bottom: 0; }
.intro canvas { position: absolute; left: 0; width: 100%; top: calc(var(--split) - 160px); height: 320px; z-index: 2; }
.intro__braap {
  position: absolute; left: 0; right: 0; top: calc(var(--split) - .62em);
  z-index: 1; text-align: center; white-space: nowrap;
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(5rem, 24vw, 24rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(238,230,230,.35);
  transition: opacity .6s, filter .6s, letter-spacing 1s var(--ease);
}
.intro__meta { position: absolute; left: var(--gutter); right: var(--gutter); top: calc(var(--split) + 40px); z-index: 3; display: flex; justify-content: space-between; gap: 16px; }
.intro__mode b { display: inline-block; min-width: 11ch; }
.intro__brand { position: absolute; left: 50%; top: var(--split); z-index: 3; transform: translate(-50%, -100%); width: min(560px, 78vw); padding-bottom: 22px; opacity: 0; transition: opacity .6s, transform .9s var(--ease); }
.intro__brand img { width: 100%; height: auto; filter: url(#knock); }
.intro__tag { position: absolute; left: 50%; top: calc(var(--split) + 22px); transform: translateX(-50%); z-index: 3; font-family: var(--f-mono); font-size: clamp(11px, 1.3vw, 14px); letter-spacing: .06em; color: var(--paper); white-space: nowrap; opacity: 0; transition: opacity .5s; }
.intro__bar { position: absolute; left: 50%; top: calc(var(--split) - 1px); z-index: 3; height: 3px; width: min(560px, 78vw); transform: translateX(-50%); background: #5e5e5e; opacity: 0; transition: opacity .3s; }
.intro__bar::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 26%; background: var(--paper); transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease); }
.intro__skip { position: absolute; right: var(--gutter); top: 24px; z-index: 4; }
.intro.s-brand .intro__braap { opacity: 0; filter: blur(8px); letter-spacing: .3em; }
.intro.s-brand .intro__brand { opacity: 1; }
.intro.s-brand .intro__tag { opacity: 1; }
.intro.s-brand .intro__bar { opacity: 1; }
.intro.s-brand .intro__bar::after { transform: scaleX(1); }
.intro.s-brand canvas { opacity: 0; transition: opacity .4s .1s; }
.intro.s-open .intro__half--top { transform: translateY(-100%); }
.intro.s-open .intro__half--bot { transform: translateY(100%); }
.intro.s-open .intro__brand, .intro.s-open .intro__tag, .intro.s-open .intro__bar, .intro.s-open .intro__meta, .intro.s-open .intro__skip { opacity: 0; transition: opacity .35s; }
.intro.s-open .intro__brand { transform: translate(-50%, -140%); }
.intro.s-gone { display: none; }

/* ---------- hero accueil ---------- */
.hero { position: relative; min-height: 100svh; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--ink); --split: 58%; }
@supports (height: 100svh) { .hero { min-height: 100svh; } }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 0% 60%; transform: scale(1.08); transition: transform 2.4s var(--ease); }
.hero.is-live .hero__media img { transform: scale(1); }
.hero__media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(2,2,2,.72) 0%, rgba(2,2,2,.08) 34%, rgba(2,2,2,.1) 52%, rgba(2,2,2,.82) 78%, #020202 100%),
  linear-gradient(90deg, rgba(2,2,2,.35), rgba(2,2,2,0) 55%); }
.hero__horizon { position: absolute; left: 0; right: 0; top: var(--split); height: 1px; background: rgba(238,230,230,.55); z-index: 3; transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease) .1s; }
.hero.is-live .hero__horizon { transform: scaleX(1); }
.hero__title { position: absolute; left: 0; right: 0; bottom: calc(100% - var(--split)); z-index: 3; padding-bottom: clamp(14px, 2vw, 26px); }
.hero__title .h-xxl { display: block; font-size: clamp(3.4rem, 8.4vw, 9.8rem); }
.hero__title .ln { display: block; overflow: hidden; padding-top: .04em; }
.hero__title .ln > span { display: block; transform: translateY(105%); transition: transform 1.1s var(--ease); }
.hero.is-live .hero__title .ln > span { transform: none; }
.hero.is-live .hero__title .ln:nth-child(2) > span { transition-delay: .12s; }
.hero.is-live .hero__title .ln:nth-child(3) > span { transition-delay: .24s; }
.hero__below { position: relative; z-index: 3; padding-bottom: clamp(28px, 4vw, 52px); }
.hero__grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 24px; align-items: start; }
.hero__lead { grid-column: 1 / span 5; opacity: 0; transform: translateY(16px); transition: opacity 1s .35s, transform 1s var(--ease) .35s; }
.hero__actions { grid-column: 7 / span 6; justify-self: end; opacity: 0; transform: translateY(16px); transition: opacity 1s .5s, transform 1s var(--ease) .5s; }
.hero.is-live .hero__lead, .hero.is-live .hero__actions { opacity: 1; transform: none; }
.hero__cluster { position: absolute; left: 0; right: 0; top: calc(var(--split) + 1px); z-index: 3; }
.hero__cluster .wrap { display: flex; justify-content: space-between; gap: 16px; padding-top: 10px; }
.hero__scroll { display: inline-flex; align-items: center; gap: 10px; }
.hero__scroll i { width: 1px; height: 26px; background: rgba(238,230,230,.5); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--paper); animation: drip 1.8s var(--ease) infinite; }
@keyframes drip { to { top: 100%; } }

/* ---------- hero pages internes ---------- */
.phero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; padding: calc(var(--hd-h) + 60px) 0 clamp(40px, 6vw, 80px); }
.phero--short { min-height: 64vh; }
.phero__media { position: absolute; inset: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,2,2,.6) 0%, rgba(2,2,2,.15) 40%, rgba(2,2,2,.9) 88%, #020202 100%); }
.phero__inner { width: 100%; }
.phero__top { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.phero .h-xxl .ln, .phero .h-xl .ln { display: block; overflow: hidden; padding-top: .04em; }
.phero .ln > span { display: block; transform: translateY(105%); animation: lnUp 1.1s var(--ease) forwards .15s; }
.phero .ln:nth-child(2) > span { animation-delay: .27s; }
.phero .ln:nth-child(3) > span { animation-delay: .39s; }
@keyframes lnUp { to { transform: none; } }
.phero__foot { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: end; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(238,230,230,.4); }

/* ---------- révélations au scroll ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; }
.rv-img > img { clip-path: inset(0 0 100% 0); transform: scale(1.12); transition: clip-path 1.3s var(--ease), transform 1.8s var(--ease); }
.rv-img.in > img { clip-path: inset(0 0 0 0); transform: none; }
.no-js .rv, .no-js .rv-img > img { opacity: 1; transform: none; clip-path: none; }

/* ---------- manifeste (mots qui s'allument) ---------- */
.manifest__quote { font-family: var(--f-body); font-weight: 500; font-size: clamp(1.7rem, 3.9vw, 3.85rem); line-height: 1.12; letter-spacing: -.012em; margin: 0; max-width: 24ch; }
.manifest__quote .w { color: rgba(2,2,2,.16); transition: color .25s linear; }
.manifest__quote .w.on { color: var(--ink); }
.manifest__by { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.manifest__by img { width: 54px; height: 54px; object-fit: cover; object-position: 50% 15%; border-radius: 50%; filter: grayscale(1); background: var(--paper-2); }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0; margin-top: clamp(64px, 8vw, 120px); border-top: 1px solid var(--line-l); }
.pillar { padding: 26px 28px 8px 0; border-right: 1px solid var(--line-l); }
.pillar + .pillar { padding-left: 28px; }
.pillar:last-child { border-right: 0; }
.pillar h3 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1.7rem; line-height: 1; margin: 14px 0 10px; }
.pillar p { margin: 0; color: #3a3636; max-width: 36ch; }

/* ---------- liste « trouve ta moto » ---------- */
.gate { position: relative; border-top: 1px solid var(--line-d); }
.gate__row {
  position: relative; display: grid; grid-template-columns: 64px minmax(0, 1.25fr) minmax(0, 1fr) 40px;
  gap: 24px; align-items: center; padding: clamp(22px, 3vw, 38px) 0; border-bottom: 1px solid var(--line-d);
  transition: padding .5s var(--ease);
}
.gate__row::before { content: ""; position: absolute; inset: 0; background: var(--paper); transform: scaleY(0); transform-origin: bottom; transition: transform .55s var(--ease); z-index: -1; }
.gate__row .n { font-family: var(--f-mono); font-size: 12px; color: var(--stone); }
.gate__row .age { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.6rem, 7.4vw, 7.4rem); line-height: .86; text-transform: uppercase; transition: transform .6s var(--ease); display: block; }
.gate__row .brand { font-family: var(--f-display); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: clamp(1.1rem, 1.6vw, 1.5rem); display: block; margin-bottom: 6px; }
.gate__row .desc { color: var(--stone); max-width: 38ch; display: block; }
.gate__row .go { width: 40px; height: 40px; border: 1px solid var(--line-d); display: grid; place-items: center; transition: transform .5s var(--ease), background .3s, border-color .3s; }
.gate__row .thumb { display: none; }
.gate__row:hover .age { transform: translateX(14px); }
.gate__row:hover .go { transform: rotate(-45deg); background: var(--paper); color: var(--ink); border-color: var(--paper); }
.gate__peek { position: fixed; left: 0; top: 0; width: 340px; aspect-ratio: 4 / 3; pointer-events: none; z-index: 40; opacity: 0; transform: translate(-50%, -50%) scale(.85); transition: opacity .35s, transform .5s var(--ease); overflow: hidden; }
.gate__peek.on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gate__peek img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s; }
.gate__peek img.on { opacity: 1; }

/* ---------- cartes produits ---------- */
.strip { position: relative; }
.strip__track { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(250px, 23vw, 330px); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gutter) 24px; scrollbar-width: none; cursor: grab; overscroll-behavior-x: contain; }
.strip__track::-webkit-scrollbar { display: none; }
.strip__track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.strip__track.is-drag * { pointer-events: none; }
.strip__nav { display: flex; gap: 8px; }
.strip__nav button { width: 48px; height: 48px; border: 1px solid var(--line-l); display: grid; place-items: center; transition: background .3s, color .3s; }
.strip__nav button:hover { background: var(--ink); color: var(--paper); }
.strip__bar { height: 2px; background: var(--line-l); margin: 8px var(--gutter) 0; position: relative; }
.strip__bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 20%; background: var(--ink); }

.pc { scroll-snap-align: start; display: flex; flex-direction: column; background: var(--white); color: var(--ink); position: relative; min-width: 0; }
.pc__img { position: relative; aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
.pc__img img { width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform .8s var(--ease); }
.pc:hover .pc__img img { transform: scale(1.05); }
.pc__tag { position: absolute; left: 10px; top: 10px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 7px 4px; background: var(--ink); color: var(--paper); }
.pc__tag--promo { background: var(--signal); color: #fff; }
.pc__body { padding: 16px 16px 16px; border-top: 1px solid #ece6e6; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pc__brand { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-d); }
.pc__name { font-family: var(--f-display); font-weight: 600; font-size: 1.28rem; line-height: 1.02; text-transform: uppercase; margin: 0; }
.pc__foot { margin-top: auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 10px; }
.pc__price { font-family: var(--f-mono); font-size: 14px; line-height: 1.25; font-variant-numeric: tabular-nums; }
.pc__price small { display: block; font-size: 10.5px; color: var(--stone-d); letter-spacing: .06em; text-transform: uppercase; }
.pc__price s { color: var(--stone-d); font-size: 12px; margin-right: 6px; }
.pc__price .promo { color: var(--signal); }
.pc__buy { flex: none; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 10px 11px 9px; border: 1px solid var(--ink); transition: background .3s, color .3s; }
.pc__buy:hover, .pc__buy:focus-visible { background: var(--ink); color: var(--paper); }
.pc.is-out .pc__img img { opacity: .45; filter: grayscale(1); }

/* ---------- tickets services ---------- */
.tickets { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ticket { --notch: 14px; position: relative; background: var(--ink-2); padding: 28px 26px 26px; display: flex; flex-direction: column; min-height: 360px;
  -webkit-mask: radial-gradient(circle var(--notch) at 0 66%, transparent 98%, #000) , radial-gradient(circle var(--notch) at 100% 66%, transparent 98%, #000);
  -webkit-mask-composite: source-in; mask-composite: intersect;
  mask: radial-gradient(circle var(--notch) at 0 66%, transparent 98%, #000) , radial-gradient(circle var(--notch) at 100% 66%, transparent 98%, #000);
}
.ticket__dur { font-family: var(--f-display); font-weight: 700; font-size: clamp(4.4rem, 7vw, 6.6rem); line-height: .8; margin: 26px 0 18px; }
.ticket__dur small { font-size: .38em; margin-left: 6px; color: var(--stone); }
.ticket h3 { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; font-size: 1.55rem; line-height: 1.02; margin: 0; max-width: 16ch; }
.ticket__cut { position: absolute; left: 22px; right: 22px; top: 66%; border-top: 1px dashed rgba(238,230,230,.25); }
.ticket__foot { margin-top: auto; padding-top: 38px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.ticket__price { font-family: var(--f-mono); font-size: 14px; }

/* ---------- histoire ---------- */
.story { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 90px); align-items: start; }
.story__img { position: relative; background: var(--paper-2); aspect-ratio: 4 / 5; overflow: hidden; }
.story__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; filter: grayscale(1) contrast(1.05); }
.story__img figcaption { position: absolute; left: 14px; bottom: 12px; }
.timeline { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--line-l); }
.timeline li { display: grid; grid-template-columns: 90px minmax(0,1fr); gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-l); align-items: baseline; }
.timeline b { font-family: var(--f-display); font-weight: 700; font-size: 1.6rem; text-transform: uppercase; line-height: 1; }

/* ---------- partenaires ---------- */
.logos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-d); border-left: 1px solid var(--line-d); }
.logos__cell { display: grid; place-items: center; aspect-ratio: 16 / 9; border-right: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); padding: 14% 18%; transition: background .4s; }
.logos__cell img { width: 64%; height: 58%; object-fit: contain; transition: transform .6s var(--ease), filter .4s; filter: grayscale(.2); }
.logos__cell:hover img { transform: scale(1.06); filter: none; }
.logos__cell img.inv { filter: invert(1) hue-rotate(180deg); mix-blend-mode: screen; }
.logos__cell:hover img.inv { filter: invert(1) hue-rotate(180deg); }

/* ---------- ticker ---------- */
.ticker { overflow: hidden; border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); padding: 18px 0; position: relative; z-index: 3; }
.ticker__in { display: flex; gap: 48px; width: max-content; animation: tick 38s linear infinite; }
.ticker__in span { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 2.2rem); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; display: inline-flex; align-items: center; gap: 48px; }
.ticker__in span::after { content: ""; width: 9px; height: 9px; border: 1px solid var(--stone); transform: rotate(45deg); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- journal ---------- */
.posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.post { display: flex; flex-direction: column; gap: 14px; }
.post__img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--ink-2); }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.55rem; line-height: 1.02; text-transform: uppercase; margin: 0; }
.post p { margin: 0; color: var(--stone); font-size: 15.5px; }
.posts--list { grid-template-columns: repeat(3, minmax(0,1fr)); row-gap: 56px; }

/* ---------- contact / CTA ---------- */
.cta { position: relative; overflow: hidden; }
.cta__media { position: absolute; inset: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,2,2,.92) 0%, rgba(2,2,2,.7) 45%, rgba(2,2,2,.25) 100%); }
.cta__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: end; }
.facts { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-d); }
.facts li { display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-d); align-items: baseline; }
.sec--paper .facts, .sec--paper .facts li { border-color: var(--line-l); }
.facts a { transition: opacity .25s; }
.facts a:hover { opacity: .7; }

.news { display: flex; border-bottom: 1px solid currentColor; max-width: 460px; }
.news input { flex: 1; min-width: 0; background: transparent; border: 0; padding: 14px 0; outline: none; font-size: 16px; }
.news input::placeholder { color: var(--stone); }
.news button { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 0 0 0 16px; }

/* ---------- fiches techniques (plaques de specs) ---------- */
.model { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 70px); align-items: center; padding: clamp(56px, 7vw, 110px) 0; border-top: 1px solid var(--line-d); }
.sec--paper .model { border-top-color: var(--line-l); }
.model:nth-of-type(even) .model__media { order: 2; }
.model__media { position: relative; }
.model__media img { width: 100%; height: auto; }
.model__media--white { background: #fff; }
.model__media--white img { mix-blend-mode: multiply; }
.model__idx { position: absolute; left: 0; top: 0; font-family: var(--f-display); font-weight: 800; font-size: clamp(5rem, 13vw, 13rem); line-height: .78; color: transparent; -webkit-text-stroke: 1px rgba(238,230,230,.22); z-index: -1; transform: translate(-6%, -30%); }
.sec--paper .model__idx { -webkit-text-stroke-color: rgba(2,2,2,.18); }
.model__name { margin: 12px 0 18px; }
.specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-d); margin: 26px 0 28px; }
.sec--paper .specs, .sec--paper .spec { border-color: var(--line-l); }
.spec { padding: 14px 12px 12px 0; border-bottom: 1px solid var(--line-d); }
.spec:nth-child(odd) { border-right: 1px solid var(--line-d); }
.spec:nth-child(even) { padding-left: 14px; }
.spec b { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.7rem, 2.6vw, 2.35rem); line-height: 1; font-variant-numeric: tabular-nums; }
.spec span { font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); }
.sec--paper .spec span { color: var(--stone-d); }
.model__price { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; }
.model__price .p { font-family: var(--f-mono); font-size: 15px; }
.model__price .p small { display: block; font-size: 11px; color: var(--stone); letter-spacing: .06em; text-transform: uppercase; }
.chip { display: inline-block; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 9px 5px; border: 1px solid currentColor; }

/* variantes kayo */
.variants { display: flex; gap: 6px; margin: 4px 0 0; }
.variants button { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; padding: 9px 12px 8px; border: 1px solid var(--line-d); transition: background .3s, color .3s, border-color .3s; }
.variants button[aria-pressed="true"] { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.swap { position: relative; }
.swap img { transition: opacity .5s, transform .7s var(--ease); }
.swap img + img { position: absolute; inset: 0; }
.swap img:not(.on) { opacity: 0; transform: translateX(3%); }

/* barres d'autonomie */
.range { display: grid; gap: 22px; }
.range__row { display: grid; grid-template-columns: 150px minmax(0, 1fr) 70px; gap: 18px; align-items: center; }
.range__name { font-family: var(--f-display); font-weight: 600; font-size: 1.35rem; text-transform: uppercase; }
.range__bar { height: 12px; position: relative; background: repeating-linear-gradient(90deg, var(--line-d) 0 1px, transparent 1px 12.5%); border-bottom: 1px solid var(--line-d); }
.range__bar i { position: absolute; left: 0; top: 0; bottom: 0; width: var(--v); background: var(--paper); transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease); }
.range__bar i::after { content: ""; position: absolute; right: -1px; top: -6px; bottom: -6px; width: 2px; background: var(--paper); }
.range.in .range__bar i { transform: scaleX(1); }
.range__row:nth-child(2) i { transition-delay: .12s; } .range__row:nth-child(3) i { transition-delay: .24s; } .range__row:nth-child(4) i { transition-delay: .36s; }
.range__val { font-family: var(--f-mono); font-size: 14px; text-align: right; }
.range__axis { display: grid; grid-template-columns: 150px minmax(0, 1fr) 70px; gap: 18px; }
.range__axis div { display: flex; justify-content: space-between; }

/* galerie défilante */
.gal { display: grid; grid-auto-flow: column; grid-auto-columns: min(78vw, 820px); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 10px; scrollbar-width: none; cursor: grab; }
.gal::-webkit-scrollbar { display: none; }
.gal figure { margin: 0; scroll-snap-align: start; background: var(--ink-2); }
.gal img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.gal.is-drag { cursor: grabbing; scroll-snap-type: none; }
.gal.is-drag * { pointer-events: none; }

/* mosaïque photos */
.mosaic { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 14px; }
.mosaic figure { margin: 0; overflow: hidden; background: var(--ink-2); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic .m1 { grid-column: 1 / span 7; aspect-ratio: 16/10; }
.mosaic .m2 { grid-column: 8 / span 5; aspect-ratio: 4/5; align-self: end; }
.mosaic .m3 { grid-column: 2 / span 5; aspect-ratio: 4/3; }
.mosaic .m4 { grid-column: 7 / span 6; aspect-ratio: 16/9; margin-top: -12%; }

/* listes SAV */
.svc { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.svc__card { background: var(--ink-2); display: flex; flex-direction: column; }
.svc__card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.svc__card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svc__card:hover figure img { transform: scale(1.05); }
.svc__card .in-card { padding: 24px; }
.svc__card h3 { font-family: var(--f-display); font-weight: 700; font-size: 2rem; text-transform: uppercase; line-height: 1; margin: 10px 0 16px; }
.checks { list-style: none; margin: 0; padding: 0; }
.checks li { padding: 9px 0 8px 22px; border-top: 1px solid var(--line-d); position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: 17px; width: 10px; height: 1px; background: var(--paper); }
.sec--paper .checks li { border-color: var(--line-l); }
.sec--paper .checks li::before { background: var(--ink); }

.dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.dl__grp { border-top: 1px solid var(--line-l); padding-top: 14px; margin-bottom: 30px; }
.dl__grp h3 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; margin: 6px 0 8px; }
.dl__grp a { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line-l); transition: padding .35s var(--ease); }
.dl__grp a:hover { padding-left: 10px; }
.dl__grp a span:last-child { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-d); white-space: nowrap; }

/* ---------- boutique ---------- */
.shop-bar { position: sticky; top: var(--hd-h); z-index: 20; background: rgba(238,230,230,.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-l); transition: top .5s var(--ease); }
.hd.is-hidden ~ main .shop-bar { top: 0; }
.shop-bar .wrap { display: flex; gap: 12px 24px; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; flex-wrap: wrap; }
.filters { display: flex; flex-wrap: wrap; gap: 6px; }
.filters button { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; padding: 9px 12px 8px; border: 1px solid var(--line-l); color: var(--ink); transition: background .25s, color .25s, border-color .25s; }
.filters button span { color: var(--stone-d); margin-left: 4px; }
.filters button[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filters button[aria-pressed="true"] span { color: var(--stone); }
.search { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--ink); min-width: 240px; color: var(--ink); }
.search input { border: 0; background: transparent; padding: 9px 0; outline: none; flex: 1; font-size: 15px; }
.shop-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.shop-grid .pc { border: 1px solid #e6dede; }
.shop-grid .pc[hidden] { display: none; }
.shop-empty { padding: 60px 0; text-align: center; }
.shop-group-title { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line-l); padding: 34px 0 10px; }
.shop-group-title:first-child { padding-top: 0; }
.shop-group-title[hidden] { display: none; }

/* ---------- formulaire ---------- */
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 22px; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); }
.sec--paper .field label { color: var(--stone-d); }
.field input, .field textarea, .field select { background: transparent; border: 0; border-bottom: 1px solid var(--line-d); padding: 10px 0; font-size: 16px; outline: none; transition: border-color .3s; border-radius: 0; }
.sec--paper .field input, .sec--paper .field textarea, .sec--paper .field select { border-bottom-color: rgba(2,2,2,.3); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: currentColor; }
.field textarea { resize: vertical; min-height: 110px; }
.field select option { color: var(--ink); }
.form__note { font-size: 14px; color: var(--stone); }
.sec--paper .form__note { color: var(--stone-d); }

.map { position: relative; aspect-ratio: 4 / 3; background: var(--ink-2); overflow: hidden; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.9); }

/* ---------- modal commande ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 16px; visibility: hidden; pointer-events: none; }
.modal.is-open { visibility: visible; pointer-events: auto; }
.modal__bg { position: absolute; inset: 0; background: rgba(2,2,2,.72); opacity: 0; transition: opacity .4s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal.is-open .modal__bg { opacity: 1; }
.modal__box { position: relative; width: min(560px, 100%); max-height: calc(100vh - 32px); overflow: auto; background: var(--paper); color: var(--ink); padding: clamp(24px, 4vw, 40px); transform: translateY(24px); opacity: 0; transition: transform .5s var(--ease), opacity .4s; }
.modal.is-open .modal__box { transform: none; opacity: 1; }
.modal__close { position: absolute; right: 12px; top: 12px; width: 40px; height: 40px; display: grid; place-items: center; }
.modal__title { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: .95; margin: 10px 0 8px; padding-right: 30px; }
.modal__price { font-family: var(--f-mono); font-size: 14px; color: var(--stone-d); margin-bottom: 18px; }
.modal__opts { display: grid; gap: 8px; margin-top: 22px; }
.modal__opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border: 1px solid var(--ink); transition: background .3s, color .3s; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; font-size: 1.25rem; }
.modal__opt small { font-family: var(--f-mono); font-size: 11px; font-weight: 400; letter-spacing: .06em; color: var(--stone-d); }
.modal__opt:hover, .modal__opt:focus-visible { background: var(--ink); color: var(--paper); }
.modal__opt:hover small { color: var(--stone); }
.modal .field input { border-bottom-color: rgba(2,2,2,.3); }

/* ---------- footer ---------- */
.ft { position: relative; background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 120px) 0 28px; border-top: 1px solid var(--line-d); overflow: hidden; }
.ft__grid { display: grid; grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2fr)); gap: 32px; }
.ft__logo img { height: 30px; }
.ft h4 { font-family: var(--f-mono); font-weight: 400; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); margin: 0 0 16px; }
.ft ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ft ul a { opacity: .85; transition: opacity .25s; }
.ft ul a:hover { opacity: 1; }
.ft__big { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(3.6rem, 16.5vw, 17rem); line-height: .8; letter-spacing: -.01em; margin: clamp(60px, 8vw, 110px) 0 18px; color: transparent; -webkit-text-stroke: 1px rgba(238,230,230,.28); white-space: nowrap; }
.ft__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--line-d); }
.social { display: flex; gap: 8px; margin-top: 22px; }
.social a { width: 42px; height: 42px; border: 1px solid var(--line-d); display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.social a:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- trace de pneu ---------- */
.track { position: absolute; left: 0; top: 0; width: 100%; pointer-events: none; z-index: 2; mix-blend-mode: difference; overflow: visible; }
.track path, .track polyline { fill: none; }
.track .tb { stroke: #0e0e0e; }
.track .tk { stroke: #303030; }
.track__head { position: absolute; left: 0; top: 0; z-index: 4; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; background: #fff; pointer-events: none; mix-blend-mode: difference;
  box-shadow: 0 0 0 5px rgba(255,255,255,.12), 0 0 26px 8px rgba(255,255,255,.28); opacity: 0; transition: opacity .4s; }
.track__head.on { opacity: 1; }

/* ---------- utilitaires ---------- */
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 56px; } .mt-xl { margin-top: clamp(64px, 8vw, 120px); }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 90px); align-items: start; }
.note { border-left: 2px solid currentColor; padding: 4px 0 4px 16px; max-width: 60ch; }
.legal h2 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1.9rem; margin: 48px 0 12px; }
.legal p, .legal li { max-width: 72ch; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .hd__nav { display: none; }
  .hd__cta { margin-left: auto; }
  .hd__burger { display: block; margin-left: 0; }
  .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .hero, .intro { --split: 54%; }
  .hero__media img { object-position: 57% 60%; }
  .hero__grid { grid-template-columns: 1fr; gap: 22px; }
  .hero__lead, .hero__actions { grid-column: 1; justify-self: start; }
  .sec__head { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar { padding: 22px 0 18px; border-right: 0; border-bottom: 1px solid var(--line-l); }
  .gate__row { grid-template-columns: 34px minmax(0, 1fr) 40px; gap: 14px; }
  .gate__row .info { grid-column: 2 / 3; }
  .gate__row .go { grid-row: 1; grid-column: 3; }
  .gate__row .thumb { display: block; grid-column: 1 / -1; aspect-ratio: 16 / 8; overflow: hidden; }
  .gate__row .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .gate__peek { display: none; }
  .tickets { grid-template-columns: 1fr; }
  .ticket { min-height: 300px; }
  .story, .two, .cta__grid, .model { grid-template-columns: 1fr; }
  .model:nth-of-type(even) .model__media { order: 0; }
  .posts, .posts--list { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; }
  .dl { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ft__grid { grid-template-columns: 1fr 1fr; }
  .ft__grid > :first-child { grid-column: 1 / -1; }
  .mosaic .m1, .mosaic .m2, .mosaic .m3, .mosaic .m4 { grid-column: 1 / -1; margin-top: 0; aspect-ratio: 16/10; }
  .range__row, .range__axis { grid-template-columns: 96px minmax(0,1fr) 54px; gap: 12px; }
  .range__name { font-size: 1.1rem; }
  .phero__foot { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .search { min-width: 0; width: 100%; }
  .shop-bar .wrap { flex-direction: column; align-items: stretch; }
  .filters { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter); width: calc(100% + 2 * var(--gutter)); min-width: 0; }
  .filters::-webkit-scrollbar { display: none; }
  .filters button { flex: none; }
}
@media (max-width: 560px) {
  :root { --hd-h: 64px; }
  .hd__cta .num { display: none; }
  .hd__cta { padding: 10px 12px; }
  .hd__logo img { height: 18px; }
  .hero__cluster .wrap > :nth-child(2) { display: none; }
  .intro__meta > :last-child { display: none; }
  .pc__body { padding: 12px; }
  .pc__name { font-size: 1.05rem; }
  .pc__foot { flex-direction: column; align-items: stretch; }
  .pc__buy { text-align: center; }
  .pc__price { font-size: 13px; }
  .strip__track { grid-auto-columns: 72vw; }
  .facts li { grid-template-columns: 86px minmax(0,1fr); }
  .timeline li { grid-template-columns: 64px minmax(0,1fr); }
  .btn { padding: 14px 16px 13px; white-space: normal; line-height: 1.25; }
  .ft__grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .spec b { font-size: 1.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .rv, .rv-img > img { opacity: 1; transform: none; clip-path: none; }
  .ticker__in { animation: none; }
  .intro { display: none; }
}
.svc__card figure[style] img { object-fit: contain; }
