:root {
  --paper: #f7f7f4;
  --white: #ffffff;
  --ink: #171717;
  --muted: #68665f;
  --line: #d8d7d0;
  --soft: #eeeeea;
  --chipboard: #b18c62;
  --red: #c91922;
  --red-dark: #a81219;
  --green: #24523f;
  --max: 1440px;
  --gutter: clamp(18px, 4.2vw, 64px);
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.lock { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { border-radius: 0; }
[hidden] { display: none !important; }
.shell { width: min(var(--max), calc(100% - 2 * var(--gutter))); margin-inline: auto; }

.skip {
  position: fixed;
  left: 14px;
  top: 8px;
  z-index: 400;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
}
.skip:focus { transform: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.site-header {
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  text-decoration: none;
  font-weight: 850;
  font-size: 22px;
  letter-spacing: -.045em;
}
.brand img { width: 25px; height: 30px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a,
.cart-button,
.menu-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.desktop-nav a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.cart-button { justify-self: end; }
.menu-button { display: none; }
.mobile-nav { display: none; }

.hero {
  min-height: 0;
  padding: 0;
  background: #d3c2aa;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  width: 100%;
  max-width: none;
  min-height: 0;
  aspect-ratio: 16 / 9;
  position: relative;
}
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(247,247,244,.97) 0%, rgba(247,247,244,.94) 28%, rgba(247,247,244,.72) 36%, rgba(247,247,244,0) 49%);
}
.hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  background: #d3c2aa url('/images/hero/vectorninja-slideshow-closeout-poster.jpg') center / cover no-repeat;
  overflow: hidden;
}
.hero-fallback,
.hero-fallback img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-fallback { z-index: 1; }
.hero-fallback img { object-fit: cover; object-position: center 48%; }
.hero-video {
  z-index: 2;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .22s ease;
  background: #d3c2aa;
}
.hero-media.media-playing .hero-video { opacity: 1; }
.hero-copy {
  position: absolute;
  z-index: 4;
  left: var(--gutter);
  top: clamp(54px, 9vh, 104px);
  width: min(470px, 38vw);
}
.hero-copy .eyebrow,
.section-head > .eyebrow,
.contact-copy > .eyebrow,
.drop-copy > .eyebrow,
.purchase > .eyebrow { display: none; }
.hero-copy h1 {
  max-width: 12ch;
  margin: 0 0 22px;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: .98;
  letter-spacing: -.058em;
}
.hero-copy .lead { display: none; }
.hero-media-toggle {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.85);
  background: rgba(23,23,23,.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.hero-media-toggle:hover { background: var(--white); color: var(--ink); }

.btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
}
.btn.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.btn:hover { background: var(--ink); color: var(--white); }
.btn.primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn:disabled { opacity: .48; cursor: not-allowed; }

.value-ledger { display: none; }
.section { padding-block: clamp(78px, 8vw, 124px); }
#shop { background: var(--white); }
.section-head {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(560px, 1.4fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
  margin-bottom: 52px;
}
.section-head h2,
.contact-copy h2,
.drop-copy h2,
.material-proof h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: .98;
  letter-spacing: -.052em;
}
.section-head > div { grid-column: 1 / -1; display: grid; grid-template-columns: .72fr 1.4fr; gap: clamp(48px, 8vw, 130px); }
.section-head > div h2 { max-width: 9ch; }
.section-head > div > p { margin: 4px 0 0; max-width: 62ch; color: var(--muted); font-size: 13px; line-height: 1.55; align-self: end; }

.release-ledger { border-top: 1px solid var(--ink); }
.release {
  min-height: 160px;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(260px, 1.15fr) minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.release-meta { margin: 0; color: var(--muted); font-size: 13px; }
.release h3 { margin: 0; font-size: clamp(24px, 2.3vw, 36px); letter-spacing: -.04em; }
.release > p:not(.release-meta) { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.release-foot { min-width: 150px; display: grid; justify-items: end; gap: 15px; }
.release .price { font-size: 25px; font-weight: 760; }

.material-proof {
  padding: 0 var(--gutter) clamp(72px, 8vw, 110px);
  background: var(--paper);
}
.material-proof > img {
  width: 100%;
  height: min(60vw, 740px);
  object-fit: cover;
  object-position: center;
}
.material-proof-copy { padding-top: 28px; }
.material-proof h2 { max-width: 11ch; }

.faq-section { background: var(--paper); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  font-size: 17px;
  font-weight: 720;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex: 0 0 auto; font-size: 23px; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { max-width: 72ch; margin: -4px 0 28px; color: var(--muted); line-height: 1.6; }

.contact-section { background: var(--ink); color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(480px, 1.2fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}
.contact-copy h2 { max-width: 10ch; }
.contact-copy p { max-width: 50ch; color: #c9c6bf; line-height: 1.6; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field > span:first-child { font-size: 13px; font-weight: 740; }
.field input,
.field textarea,
.variant-block select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #706d66;
  background: transparent;
  color: inherit;
  padding: 12px 14px;
  border-radius: 0;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #9f9c95; opacity: 1; }
.form-status,
.variant-status,
.cart-status,
.drop-note { min-height: 20px; line-height: 1.45; }
.form-status.success { color: #9cc8af; }
.variant-status.success,
.drop-note.success,
.cart-status[data-state="success"] { color: var(--green); }
.form-status.error { color: #ff9a9e; }
.variant-status.error,
.drop-note.error,
.cart-status[data-state="error"] { color: #8f1217; }
.cart-status[data-state="loading"] { color: var(--muted); }
.legal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 42px;
  border-top: 1px solid #514e48;
  border-bottom: 1px solid #514e48;
}
.legal { padding: 24px 24px 24px 0; }
.legal + .legal { border-left: 1px solid #514e48; padding-left: 24px; }
.legal h3 { margin: 0 0 12px; font-size: 15px; }
.legal p { margin: 0; color: #b8b4ac; font-size: 12px; line-height: 1.55; }

.drop-section { padding: clamp(72px, 8vw, 110px) 0; background: var(--white); }
.drop-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: start;
}
.drop-copy h2 { max-width: 11ch; }
.drop-copy > p { color: var(--muted); line-height: 1.55; }
.drop-form { border-top: 1px solid var(--ink); padding-top: 28px; }
.drop-form .field input { color: var(--ink); border-color: var(--ink); }
.inline-row { display: grid; grid-template-columns: 1fr auto; }
.inline-row .btn { min-width: 170px; }
.drop-form .drop-note { color: var(--muted); font-size: 12px; }

.outcome-proof { padding: 0 var(--gutter) var(--gutter); background: var(--paper); }
.outcome-proof img { width: 100%; height: min(70vw, 800px); object-fit: cover; object-position: center 58%; }

.site-footer { padding: 58px 0 30px; background: var(--ink); color: var(--white); border-top: 1px solid #514e48; }
.footer-lean { display: flex; justify-content: space-between; gap: 48px; align-items: flex-start; }
.footer-brand p { color: #bdb9b1; font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; color: #c9c6bf; font-size: 14px; }
.social-link { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.social-icon { width: 18px; height: 18px; color: var(--red); }
.disclaimer { margin-top: 40px; padding-top: 24px; border-top: 1px solid #514e48; color: #97938b; font-size: 11px; line-height: 1.5; }

.cart,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  background: rgba(23,23,23,.64);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease;
}
.cart { justify-content: flex-end; overflow: hidden; }
.lightbox { align-items: center; justify-content: center; padding: 22px; }
.cart.open,
.lightbox.open { opacity: 1; visibility: visible; }
.cart-panel {
  width: min(540px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .22s ease;
}
.cart.open .cart-panel { transform: translateX(0); }
.dialog-head {
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.dialog-head h2 { margin: 0; font-size: 28px; letter-spacing: -.04em; }
.icon { width: 44px; height: 44px; border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.cart-status { margin: 0; padding: 16px 24px; background: var(--soft); font-size: 13px; }
.cart-items { overflow: auto; padding: 4px 24px; }
.cart-item { position: relative; padding: 24px 0 28px; border-bottom: 1px solid var(--line); }
.cart-item-type { margin: 0 0 8px; color: var(--red-dark); font-size: 11px; font-weight: 780; }
.cart-item > strong { display: block; padding-right: 76px; font-size: 25px; letter-spacing: -.035em; }
.cart-item dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0 0; }
.cart-item dl div { display: grid; gap: 5px; }
.cart-item dt { color: var(--muted); font-size: 10px; font-weight: 760; text-transform: uppercase; letter-spacing: .06em; }
.cart-item dd { margin: 0; font-weight: 730; }
.cart-remove { position: absolute; top: 20px; right: 0; min-height: 44px; border: 0; background: transparent; color: var(--muted); text-decoration: underline; cursor: pointer; }
.cart-summary { padding: 20px 24px; border-top: 1px solid var(--ink); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 6px 16px; }
.cart-summary > span { font-size: 12px; font-weight: 760; }
.cart-summary > strong { font-size: 30px; letter-spacing: -.04em; }
.cart-summary > small { grid-column: 1 / -1; color: var(--muted); }
.cart-actions { padding: 0 24px 24px; display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.cart-actions [data-checkout] { grid-column: 1 / -1; min-height: 54px; }
.cart-actions [data-clear] { border: 0; justify-self: start; padding: 0; text-decoration: underline; color: var(--muted); }
.cart-actions .drop-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 11px; }

.detail-main { padding: 0; background: var(--white); }
.detail-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(400px, .72fr);
  gap: 0;
  align-items: start;
}
.gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
  background: var(--soft);
  border-right: 1px solid var(--line);
}
.thumbs {
  grid-row: 1;
  display: grid;
  align-content: start;
  padding: 12px;
  gap: 10px;
  background: var(--white);
}
.thumb {
  width: 70px;
  height: 70px;
  padding: 7px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.thumb[aria-current="true"] { border: 2px solid var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery-stage { grid-column: 2; min-height: calc(100svh - 72px); display: grid; place-items: center; }
.gallery-stage button { width: 100%; height: 100%; min-height: calc(100svh - 72px); border: 0; background: transparent; cursor: zoom-in; }
.gallery-stage img { width: 100%; height: calc(100svh - 72px); object-fit: contain; padding: clamp(38px, 6vw, 100px); }
.gallery-cue { display: none; }
.gallery-note { grid-column: 2; margin: 0; padding: 16px 30px; color: var(--muted); font-size: 12px; line-height: 1.45; background: var(--white); border-top: 1px solid var(--line); }
.purchase {
  position: sticky;
  top: 72px;
  min-height: calc(100svh - 72px);
  padding: clamp(38px, 4.2vw, 66px) clamp(28px, 3.6vw, 54px);
  background: var(--white);
}
.purchase h1 { margin: 0 0 14px; font-size: clamp(42px, 4vw, 60px); line-height: .98; letter-spacing: -.055em; }
.purchase > .price { margin-bottom: 24px; font-size: 26px; font-weight: 760; }
.product-copy { margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.spec-list { margin: 0 0 22px; padding-left: 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.variant-block { padding-top: 18px; border-top: 1px solid var(--ink); }
.variant-block label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 760; }
.variant-block select { min-height: 48px; border-color: var(--ink); color: var(--ink); background: var(--white); }
.size-help { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.variant-status { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.retry-link { min-height: 40px; margin-left: 6px; border: 0; background: transparent; text-decoration: underline; cursor: pointer; }
.product-actions { margin-top: 16px; display: grid; grid-template-columns: 1fr; gap: 10px; }
.product-actions .btn { width: 100%; }
.decision-notes { margin-top: 22px; border-top: 1px solid var(--line); }
.decision-notes span { display: grid; grid-template-columns: 84px 1fr; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.4; }
.decision-notes b { color: var(--ink); }
.compat-note { margin: 18px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.pdp-support { margin-top: 0; }

.lightbox-panel { width: min(1120px, 96vw); height: min(880px, 94vh); display: grid; grid-template-rows: auto 1fr auto; background: var(--white); }
.lightbox-viewport { overflow: hidden; display: grid; place-items: center; background: var(--soft); touch-action: none; }
.lightbox-image { max-width: 88%; max-height: 76vh; transform-origin: center; transition: transform .15s ease; cursor: zoom-in; touch-action: none; user-select: none; -webkit-user-drag: none; }
.lightbox-image.zoomed { cursor: grab; }
.lightbox-foot { padding: 14px 24px; display: flex; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.success-page { min-height: 100svh; padding: var(--gutter); display: grid; place-items: center; background: var(--ink); color: var(--white); }
.success-inner { width: min(900px, 100%); padding: clamp(34px, 6vw, 72px); border-top: 4px solid var(--red); background: var(--ink); }
.success-inner .brand { margin-bottom: clamp(70px, 10vw, 110px); }
.success-inner h1 { margin: 0; max-width: 10ch; font-size: clamp(52px, 8vw, 104px); line-height: .92; letter-spacing: -.06em; }
.success-inner > p { max-width: 60ch; color: #c9c6bf; font-size: 17px; line-height: 1.55; }
.success-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.success-note { padding-top: 20px; border-top: 1px solid #514e48; font-size: 13px !important; }

@media (max-width: 900px) {
  .site-header { height: 64px; }
  .header-inner { grid-template-columns: 1fr auto auto; gap: 16px; }
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-nav {
    position: fixed;
    inset: 64px 0 0;
    z-index: 99;
    display: grid;
    align-content: start;
    padding: 28px var(--gutter) 40px;
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav-intro { display: none; }
  .mobile-nav a,
  .mobile-nav button {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 0;
    border-bottom: 1px solid #514e48;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 720;
    text-align: left;
  }
  .mobile-nav a > span,
  .mobile-nav button > span:first-child { width: 26px; color: #969188; font-size: 11px; }
  .hero, .hero-grid { min-height: 0; }
  .section-head { grid-template-columns: 1fr; }
  .section-head > div { grid-template-columns: 1fr; gap: 22px; }
  .section-head > div > p { max-width: 70ch; }
  .release { grid-template-columns: .7fr 1.3fr auto; }
  .release > p:not(.release-meta) { display: none; }
  .release-foot { min-width: 124px; }
  .contact-grid, .drop-grid { grid-template-columns: 1fr; }
  .legal-row { grid-template-columns: 1fr; }
  .legal + .legal { border-left: 0; border-top: 1px solid #514e48; padding-left: 0; }
  .footer-lean { display: grid; }
  .footer-links { justify-content: flex-start; }

  .detail-grid { display: flex; flex-direction: column; }
  .gallery { display: contents; }
  .gallery-stage { order: 0; width: 100%; min-height: 360px; background: var(--soft); }
  .gallery-stage button { min-height: 360px; }
  .gallery-stage img { height: 360px; padding: 42px; }
  .gallery-cue { order: 1; width: 100%; display: flex; justify-content: space-between; margin: 0; padding: 14px var(--gutter); background: var(--white); color: var(--muted); font-size: 11px; font-weight: 720; }
  .thumbs { order: 2; width: 100%; display: flex; overflow-x: auto; gap: 10px; padding: 10px var(--gutter) 14px; scroll-snap-type: x mandatory; background: var(--white); }
  .purchase { order: 3; position: static; width: 100%; min-height: 0; padding: 34px var(--gutter) 54px; }
  .thumb { flex: 0 0 78px; width: 78px; height: 78px; scroll-snap-align: start; }
  .gallery-note { order: 4; width: 100%; padding: 14px var(--gutter); border-bottom: 1px solid var(--line); }
  .pdp-support { order: 5; margin-top: 0; }
}

@media (max-width: 700px) {
  .site-header { height: 60px; }
  .header-inner { gap: 13px; }
  .brand { font-size: 18px; }
  .brand img { width: 21px; height: 26px; }
  .menu-button, .cart-button { font-size: 12px; }
  .mobile-nav { inset: 60px 0 0; }

  .hero { min-height: 0; background: var(--white); overflow: visible; }
  .hero-grid { min-height: 0; aspect-ratio: auto; display: flex; flex-direction: column; }
  .hero-grid::after { display: none; }
  .hero-media { order: 0; position: relative; inset: auto; width: 100%; height: auto; min-height: 0; aspect-ratio: 16 / 9; background-image: url('/images/hero/vectorninja-slideshow-closeout-poster-mobile.jpg'); }
  .hero-fallback img { object-position: center 48%; }
  .hero-video { object-fit: cover; object-position: center; }
  .hero-copy { order: 1; position: relative; left: auto; top: auto; width: auto; padding: 18px var(--gutter) 24px; background: var(--white); }
  .hero-copy h1 { max-width: 13ch; margin-bottom: 11px; font-size: clamp(32px, 9vw, 39px); line-height: 1; }
  .hero-copy .lead { display: block; margin: 0 0 15px; font-size: 12px; line-height: 1.38; }
  .hero-copy .btn { width: 100%; }
  .hero-media-toggle { right: 12px; bottom: 12px; }

  .section { padding-block: 68px; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head > div { display: block; }
  .section-head h2 { font-size: 39px; }
  .section-head > div > p { margin-top: 18px; font-size: 11px; }
  .release { min-height: 0; grid-template-columns: 1fr auto; gap: 8px 16px; padding: 24px 0; }
  .release-meta { grid-column: 1 / -1; }
  .release h3 { font-size: 23px; }
  .release-foot { grid-column: 1 / -1; width: 100%; display: flex; justify-content: space-between; align-items: center; }
  .release .btn { min-width: 150px; }

  .material-proof { padding-inline: 18px; padding-bottom: 50px; }
  .material-proof > img { height: 64vw; min-height: 260px; object-position: 54% center; }
  .material-proof-copy { padding-top: 18px; }
  .material-proof h2 { font-size: 34px; }

  .faq-item summary { font-size: 15px; }
  .faq-item p { font-size: 14px; }
  .contact-grid { gap: 42px; }
  .contact-copy h2, .drop-copy h2 { font-size: 42px; }
  .drop-grid { gap: 34px; }
  .inline-row { grid-template-columns: 1fr; }
  .inline-row .btn { width: 100%; }
  .outcome-proof { padding-inline: 18px; padding-bottom: 18px; }
  .outcome-proof img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
  .footer-links { display: grid; grid-template-columns: repeat(2, max-content); gap: 8px 28px; }

  .gallery-stage { min-height: 230px; }
  .gallery-stage button { min-height: 230px; }
  .gallery-stage img { height: 230px; padding: 22px; }
  .gallery-cue { padding-block: 10px; }
  .thumbs { padding-block: 8px 10px; }
  .thumb { flex-basis: 68px; width: 68px; height: 68px; }
  .gallery-note { display: none; }
  .purchase { padding-top: 22px; }
  .purchase h1 { font-size: 36px; margin-bottom: 10px; }
  .purchase > .price { margin-bottom: 14px; font-size: 22px; }
  .product-copy { margin-bottom: 14px; font-size: 13px; line-height: 1.4; }
  .spec-list { margin-bottom: 14px; font-size: 11px; line-height: 1.38; }
  .variant-block { padding-top: 13px; }
  .size-help { font-size: 10px; }
  .product-actions { margin-top: 12px; }
  .decision-notes { margin-top: 18px; }
  .compat-note { font-size: 9px; }

  .cart-status, .cart-items, .cart-summary { padding-inline: 20px; }
  .cart-actions { padding-inline: 20px; padding-bottom: 20px; }
  .lightbox { padding: 0; }
  .lightbox-panel { width: 100%; height: 100%; }
  .lightbox-foot { display: grid; }
  .success-page { padding: 12px; }
  .success-inner { padding: 28px 22px; }
  .success-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-video { display: none; }
  .hero-media-toggle { display: none; }
}

@media (forced-colors: active) {
  .btn, .thumb, .field input, .field textarea, .variant-block select { border: 1px solid ButtonText; }
  .btn.primary { forced-color-adjust: none; background: Highlight; color: HighlightText; }
}
