/* ==========================================================================
   MOMENTUM — BUILT FOR MORE
   Global stylesheet
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* surfaces */
  --black:        #000000;
  --bg:           #0b0a09;
  --bg-2:         #100e0c;
  --panel:        #17150f;
  --tile:         #1c1a16;
  --tile-2:       #232019;

  /* ink */
  --bone:         #ded7c6;
  --bone-bright:  #f2ece0;
  --muted:        #9c9385;
  --dim:          #6d675d;

  /* accent */
  --blue:         #4a90d9;
  --blue-deep:    #2f6ca8;
  --blue-glow:    rgba(74, 144, 217, .45);

  --line:         rgba(222, 215, 198, .16);
  --line-soft:    rgba(222, 215, 198, .08);

  /* type */
  --display: 'Anton', 'Haettenschweiler', 'Arial Narrow Bold', 'DejaVu Sans Condensed', Impact, sans-serif;
  --ui:      'Barlow Condensed', 'Oswald', 'Arial Narrow', 'DejaVu Sans Condensed', sans-serif;

  /* metrics */
  --bar-h:    34px;
  --head-h:   88px;
  --shell:    1440px;
  --pad:      42px;
  --ease:     cubic-bezier(.19,1,.22,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }

/* grid children must be allowed to shrink, otherwise aspect-ratio tiles
   blow their tracks out to min-content and the page overflows sideways */
.grid > *, .split > *, .strip > *, .pdp > *, .gallery > *,
.gallery__thumbs > *, .footer__grid > *, .toolbar > * { min-width: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select { font: inherit; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--blue-deep); color: var(--bone-bright); }

/* focus visibility — keyboard only */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ---------- 3. GLOBAL TEXTURE ---------- */
/* film grain + scratches sit above the page, below the UI */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 900;
}
body::before {
  background-image: url("../img/grain.png");
  background-size: 180px 180px;
  opacity: .14;
  mix-blend-mode: overlay;
}
body::after {
  background-image: url("../img/scratches.png");
  background-size: 900px 900px;
  opacity: .16;
  mix-blend-mode: screen;
}

/* a reusable dark textured surface */
.tex {
  background-color: var(--tile);
  background-image:
    url("../img/tile-tex.png"),
    radial-gradient(120% 90% at 30% 20%, rgba(255,255,255,.045), transparent 60%),
    linear-gradient(160deg, #232019 0%, #16140f 55%, #0f0d0a 100%);
  background-size: 700px 700px, cover, cover;
  background-blend-mode: screen, normal, normal;
}

/* ---------- 4. LAYOUT ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: 84px 0; }

/* ---------- 5. TYPE UTILITIES ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: .84;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--bone);
  /* worn print look */
  background-image: url("../img/grain.png");
  background-size: 150px 150px;
  -webkit-background-clip: text;
  background-clip: text;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.ui-label {
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}
.body-copy {
  font-size: 14px;
  letter-spacing: .12em;
  line-height: 2;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 46ch;
}

/* checkered flag flourish (matches the logo) */
.checkers {
  display: inline-block;
  flex: none;
  vertical-align: middle;
  width: 2.2em;
  height: .42em;
  transform: skewX(-22deg);
  background-image:
    linear-gradient(45deg, var(--blue) 25%, transparent 25%, transparent 75%, var(--blue) 75%),
    linear-gradient(45deg, var(--blue) 25%, transparent 25%, transparent 75%, var(--blue) 75%);
  background-size: .42em .42em;
  background-position: 0 0, .21em .21em;
  opacity: .95;
}
.checkers.sm { width: 3.4em; height: .62em; background-size: .62em .62em; background-position: 0 0, .31em .31em; }

/* ---------- 6. BUTTONS ---------- */
.btn {
  --btn-ink: var(--bone);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  min-width: 300px;
  padding: 20px 26px;
  border: 1px solid rgba(222,215,198,.5);
  color: var(--btn-ink);
  font-size: 15px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease),
              box-shadow .45s var(--ease), transform .3s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover, .btn:focus-visible {
  color: var(--black);
  border-color: var(--bone);
  box-shadow: 0 0 34px rgba(222,215,198,.18);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover .arrow { transform: translateX(9px); }
.btn:active { transform: translateY(2px) scale(.99); }

.btn--blue::before { background: var(--blue); }
.btn--blue:hover, .btn--blue:focus-visible {
  color: #06131f;
  border-color: var(--blue);
  box-shadow: 0 0 38px var(--blue-glow);
}
.btn--solid {
  background: var(--bone);
  color: var(--black);
  border-color: var(--bone);
}
.btn--solid::before { background: var(--blue); }
.btn--solid:hover { color: #06131f; border-color: var(--blue); box-shadow: 0 0 38px var(--blue-glow); }

.btn--block { width: 100%; justify-content: center; gap: 14px; min-width: 0; }

/* small ghost button */
.btn-ghost {
  padding: 12px 20px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.btn-ghost:hover { color: var(--bone-bright); border-color: var(--bone); background: rgba(222,215,198,.06); }
.btn-ghost:active { transform: scale(.97); }

/* ---------- 7. ANNOUNCEMENT BAR ---------- */
.announce {
  position: relative;
  z-index: 60;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-bottom: 1px solid rgba(222,215,198,.10);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 500;
  overflow: hidden;
}
.announce span { white-space: nowrap; }

/* ---------- 8. HEADER ---------- */
.header {
  position: absolute;
  top: var(--bar-h);
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--head-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header--solid { background: rgba(8,7,6,.86); }
.header.is-stuck {
  position: fixed;
  top: 0;
  height: 70px;
  background: rgba(8,7,6,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  animation: dropIn .45s var(--ease);
}
@keyframes dropIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.header__inner {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.brand { justify-self: start; display: block; transition: transform .4s var(--ease), filter .4s var(--ease); }
.brand img { width: 316px; height: auto; }
.header.is-stuck .brand img { width: 236px; }
.brand:hover { transform: scale(1.035); filter: drop-shadow(0 0 22px var(--blue-glow)); }
.brand:active { transform: scale(.99); }

/* nav */
.nav { justify-self: center; display: flex; align-items: center; gap: 46px; }
.nav__item { position: relative; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 2px;
  font-size: 15px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bone);
  transition: color .3s var(--ease), text-shadow .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  height: 2px; width: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--bone-bright); text-shadow: 0 0 18px var(--blue-glow); }
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--bone-bright); }
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link .caret { transition: transform .35s var(--ease); }
.nav__item:hover .caret, .nav__item:focus-within .caret { transform: rotate(180deg); }

/* shop dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 246px;
  padding: 10px 0;
  background: rgba(12,11,9,.97);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
  box-shadow: 0 26px 60px rgba(0,0,0,.7);
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown,
.dropdown.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: block;
  padding: 11px 24px;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 2px solid transparent;
  transition: all .28s var(--ease);
}
.dropdown a:hover, .dropdown a:focus-visible {
  color: var(--bone-bright);
  background: rgba(74,144,217,.10);
  border-left-color: var(--blue);
  padding-left: 30px;
}

/* header right */
.head-right { justify-self: end; display: flex; align-items: center; gap: 20px; }
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  font-style: italic;
  transition: color .3s var(--ease), text-shadow .3s var(--ease), transform .3s var(--ease);
}
.cart-btn svg { transition: transform .35s var(--ease); }
.cart-btn:hover { color: var(--bone-bright); text-shadow: 0 0 18px var(--blue-glow); }
.cart-btn:hover svg { transform: translateY(-2px) scale(1.12); }
.cart-btn:active { transform: scale(.95); }
.cart-btn.bump { animation: bump .5s var(--ease); }
@keyframes bump {
  0%,100% { transform: scale(1); }
  35%     { transform: scale(1.22); color: var(--blue); }
}

/* burger */
.burger { display: none; width: 42px; height: 42px; position: relative; }
.burger span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: var(--bone);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(8,7,6,.985);
  padding: 120px 32px 40px;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--display);
  font-size: 30px;
  text-transform: uppercase;
  color: var(--bone);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.mobile-nav a:hover, .mobile-nav a:active { color: var(--blue); padding-left: 12px; }
.mobile-nav .sub { font-family: var(--ui); font-size: 15px; letter-spacing: .2em; color: var(--muted); padding-left: 18px; }

/* ---------- 9. HERO (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0908;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* --------------------------------------------------------------
     DUSK PLACEHOLDER
     To drop in your campaign photo, replace this whole `background`
     with:  background: url("../img/hero.jpg") center 40% / cover no-repeat;
     -------------------------------------------------------------- */
  background:
    /* low sun burning through, just behind where the rider stands */
    radial-gradient(46% 17% at 72% 76%, rgba(255,168,80,.34) 0%, rgba(226,124,42,.16) 52%, transparent 82%),
    radial-gradient(80% 34% at 66% 82%, rgba(186,90,30,.26) 0%, transparent 76%),
    /* haze lifting off the ground */
    linear-gradient(0deg, rgba(120,58,20,.30) 0%, transparent 34%),
    /* sky → horizon → dirt */
    linear-gradient(178deg,
      #0b1320 0%,
      #101722 26%,
      #1b1a1c 52%,
      #2b1c11 68%,
      #1a1009 82%,
      #0b0705 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/scratches.png");
  background-size: 900px 900px;
  opacity: .2;
  mix-blend-mode: screen;
}
/* horizon + ground haze so the placeholder reads as a landscape */
.hero__ground {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(38,22,11,.0) 0%, rgba(30,17,8,.75) 45%, rgba(10,7,5,.96) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,5,4,.94) 0%, rgba(6,5,4,.62) 34%, rgba(6,5,4,0) 62%),
    radial-gradient(120% 120% at 50% 50%, transparent 42%, rgba(0,0,0,.72) 100%);
}
.hero__inner { position: relative; z-index: 5; width: 100%; }
.hero__title {
  font-size: clamp(58px, 10.6vw, 156px);
  margin-bottom: 46px;
  color: var(--bone);
  text-shadow: 0 18px 60px rgba(0,0,0,.7);
}
.hero__title span { display: block; }
.hero .btn { min-width: 330px; }

/* entrance */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.d1.in { transition-delay: .10s; }
.reveal.d2.in { transition-delay: .20s; }
.reveal.d3.in { transition-delay: .30s; }
.reveal.d4.in { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim);
}
.scroll-cue i { display: block; width: 1px; height: 42px; background: linear-gradient(180deg, var(--bone), transparent); animation: cue 2.2s infinite; }
@keyframes cue { 0%,100% { opacity: .25; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- 10. PAGE HEADS (shop / archive) ---------- */
.page-head {
  position: relative;
  padding: calc(var(--bar-h) + var(--head-h) + 26px) 0 34px;
  overflow: hidden;
}
.page-head--banner { padding-bottom: 52px; min-height: min(620px, 46vw); display: flex; align-items: flex-end; }
.page-head__bg {
  position: absolute;
  inset: 0;
  /* same dusk placeholder as the hero — swap for your banner photo */
  background:
    radial-gradient(44% 20% at 66% 66%, rgba(255,168,80,.30) 0%, rgba(214,116,44,.13) 52%, transparent 84%),
    linear-gradient(0deg, rgba(120,58,20,.24) 0%, transparent 48%),
    linear-gradient(178deg, #0c1320 0%, #131822 34%, #241a11 74%, #0d0906 100%);
}
.page-head__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/scratches.png");
  background-size: 900px 900px;
  opacity: .2; mix-blend-mode: screen;
}
.page-head__fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,7,6,.95) 0%, rgba(8,7,6,.55) 40%, rgba(8,7,6,.1) 70%),
    linear-gradient(0deg, var(--bg) 0%, rgba(11,10,9,0) 42%);
}
.page-head__inner { position: relative; z-index: 4; width: 100%; }
.page-head__title { font-size: clamp(52px, 8.4vw, 118px); }
.page-head__sub {
  display: flex; align-items: center; gap: 18px;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(21px, 2.7vw, 37px);
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--bone);
}
/* the SHOP banner sets its word bigger — it's a short word carrying the page */
.page-head--banner .page-head__title { font-size: clamp(64px, 12.4vw, 174px); }
.page-head--banner .page-head__sub { font-size: clamp(24px, 3.8vw, 53px); }
.archive-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.72fr);
  gap: 60px;
  align-items: end;
}

/* ---------- 11. TOOLBAR (shop filters) ---------- */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 26px 0 30px;
  flex-wrap: wrap;
}
.filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter {
  position: relative;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  transition: color .3s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.filter::after {
  content: "";
  position: absolute; left: 20px; right: 20px; bottom: 9px;
  height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--ease);
}
.filter:hover { color: var(--bone-bright); }
.filter:hover::after { transform: scaleX(1); }
.filter.is-active {
  color: var(--bone-bright);
  border-color: rgba(222,215,198,.55);
  background: rgba(222,215,198,.04);
}
.filter.is-active::after { transform: scaleX(1); background: var(--bone); }
.filter:active { transform: scale(.97); }

.sorts { display: flex; align-items: center; gap: 12px; }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 34px 12px 14px;
  background: transparent;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.select-wrap select:hover, .select-wrap select:focus { color: var(--bone-bright); border-color: var(--line); }
.select-wrap select option { background: #111; color: var(--bone); }
.select-wrap::after {
  content: "";
  position: absolute; right: 14px; top: 50%;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  color: var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform .3s var(--ease);
}
.select-wrap:hover::after { transform: translateY(-40%) rotate(45deg); color: var(--bone); }

/* ---------- 12. PRODUCT GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.grid--archive { gap: 12px; }

.card { position: relative; display: block; min-width: 0; }
.card__media {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .45s var(--ease), transform .55s var(--ease), box-shadow .55s var(--ease);
}
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,144,217,.10) 0%, transparent 45%, rgba(0,0,0,.35) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.card:hover .card__media {
  border-color: rgba(74,144,217,.55);
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0,0,0,.62), 0 0 0 1px rgba(74,144,217,.12), 0 0 44px rgba(74,144,217,.14);
}
.card:hover .card__media::after { opacity: 1; }
.card:active .card__media { transform: translateY(-2px) scale(.995); }

/* hover reveal — product identity stays hidden until you interact,
   matching the reference screens. set .grid[data-labels="always"] to keep it on. */
.card__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(0deg, rgba(6,5,4,.94) 0%, rgba(6,5,4,.55) 55%, transparent 100%);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.card:hover .card__info,
.card:focus-visible .card__info,
.grid[data-labels="always"] .card__info { opacity: 1; transform: none; }
.card__name {
  font-size: 14px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--bone-bright); line-height: 1.35;
}
.card__price { font-size: 14px; letter-spacing: .12em; color: var(--blue); font-weight: 600; white-space: nowrap; }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 10px;
  background: var(--blue);
  color: #06131f;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.card:hover .card__tag { opacity: 1; transform: none; }
.card__quick {
  position: absolute; top: 14px; right: 14px;
  padding: 9px 14px;
  border: 1px solid rgba(222,215,198,.6);
  background: rgba(6,5,4,.6);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--bone);
  opacity: 0; transform: translateY(-8px);
  transition: all .4s var(--ease);
  z-index: 3;
}
.card:hover .card__quick { opacity: 1; transform: none; }
.card__quick:hover { background: var(--bone); color: var(--black); border-color: var(--bone); }
.card__quick:active { transform: scale(.95); }

/* archive tiles are square */
.grid--archive .card__media { aspect-ratio: 1 / 1; border: 1px solid var(--line-soft); }
.grid--archive .card:hover .card__media { border-color: rgba(74,144,217,.5); }
.archive-cap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim);
  opacity: 0; transition: opacity .45s var(--ease);
}
.card:hover .archive-cap { opacity: 1; color: var(--bone); }

.empty-note {
  grid-column: 1 / -1;
  padding: 70px 0;
  text-align: center;
  font-size: 13px; letter-spacing: .24em; text-transform: uppercase; color: var(--dim);
}

/* ---------- 13. FEATURE / CTA STRIPS ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin: 58px 0 0;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.strip__item:last-child { border-right: 0; }
.strip__item:hover { background: rgba(222,215,198,.035); }
.strip__item:hover .strip__icon { color: var(--blue); transform: rotate(-8deg) scale(1.08); }
.strip__icon { color: var(--bone); transition: color .4s var(--ease), transform .5s var(--ease); flex: none; }
.strip__t { font-size: 15px; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-bright); font-weight: 500; }
.strip__d { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); }

.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 34px;
  margin-top: 26px;
  border: 1px solid var(--line);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.band:hover { border-color: rgba(74,144,217,.4); background: rgba(74,144,217,.03); }
.band__left { display: flex; align-items: center; gap: 20px; }
.band__txt { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); line-height: 1.9; }
.band__est {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display); font-style: italic;
  font-size: 26px; letter-spacing: .04em; color: var(--bone);
}

/* ---------- 14. HOME SECTIONS ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.promo {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: border-color .5s var(--ease);
}
.promo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,5,4,.9), rgba(6,5,4,.25));
  transition: opacity .5s var(--ease);
}
.promo:hover { border-color: rgba(74,144,217,.45); }
.promo:hover .promo__zoom { transform: scale(1.06); }
.promo__zoom { position: absolute; inset: 0; transition: transform 1.1s var(--ease); }
.promo__body { position: relative; z-index: 2; }
.promo__title { font-family: var(--display); font-size: clamp(30px, 4vw, 52px); text-transform: uppercase; color: var(--bone); line-height: .9; }
.promo__link {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 16px;
  font-size: 13px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
  transition: color .35s var(--ease), gap .35s var(--ease);
}
.promo:hover .promo__link { color: var(--bone-bright); gap: 20px; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
  margin-bottom: 30px; flex-wrap: wrap;
}
.section-head h2 { font-family: var(--display); font-size: clamp(34px, 5vw, 68px); text-transform: uppercase; line-height: .9; color: var(--bone); }
.text-link {
  position: relative;
  font-size: 13px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
  padding-bottom: 4px;
  transition: color .3s var(--ease);
}
.text-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--blue); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.text-link:hover { color: var(--bone-bright); }
.text-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* marquee */
.marquee {
  position: relative;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background: rgba(0,0,0,.4);
}
.marquee__track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 26px;
  padding-right: 26px;
  font-family: var(--display);
  font-size: 26px; letter-spacing: .04em; text-transform: uppercase; color: rgba(222,215,198,.5);
}
.marquee__track span i { color: var(--blue); font-style: normal; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* newsletter */
.signup { display: flex; gap: 0; max-width: 520px; border: 1px solid var(--line); transition: border-color .4s var(--ease); }
.signup:focus-within { border-color: var(--blue); box-shadow: 0 0 30px rgba(74,144,217,.14); }
.signup input {
  flex: 1; min-width: 0;
  padding: 17px 18px;
  background: transparent; border: 0;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--bone);
}
.signup input::placeholder { color: var(--dim); }
.signup button {
  padding: 17px 26px;
  background: var(--bone); color: var(--black);
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.signup button:hover { background: var(--blue); color: #06131f; }
.signup button:active { transform: scale(.97); }
.form-msg { margin-top: 12px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); min-height: 18px; }

/* ---------- 15. PRODUCT PAGE ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  padding: calc(var(--bar-h) + var(--head-h) + 46px) 0 90px;
}
.crumbs { grid-column: 1 / -1; min-width: 0; margin-bottom: -18px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--dim); }
.crumbs a { transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--bone); }
.pdp__right { align-self: start; position: sticky; top: calc(var(--head-h) + 22px); }
@media (max-width: 980px) { .pdp__right { position: static; } }
.gallery { display: grid; gap: 12px; min-width: 0; }
.gallery__main { position: relative; width: 100%; min-width: 0; aspect-ratio: 4/5; border: 1px solid var(--line-soft); overflow: hidden; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; min-width: 0; }
.thumb {
  position: relative; display: block; width: 100%; min-width: 0; aspect-ratio: 1/1;
  border: 1px solid var(--line-soft);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.thumb:hover { border-color: rgba(222,215,198,.5); transform: translateY(-3px); }
.thumb.is-active { border-color: var(--blue); box-shadow: 0 0 22px rgba(74,144,217,.22); }

.pdp__title { font-family: var(--display); font-size: clamp(38px, 5vw, 62px); text-transform: uppercase; line-height: .92; color: var(--bone); }
.pdp__price { margin-top: 14px; font-size: 22px; letter-spacing: .14em; color: var(--blue); font-weight: 600; }
.pdp__desc { margin-top: 24px; font-size: 14px; letter-spacing: .1em; line-height: 2; color: var(--muted); text-transform: uppercase; }
.field { margin-top: 32px; }
.field__label { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--dim); margin-bottom: 12px; }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size {
  min-width: 58px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  transition: all .3s var(--ease);
}
.size:hover { border-color: var(--bone); color: var(--bone-bright); }
.size.is-active { background: var(--bone); border-color: var(--bone); color: var(--black); font-weight: 600; }
.size:active { transform: scale(.95); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty button { width: 46px; height: 46px; font-size: 18px; color: var(--muted); transition: all .25s var(--ease); }
.qty button:hover { color: var(--bone-bright); background: rgba(222,215,198,.07); }
.qty span { width: 52px; text-align: center; font-size: 15px; letter-spacing: .1em; }

.accordion { margin-top: 40px; border-top: 1px solid var(--line-soft); }
.acc__head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--bone);
  transition: color .3s var(--ease);
}
.acc__head:hover { color: var(--blue); }
.acc__head i { font-style: normal; font-size: 18px; transition: transform .4s var(--ease); }
.acc__head.is-open i { transform: rotate(45deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); border-bottom: 1px solid var(--line-soft); }
.acc__body p { padding: 18px 0; margin: 0; font-size: 13px; letter-spacing: .1em; line-height: 2; color: var(--muted); text-transform: uppercase; }

/* ---------- 16. CART DRAWER ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 980;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 990;
  width: min(430px, 100%);
  display: flex; flex-direction: column;
  background: #0c0b09;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  box-shadow: -30px 0 80px rgba(0,0,0,.6);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__title { font-family: var(--display); font-size: 26px; text-transform: uppercase; color: var(--bone); }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid transparent;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.icon-btn:hover { color: var(--bone-bright); border-color: var(--line); transform: rotate(90deg); }
.drawer__body { flex: 1; overflow-y: auto; padding: 10px 26px; }
.drawer__foot { padding: 22px 26px 28px; border-top: 1px solid var(--line-soft); }
.drawer__row { display: flex; justify-content: space-between; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.drawer__row.total { color: var(--bone-bright); font-size: 16px; font-weight: 600; margin: 14px 0 20px; }

.line {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  animation: fadeUp .45s var(--ease);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.line__thumb { width: 78px; aspect-ratio: 4/5; border: 1px solid var(--line-soft); }
.line__name { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-bright); font-weight: 500; line-height: 1.5; }
.line__meta { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-top: 4px; }
.line__ctrl { display: inline-flex; align-items: center; border: 1px solid var(--line); margin-top: 10px; }
.line__ctrl button { width: 30px; height: 30px; font-size: 15px; color: var(--muted); transition: all .25s var(--ease); }
.line__ctrl button:hover { color: var(--bone-bright); background: rgba(222,215,198,.08); }
.line__ctrl span { width: 32px; text-align: center; font-size: 13px; }
.line__right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.line__price { font-size: 13px; letter-spacing: .1em; color: var(--blue); font-weight: 600; }
.line__rm { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); transition: color .3s var(--ease); }
.line__rm:hover { color: #d96a5a; }
.cart-empty { padding: 70px 0; text-align: center; }
.cart-empty p { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--dim); }

/* toast */
.toast {
  position: fixed;
  left: 50%; bottom: 34px;
  transform: translate(-50%, 22px);
  z-index: 999;
  padding: 15px 26px;
  background: var(--bone);
  color: var(--black);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- 17. FOOTER ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 56px 0 0; background: #080706; position: relative; z-index: 5; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .8fr .85fr 1.1fr;
  gap: 34px;
  padding-bottom: 46px;
}
.footer__brand img { width: 208px; }
.footer__brand a { display: inline-block; transition: transform .4s var(--ease), filter .4s var(--ease); }
.footer__brand a:hover { transform: scale(1.04); filter: drop-shadow(0 0 20px var(--blue-glow)); }
.footer h4 { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--bone); margin-bottom: 16px; }
.footer li { margin-bottom: 9px; }
.footer li a {
  position: relative;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.footer li a::before {
  content: "";
  position: absolute; left: -12px; top: 50%;
  width: 6px; height: 1px; background: var(--blue);
  opacity: 0; transform: translateX(-4px);
  transition: all .3s var(--ease);
}
.footer li a:hover { color: var(--bone-bright); padding-left: 4px; }
.footer li a:hover::before { opacity: 1; transform: translateX(0); }
.footer__tag { font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--bone); font-weight: 500; }
.footer__est { display: flex; align-items: center; gap: 14px; margin-top: 6px; font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--bone); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.social {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: all .35s var(--ease);
}
.social:hover {
  color: #06131f; background: var(--blue); border-color: var(--blue);
  transform: translateY(-4px) rotate(6deg);
  box-shadow: 0 12px 30px var(--blue-glow);
}
.social:active { transform: translateY(-1px) scale(.94); }
.footer__base {
  border-top: 1px solid var(--line-soft);
  padding: 20px 0 26px;
  text-align: center;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--dim);
}

/* ---------- 18. INFO PAGES ---------- */
.doc { padding: calc(var(--bar-h) + var(--head-h) + 60px) 0 90px; }
.doc__head { margin-bottom: 46px; }
.doc__title { font-size: clamp(46px, 7vw, 96px); }
.doc__inner { max-width: 860px; }
.doc h3 { font-family: var(--display); font-size: 26px; text-transform: uppercase; color: var(--bone); margin: 42px 0 12px; }
.doc p, .doc li { font-size: 14px; letter-spacing: .08em; line-height: 2.05; color: var(--muted); }
.doc ul { margin: 0 0 18px 0; }
.doc ul li { position: relative; padding-left: 22px; }
.doc ul li::before { content: ""; position: absolute; left: 0; top: 14px; width: 9px; height: 1px; background: var(--blue); }
.doc a.inline { color: var(--bone); border-bottom: 1px solid var(--blue); transition: color .3s var(--ease); }
.doc a.inline:hover { color: var(--blue); }
.table { width: 100%; border-collapse: collapse; margin: 20px 0 30px; }
.table th, .table td {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; text-align: left;
}
.table th { color: var(--bone); background: rgba(222,215,198,.04); font-weight: 600; }
.table td { color: var(--muted); }
.table tbody tr { transition: background .3s var(--ease); }
.table tbody tr:hover { background: rgba(74,144,217,.06); }

.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.input {
  width: 100%;
  padding: 15px 16px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--bone);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.input::placeholder { color: var(--dim); }
.input:focus { border-color: var(--blue); box-shadow: 0 0 26px rgba(74,144,217,.14); }
textarea.input { min-height: 150px; resize: vertical; text-transform: none; letter-spacing: .06em; }

/* ---------- 19. BACK TO TOP ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 940;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: rgba(10,9,8,.85);
  color: var(--muted);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: #06131f; background: var(--blue); border-color: var(--blue); box-shadow: 0 12px 34px var(--blue-glow); }
.to-top:active { transform: scale(.93); }

/* ---------- 20. RESPONSIVE ---------- */
@media (max-width: 1180px) {
  :root { --pad: 30px; }
  .nav { gap: 30px; }
  .brand img { width: 260px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; row-gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .nav, .head-right .cart-label { display: none; }
  .burger { display: block; }
  .header__inner { grid-template-columns: auto 1fr; }
  .head-right { gap: 6px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; gap: 34px; }
  .archive-head { grid-template-columns: 1fr; gap: 26px; }
  .strip { grid-template-columns: 1fr; }
  .strip__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip__item:last-child { border-bottom: 0; }
  .split { grid-template-columns: 1fr; }
  .band { flex-direction: column; align-items: flex-start; }
  .section { padding: 60px 0; }
}
@media (max-width: 640px) {
  :root { --pad: 20px; --head-h: 74px; }
  .brand img { width: 208px; }
  .hero__title { font-size: clamp(52px, 16vw, 86px); }
  .hero .btn, .btn { min-width: 0; width: 100%; gap: 20px; }
  .hero__vignette { background: linear-gradient(0deg, rgba(6,5,4,.96) 12%, rgba(6,5,4,.35) 62%), radial-gradient(120% 120% at 50% 50%, transparent 40%, rgba(0,0,0,.8) 100%); }
  .grid { gap: 8px; }
  .gallery__thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .toolbar { gap: 14px; }
  .filters { gap: 2px; }
  .filter { padding: 10px 12px; font-size: 12px; }
  /* no hover on touch — show the label, stacked so nothing clips */
  .card__info {
    opacity: 1; transform: none;
    flex-direction: column; align-items: flex-start; gap: 3px;
    padding: 16px 13px;
  }
  .card__name { font-size: 12px; letter-spacing: .1em; }
  .card__price { font-size: 12px; }
  .card__quick { opacity: 1; transform: none; padding: 7px 10px; font-size: 9px; }
  .grid--archive .archive-cap { opacity: 1; font-size: 10px; }
  .footer__grid > *:last-child { grid-column: 1 / -1; }
  .footer__brand img { width: 176px; }
  .drawer__title { font-size: 22px; }
  .promo { min-height: 340px; padding: 26px; }
}
