:root {
  --paper: #ffffff;
  --paper-bright: #ffffff;
  --paper-deep: #f2f2f2;
  --ink: #090909;
  --muted: #6f6f6f;
  --line: #151515;
  --soft-line: rgba(9, 9, 9, 0.16);
  --veil: rgba(255, 255, 255, 0.92);
  --drawer-backdrop: rgba(255, 255, 255, 0.52);
  --accent: #7d0b0b;
  --black: #000000;
  --header-height: 92px;
  --page-gutter: clamp(16px, 3vw, 44px);
  --font-display: 'Unbounded', 'Space Grotesk', Arial, Helvetica, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-ui: 'Space Grotesk', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
  text-rendering: geometricPrecision;
}

html,
body {
  overflow-x: hidden;
}

body::selection {
  background: var(--ink);
  color: var(--paper-bright);
}

body.is-intro-route {
  background: var(--black);
}

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

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

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.size-select:focus,
.size-select:focus-visible {
  border-color: var(--ink);
  outline: none;
  box-shadow: none;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(58px, 120px) minmax(0, 1fr) minmax(116px, 168px);
  align-items: center;
  height: var(--header-height);
  padding: 0 22px;
  background: var(--veil);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.brand {
  position: absolute;
  left: 50%;
  justify-self: center;
  transform: translateX(-50%);
}

.brand img {
  width: min(640px, 70vw);
  max-width: min(640px, 70vw);
  max-height: 108px;
  object-fit: contain;
}

.header-actions {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.text-icon,
.icon-button,
.asset-icon-button,
.overlay-close {
  background: none;
  border: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.asset-icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
}

.asset-icon-button svg {
  width: 29px;
  height: 29px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.cart-link svg {
  stroke-width: 3.4;
}

.asset-icon-button .pdf-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: contrast(1.35);
}

.catalog-pdf-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
}

.catalog-pdf-icon span {
  position: absolute;
  display: block;
  height: 1.4px;
  background: var(--ink);
  transform-origin: center;
}

.catalog-cross-icon span:nth-child(1) {
  left: 10px;
  top: 16px;
  width: 14px;
}

.catalog-cross-icon span:nth-child(2) {
  left: 2px;
  top: 16px;
  width: 30px;
  transform: rotate(90deg);
}

.cart-link span {
  position: absolute;
  right: -3px;
  bottom: 2px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 9px;
  line-height: 1;
}

.cart-link span[hidden] {
  display: none;
}

.asset-icon-button:hover svg {
  transform: rotate(-8deg) scale(1.08);
}

.text-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.text-icon:hover,
.overlay-close:hover,
.overlay-grid a:hover {
  color: var(--accent);
}

.icon-button {
  display: grid;
  gap: 6px;
  width: 42px;
  padding: 10px 0;
}

.icon-button span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 160ms ease, width 160ms ease;
}

.icon-button span:nth-child(2) {
  width: 74%;
}

.icon-button:hover span:nth-child(1) {
  transform: translateX(8px);
}

.icon-button:hover span:nth-child(2) {
  width: 100%;
}

.app-shell {
  min-height: calc(100vh - var(--header-height));
}

.intro-gate {
  min-height: calc(100vh - var(--header-height));
  background: var(--black);
}

.intro-video-link {
  position: relative;
  display: block;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  color: var(--paper);
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.22) brightness(0.7);
  transform: scale(1.02);
}

.intro-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.38));
}

.intro-copy {
  position: absolute;
  left: clamp(22px, 6vw, 86px);
  bottom: clamp(34px, 8vw, 96px);
  width: min(920px, 86vw);
}

.intro-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.intro-copy h1 {
  margin: 0;
  max-width: 960px;
  font-family: var(--font-display);
  font-size: clamp(44px, 10vw, 138px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.intro-copy span {
  display: inline-block;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.app-shell:focus {
  outline: 0;
}

.page {
  width: min(1480px, calc(100vw - var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.product-detail-page {
  padding-top: 16px;
}

.related-products {
  padding-top: clamp(40px, 6vw, 80px);
}

.related-heading {
  margin: 0 0 28px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.back-to-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 56px);
}

.back-to-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.back-to-all svg {
  width: 18px;
  height: 18px;
}

.back-to-all:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(46px, 9vw, 142px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.split-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: end;
  min-height: calc(100vh - var(--header-height));
}

.artifact-frame {
  display: grid;
  place-items: center;
  min-height: 620px;
  overflow: hidden;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  box-shadow: 20px 20px 0 var(--ink);
}

.artifact-frame img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
}

.hero-copy {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.8;
  text-transform: uppercase;
}

.collection-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  border: 1px solid var(--line);
}

.collection-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  padding: 18px;
  background: var(--paper-bright);
  border-right: 1px solid var(--line);
}

.collection-card:last-child {
  border-right: 0;
}

.collection-card:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.collection-card:hover span {
  color: var(--paper-deep);
}

.collection-card strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 42px);
  line-height: 0.9;
  text-transform: uppercase;
}

.collection-card span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.section-head h1 {
  display: none;
}

.phase-heading {
  margin: 0 0 30px;
  font-family: var(--font-ui);
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
}

.product-grid,
.search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(40px, 6vw, 70px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.pagination-num,
.pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.pagination-num.active {
  background: var(--ink);
  color: var(--paper);
}

.pagination-num:hover:not(.active),
.pagination-arrow:hover {
  background: var(--ink);
  color: var(--paper);
}

.product-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: transparent;
}

.product-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  transition: opacity 180ms ease;
}

.product-card:hover img {
  opacity: 0.1;
}

.product-meta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px;
  opacity: 0;
  text-align: center;
  transition: opacity 160ms ease;
}

.product-card:hover .product-meta,
.product-card:focus-visible .product-meta {
  opacity: 1;
}

.product-title {
  margin: 0;
  max-width: 92%;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
  letter-spacing: 0;
}

.price-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sold-out {
  color: var(--accent);
}

.search-overlay {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 40;
  overflow: auto;
  padding: 28px;
  background: var(--paper);
}

.menu-overlay {
  position: fixed;
  inset: var(--header-height) auto 0 0;
  z-index: 40;
  width: min(250px, 82vw);
  height: calc(100dvh - var(--header-height));
  overflow: hidden;
  padding: 22px 18px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  box-shadow: 18px 0 70px rgba(0, 0, 0, 0.08);
  transform: translateX(-100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-overlay::-webkit-scrollbar {
  width: 0;
  display: none;
}

.menu-overlay.is-open {
  transform: translateX(0);
}

.menu-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 39;
  background: var(--drawer-backdrop);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 320ms ease;
}
.menu-backdrop:not([hidden]) {
  opacity: 1;
}

.overlay-close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 1;
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.menu-overlay .overlay-close {
  right: 24px;
}

.overlay-grid {
  display: grid;
  align-content: start;
  width: 100%;
  margin: 58px 0 0;
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  -ms-overflow-style: none;
  padding-right: 4px;
  padding-bottom: 120px;
}
.overlay-grid::-webkit-scrollbar {
  width: 3px;
}
.overlay-grid::-webkit-scrollbar-thumb {
  background: var(--line);
}

.overlay-grid nav {
  display: grid;
  gap: 0;
}

.overlay-grid a {
  display: block;
  padding: 12px 0 11px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-sub-links {
  display: grid;
  gap: 0;
  margin-left: 14px;
}

.menu-sub-links a {
  padding: 9px 0;
  border-bottom: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink);
}

.menu-sub-links a:last-child {
  border-bottom: 0;
}

.menu-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle-row > a {
  flex: 1;
}

.menu-sub-toggle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.overlay-grid a small {
  max-width: 74px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 10px;
  position: absolute;
  right: 0;
  bottom: 8px;
}

.menu-bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  z-index: 2;
}
.menu-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.menu-social li {
  display: block;
}
.menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000;
  background: transparent;
  border: none;
  transition: color 0.15s ease, transform 0.08s ease;
}
.menu-social a:hover {
  color: var(--accent);
}
.menu-social a:active {
  transform: translate(1px, 1px);
}
.menu-social svg {
  width: 20px;
  height: 20px;
  display: block;
}

.menu-social li:last-child svg {
  transform: scale(1.18);
  transform-origin: center;
}

.menu-tagline {
  margin: 0;
  padding: 4px 0 2px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-manifest {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  padding: 12px;
}

.menu-manifest span,
.menu-footnote {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-manifest strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 0.92;
  text-transform: uppercase;
}

.menu-footnote {
  margin: 28px 0 0;
  line-height: 1.8;
}

.search-overlay .overlay-grid {
  align-content: center;
  width: min(980px, 90vw);
  min-height: 80vh;
  margin: 0 auto;
}

.search-label {
  display: block;
  margin-top: 12vh;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.search-input {
  width: 100%;
  margin: 20px 0 30px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  font-size: clamp(20px, 3.5vw, 40px);
  font-family: var(--font-display);
  line-height: 1.1;
  text-transform: uppercase;
}

.product-detail-page {
  display: grid;
  gap: clamp(14px, 2vw, 28px);
}

.product-image-panel {
  display: block;
  line-height: 0;
}

.product-gallery {
  display: grid;
  gap: clamp(4px, 0.6vw, 8px);
}

.product-top-views {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4px, 0.6vw, 8px);
}

.product-gallery-grid .back-image-figure {
  display: none;
}

.product-preorder-note {
  width: min(920px, 88vw);
  margin: clamp(8px, 1.5vw, 20px) auto;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-align: left;
}

.product-preorder-note p {
  margin: 0;
}

.product-preorder-note p + p {
  margin-top: 1.45em;
}

.size-chart {
  width: min(920px, 88vw);
  margin: clamp(14px, 2vw, 28px) auto;
}

.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  border: 1.5px solid #000;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.size-chart-table th,
.size-chart-table td {
  padding: 12px 18px;
  text-align: left;
  border: 1.5px solid #000;
  font-size: 13px;
}

.size-chart-table th {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.size-chart-table td {
  font-weight: 400;
}

@media (min-width: 768px) {
  .size-chart-table th,
  .size-chart-table td {
    padding: 14px 22px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .size-chart {
    width: min(420px, 92vw);
  }
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4px, 0.6vw, 8px);
}

.product-gallery-grid figure {
  display: block;
  margin: 0;
  line-height: 0;
}

.product-gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
}

.product-image-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
}

.dossier {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "buybox title"
    "buybox copy";
  gap: clamp(28px, 5vw, 70px);
  width: min(920px, 88vw);
  margin: 0 auto;
  padding-top: 0;
  border-top: 0;
}

.dossier h1 {
  grid-area: title;
  margin: 0 0 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.dossier-row {
  display: block;
  padding: 8px 0;
  border-top: 0;
}

.dossier-row > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dossier-row p {
  max-width: 44rem;
  margin: 0;
  line-height: 1.65;
  text-align: left;
  white-space: pre-line;
}

.dossier-buybox {
  grid-area: buybox;
  align-self: start;
}

.dossier-copy {
  grid-area: copy;
  min-width: 0;
}

.dossier-buybox .dossier-row strong {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.size-select,
.primary-action {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.size-select {
  margin-top: 4px;
}

.primary-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
  background: var(--ink);
  color: var(--paper);
}

.primary-action:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
}

.primary-action:disabled {
  opacity: 0.35;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr 140px 120px;
  gap: 18px;
  align-items: center;
  padding: 12px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
}

.cart-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: grayscale(1);
}

.cart-item p {
  margin: 10px 0 0;
  color: var(--muted);
  text-transform: uppercase;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-control button {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--line);
}

.quantity-control button:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.cart-summary {
  width: min(460px, 100%);
  margin-top: 28px;
  margin-left: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-page {
  max-width: 560px;
  margin: 0 auto;
  padding-top: 16px;
}

.checkout-title {
  margin: 0 0 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0;
  text-transform: none;
}

.checkout-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-fields {
  display: grid;
  gap: 22px;
}

.checkout-field {
  display: block;
}

.checkout-field > span {
  display: block;
  margin-bottom: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  padding: 8px 0 10px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  resize: none;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.checkout-form .primary-action {
  margin-top: 36px;
}

.checkout-success {
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
  padding: clamp(48px, 10vh, 120px) 0;
}

.checkout-success h1 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  color: #000;
}

.checkout-success h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 18px auto 0;
}

.checkout-success p {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: clamp(14px, 1.6vw, 17px);
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.checkout-success a.primary-action {
  margin-top: 18px;
  padding: 14px 24px;
  background: #000;
  color: #fff;
  border: 1.5px solid #000;
  font-family: "Unbounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease;
}
.checkout-success a.primary-action:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.checkout-success a.primary-action:active {
  transform: translate(2px, 2px);
}

.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  color: var(--ink);
  display: grid;
  align-items: center;
  justify-items: center;
}
body.is-locked {
  overflow: hidden;
}
body.is-locked #app,
body.is-locked .menu-overlay,
body.is-locked .search-overlay,
body.is-locked .menu-backdrop {
  pointer-events: none;
  user-select: none;
}

body.drawer-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}
.gate-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.gate-video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(0.3) contrast(1.1);
}
.gate-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  text-align: center;
  padding: clamp(20px, 3.5vw, 36px) clamp(20px, 3.5vw, 40px);
  max-width: 360px;
  width: min(86vw, 360px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border: 1px solid #000;
  box-shadow: 10px 10px 0 0 #000;
}
.gate-subtitle {
  margin: 0;
  font-family: "Unbounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.gate-subtitle--small {
  margin-top: 16px;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #555;
}
.gate-form {
  display: grid;
  gap: 20px;
}
.gate-field {
  display: grid;
  gap: 10px;
  text-align: left;
}
.gate-field > span {
  font-family: "Unbounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
}
.gate-field input {
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  border: 1.5px solid #000;
  font-family: "Unbounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #000;
  text-align: center;
}
.gate-field input::placeholder {
  color: #b5b5b5;
}
.gate-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 3px 3px 0 0 var(--accent);
}
.gate-form .primary-action {
  margin-top: 6px;
  padding: 14px 0;
  background: #000;
  color: #fff;
  border: 1.5px solid #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease;
}
.gate-form .primary-action:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.gate-form .primary-action:active {
  transform: translate(2px, 2px);
}
.gate-error {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 320px;
  padding: clamp(32px, 8vw, 96px) clamp(24px, 6vw, 72px);
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: center;
  letter-spacing: 0.04em;
}

.search-empty {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: clamp(48px, 10vw, 120px) 24px 80px;
  text-align: center;
  grid-column: 1 / -1;
  color: var(--muted);
}
.search-empty-mark {
  font-size: 28px;
  letter-spacing: 0.2em;
  color: var(--line);
  line-height: 1;
}
.search-empty h2 {
  margin: 0;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.search-empty p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-style: italic;
}

.empty-state h1,
.empty-state h2 {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  color: var(--ink);
}

.empty-state p {
  max-width: 30rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.empty-state .primary-action {
  max-width: 340px;
  margin: 24px auto 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1100px) {
  .product-grid,
  .search-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-card:nth-child(2n) {
    border-right: 0;
  }

  .collection-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 54px 1fr 104px;
    padding: 0 14px;
  }

  .text-icon {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .brand img {
    width: min(430px, 68vw);
    max-width: min(430px, 68vw);
    max-height: 82px;
  }

  .split-hero,
  .product-detail-page {
    grid-template-columns: 1fr;
  }

  .artifact-frame {
    min-height: 70vh;
    box-shadow: none;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-meta {
    position: static;
    min-height: 118px;
    opacity: 1;
    padding: 12px 0 24px;
    align-items: flex-start;
    text-align: left;
  }

  .related-products .product-meta {
    min-height: 0;
    padding: 6px 0 4px;
  }

  .related-products .product-title {
    font-size: 11px;
    line-height: 1.1;
  }

  .related-products .price-line {
    font-size: 9px;
    gap: 8px;
  }

  .related-products .product-card figure {
    aspect-ratio: 1;
  }

  .price-line {
    justify-content: flex-start;
  }

  .product-card:hover img {
    opacity: 1;
  }

  .dossier {
    position: static;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "buybox"
      "copy";
    width: min(420px, 92vw);
    margin: 34px auto 42px;
  }

  .product-preorder-note {
    width: min(420px, 92vw);
  }

  .cart-item {
    grid-template-columns: 82px 1fr;
  }

  .cart-item > .quantity-control,
  .cart-item > .text-icon {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: 44px 1fr 92px;
    padding: 0 12px;
  }

  .brand img {
    width: min(390px, 72vw);
    max-width: min(390px, 72vw);
    max-height: 84px;
  }

  .header-actions {
    gap: 6px;
  }

  .asset-icon-button {
    width: 44px;
    height: 44px;
  }

  .asset-icon-button svg {
    width: 31px;
    height: 31px;
  }

  .catalog-pdf-icon {
    transform: scale(1.18);
  }

  .intro-video {
    object-fit: contain;
    object-position: 50% 50%;
    transform: none;
    background: var(--black);
  }

  .intro-copy h1 {
    font-size: clamp(40px, 17vw, 84px);
  }

  .text-icon,
  .overlay-close {
    font-size: 9px;
  }

  .icon-button {
    width: 34px;
  }

  .page {
    width: min(100% - 24px, 1480px);
    padding: 14px 0 40px;
  }

  .hero-title {
    font-size: clamp(38px, 16vw, 76px);
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
  }

  .artifact-frame {
    min-height: 360px;
    box-shadow: none;
  }

  .collection-strip,
  .product-grid,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .collection-card {
    min-height: 142px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .collection-card:first-child {
    border-top: 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 8px;
  }

  .phase-heading {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .product-top-views {
    grid-template-columns: 1fr;
  }

  .product-top-views .back-image-panel {
    display: none;
  }

  .product-gallery-grid .back-image-figure {
    display: grid;
  }


  .menu-overlay,
  .search-overlay {
    padding: 22px 16px;
  }

  .menu-bottom {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    padding-top: 12px;
  }

  .menu-social {
    gap: 24px;
  }

  .menu-social a {
    width: 30px;
    height: 30px;
  }

  .menu-social svg {
    width: 22px;
    height: 22px;
  }

  .overlay-close {
    top: 18px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 40px;
  }

  .search-label {
    margin-top: 80px;
  }

  .dossier-row {
    display: block;
  }

  .dossier-row p {
    margin-top: 10px;
    text-align: left;
  }

  .cart-summary {
    margin-left: 0;
  }
}

body.is-intro-route .site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent) !important;
  color: var(--paper) !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none;
}

body.is-intro-route .brand img {
  filter: invert(1) grayscale(1) contrast(1.75) brightness(1.45) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

body.is-intro-route .asset-icon-button svg {
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.42));
  stroke: #ffffff;
  stroke-width: 2.8;
}

body.is-intro-route .asset-icon-button .pdf-icon {
  filter: invert(1) grayscale(1) contrast(1.8) brightness(1.5) drop-shadow(0 0 7px rgba(255, 255, 255, 0.42));
}

body.is-intro-route .catalog-pdf-icon {
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.42));
}

body.is-intro-route .catalog-pdf-icon span {
  background: #ffffff;
}

body.is-intro-route .cart-link span {
  background: var(--black) !important;
  border-color: var(--paper) !important;
}

.contacts-page {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 16px;
}

.contacts-grid {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid var(--soft-line);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.contact-card:last-child {
  border-bottom: none;
}

.contact-card:hover {
  color: var(--accent);
  opacity: 0.85;
}

.contact-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}

.contact-value {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.01em;
  word-break: break-word;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: pointer;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}

[data-lightbox] {
  cursor: pointer;
}
