:root {
  --ink: #07090b;
  --ink-2: #0b0e11;
  --panel: #0d1013;
  --panel-2: #111417;
  --panel-3: #161a1f;
  --line: #1d232a;
  --line-2: #2b333c;
  --text: #eef1f4;
  --text-2: #c3cad1;
  --muted: #8b939c;
  --muted-2: #6b737c;
  --white: #ffffff;
  --good: #57d98a;
  --warn: #f2b544;
  --bad: #f37272;
  --info: #6fa8ee;
  --wrap: 1280px;
  --gutter: 24px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --step: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 400 16px/1.65 var(--sans);
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, pre, fieldset, legend { margin: 0; padding: 0; }
ul, ol { list-style: none; }
fieldset { border: 0; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

::selection { background: var(--white); color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.skip {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--white);
  color: var(--ink);
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s var(--step);
}
.skip:focus { top: 12px; }

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

.hidden-form { display: none; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker {
  background: var(--white);
  color: var(--ink);
  text-align: center;
}
.ticker p {
  padding: 9px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7, 9, 11, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: none;
}
.brand__mark { width: 38px; height: auto; }
.brand__name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  padding: 6px 0;
  transition: color .18s var(--step);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--step);
}
.nav__link:hover, .nav__link.is-active { color: var(--white); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  text-decoration: none;
  padding: 6px 2px;
  transition: color .18s var(--step);
}
.nav__cart:hover, .nav__cart.is-active { color: var(--white); }
.nav__count {
  min-width: 20px;
  padding: 1px 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.burger {
  display: none;
  align-items: center;
  gap: 9px;
  background: none;
  border: 1px solid var(--line-2);
  padding: 9px 13px;
  cursor: pointer;
}
.burger__bar {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--white);
}
.burger__bar + .burger__bar { margin-top: -6px; }
.burger__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-left: 4px;
}

.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: 72% center;
  z-index: -2;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, .96) 0%, rgba(7, 9, 11, .9) 28%, rgba(7, 9, 11, .58) 50%, rgba(7, 9, 11, .12) 72%, rgba(7, 9, 11, .45) 100%),
    linear-gradient(180deg, rgba(7, 9, 11, .78) 0%, rgba(7, 9, 11, 0) 24%, rgba(7, 9, 11, 0) 60%, rgba(7, 9, 11, .92) 100%);
}
.hero__inner {
  padding-block: 90px 150px;
  max-width: 720px;
}
.hero__kicker {
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(52px, 8.4vw, 122px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 300;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--text-2);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__pillars {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(7, 9, 11, 0), rgba(7, 9, 11, .72));
}
.hero__pillars-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text-2);
}
.pillar svg { color: var(--white); flex: none; }
.pillar__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
}
.pillar__text {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s var(--step), color .2s var(--step), border-color .2s var(--step), transform .12s var(--step);
}
.btn:hover { background: var(--white); color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--white); color: var(--ink); }
.btn--solid:hover { background: transparent; color: var(--white); }
.btn--ghost { border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.btn--lg { padding: 17px 36px; font-size: 13px; }
.btn--sm { padding: 10px 18px; font-size: 11px; letter-spacing: .16em; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .2s var(--step); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.linkbtn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
  cursor: pointer;
  transition: color .18s var(--step), border-color .18s var(--step);
}
.linkbtn:hover { color: var(--white); border-color: var(--white); }

.section { padding-block: clamp(64px, 9vw, 118px); }
.section--tight { padding-block: clamp(44px, 6vw, 78px); }
.section--flush { padding-top: 0; }
.band {
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}
.section__head--center {
  justify-content: center;
  text-align: center;
  margin-bottom: 52px;
}
.section__head--center > div { max-width: 720px; }
.section__title {
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin-top: 12px;
}
.section__lede {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.7;
}
.section__link {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  transition: color .18s var(--step), border-color .18s var(--step);
}
.section__link:hover { color: var(--white); border-color: var(--white); }

.grid { display: grid; gap: 2px; }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); }
.grid--three { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color .22s var(--step), transform .22s var(--step);
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-2);
}
.card__media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  transition: transform .55s var(--step), opacity .3s var(--step);
}
.card:hover .card__media img { transform: scale(1.045); }
.card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.card__badge--out { background: var(--bad); color: var(--ink); left: auto; right: 12px; }
.card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.card__sku {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted-2);
}
.card__name { font-size: 18px; font-weight: 800; letter-spacing: .01em; }
.card__name a { text-decoration: none; }
.card__name a:hover { text-decoration: underline; text-underline-offset: 4px; }
.card__sub { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.card__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s var(--step);
}
.card:hover .card__cta { color: var(--white); }

.price { display: flex; align-items: baseline; gap: 10px; }
.price__value { font-size: 18px; font-weight: 800; }
.price__value--lg { font-size: 34px; }
.price__was {
  font-size: 13px;
  color: var(--muted-2);
  text-decoration: line-through;
}
.price__flag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--warn);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 1px solid var(--line);
}
.split__title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin-block: 14px 20px;
}
.split__body p { color: var(--text-2); margin-bottom: 16px; }
.split__body .btn { margin-top: 10px; }

.tile {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px 28px;
}
.tile__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.tile__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tile p { color: var(--text-2); font-size: 15px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}
.steps__item {
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 34px 28px;
}
.steps__num {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.steps__title {
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.steps__item p { color: var(--text-2); font-size: 15px; }
.band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 56px);
}
.feature__title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-block: 12px 6px;
}
.feature__sku {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.feature__text { color: var(--text-2); margin-bottom: 22px; }
.feature__foot {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.feature__media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 1px solid var(--line);
}

.ticks { display: grid; gap: 10px; }
.ticks li {
  position: relative;
  padding-left: 24px;
  color: var(--text-2);
  font-size: 15px;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 2px;
  background: var(--white);
}

.pagehead {
  padding-block: clamp(52px, 7vw, 92px) clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--ink));
}
.pagehead--slim { padding-block: clamp(40px, 5vw, 64px) clamp(22px, 3vw, 34px); }
.pagehead__title {
  font-size: clamp(38px, 6.5vw, 78px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: 14px;
}
.pagehead__lede {
  margin-top: 18px;
  max-width: 640px;
  color: var(--text-2);
  font-size: 17px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 18px;
  border: 1px solid var(--line-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-2);
  transition: background .18s var(--step), color .18s var(--step), border-color .18s var(--step);
}
.chip:hover { border-color: var(--white); color: var(--white); }
.chip.is-on { background: var(--white); border-color: var(--white); color: var(--ink); }

.sorter { display: flex; align-items: center; gap: 10px; }
.sorter label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

input[type="text"], input[type="email"], input[type="tel"], input[type="search"],
input[type="password"], input[type="number"], input[type="date"], select, textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 13px 14px;
  font-size: 15px;
  transition: border-color .18s var(--step), background .18s var(--step);
  appearance: none;
  border-radius: 0;
}
input:hover, select:hover, textarea:hover { border-color: #3a434d; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--white);
  background: var(--panel-2);
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% + 1px), calc(100% - 13px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.sorter select { width: auto; min-width: 190px; padding-block: 10px; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 24px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--white); }

.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4.5vw, 68px);
  padding-block: clamp(32px, 4vw, 56px) clamp(48px, 6vw, 84px);
  align-items: start;
}
.gallery { position: sticky; top: 104px; }
.gallery__stage {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.gallery__stage img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}
.gallery__thumbs {
  display: flex;
  gap: 2px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.gallery__thumb {
  flex: 0 0 84px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  transition: border-color .18s var(--step), opacity .18s var(--step);
  opacity: .62;
}
.gallery__thumb img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }
.gallery__thumb:hover { opacity: 1; }
.gallery__thumb.is-on { border-color: var(--white); opacity: 1; }

.detail__sku {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}
.detail__sku strong { color: var(--white); }
.detail__title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin-block: 12px 8px;
}
.detail__sub { color: var(--muted); font-size: 16px; }
.detail__price { display: flex; align-items: baseline; gap: 14px; margin-top: 24px; }
.detail__body {
  color: var(--text-2);
  margin-block: 22px 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.buy__sizes { margin-bottom: 22px; }
.buy__sizes legend {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.size span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 12px 10px;
  border: 1px solid var(--line-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .16s var(--step), color .16s var(--step), border-color .16s var(--step);
}
.size span:hover { border-color: var(--white); }
.size input:checked + span { background: var(--white); border-color: var(--white); color: var(--ink); }
.size input:focus-visible + span { outline: 2px solid var(--white); outline-offset: 3px; }

.buy__row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field__hint { font-size: 12px; color: var(--muted-2); margin-top: 7px; }
.field__error { font-size: 12px; color: var(--bad); margin-top: 7px; font-weight: 600; }
.req { color: var(--white); }
.opt { color: var(--muted-2); letter-spacing: .1em; }
.buy__note { font-size: 13px; color: var(--muted); margin-top: 16px; }

.accordion { margin-top: 34px; border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item summary {
  padding: 18px 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}
.accordion__item[open] summary::after { content: "\2013"; }
.accordion__item > *:not(summary) { padding-bottom: 22px; color: var(--text-2); font-size: 15px; }
.accordion__item p + p { margin-top: 12px; }

.spec { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.spec__row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  background: var(--panel);
  padding: 13px 16px;
}
.spec dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec dd { font-size: 14px; }

.cartgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}

.linetable { border: 1px solid var(--line); }
.linetable thead th {
  background: var(--panel);
  padding: 13px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.linetable tbody th, .linetable tbody td {
  padding: 16px;
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.linetable tbody tr:last-child th, .linetable tbody tr:last-child td { border-bottom: 0; }
.linetable--flat { border: 0; border-top: 1px solid var(--line); }
.linetable--flat thead th { background: none; padding-inline: 0; }
.linetable--flat tbody th, .linetable--flat tbody td { padding-inline: 0; }
.linetable__x { width: 92px; text-align: right; }

.lineitem { display: flex; align-items: center; gap: 14px; }
.lineitem img {
  width: 64px;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 1px solid var(--line);
  flex: none;
}
.lineitem__name { font-size: 15px; font-weight: 700; }
.lineitem__meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 4px;
}
.qtybox { width: 78px; padding: 9px 10px; text-align: center; }

.cartlist__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.summary {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 24px;
}
.summary--sticky { position: sticky; top: 104px; }
.summary__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.summary__items { display: grid; gap: 14px; margin-bottom: 20px; }
.summary__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.summary__item img {
  width: 46px;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 1px solid var(--line);
}
.summary__name { font-size: 14px; font-weight: 700; }
.summary__meta { font-family: var(--mono); font-size: 10px; color: var(--muted-2); margin-top: 3px; }
.summary__amt { font-size: 14px; font-weight: 700; white-space: nowrap; }
.summary__rows { display: grid; gap: 11px; padding-top: 18px; border-top: 1px solid var(--line); }
.summary__rows--flat { border-top: 0; }
.summary__rows > div { display: flex; justify-content: space-between; gap: 16px; }
.summary__rows dt { font-size: 14px; color: var(--muted); }
.summary__rows dd { font-size: 14px; color: var(--text-2); }
.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  margin-bottom: 20px;
}
.summary__total span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.summary__total strong { font-size: 27px; font-weight: 900; }
.summary__hint { font-size: 12px; color: var(--warn); margin-bottom: 16px; }
.summary__fine { font-size: 12px; color: var(--muted-2); line-height: 1.6; margin-top: 16px; }
.summary__edit { display: inline-block; margin-top: 16px; }

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 388px;
  gap: clamp(24px, 3.5vw, 52px);
  align-items: start;
}
.block {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 2px;
}
.block__legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: 100%;
  padding-bottom: 24px;
}
.block__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  background: var(--white);
  padding: 4px 8px;
  letter-spacing: .08em;
}
.fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field--wide { grid-column: 1 / -1; }
.field--qty { grid-column: auto; }

.recap {
  margin-block: 24px;
  border: 1px solid var(--line-2);
  background: var(--ink-2);
  padding: 20px;
}
.recap__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.recap__list { display: grid; gap: 10px; }
.recap__list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 60px 90px;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.recap__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.recap__sku { font-family: var(--mono); font-size: 11px; color: var(--white); }
.recap__name { color: var(--text-2); }
.recap__qty { color: var(--muted); }
.recap__amt { text-align: right; font-weight: 700; }

.check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 24px;
}
.check input[type="checkbox"], .acheck input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: #ffffff;
  cursor: pointer;
  appearance: auto;
}
.check label { font-size: 14px; color: var(--text-2); line-height: 1.6; cursor: pointer; }
.checkout__fine { font-size: 12px; color: var(--muted-2); margin-top: 16px; line-height: 1.6; }

.checkout__aside { display: grid; gap: 2px; }
.assure {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 24px;
}
.assure__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.assure__list { display: grid; gap: 11px; counter-reset: assure; }
.assure__list li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  color: var(--text-2);
  counter-increment: assure;
}
.assure__list li::before {
  content: counter(assure);
  position: absolute;
  left: 0; top: 1px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  border: 1px solid var(--line-2);
  width: 20px; height: 20px;
  display: grid;
  place-items: center;
}
.assure__contact { margin-top: 18px; font-size: 13px; color: var(--muted); }
.assure__contact a { color: var(--white); }

.done {
  padding-block: clamp(54px, 8vw, 100px) clamp(30px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--ink));
}
.done__inner { max-width: 700px; }
.done__seal {
  width: 68px; height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--white);
  color: var(--white);
  margin-bottom: 26px;
}
.done__title {
  font-size: clamp(34px, 5.6vw, 66px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-block: 14px 18px;
}
.done__lede { color: var(--text-2); font-size: 17px; }
.refbox {
  margin-top: 32px;
  border: 1px solid var(--line-2);
  background: var(--ink-2);
  padding: 22px 26px;
  display: inline-block;
}
.refbox__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.refbox__value {
  font-family: var(--mono);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: .06em;
  margin-block: 8px 6px;
}
.refbox__hint { font-size: 12px; color: var(--muted-2); }
.done__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.receipt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.receipt__head {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.receipt__side { display: grid; gap: 2px; }
.summary__total--flat { border-top-color: var(--line-2); }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px 22px;
}
.panel__head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.panel__text, .panel__address { font-size: 14px; color: var(--text-2); font-style: normal; line-height: 1.7; }
.panel__meta { font-size: 12px; color: var(--muted-2); margin-top: 8px; }
.panel__strong { font-size: 16px; font-weight: 700; margin-block: 6px; }
.panel a { color: var(--white); }

.tag {
  display: inline-block;
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}
.tag--lg { font-size: 11px; padding: 8px 14px; }
.tone-good { color: var(--good); }
.tone-info { color: var(--info); }
.tone-warn { color: var(--warn); }
.tone-bad { color: var(--bad); }
.tone-neutral { color: var(--muted); }

.process { display: grid; gap: 2px; }
.process__step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px 30px;
  align-items: start;
}
.process__num {
  font-family: var(--mono);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--line-2);
  line-height: 1;
}
.process__title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.process__step p { color: var(--text-2); margin-bottom: 12px; }

.quick {
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px);
}
.quick__table thead th {
  text-align: left;
  padding: 0 12px 12px 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.quick__table td { padding: 6px 12px 6px 0; vertical-align: middle; }
.quick__table td:last-child { padding-right: 0; width: 130px; }
.quick__table td:nth-child(2) { width: 150px; }
.quick__foot {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.quick__hint { font-size: 13px; color: var(--muted); flex: 1; min-width: 240px; }

.template {
  margin-block: 24px;
  border: 1px solid var(--line-2);
  background: var(--ink-2);
}
.template__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.template__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.template__body {
  margin: 0;
  padding: 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text-2);
  overflow-x: auto;
  white-space: pre;
}
.mail { color: var(--white); }
.fineprint { font-size: 13px; color: var(--muted-2); line-height: 1.7; }

.faq { max-width: 860px; }
.faq .section__title { margin-bottom: 26px; }
.faq .accordion__item:first-of-type { border-top: 1px solid var(--line); }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.contact__form {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
}
.contact__form .fields { margin-bottom: 24px; }
.contact__side { display: grid; gap: 2px; }

.hero-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 52px);
}
.callout__actions { display: grid; gap: 12px; }

.prose { max-width: 780px; }
.prose h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-block: 38px 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-2); margin-bottom: 14px; }
.prose ul { display: grid; gap: 9px; margin-bottom: 16px; }
.prose li {
  position: relative;
  padding-left: 22px;
  color: var(--text-2);
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 2px;
  background: var(--muted);
}
.prose a { color: var(--white); }
.prose code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 1px 6px;
}
.prose__contact { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }

.notice {
  padding: 15px 18px;
  border: 1px solid var(--line-2);
  font-size: 14px;
  margin-bottom: 26px;
  color: var(--text-2);
}
.notice ul { margin-top: 8px; display: grid; gap: 5px; }
.notice li { padding-left: 16px; position: relative; }
.notice li::before { content: "\2022"; position: absolute; left: 2px; }
.notice--good { border-color: rgba(87, 217, 138, .45); color: var(--good); }
.notice--warn { border-color: rgba(242, 181, 68, .45); color: var(--warn); }
.notice--bad { border-color: rgba(243, 114, 114, .5); color: var(--bad); }
.notice--soft { border-style: dashed; color: var(--muted); margin-top: 34px; margin-bottom: 0; }

.empty, .aempty {
  padding: 44px 0;
  text-align: center;
  color: var(--muted);
}
.empty-state {
  border: 1px dashed var(--line-2);
  padding: clamp(40px, 6vw, 76px) 24px;
  text-align: center;
}
.empty-state__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.empty-state p { color: var(--muted); max-width: 460px; margin-inline: auto; margin-bottom: 26px; }

.footer {
  border-top: 1px solid var(--line);
  background: var(--panel);
  padding-top: clamp(48px, 6vw, 74px);
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}
.footer__mark { width: 44px; margin-bottom: 18px; }
.footer__line {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer__note { font-size: 14px; color: var(--muted); max-width: 320px; }
.footer__col { display: grid; gap: 11px; align-content: start; }
.footer__head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 5px;
}
.footer__col a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color .18s var(--step);
  width: fit-content;
}
.footer__col a:hover { color: var(--white); }
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted-2);
}
.footer__base a { color: var(--muted); text-decoration: none; }
.footer__base a:hover { color: var(--white); }

.page-error { display: grid; place-items: center; min-height: 100vh; }
.stack-error { text-align: center; max-width: 560px; }
.stack-error__code {
  font-family: var(--mono);
  font-size: 74px;
  font-weight: 700;
  color: var(--line-2);
  line-height: 1;
}
.stack-error__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-block: 16px 14px;
}
.stack-error__text { color: var(--muted); margin-bottom: 30px; }
.stack-error__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1080px) {
  .cartgrid, .checkout, .receipt, .contact { grid-template-columns: minmax(0, 1fr); }
  .summary--sticky, .gallery { position: static; }
  .product { grid-template-columns: minmax(0, 1fr); }
  .feature, .callout { grid-template-columns: minmax(0, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    padding: 96px 24px 34px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-102%);
    transition: transform .3s var(--step);
    z-index: -1;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .nav__link::after { display: none; }
  .nav__cart { padding: 18px 0; }
  .split, .split--reverse .split__media { grid-template-columns: minmax(0, 1fr); order: 0; }
  .split { grid-template-columns: minmax(0, 1fr); }
  .hero__pillars { position: static; background: var(--panel); border-top: 1px solid var(--line); }
  .hero__inner { padding-block: 74px 60px; }
  .hero { min-height: auto; }
  .hero__media { background-image: url("../img/hero-mobile.jpg"); background-position: 62% center; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(7, 9, 11, .8) 0%, rgba(7, 9, 11, .55) 40%, rgba(7, 9, 11, .95) 100%);
  }
  .process__step { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .recap__list li { grid-template-columns: minmax(0, 1fr) auto; row-gap: 4px; }
  .recap__name { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .fields { grid-template-columns: minmax(0, 1fr); }
  .buy__row { grid-template-columns: minmax(0, 1fr); }
  .toolbar { align-items: stretch; }
  .sorter { width: 100%; }
  .sorter select { flex: 1; min-width: 0; }
  .footer__inner { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .grid--cards { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

  .linetable, .linetable thead { border: 0; }
  .linetable thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .linetable tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    border: 1px solid var(--line);
    padding: 16px;
    margin-bottom: 2px;
  }
  .linetable tbody th, .linetable tbody td { border: 0; padding: 0; }
  .linetable tbody th { grid-column: 1 / -1; }
  .linetable tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 4px;
  }
  .linetable__x { grid-column: 1 / -1; text-align: left; width: auto; }

  .quick__table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .quick__table tbody tr {
    display: grid;
    gap: 10px;
    border: 1px solid var(--line);
    padding: 14px;
    margin-bottom: 2px;
  }
  .quick__table td { padding: 0; width: auto !important; }
  .quick__table td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
