/* ===========================================================
   AZ RACING — monochrome atelier storefront
   Black, white, hairlines. Motion is slow and deliberate.
   =========================================================== */

:root {
  --ink: #0b0b0b;
  --ink-2: #1c1c1c;
  --paper: #ffffff;
  --smoke: #f5f4f2;
  --line: #e3e2df;
  --line-2: #d2d1cd;
  --muted: #86867f;
  --wa: #0b0b0b;

  --wrap: 1360px;
  --pad: clamp(20px, 5vw, 64px);
  --sec: clamp(72px, 9vw, 152px);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .7s;

  --font: "Helvetica Neue", Helvetica, Inter, "Segoe UI", Arial, sans-serif;
  --serif: "Times New Roman", Times, Georgia, serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: pageIn .8s var(--ease-out) both;
}

body.leaving { opacity: 0; transition: opacity .32s var(--ease); }

@keyframes pageIn { from { opacity: 0 } to { opacity: 1 } }

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.02em; line-height: 1.02; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- type ---------- */

.display {
  font-size: clamp(2.4rem, 6.4vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .96;
}

.display-xl {
  font-size: clamp(3rem, 12vw, 9.5rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .88;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.eyebrow.light { color: rgba(255,255,255,.55); }

.lede { font-size: clamp(1rem, 1.45vw, 1.2rem); color: #4a4a46; max-width: 56ch; }

.serif-note { font-family: var(--serif); font-style: italic; letter-spacing: 0; }

/* ---------- ticker ---------- */

.ticker {
  background: var(--ink); color: #fff; overflow: hidden;
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  padding: 9px 0; position: relative; z-index: 60;
}
.ticker-track { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: slide 38s linear infinite; }
.ticker-track i { opacity: .4; font-style: normal; }
@keyframes slide { to { transform: translateX(-50%) } }

/* ---------- nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), padding .4s var(--ease);
}
.nav.stuck { border-bottom-color: var(--line); background: rgba(255,255,255,.94); }

.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding .4s var(--ease);
}
.nav.stuck .nav-inner { padding-top: 12px; padding-bottom: 12px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
}
.brand-word { font-weight: 700; letter-spacing: .3em; font-size: .82rem; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a, .nav-item > a {
  position: relative; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 10px 0; display: inline-flex; align-items: center; gap: 7px;
}
.nav-links > a::after, .nav-item > a::after {
  content: ""; position: absolute; left: 0; bottom: 4px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.nav-links > a:hover::after, .nav-item:hover > a::after { transform: scaleX(1); transform-origin: left; }

.chev { width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px); opacity: .6; transition: transform .4s var(--ease); }
.nav-item:hover .chev { transform: rotate(45deg) translate(0, 0); }

/* mega menu */
.nav-item { position: static; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .38s var(--ease), transform .45s var(--ease-out), visibility .38s;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.35);
}
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { max-width: var(--wrap); margin: 0 auto; padding: 34px var(--pad) 40px; }
.mega-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.mega-head .eyebrow { margin: 0; }
.mega-all { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; display: inline-flex; gap: 8px; align-items: center; }
.arr { width: 14px; height: 1px; background: currentColor; position: relative; transition: width .4s var(--ease); }
.arr::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.mega-all:hover .arr { width: 26px; }

.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.mega-cell {
  background: var(--paper); padding: 20px; display: flex; align-items: center; gap: 12px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.mega-cell:hover { background: var(--ink); color: #fff; }
.mega-cell .ico { width: 24px; height: 24px; flex: none; }
.mc-name { font-size: .84rem; letter-spacing: .04em; }
.mc-count { margin-left: auto; font-size: .68rem; color: var(--muted); }
.mega-cell:hover .mc-count { color: rgba(255,255,255,.6); }
.mega-grid.models .mega-cell { flex-direction: column; align-items: flex-start; gap: 4px; }
.mc-sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.mega-cell:hover .mc-sub { color: rgba(255,255,255,.6); }

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

/* burger + drawer */
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: none; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 11px; width: 18px; height: 1px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s; }
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 22px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(2.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-2.5px) rotate(-45deg); }

.drawer { position: fixed; inset: 0; z-index: 45; background: var(--paper); padding-top: 92px; overflow-y: auto; }
.drawer[hidden] { display: none; }
.drawer.open .drawer-inner > * { animation: driftUp .55s var(--ease-out) both; }
.drawer.open .drawer-inner > *:nth-child(2) { animation-delay: .06s }
.drawer.open .drawer-inner > *:nth-child(3) { animation-delay: .12s }
.drawer.open .drawer-inner > *:nth-child(4) { animation-delay: .18s }
.drawer.open .drawer-inner > *:nth-child(5) { animation-delay: .24s }
.drawer-inner { padding: 24px var(--pad) 60px; }
.drawer-list { border-top: 1px solid var(--line); margin-bottom: 34px; }
.drawer-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem;
}
.drawer-list a span { font-size: .72rem; color: var(--muted); }
@keyframes driftUp { from { opacity: 0; transform: translateY(18px) } to { opacity: 1; transform: none } }

/* ---------- buttons ---------- */

.btn {
  --bg: transparent; --fg: var(--ink); --bd: var(--ink);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border: 1px solid var(--bd); background: var(--bg); color: var(--fg);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer;
  overflow: hidden; transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: scaleX(0); transform-origin: right; transition: transform .55s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover { color: #fff; }

.btn-solid { --bg: var(--ink); --fg: #fff; }
.btn-solid::before { background: #fff; }
.btn-solid:hover { color: var(--ink); }

.btn-ghost { --bd: var(--line-2); }
.btn-lg { padding: 18px 32px; }
.btn-block { display: flex; width: 100%; }

.btn-invert { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn-invert::before { background: var(--ink); }
.btn-invert:hover { color: #fff; border-color: var(--ink); }

.btn-outline-light { --bd: rgba(255,255,255,.35); --fg: #fff; }
.btn-outline-light::before { background: #fff; }
.btn-outline-light:hover { color: var(--ink); border-color: #fff; }

/* WhatsApp glyph, drawn to match the monochrome theme */
.wa-glyph { width: 15px; height: 15px; flex: none; position: relative; display: inline-block; }
.wa-glyph::before {
  content: ""; position: absolute; inset: 0; border: 1.4px solid currentColor; border-radius: 50%;
  border-bottom-left-radius: 2px;
}
.wa-glyph::after {
  content: ""; position: absolute; left: 4px; top: 4px; width: 7px; height: 7px;
  border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor;
  border-radius: 0 0 4px 0; opacity: .85;
}
.wa-glyph.lg { width: 22px; height: 22px; }
.wa-glyph.lg::after { left: 6px; top: 6px; width: 10px; height: 10px; }

/* ---------- hero ---------- */

.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-inner {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(70px, 11vw, 150px) var(--pad) clamp(60px, 8vw, 110px);
  display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(30px, 5vw, 70px); align-items: center;
  position: relative; z-index: 2;
}
.hero .eyebrow { color: rgba(255,255,255,.5); }
.hero h1 { color: #fff; }
.hero-sub { color: rgba(255,255,255,.66); max-width: 44ch; margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero-rule { height: 1px; background: rgba(255,255,255,.22); margin: 34px 0 0; transform-origin: left; animation: ruleIn 1.4s var(--ease-out) .5s both; }
@keyframes ruleIn { from { transform: scaleX(0) } to { transform: scaleX(1) } }

.hero-meta { display: flex; gap: clamp(20px, 4vw, 56px); margin-top: 30px; flex-wrap: wrap; }
.hero-meta div { min-width: 92px; }
.hero-meta dt { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.hero-meta dd { margin: 6px 0 0; font-size: 1.7rem; letter-spacing: -.02em; }

.hero-art { position: relative; display: grid; place-items: center; color: rgba(255,255,255,.85); }
.dial { width: min(112%, 520px); animation: dialIn 1.6s var(--ease-out) .2s both; }
@keyframes dialIn { from { opacity: 0; transform: scale(.86) rotate(-12deg) } to { opacity: 1; transform: none } }
.dial-sweep { stroke-dasharray: 804; stroke-dashoffset: 804; animation: sweep 2.6s var(--ease-out) .6s forwards; }
@keyframes sweep { to { stroke-dashoffset: 210 } }
.dial-needle { transform-origin: 150px 150px; animation: needle 3.2s var(--ease-out) .8s both; }
@keyframes needle {
  0% { transform: rotate(-118deg) } 55% { transform: rotate(102deg) }
  70% { transform: rotate(84deg) } 100% { transform: rotate(96deg) }
}
.hero-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(60% 55% at 72% 42%, rgba(255,255,255,.10), transparent 70%); }

/* animated headline words */
.split { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split > span { display: inline-block; transform: translateY(105%); animation: wordUp .95s var(--ease-out) forwards; }
@keyframes wordUp { to { transform: none } }

/* ---------- sections ---------- */

.sec { padding: var(--sec) 0; }
.sec-smoke { background: var(--smoke); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(28px, 4vw, 56px); flex-wrap: wrap; }
.sec-head p { margin: 14px 0 0; color: var(--muted); max-width: 46ch; }

/* guided 3-step strip */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--paper); padding: clamp(24px, 3vw, 40px); position: relative; overflow: hidden; }
.step .n { font-size: .68rem; letter-spacing: .26em; color: var(--muted); }
.step h3 { margin: 14px 0 10px; font-size: 1.28rem; }
.step p { color: var(--muted); margin: 0; font-size: .94rem; }
.step::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--ink);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out); }
.step:hover::after { transform: scaleX(1); }

/* category grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cat-cell { background: var(--paper); padding: clamp(22px, 2.6vw, 34px); min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.cat-cell .ico { width: 30px; height: 30px; transition: transform .6s var(--ease-out); }
.cat-cell:hover .ico { transform: translateY(-4px) scale(1.08); }
.cat-cell h3 { font-size: 1.22rem; margin-top: 22px; }
.cat-cell p { color: var(--muted); font-size: .86rem; margin: 8px 0 0; }
.cat-cell .cc-count { position: absolute; top: 22px; right: 24px; font-size: .68rem; color: var(--muted); }
.cat-cell::before { content: ""; position: absolute; inset: 0; background: var(--smoke); transform: translateY(100%); transition: transform .6s var(--ease-out); }
.cat-cell:hover::before { transform: none; }
.cat-cell > * { position: relative; z-index: 1; }

/* model rail */
.model-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.model-cell { background: var(--paper); padding: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 6px; transition: background .4s var(--ease), color .4s var(--ease); }
.model-cell:hover { background: var(--ink); color: #fff; }
.model-cell .mf { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.model-cell:hover .mf { color: rgba(255,255,255,.55); }
.model-cell h3 { font-size: 1.32rem; }
.model-cell .my { font-size: .78rem; color: var(--muted); }
.model-cell:hover .my { color: rgba(255,255,255,.55); }
.model-cell .mgo { margin-top: 12px; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }

/* ---------- product cards ---------- */

.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }

.card { display: flex; flex-direction: column; position: relative; }
.card-art {
  position: relative; background: var(--smoke); aspect-ratio: 4 / 3; overflow: hidden;
  display: grid; place-items: center; color: var(--ink);
  border: 1px solid transparent; transition: border-color .5s var(--ease), background .5s var(--ease);
}
.card-art > .ph { position: absolute; inset: 0; }
.card:hover .card-art { border-color: var(--line-2); background: #fff; }
.card-art .art { width: 96%; transition: transform .9s var(--ease-out); }
.card:hover .card-art .art { transform: scale(1.07) rotate(-1.2deg); }
.card-tag {
  position: absolute; z-index: 2; top: 12px; left: 12px; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  background: var(--paper); border: 1px solid var(--line); padding: 5px 9px; color: var(--muted);
}
.card-cta {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; background: var(--ink); color: #fff;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; text-align: center; padding: 12px;
  transform: translateY(100%); transition: transform .5s var(--ease-out);
}
.card:hover .card-cta { transform: none; }
.card-body { padding: 16px 2px 0; display: flex; flex-direction: column; gap: 5px; }
.card-series { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.card-name { font-size: 1.02rem; letter-spacing: -.01em; }
.card-fit { font-size: .78rem; color: var(--muted); }
.card-price { margin-top: 6px; font-size: .96rem; }

/* ---------- shop ---------- */

.crumbs { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 26px 0 0; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.crumbs span { margin: 0 8px; opacity: .5; }

.shop-head { padding: clamp(26px, 4vw, 52px) 0 clamp(20px, 3vw, 36px); }
.shop-head h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
.shop-head p { color: var(--muted); margin-top: 14px; max-width: 54ch; }

.filters { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; position: sticky; top: 68px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); z-index: 30; }
.filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.chip {
  font-size: .72rem; letter-spacing: .1em; padding: 8px 14px; border: 1px solid var(--line);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip .x { margin-left: 8px; opacity: .6; }
.filter-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.filter-scroll::-webkit-scrollbar { height: 2px; }
.filter-scroll::-webkit-scrollbar-thumb { background: var(--line-2); }

.result-bar { display: flex; justify-content: space-between; align-items: baseline; padding: 26px 0; flex-wrap: wrap; gap: 12px; }
.result-bar .count { font-size: .78rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

.empty { border: 1px solid var(--line); padding: clamp(40px, 8vw, 90px); text-align: center; }
.empty h3 { font-size: 1.5rem; margin-bottom: 10px; }
.empty p { color: var(--muted); }

/* ---------- product detail ---------- */

.pd { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 76px); padding: clamp(20px, 3vw, 40px) 0 var(--sec); align-items: start; }
.pd-media { position: sticky; top: 96px; }
.pd-stage { background: var(--smoke); aspect-ratio: 1 / 1; display: grid; place-items: center; position: relative; overflow: hidden; }
.pd-stage .art { width: 90%; }
.pd-frame { position: absolute; inset: 18px; border: 1px solid var(--line-2); opacity: .55; pointer-events: none; }
.pd-view { position: absolute; bottom: 16px; right: 18px; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.pd-slide { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transform: scale(1.04); transition: opacity .6s var(--ease), transform .8s var(--ease-out); }
.pd-slide.on { opacity: 1; transform: none; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-thumb { width: 84px; aspect-ratio: 1; background: var(--smoke); border: 1px solid transparent; display: grid; place-items: center; cursor: pointer; transition: border-color .35s var(--ease), background .35s; padding: 0; }
.pd-thumb .art { width: 88%; }
.pd-thumb.on { border-color: var(--ink); background: #fff; }

.pd-series { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.pd h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin: 12px 0 14px; }
.pd-blurb { color: #4a4a46; font-size: 1.04rem; max-width: 48ch; }
.pd-price { display: flex; align-items: baseline; gap: 14px; margin: 26px 0 4px; }
.pd-price .amt { font-size: 1.9rem; letter-spacing: -.02em; }
.pd-price .note { font-size: .74rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.pd-stock { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.pd-stock .dot { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; animation: blink 2.6s var(--ease) infinite; }
@keyframes blink { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }

.pd-block { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 24px; }
.pd-block h4 { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 500; }

.fit-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fit-chip {
  font-size: .74rem; padding: 9px 14px; border: 1px solid var(--line); cursor: pointer; background: none;
  font-family: inherit; color: inherit; transition: all .35s var(--ease);
}
.fit-chip:hover { border-color: var(--ink); }
.fit-chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.fit-hint { font-size: .8rem; color: var(--muted); margin-top: 12px; }

.spec { width: 100%; border-collapse: collapse; }
.spec th, .spec td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 400; font-size: .92rem; vertical-align: top; }
.spec th { color: var(--muted); width: 38%; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }

.pd-cta { background: var(--paper); padding: 26px 0 8px; margin-top: 30px; border-top: 1px solid var(--line); }
.pd-cta .btn { width: 100%; }
.pd-cta .assure { font-size: .76rem; color: var(--muted); text-align: center; margin: 12px 0 0; }

.assure-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
.assure-row div { background: var(--paper); padding: 20px; }
.assure-row .t { font-size: .74rem; letter-spacing: .04em; }
.assure-row .s { font-size: .72rem; color: var(--muted); margin-top: 4px; }

/* ---------- band + footer ---------- */

.band { background: var(--ink); color: #fff; padding: var(--sec) 0; }
.band-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.band-title { color: #fff; }
.band-copy { color: rgba(255,255,255,.6); max-width: 46ch; margin-top: 20px; }
.band-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.band-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin: 0; }
.band-facts dt { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.band-facts dd { margin: 8px 0 0; font-size: .96rem; color: rgba(255,255,255,.9); }

.foot { border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 84px) 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 60px); }
.foot-tag { color: var(--muted); font-size: .9rem; margin-top: 18px; max-width: 34ch; }
.foot li { padding: 6px 0; font-size: .9rem; color: var(--muted); }
.foot li a:hover { color: var(--ink); }
.foot-base { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 64px); padding-top: 22px; border-top: 1px solid var(--line); }
.foot-base p { font-size: .74rem; color: var(--muted); margin: 0; }
.disclaimer { max-width: 62ch; text-align: right; }

/* ---------- floating WhatsApp ---------- */

.wa-float {
  position: fixed; right: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px); z-index: 70;
  display: inline-flex; align-items: center; gap: 0; height: 58px; padding: 0 18px;
  background: var(--ink); color: #fff; border-radius: 999px;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.6);
  opacity: 0; transform: translateY(18px) scale(.9); pointer-events: none;
  transition: opacity .5s var(--ease), transform .6s var(--ease-out), gap .45s var(--ease), padding .45s var(--ease);
}
.wa-float.show { opacity: 1; transform: none; pointer-events: auto; }
.wa-float-label {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
  max-width: 0; overflow: hidden; opacity: 0; transition: max-width .55s var(--ease-out), opacity .4s var(--ease);
}
.wa-float:hover { gap: 12px; }
.wa-float:hover .wa-float-label { max-width: 230px; opacity: 1; }
.wa-float-ring { position: absolute; inset: 0; border-radius: 999px; border: 1px solid var(--ink); animation: ring 3.4s var(--ease-out) infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .55 } 70% { transform: scale(1.28); opacity: 0 } 100% { opacity: 0 } }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* The wipe is applied to the artwork inside, never to the observed box itself —
   a clipped target can report zero intersection and would then never reveal. */
.reveal-art .art, .reveal-art .ph { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out), filter .9s var(--ease), transform 1.2s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal-art.in .art, .reveal-art.in .ph { clip-path: inset(0 0 0 0); }

.count-up { font-variant-numeric: tabular-nums; }

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .mega-grid, .cat-grid, .model-rail, .grid-products, .assure-row { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 320px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-wa { display: none; }
  .pd { grid-template-columns: 1fr; }
  .pd-media { position: static; }
  .band-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .grid-products, .cat-grid, .model-rail, .assure-row { grid-template-columns: repeat(2, 1fr); }
  .disclaimer { text-align: left; }
  .filters { top: 60px; }
  .pd-cta { position: static; }
}

@media (max-width: 560px) {
  .grid-products, .cat-grid, .model-rail, .assure-row, .foot-grid, .band-facts { grid-template-columns: 1fr; }
  .hero-meta dd { font-size: 1.4rem; }
  .wa-float { height: 52px; }
  .wa-float-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .reveal, .reveal-art { opacity: 1; transform: none; }
  .reveal-art .art, .reveal-art .ph { clip-path: none; }
  html { scroll-behavior: auto; }
}


/* ---------- photography ----------
   Monochrome by default so the collection reads as one system; the Ducati red
   returns on hover, which is also the interaction cue. */

.ph {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.04) contrast(1.03);
  transition: filter .9s var(--ease), transform 1.2s var(--ease-out);
  background: var(--smoke);
}
.card:hover .ph, .cat-cell:hover .ph, .model-cell:hover .ph { filter: saturate(1.12) contrast(1.05); transform: scale(1.06); }

/* hero */
.hero-inner { grid-template-columns: 1fr; }
.hero-inner > div { max-width: 900px; }

/* category tiles carry a photograph above the label */
.cat-cell { padding: 0; min-height: 0; display: flex; flex-direction: column; }
.cat-cell::before { display: none; }
.cat-figure { display: block; position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.cat-figure .cc-count {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--paper); border: 1px solid var(--line); padding: 4px 8px;
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.cat-body { flex: 1; padding: 18px 20px 24px; display: flex; gap: 12px; align-items: flex-start; }
.cat-body .ico { width: 22px; height: 22px; flex: none; margin-top: 3px; }
.cat-body h3 { font-size: 1.12rem; margin: 0; }
.cat-body > span { display: block; }
.cat-body p { font-size: .82rem; color: var(--muted); margin: 6px 0 0; }

/* model cards carry the motorcycle itself */
.model-cell { padding: 0; }
.model-figure { display: block; position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.model-body { flex: 1; padding: 16px 20px 22px; display: flex; flex-direction: column; gap: 5px; }
.model-cell:hover { background: var(--paper); color: inherit; }
.model-cell:hover .mf, .model-cell:hover .my { color: var(--muted); }
.model-cell .mgo { margin-top: 10px; }

/* product detail stage */
.pd-stage { background: var(--smoke); }
.pd-slide.photo { padding: 0; }
.pd-slide.photo .ph { filter: saturate(1.05) contrast(1.03); }

.pd-slide.zoom .ph { transform: scale(1.45); }
.pd-thumb { overflow: hidden; }
.pd-thumb .ph { filter: saturate(.9); opacity: .72; }
.pd-thumb.on .ph { filter: none; opacity: 1; }

/* editorial split */
.editorial { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 72px); align-items: center; }
.editorial-figure { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.editorial-figure .dial {
  position: absolute; right: -6%; bottom: -8%; width: 46%; color: rgba(255,255,255,.9);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.55));
}
.editorial-figure .ph { filter: contrast(1.05) saturate(1.05); }

/* photo credits */
.credits { font-size: .68rem; color: var(--muted); line-height: 1.7; margin-top: 10px; }
.credits a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 860px) {
  .editorial { grid-template-columns: 1fr; }
}


/* ---------- hero reel: stills that behave like footage ---------- */

.hero-reel { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--ink); }
.hero-frame { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s var(--ease); }
.hero-frame.on { opacity: 1; }
.hero-frame .ph {
  filter: contrast(1.06) brightness(.66) saturate(.92);
  transform: scale(1.16);
}
/* Each frame gets its own push-in + drift while it is the visible one. */
.hero-frame.on .ph { animation: kenburns 9s linear both; }
.hero-frame:nth-child(2).on .ph { animation-name: kenburns2; }
.hero-frame:nth-child(3).on .ph { animation-name: kenburns3; }
.hero-frame:nth-child(4).on .ph { animation-name: kenburns4; }

@keyframes kenburns  { from { transform: scale(1.20) translate3d(2%, 1%, 0) }  to { transform: scale(1.02) translate3d(-1%, 0, 0) } }
@keyframes kenburns2 { from { transform: scale(1.04) translate3d(-2%, 0, 0) }  to { transform: scale(1.22) translate3d(2%, -1%, 0) } }
@keyframes kenburns3 { from { transform: scale(1.18) translate3d(0, -2%, 0) }  to { transform: scale(1.03) translate3d(2%, 1%, 0) } }
@keyframes kenburns4 { from { transform: scale(1.05) translate3d(2%, 2%, 0) }  to { transform: scale(1.24) translate3d(-2%, -1%, 0) } }

.hero-reel::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, rgba(11,11,11,.93) 0%, rgba(11,11,11,.62) 46%, rgba(11,11,11,.18) 100%);
}

/* slow light sweep across the frame — the cue that it is live, not a photo */
.hero-scan {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-scan::before {
  content: ""; position: absolute; top: -20%; bottom: -20%; width: 38%; left: -40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.055) 45%, transparent);
  transform: skewX(-12deg); animation: sweepAcross 11s var(--ease) infinite;
}
@keyframes sweepAcross { 0% { left: -45% } 55%, 100% { left: 120% } }

@media (prefers-reduced-motion: reduce) {
  .hero-frame.on .ph { animation: none; transform: scale(1.02); }
  .hero-scan { display: none; }

}
