@font-face {
  font-family: "ProximaNova";
  src: local("Proxima Nova"), local("ProximaNova");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ProximaNovaBold";
  src: local("Proxima Nova Bold"), local("ProximaNovaBold"), local("ProximaNovaBold3");
  font-weight: 700 950;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ProximaNovaLight";
  src: local("Proxima Nova Light"), local("ProximaNovaLight");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --bone: #f5f5eb;
  --bone-2: #ebe9dd;
  --red: #990000;
  --red-2: #c11212;
  --ink: #151719;
  --muted: #69655a;
  --line: rgba(0, 0, 0, 0.14);
  --line-light: rgba(245, 245, 235, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --header: 76px;
  --max: 1480px;
  --font-sans: "ProximaNova", "Proxima Nova", Arial, sans-serif;
  --font-bold: "ProximaNovaBold", "ProximaNovaBold3", "Proxima Nova", Arial, sans-serif;
  --font-light: "ProximaNovaLight", "Proxima Nova", Arial, sans-serif;
  --display: var(--font-sans);
  --body: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--bone);
  font-family: var(--body);
  letter-spacing: 0.6px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
ul,
ol,
input,
textarea,
select,
button,
label,
small,
strong,
em,
blockquote {
  font-family: var(--body);
}

body.menu-open {
  overflow: hidden;
}



a {
  color: inherit;
  font-family: var(--font-bold);
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
  border-radius: var(--radius);
}

picture {
  display: contents;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header);
  color: var(--bone);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 245, 235, 0.14);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease, height 220ms ease, opacity 180ms ease;
}

body.header-transparent .site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.header-solid .site-header {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line-light);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

body.menu-open .site-header {
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.brand-mark {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  justify-self: center;
}

.brand-c {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(245, 245, 235, 0.72);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(245, 245, 235, 0.14);
}

.brand-c img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.brand-copy {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: clamp(132px, 12vw, 176px);
}

.brand-text-logo {
  width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
}

.brand-word {
  font-family: var(--font-bold);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-pronounce {
  display: block;
  color: rgba(245, 245, 235, 0.64);
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-nav {
  grid-column: 1;
  grid-row: 1;
  display: none;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.main-nav a,
.header-link,
.pill-btn,
.text-btn,
.qty-btn,
.admin-tab,
.seg-btn,
.swatch-btn {
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
}

.main-nav a {
  position: relative;
  padding: 9px 10px;
  color: rgba(245, 245, 235, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--bone);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.header-link {
  position: relative;
  min-height: 40px;
  padding: 0 12px;
  color: var(--bone);
  border-color: rgba(245, 245, 235, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-link.icon-only {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
}

.header-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-link:hover,
.header-link:focus-visible,
.header-link.active {
  background: rgba(245, 245, 235, 0.1);
  border-color: rgba(245, 245, 235, 0.34);
}

.menu-toggle {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  justify-self: start;
}

.bag-link {
  overflow: visible;
}

.bag-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
  color: var(--bone);
  background: var(--red);
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 850;
  line-height: 1;
}

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1300;
  width: min(360px, 92vw);
  color: var(--bone);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96) 0%, rgba(0, 0, 0, 0.98) 100%);
  border-right: 1px solid rgba(245, 245, 235, 0.12);
  box-shadow: 24px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(-102%);
  transition: transform 260ms ease;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1290;
  display: none;
  background: rgba(0, 0, 0, 0.62);
  border: 0;
  backdrop-filter: blur(6px);
}

.mobile-menu-backdrop.open {
  display: block;
}

.mobile-menu-panel {
  height: 100%;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-menu-panel::-webkit-scrollbar {
  display: none;
}

.drawer-head {
  min-height: 48px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(245, 245, 235, 0.12);
}

.drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu .drawer-brand {
  min-height: auto;
  padding: 0;
  color: var(--bone);
  border: 0;
  border-radius: 0;
  background: transparent;
  text-transform: none;
}

.mobile-menu .drawer-brand:hover,
.mobile-menu .drawer-brand:focus-visible {
  color: var(--bone);
  border-color: transparent;
  background: transparent;
  transform: none;
}

.drawer-brand .brand-c {
  width: 34px;
  min-width: 34px;
  height: 34px;
}

.drawer-brand .brand-copy {
  width: 128px;
}

.drawer-close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-grid;
  place-items: center;
  color: var(--bone);
  background: rgba(245, 245, 235, 0.04);
  border: 1px solid rgba(245, 245, 235, 0.16);
  border-radius: 8px;
}

.drawer-section {
  display: grid;
  gap: 10px;
}

.drawer-kicker {
  color: rgba(245, 245, 235, 0.52);
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu-primary {
  display: grid;
  gap: 8px;
}

.mobile-menu a,
.drawer-soon {
  position: relative;
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  color: rgba(245, 245, 235, 0.76);
  border: 1px solid rgba(245, 245, 235, 0.1);
  border-radius: 8px;
  background: rgba(245, 245, 235, 0.035);
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--bone);
  border-color: rgba(245, 245, 235, 0.18);
  background: rgba(245, 245, 235, 0.075);
  transform: translateX(2px);
}

.mobile-menu a.active {
  color: var(--bone);
  background: rgba(245, 245, 235, 0.1);
  border-color: rgba(245, 245, 235, 0.22);
  box-shadow: inset 3px 0 0 rgba(245, 245, 235, 0.72);
}

.mobile-menu-utilities {
  display: grid;
  gap: 6px;
}

.mobile-menu-utilities a {
  min-height: 40px;
  font-size: 0.76rem;
}

.drawer-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.drawer-actions a {
  min-height: 58px;
  padding: 10px 8px;
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.drawer-actions svg {
  width: 18px;
  height: 18px;
}

.drawer-soon {
  justify-content: space-between;
  color: rgba(245, 245, 235, 0.42);
}

.drawer-soon em {
  padding: 3px 7px;
  color: rgba(245, 245, 235, 0.64);
  border: 1px solid rgba(245, 245, 235, 0.14);
  border-radius: 999px;
  font-size: 0.56rem;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-product {
  min-height: auto !important;
  padding: 10px !important;
  display: grid !important;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  text-transform: none !important;
}

.drawer-product-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: #d8d8d2;
}

.drawer-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-product-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
}

.drawer-product-copy small {
  color: var(--red-2);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drawer-product-copy strong {
  color: var(--bone);
  font-size: 0.88rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.drawer-product-copy span {
  color: rgba(245, 245, 235, 0.58);
  font-size: 0.76rem;
}

.drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.drawer-foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 245, 235, 0.44);
  border-top: 1px solid rgba(245, 245, 235, 0.12);
  font-size: 0.66rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.drawer-foot a {
  min-height: auto;
  padding: 0;
  color: rgba(245, 245, 235, 0.64);
  border: 0;
  background: transparent;
  font-size: inherit;
}

.main {
  min-height: 60vh;
  padding-top: var(--header);
}

body.home-route .main {
  padding-top: 0;
}

.section {
  padding: 58px 28px;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 58px);
}

.section-tight {
  padding: 54px 28px;
}

.section-dark {
  color: var(--bone);
  background: var(--black);
}

.section-red {
  color: var(--bone);
  background: var(--red);
}

.section-inner {
  max-width: min(80vw, var(--max));
  margin: 0 auto;
}

.display,
.h1,
.h2,
.h3 {
  margin: 0;
  font-family: var(--font-bold);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0;
}

.display,
.h1 {
  font-size: clamp(2.35rem, 6vw, 6.8rem);
}

.h2 {
  font-size: clamp(1.85rem, 4.4vw, 4.8rem);
}

.h3 {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--font-bold);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-dark .eyebrow,
.section-red .eyebrow,
.home-shelf-dark .eyebrow,
.page-hero .eyebrow,
.category-hero .eyebrow {
  color: var(--bone);
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--black);
  background: var(--bone);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  font-family: var(--font-bold);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-dark {
  color: var(--bone);
  background: var(--black);
  border-color: var(--black);
}

.btn-red {
  color: var(--bone);
  background: var(--red);
  border-color: var(--red);
}

.btn-ghost {
  color: var(--black);
  background: transparent;
  border-color: var(--line);
}

.section-dark .btn-ghost,
.section-red .btn-ghost,
.page-hero .btn-ghost,
.category-hero .btn-ghost {
  color: var(--bone);
  border-color: var(--line-light);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.button-row {
  margin-top: 18px;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.hero-stat {
  min-height: 96px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  color: var(--bone);
  background: rgba(245, 245, 235, 0.08);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.hero-stat span {
  color: rgba(245, 245, 235, 0.68);
  font-size: 0.66rem;
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat strong {
  font-family: var(--font-bold);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 0.9;
}

.indicator-track {
  width: 100%;
  height: 100%;
}

.complete-look-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.bundle-badge {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: var(--black);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  font-family: var(--font-bold);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.loading-store {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--bone);
  background: var(--black);
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pdp-image-main {
  grid-row: span 2;
}

.scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  align-items: center;
}

.sticky-walk {
  min-height: auto;
}

.sticky-scene {
  position: relative;
  top: auto;
}

.scene-media {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  overflow: hidden;
  background: var(--black);
  border-radius: 0;
}

.scene-media img {
  transform: translate3d(0, var(--media-y, 0), 0) scale(var(--media-scale, 1.04));
  transition: transform 80ms linear;
  will-change: transform;
}

.motion-frame {
  position: relative;
  box-shadow: none;
}

.motion-frame::after {
  content: none;
}

.motion-section.is-active .motion-frame::after {
  opacity: 0;
}

.motion-section {
  --section-progress: 0;
}

.scene-content {
  display: grid;
  gap: 14px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-card {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.section-dark .feature-card {
  border-color: var(--line-light);
  background: transparent;
}

.horizontal-zone {
  overflow: hidden;
}

.walk-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32vw);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scroll-snap-type: x mandatory;
  transform: translate3d(var(--rail-shift, 0), 0, 0);
  transition: transform 90ms linear;
  will-change: transform;
}

.rail-panorama {
  position: relative;
  height: min(38vw, 460px);
  min-height: 300px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: var(--black);
}

.rail-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--media-y, 0), 0) scale(var(--media-scale, 1.04));
  transition: transform 80ms linear;
}

.walk-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 0;
  scroll-snap-align: center;
  background: #121212;
}

.walk-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 520ms ease, opacity 260ms ease;
}

.walk-card:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.category-showcase {
  background: var(--bone);
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.category-card-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-card-grid.compact .cat-portrait-card {
  min-height: 300px;
}

.category-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.home-shelf-dark .category-card {
  color: var(--bone);
  background: #1c1c1e;
  border-color: rgba(255,255,255,0.05);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.category-card-media {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-radius: 16px 0 0 16px;
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.category-card:hover .category-card-media img {
  transform: scale(1.06);
}

.category-card-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 0;
  color: var(--bone);
  background: transparent;
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card-body {
  padding: 18px;
  display: grid;
  gap: 16px;
  align-content: space-between;
}

.category-card-body p {
  color: var(--muted);
  line-height: 1.6;
}

.section-dark .category-card-body p {
  color: rgba(245, 245, 235, 0.72);
}

.mini-product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mini-product-row a {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
}

.mini-product-row img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--black);
}

.category-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--bone);
  background: #111;
}

.category-hero-media {
  position: absolute;
  inset: 0;
}

.category-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(1.02) contrast(1.02);
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.34)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
}

.category-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 28px 34px;
  text-align: left;
  display: grid;
  justify-items: start;
  gap: 12px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.category-hero-content .h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--bone);
  font-size: clamp(1.45rem, 3.4vw, 3.1rem);
  line-height: 0.95;
}

.category-hero-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.category-hero-content .hero-actions {
  justify-content: flex-start;
  margin-top: 2px;
}

.category-hero-content .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 0.66rem;
}

.walk-card-content {
  position: absolute;
  inset: auto 14px 14px;
  padding: 0;
  color: var(--bone);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.color-room {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: 28px;
  align-items: stretch;
}

.color-stage {
  min-height: clamp(320px, 38vw, 480px);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--black);
}

.color-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transform: translate3d(0, var(--media-y, 0), 0) scale(var(--media-scale, 1.04));
  transition: transform 80ms linear, opacity 240ms ease;
}

.color-stage-panel {
  position: absolute;
  inset: auto 18px 18px;
  color: var(--bone);
  border: 1px solid rgba(245,245,235,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  background: rgba(0,0,0,0.46);
  backdrop-filter: blur(12px);
}

.swatch-btn {
  width: 100%;
  min-height: 44px;
  padding: 8px 0;
  border-color: transparent;
  border-bottom-color: var(--line);
  border-radius: 0;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  background: var(--bone);
}

.swatch-btn + .swatch-btn {
  margin-top: 8px;
}

.swatch-btn.active {
  color: var(--black);
  background: transparent;
  transform: none;
}

.swatch-chip {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fit-lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: 18px;
  align-items: stretch;
}

.fit-visual {
  position: relative;
  min-height: clamp(320px, 38vw, 480px);
  overflow: hidden;
  border-radius: 20px;
  background: var(--black);
}

.fit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--media-y, 0), 0) scale(var(--media-scale, 1.04));
  transition: transform 80ms linear;
}

.scan-line {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: rgba(153, 0, 0, 0.9);
  box-shadow: 0 0 28px rgba(153, 0, 0, 0.8);
  transform: translateX(var(--scan-x, 0));
  opacity: 0.7;
}

.fit-card {
  min-height: 110px;
  padding: 16px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.fit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.fit-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.print-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(300px, 0.44fr);
  gap: 24px;
  align-items: stretch;
}

.macro-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(190px, 0.34fr);
  gap: 14px;
  align-items: stretch;
}

.macro-frame {
  position: relative;
  min-height: clamp(320px, 36vw, 460px);
  overflow: hidden;
  border-radius: 20px;
  background: var(--black);
}

.macro-small {
  min-height: clamp(320px, 36vw, 460px);
}

.macro-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--media-y, 0), 0) scale(var(--media-scale, 1.04));
  transition: transform 80ms linear;
}

.macro-frame:hover img {
  transform: translate3d(0, var(--media-y, 0), 0) scale(1.14);
}

.look-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: 26px;
  align-items: center;
}

.builder-stage {
  min-height: clamp(340px, 40vw, 500px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: #e5e5e5;
}

.builder-stage img {
  max-width: min(70%, 460px);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 36px 42px rgba(0, 0, 0, 0.22));
  transform: translate3d(0, var(--media-y, 0), 0) scale(var(--media-scale, 1.02));
  transition: transform 180ms ease;
}

.control-panel {
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Stepped configurator layout */
.builder-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.builder-step:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.03);
  padding: 4px 8px;
  border-radius: 6px;
  min-width: 28px;
  text-align: center;
  margin-top: 1px;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-label {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.step-label span {
  color: var(--black);
  margin-left: 4px;
}

/* Style select capsule row */
.style-row-builder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.style-select-btn {
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 99px;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 180ms ease;
  color: var(--black);
}

.style-select-btn:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.15);
}

.style-select-btn.active {
  color: var(--bone);
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Color select row inside builder */
.color-row-builder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.color-row-builder .swatch {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.color-row-builder .swatch:hover {
  transform: scale(1.08);
}

.color-row-builder .swatch.active {
  border-color: var(--black);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.54),
    0 0 0 2px var(--black);
  transform: scale(1.05);
}

/* Size selection row inside builder */
.size-row-builder {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-row-builder .size-pill {
  min-width: 32px;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms ease;
}

.size-row-builder .size-pill:hover:not([disabled]) {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.15);
}

.size-row-builder .size-pill.active {
  color: var(--bone);
  background: var(--black);
  border-color: var(--black);
}

.size-row-builder .size-pill[disabled] {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.02);
}

/* Builder active summary card */
.builder-summary-card {
  margin-top: 10px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-details h3 {
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 4px;
}

.summary-details p {
  font-size: 0.72rem;
  font-weight: 300;
  font-family: var(--font-light);
  color: var(--muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-builder-add {
  width: 100%;
  min-height: 46px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 10px;
  transition: all 220ms ease;
}

.btn-builder-add:hover:not([disabled]) {
  background: #1c1c1e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.look-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 20px;
  background: #1c1c1e;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.look-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.36);
}

.look-card img {
  transition: transform 580ms ease, opacity 240ms ease;
}

.look-card:hover img {
  opacity: 0.86;
  transform: scale(1.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 560ms ease var(--delay, 0ms),
    transform 560ms ease var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.look-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  color: var(--bone);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(245,245,235,0.14);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  gap: 28px;
  align-items: end;
}

.newsletter-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(245,245,235,0.22);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.field,
.select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--black);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section-dark .field,
.section-dark .select,
.section-red .field {
  border-color: var(--line-light);
}

.page-hero {
  padding: 86px 28px 48px;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.82)),
    var(--black);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 28px;
  align-items: end;
}

.page-hero-visual .page-hero-inner {
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  align-items: center;
}

.page-hero-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 235, 0.16);
  border-radius: 8px;
  background: rgba(245, 245, 235, 0.06);
}

.page-hero-media img,
.story-media img,
.editorial-image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media img {
  object-position: center 28%;
}

.text-link {
  align-self: end;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.lookbook-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 14px;
}

.lookbook-mosaic .look-card {
  min-height: 0;
  height: 100%;
}

.lookbook-mosaic .look-card-1 {
  grid-column: span 2;
  grid-row: span 3;
}

.lookbook-mosaic .look-card-2 {
  grid-column: span 2;
  grid-row: span 2;
}

.lookbook-mosaic .look-card-3 {
  grid-column: span 2;
  grid-row: span 2;
}

.editorial-feature,
.story-split,
.contact-layout,
.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 28px;
  align-items: center;
}

.editorial-copy,
.story-copy,
.contact-panel {
  display: grid;
  gap: 18px;
}

.editorial-image-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 14px;
  align-items: end;
}

.editorial-image-stack img:first-child {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}

.editorial-image-stack img:last-child {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
}

.swatch-run {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.swatch-run span {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.lookbook-page {
  background: var(--bone);
}

.lookbook-hero {
  position: relative;
  min-height: clamp(520px, 76vh, 760px);
  overflow: hidden;
  color: var(--bone);
  background: var(--black);
  isolation: isolate;
}

.lookbook-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lookbook-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.44) 38%, rgba(0, 0, 0, 0.1) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 54%);
}

.lookbook-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 0;
  filter: contrast(1.04) saturate(0.96);
}

.lookbook-hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(110px, 15vh, 170px) 28px clamp(36px, 7vh, 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
  gap: 28px;
  align-items: end;
}

.lookbook-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.lookbook-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-bold);
  font-size: clamp(2.5rem, 7.6vw, 7.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.lookbook-hero-copy p {
  max-width: 540px;
  margin: 0;
  color: rgba(245, 245, 235, 0.78);
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  line-height: 1.55;
}

.lookbook-hero-meta {
  justify-self: end;
  width: min(290px, 100%);
  padding: 14px 16px;
  display: grid;
  gap: 5px;
  color: var(--black);
  background: rgba(245, 245, 235, 0.92);
  border-radius: 8px;
}

.lookbook-hero-meta span,
.lookbook-section-head span,
.lookbook-color-copy span {
  color: var(--red);
  font-family: var(--font-bold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lookbook-hero-meta strong {
  font-family: var(--font-bold);
  font-size: 1rem;
  text-transform: uppercase;
}

.lookbook-section {
  padding: clamp(38px, 6vw, 82px) 28px;
}

.lookbook-couple-strip {
  padding: clamp(34px, 5vw, 72px) 28px;
  color: var(--black);
  background: #eeeeeb;
}

.lookbook-couple-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  grid-auto-rows: clamp(210px, 22vw, 330px);
  gap: 12px;
}

.lookbook-couple-card {
  position: relative;
  overflow: hidden;
  color: var(--bone);
  background: #d8d8d5;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.lookbook-couple-card-1 {
  grid-row: span 2;
}

.lookbook-couple-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0;
  transition: transform 520ms ease;
}

.lookbook-couple-card:hover img {
  transform: scale(1.045);
}

.lookbook-couple-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.lookbook-couple-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  color: var(--bone);
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(245, 245, 235, 0.16);
  border-radius: 7px;
  font-family: var(--font-bold);
  font-size: 0.68rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.lookbook-section-light {
  color: var(--black);
  background: var(--bone);
}

.lookbook-section-head {
  max-width: var(--max);
  margin: 0 auto 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.lookbook-section-head h2,
.lookbook-color-copy h2 {
  margin: 4px 0 0;
  font-family: var(--font-bold);
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.lookbook-editorial-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(118px, 12vw, 190px);
  gap: 12px;
}

.lookbook-editorial-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: var(--bone);
  background: #d8d8d5;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.lookbook-editorial-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.lookbook-editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0;
  transition: transform 520ms ease;
}

.lookbook-editorial-card:hover img {
  transform: scale(1.045);
}

.lookbook-editorial-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  color: var(--bone);
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(245, 245, 235, 0.16);
  border-radius: 7px;
  font-family: var(--font-bold);
  font-size: 0.68rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.lookbook-editorial-card-1 {
  grid-column: span 4;
  grid-row: span 3;
}

.lookbook-editorial-card-2,
.lookbook-editorial-card-3 {
  grid-column: span 4;
  grid-row: span 2;
}

.lookbook-editorial-card-4,
.lookbook-editorial-card-5,
.lookbook-editorial-card-6,
.lookbook-editorial-card-7,
.lookbook-editorial-card-8 {
  grid-column: span 4;
  grid-row: span 2;
}

.lookbook-color-story {
  padding: clamp(54px, 8vw, 100px) 28px;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  color: var(--bone);
  background: var(--black);
}

.lookbook-color-copy {
  max-width: 360px;
  justify-self: end;
  display: grid;
  gap: 18px;
}

.lookbook-color-copy .btn {
  width: fit-content;
}

.lookbook-color-notes {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.lookbook-color-notes a {
  min-height: 190px;
  padding: 18px;
  display: grid;
  align-content: end;
  gap: 8px;
  color: var(--bone);
  background: #101010;
  border: 1px solid rgba(245, 245, 235, 0.14);
  border-radius: 8px;
}

.lookbook-color-notes a > span {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 245, 235, 0.28);
  border-radius: 50%;
}

.lookbook-color-notes strong {
  font-family: var(--font-bold);
  font-size: clamp(1.25rem, 2vw, 2rem);
  text-transform: uppercase;
}

.lookbook-color-notes small {
  color: rgba(245, 245, 235, 0.58);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.lookbook-room-section {
  padding-top: clamp(42px, 7vw, 88px);
}

.lookbook-room-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lookbook-category-room {
  position: relative;
  min-height: clamp(420px, 54vw, 720px);
  overflow: hidden;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(176, 0, 0, 0.08), transparent 46%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 44px),
    #e5e5df;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.lookbook-category-room:nth-child(3) {
  grid-column: span 2;
  min-height: clamp(360px, 44vw, 620px);
}

.lookbook-category-room::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.08), transparent 58%);
}

.lookbook-room-index,
.lookbook-room-copy,
.lookbook-room-arrow {
  position: absolute;
  z-index: 1;
}

.lookbook-room-index {
  left: 16px;
  bottom: 76px;
  color: rgba(0, 0, 0, 0.48);
  font-family: var(--font-bold);
  font-size: 0.72rem;
}

.lookbook-room-copy {
  left: 16px;
  right: 70px;
  bottom: 18px;
  display: grid;
  gap: 2px;
}

.lookbook-room-copy strong {
  font-family: var(--font-bold);
  font-size: clamp(1.55rem, 3.5vw, 3.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.lookbook-room-copy small {
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.lookbook-room-arrow {
  right: 16px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--bone);
  background: var(--black);
  border-radius: 50%;
}

.lookbook-room-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .lookbook-hero {
    min-height: 640px;
  }

  .lookbook-hero-content {
    grid-template-columns: 1fr;
    padding: 128px 18px 28px;
  }

  .lookbook-hero-meta {
    justify-self: start;
  }

  .lookbook-section {
    padding: 34px 14px;
  }

  .lookbook-couple-strip {
    padding: 34px 14px;
  }

  .lookbook-couple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 10px;
  }

  .lookbook-couple-card-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .lookbook-section-head {
    display: grid;
    gap: 10px;
  }

  .lookbook-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 10px;
  }

  .lookbook-editorial-card,
  .lookbook-editorial-card-1,
  .lookbook-editorial-card-2,
  .lookbook-editorial-card-3,
  .lookbook-editorial-card-4,
  .lookbook-editorial-card-5,
  .lookbook-editorial-card-6,
  .lookbook-editorial-card-7,
  .lookbook-editorial-card-8 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lookbook-editorial-card-1,
  .lookbook-editorial-card-4 {
    grid-row: span 2;
  }

  .lookbook-color-story {
    grid-template-columns: 1fr;
    padding: 44px 14px;
  }

  .lookbook-color-copy {
    justify-self: start;
  }

  .lookbook-color-notes {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lookbook-room-grid {
    grid-template-columns: 1fr;
  }

  .lookbook-category-room,
  .lookbook-category-room:nth-child(3) {
    grid-column: auto;
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .lookbook-hero {
    min-height: 600px;
  }

  .lookbook-hero-media img {
    object-position: center top;
  }

  .lookbook-hero-media::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.15) 64%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 70%);
  }

  .lookbook-hero-copy h1 {
    font-size: clamp(2.25rem, 13vw, 4.1rem);
  }

  .lookbook-hero-copy p {
    max-width: 320px;
  }

  .lookbook-editorial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .lookbook-couple-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .lookbook-couple-card-1 {
    grid-column: auto;
    grid-row: auto;
  }

  .lookbook-editorial-card,
  .lookbook-editorial-card-1,
  .lookbook-editorial-card-4 {
    grid-row: span 1;
  }

  .lookbook-color-notes {
    grid-template-columns: 1fr;
  }

  .lookbook-category-room,
  .lookbook-category-room:nth-child(3) {
    min-height: 470px;
  }
}

/* Lookbook refinement pass: compact, homepage-aligned, no repeated image sections */
.lookbook-page {
  background: #f1f1e9;
}

.lookbook-hero {
  width: 100vw;
  min-height: 60vh;
  height: 60vh;
  margin-left: calc(50% - 50vw);
  padding: 0 28px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 50%),
    var(--lookbook-hero-image) center center / cover no-repeat,
    #050505;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.lookbook-hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-height: 0;
  padding: 0 0 clamp(28px, 5vw, 58px);
  display: block;
}

.lookbook-hero-copy {
  position: relative;
  max-width: 410px;
  gap: 16px;
  padding: 0;
  color: var(--bone);
}

.lookbook-hero-copy::before {
  content: "";
  width: 46px;
  height: 4px;
  display: block;
  background: var(--red-2);
  border-radius: 999px;
}

.lookbook-hero-copy h1 {
  max-width: 390px;
  margin: 0;
  color: var(--bone);
  font-size: clamp(1.18rem, 2vw, 1.95rem);
  line-height: 1;
  text-wrap: balance;
}

.lookbook-hero-copy .button-row {
  margin-top: 2px;
}

.lookbook-hero-copy .btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 7px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.lookbook-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) 28px;
}

.lookbook-section-head {
  margin-bottom: 16px;
  align-items: end;
}

.lookbook-section-head h2,
.lookbook-color-copy h2 {
  font-size: clamp(1.1rem, 2vw, 1.75rem);
}

.lookbook-editorial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.lookbook-editorial-card {
  aspect-ratio: 4 / 5;
  min-height: 0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.lookbook-editorial-card img {
  object-position: center 16%;
}

.lookbook-color-story {
  padding: clamp(42px, 6vw, 68px) max(28px, calc((100vw - var(--max)) / 2 + 28px));
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.lookbook-index-panel {
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lookbook-color-link,
.lookbook-index-link {
  min-height: 118px;
  padding: 14px;
  display: grid;
  align-content: end;
  gap: 6px;
  color: var(--bone);
  background: #111;
  border: 1px solid rgba(245, 245, 235, 0.12);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lookbook-color-link:hover,
.lookbook-index-link:hover {
  transform: translateY(-2px);
  background: #151515;
  border-color: rgba(245, 245, 235, 0.28);
}

.lookbook-color-link > span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(245, 245, 235, 0.24);
  border-radius: 50%;
}

.lookbook-color-link strong,
.lookbook-index-link strong {
  font-family: var(--font-bold);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.lookbook-color-link small,
.lookbook-index-link small,
.lookbook-index-link span {
  color: rgba(245, 245, 235, 0.58);
  font-size: 0.64rem;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .lookbook-hero {
    min-height: 60vh;
    height: 60vh;
    padding: 0 18px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0.04)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 54%),
      var(--lookbook-hero-image) center center / cover no-repeat,
      #050505;
  }

  .lookbook-hero-content {
    padding-bottom: 28px;
  }

  .lookbook-editorial-grid,
  .lookbook-index-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lookbook-color-story {
    grid-template-columns: 1fr;
    padding: 40px 18px;
  }
}

@media (max-width: 560px) {
  .lookbook-hero {
    min-height: 60vh;
    height: 60vh;
    padding: 0 14px;
    background-position: 62% center;
  }

  .lookbook-hero-copy h1 {
    max-width: 280px;
    font-size: clamp(1rem, 5.6vw, 1.38rem);
  }

  .lookbook-hero-copy .btn {
    width: fit-content;
    min-height: 42px;
    padding-inline: 18px;
  }

  .lookbook-section {
    padding: 30px 12px;
  }

  .lookbook-editorial-grid,
  .lookbook-index-panel {
    grid-template-columns: 1fr;
  }

  .lookbook-editorial-card {
    aspect-ratio: 4 / 5;
  }
}

.story-media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bone-2);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(245, 245, 235, 0.32);
  border: 1px solid rgba(245, 245, 235, 0.32);
}

.metric-strip div {
  padding: 24px;
  background: var(--red);
}

.metric-strip strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
}

.metric-strip span {
  color: rgba(245, 245, 235, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.value-grid,
.policy-grid,
.support-channel-grid,
.returns-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.delivery-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.delivery-method-card {
  min-height: 138px;
  padding: 22px 24px;
  display: grid;
  grid-template-rows: minmax(28px, auto) auto 1fr;
  align-content: start;
  gap: 6px;
  color: var(--black);
  background: rgba(245, 245, 235, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.delivery-method-card span,
.delivery-method-card h3,
.delivery-method-card strong {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: left;
  text-transform: uppercase;
}

.delivery-method-card span {
  align-self: end;
  color: var(--red);
  font-family: var(--font-bold);
  font-size: 0.72rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.delivery-method-card h3 {
  font-family: var(--font-bold);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 0.98;
}

.delivery-method-card strong {
  align-self: end;
  padding-top: 10px;
  font-family: var(--font-bold);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1;
  text-transform: none;
}

.policy-document-page {
  color: var(--black);
  background: #f7f7f2;
}

.support-hero-banner {
  width: min(80vw, var(--max));
  min-height: 56vh;
  margin: 5px auto 0;
  padding: 0 28px 34px;
  display: flex;
  align-items: flex-end;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.34)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 58%),
    var(--support-hero-image) center 22% / cover no-repeat,
    #101010;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.support-hero-copy {
  width: min(100%, var(--max));
  display: grid;
  justify-items: start;
  gap: 12px;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.support-hero-copy h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--bone);
  font-size: clamp(1.45rem, 3.4vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.support-hero-copy .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 0.66rem;
}

.policy-doc-hero {
  padding: calc(var(--header) + clamp(54px, 8vw, 92px)) 24px clamp(34px, 5vw, 58px);
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 0, 0, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f1 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-doc-kicker {
  color: var(--red);
  font-family: var(--font-bold);
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-doc-hero h1 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.policy-doc-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.55;
}

.policy-document-shell {
  padding: clamp(28px, 5vw, 58px) 24px clamp(58px, 8vw, 96px);
}

.policy-document {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 0;
  color: #171717;
}

.policy-meta {
  margin-bottom: 28px;
  padding-bottom: 18px;
  display: grid;
  gap: 4px;
  color: rgba(0, 0, 0, 0.54);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.72rem;
  line-height: 1.45;
}

.policy-document p,
.policy-document li {
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.92rem;
  line-height: 1.75;
}

.policy-document > p {
  margin: 0 0 30px;
}

.policy-copy-block {
  margin-top: 30px;
}

.privacy-summary-grid {
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.privacy-summary-grid div {
  min-height: 118px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.025);
}

.privacy-summary-grid strong {
  color: var(--black);
  font-family: var(--font-bold);
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.privacy-summary-grid span {
  color: rgba(0, 0, 0, 0.64);
  font-size: 0.84rem;
  line-height: 1.55;
}

.policy-copy-block h2 {
  margin: 0 0 10px;
  color: var(--black);
  font-family: var(--font-bold);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.2;
}

.policy-copy-block p {
  margin: 0 0 12px;
}

.policy-copy-block ul,
.policy-copy-block ol {
  margin: 10px 0 0;
  padding-left: 20px;
}

.policy-copy-block li + li {
  margin-top: 7px;
}

.policy-copy-block a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-rate-table {
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.policy-rate-table div {
  min-height: 62px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.policy-rate-table strong,
.policy-rate-table b {
  font-family: var(--font-bold);
  font-size: 0.82rem;
  line-height: 1.25;
}

.policy-rate-table strong {
  text-transform: uppercase;
}

.policy-rate-table span {
  color: rgba(0, 0, 0, 0.64);
  font-size: 0.82rem;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .support-hero-banner {
    width: calc(100vw - 28px);
    min-height: clamp(360px, 56svh, 520px);
    padding: 0 16px 28px;
    background-position: 58% center;
  }

  .support-hero-copy h1 {
    max-width: 100%;
  }

  .policy-doc-hero {
    padding: calc(var(--header) + 42px) 18px 34px;
  }

  .policy-doc-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .policy-document-shell {
    padding: 28px 18px 58px;
  }

  .policy-document p,
  .policy-document li {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .privacy-summary-grid {
    grid-template-columns: 1fr;
  }

  .privacy-summary-grid div {
    min-height: 0;
  }

  .policy-rate-table div {
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: start;
  }
}

.support-channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-card,
.support-channel,
.contact-form,
.return-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 245, 235, 0.82);
}

.policy-card,
.support-channel,
.return-step {
  padding: 18px;
}

.section-dark .policy-card,
.section-dark .support-channel,
.section-red .policy-card,
.section-red .return-step {
  color: var(--bone);
  border-color: var(--line-light);
  background: rgba(245, 245, 235, 0.08);
}

.policy-card span,
.support-channel span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-dark .policy-card span,
.section-dark .support-channel span,
.section-red .policy-card span,
.section-red .return-step p {
  color: rgba(245, 245, 235, 0.72);
}

.policy-card strong,
.support-channel strong {
  display: block;
  margin: 8px 0;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
  align-items: start;
}

.contact-info-page {
  color: var(--black);
  background: #f4f4ec;
}

.contact-info-hero {
  width: min(80vw, var(--max));
  min-height: 58vh;
  margin: 5px auto 0;
  padding: clamp(24px, 4vw, 52px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0.04)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 52%),
    var(--contact-hero-image) center 18% / cover no-repeat,
    #101010;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-info-copy {
  max-width: 440px;
  display: grid;
  gap: 12px;
  color: var(--bone);
}

.contact-info-copy span {
  color: var(--bone);
  font-family: var(--font-bold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-copy h1 {
  margin: 0;
  color: var(--bone);
  font-family: var(--font-bold);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.contact-info-copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(245, 245, 235, 0.78);
  font-size: clamp(0.94rem, 1.4vw, 1.08rem);
  line-height: 1.6;
}

.about-hero {
  width: min(80vw, var(--max));
  min-height: 60vh;
  margin: 5px auto 0;
  padding: clamp(24px, 4vw, 56px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 54%),
    var(--about-hero-image) center center / cover no-repeat,
    #101010;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.about-hero-copy {
  max-width: 520px;
  display: grid;
  gap: 13px;
  color: var(--bone);
}

.about-hero-copy span,
.about-copy-panel > span,
.about-section-head span {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-copy h1 {
  margin: 0;
  color: var(--bone);
  font-family: var(--font-bold);
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
}

.about-hero-copy p {
  max-width: 460px;
  margin: 0;
  color: rgba(245, 245, 235, 0.78);
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  line-height: 1.58;
}

.btn-ghost-light {
  color: var(--bone);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 245, 235, 0.38);
}

.btn-ghost-light:hover {
  color: var(--black);
  background: var(--bone);
  border-color: var(--bone);
}

.about-page-section {
  padding: clamp(44px, 6vw, 82px) 0;
  color: var(--black);
  background: #f4f4ec;
}

.about-shell {
  width: min(80vw, var(--max));
  margin: 0 auto;
}

.about-intro-grid,
.about-edit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
}

.about-copy-panel,
.about-section-head {
  display: grid;
  gap: 12px;
}

.about-copy-panel h2,
.about-section-head h2 {
  max-width: 680px;
  margin: 0;
  color: var(--black);
  font-family: var(--font-bold);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.about-copy-panel p {
  max-width: 560px;
  margin: 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 1rem;
  line-height: 1.65;
}

.about-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.about-mini-list span {
  padding: 8px 10px;
  color: rgba(5, 5, 5, 0.72);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.about-image-pair {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 12px;
  align-items: end;
}

.about-image-pair img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #e7e7df;
}

.about-image-pair img:first-child {
  min-height: 360px;
}

.about-dark-band {
  color: var(--bone);
  background: #050505;
}

.about-dark-band .metric-strip {
  background: transparent;
  border: 1px solid rgba(245, 245, 235, 0.18);
  border-radius: 8px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.about-value-card {
  min-height: 176px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-value-card span {
  color: var(--black);
  font-family: var(--font-bold);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-value-card p {
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-edit-section {
  padding-top: 0;
}

.about-category-list {
  display: grid;
  gap: 10px;
}

.about-category-list a {
  min-height: 86px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-category-list a:hover {
  transform: translateY(-2px);
  background: #fff;
}

.about-category-list small,
.about-category-list span {
  color: rgba(5, 5, 5, 0.48);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.about-category-list strong {
  font-family: var(--font-bold);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-brand-strip {
  max-width: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
  align-items: end;
}

.contact-brand-strip img {
  width: 100%;
  height: clamp(220px, 24vw, 340px);
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  background: #e7e7e1;
}

.contact-brand-strip img:first-child {
  height: clamp(190px, 20vw, 290px);
}

.contact-info-shell {
  width: min(80vw, var(--max));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) 28px clamp(58px, 8vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
}

.contact-info-main {
  display: grid;
  gap: 26px;
}

.contact-info-block {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-info-block h2 {
  margin: 0 0 10px;
  font-family: var(--font-bold);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-info-block > p {
  max-width: 720px;
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-method-list {
  margin-top: 18px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-method-list a,
.contact-method-list div {
  min-height: 74px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(110px, 0.2fr) minmax(0, 0.46fr) minmax(0, 0.34fr);
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-method-list span,
.contact-method-list small,
.contact-note-grid p {
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.78rem;
  line-height: 1.45;
}

.contact-method-list span {
  color: var(--red);
  font-family: var(--font-bold);
  text-transform: uppercase;
}

.contact-method-list strong,
.contact-note-grid strong {
  color: var(--black);
  font-family: var(--font-bold);
  font-size: 0.88rem;
  line-height: 1.25;
}

.contact-note-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.contact-note-grid div {
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-note-grid p {
  margin: 7px 0 0;
}

.contact-mini-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-mini-links a {
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.contact-form-panel {
  position: sticky;
  top: calc(var(--header) + 18px);
}

.contact-form-panel .contact-form {
  background:
    linear-gradient(180deg, rgba(176, 0, 0, 0.04), transparent 38%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1100px) {
  .contact-info-shell {
    width: min(80vw, var(--max));
    grid-template-columns: 1fr;
  }

  .contact-brand-strip {
    max-width: none;
  }

  .contact-form-panel {
    position: static;
  }
}

@media (max-width: 700px) {
  .contact-info-hero {
    width: calc(100vw - 28px);
    min-height: 56vh;
    margin-top: 5px;
    padding: 22px;
    background-position: 58% center;
  }

  .contact-info-copy h1 {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }

  .contact-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-brand-strip img,
  .contact-brand-strip img:first-child {
    height: 260px;
  }

  .contact-info-shell {
    width: calc(100vw - 28px);
    padding: 30px 14px 58px;
    gap: 28px;
  }

  .contact-method-list a,
  .contact-method-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-note-grid {
    grid-template-columns: 1fr;
  }
}

.content-grid-single {
  grid-template-columns: 1fr;
}

.contact-form {
  position: sticky;
  top: calc(var(--header) + 28px);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button[disabled] {
  opacity: 0.62;
  cursor: wait;
}

.account-page {
  min-height: calc(100vh - var(--header) - 220px);
  display: grid;
  align-items: start;
  padding-top: clamp(36px, 7vw, 82px);
}

.account-simple {
  width: min(560px, 92vw);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  gap: 16px;
  align-items: start;
}

.account-lookup-form,
.account-result,
.account-order-card,
.account-help .content-box,
.account-totals,
.account-items,
.account-timeline {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 245, 235, 0.82);
}

.account-lookup-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 30px);
}

.account-form-head {
  display: grid;
  gap: 8px;
  padding-bottom: 2px;
}

.account-form-head h1 {
  margin: 0;
  font-family: var(--font-heavy);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.05;
  font-weight: 500;
  text-transform: uppercase;
}

.account-form-head p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.account-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.account-mini-links a {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  color: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.account-mini-links a:hover,
.account-mini-links a:focus-visible {
  color: var(--bone);
  border-color: var(--black);
  background: var(--black);
}

.account-lookup-form button[disabled] {
  opacity: 0.68;
  cursor: wait;
}

.account-message {
  padding: 11px 12px;
  color: var(--red);
  border: 1px solid rgba(153, 0, 0, 0.26);
  background: rgba(153, 0, 0, 0.06);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.account-saved-order,
.account-confirm-strip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
}

.account-saved-order span,
.account-confirm-strip span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.account-saved-order strong,
.account-confirm-strip strong {
  overflow-wrap: anywhere;
  text-align: right;
  font-family: var(--font-light);
  font-weight: 400;
}

.account-help {
  display: grid;
  gap: 12px;
}

.account-help .content-box {
  display: flex;
  min-height: 92px;
  align-items: end;
  color: var(--black);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.account-help .content-box:hover,
.account-help .content-box:focus-visible {
  color: var(--bone);
  background: var(--black);
  border-color: var(--black);
}

.account-result {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.account-result-head,
.account-order-item,
.account-totals div,
.account-timeline-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.account-status {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.account-status span {
  padding: 8px 10px;
  color: var(--bone);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-status strong {
  font-family: var(--font-light);
  font-size: 1.1rem;
}

.account-summary-grid,
.account-detail-grid {
  display: grid;
  gap: 12px;
}

.account-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.account-summary-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--bone);
}

.account-tracking-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(245, 245, 235, 0.84);
}

.account-tracking-card div {
  min-width: 0;
}

.account-tracking-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.account-tracking-card strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-family: var(--font-light);
  font-weight: 300;
}

.account-tracking-card p {
  grid-column: 2 / -1;
  margin: 0;
  color: var(--muted);
}

.account-orders-result {
  gap: 14px;
}

.account-order-list {
  display: grid;
  gap: 12px;
}

.account-order-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.account-order-card-head,
.account-order-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.account-order-card-actions .btn {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.68rem;
}

.account-order-card-head div {
  min-width: 0;
}

.account-order-card-head div:last-child {
  text-align: right;
}

.account-order-card-head span,
.account-order-card-meta span,
.account-order-card-actions span,
.account-order-card-items span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.account-order-card-head strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-family: var(--font-light);
  font-size: 1rem;
  font-weight: 300;
}

.account-order-card-meta,
.account-order-card-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-order-card-meta span,
.account-order-card-items span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
}

.account-empty-note {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.account-summary-grid span,
.account-order-item span,
.account-totals span,
.account-timeline-row span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.account-summary-grid strong,
.account-order-item strong,
.account-totals strong,
.account-timeline-row strong {
  font-family: var(--font-light);
  font-weight: 300;
}

.account-detail-grid {
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
}

.account-items,
.account-totals,
.account-timeline {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.account-order-item,
.account-totals div,
.account-timeline-row {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.account-totals .total {
  color: var(--bone);
  background: var(--black);
  border: 0;
  padding: 12px;
}

.account-totals .total span {
  color: rgba(245, 245, 235, 0.72);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.timeline-layout {
  align-items: start;
}

.timeline-steps {
  display: grid;
  gap: 10px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(245, 245, 235, 0.08);
}

.timeline-step span,
.return-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--black);
  background: var(--bone);
  border-radius: 999px;
  font-weight: 950;
}

.policy-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 245, 235, 0.82);
}

.policy-table-wrap h2 {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.policy-table {
  display: grid;
}

.policy-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.policy-table div:last-child {
  border-bottom: 0;
}

.return-step {
  color: var(--bone);
}

.return-step h3 {
  margin: 16px 0 8px;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-tools {
  position: sticky;
  top: var(--header);
  z-index: 30;
  padding: 12px 18px;
  background: rgba(247, 247, 242, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}

.shop-tools-inner {
  max-width: min(80vw, var(--max));
  margin: 0 auto;
  padding: 8px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.shop-tools .field,
.shop-tools .select,
.shop-tools .btn {
  min-height: 44px;
  border-radius: 13px;
}

.shop-tools .field,
.shop-tools .select {
  background: rgba(247, 247, 242, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
}

.shop-tools .btn {
  padding-inline: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-shelf-container {
  width: 90vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 40px;
  background: #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.product-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-rail .product-card {
  flex: 0 0 clamp(270px, 23vw, 310px);
}

.product-shelf-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}

.product-shelf-indicator {
  width: 100px;
  height: 2px;
  margin-right: auto;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
}

.indicator-bar {
  width: 36%;
  height: 100%;
  background: var(--black);
  transform: translateX(0);
  transition: width 160ms ease, transform 160ms ease;
}

.shelf-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: transparent;
  border: 1px solid var(--black);
  border-radius: 999px;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.shelf-arrow:hover {
  color: var(--bone);
  background: var(--black);
  transform: translateY(-1px);
}

.view-more-card {
  justify-content: center;
  min-height: 100%;
  color: var(--bone);
  background: var(--black);
  border-color: var(--black);
}

.view-more-inner {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 100%;
  padding: 18px;
}

.view-more-inner span {
  color: rgba(245, 245, 235, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.view-more-inner strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.view-more-inner .btn {
  width: fit-content;
  color: var(--black);
  background: var(--bone);
  border-color: var(--bone);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  padding: 12px;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.section-dark .product-card {
  background: #1c1c1e;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone-2);
  border-radius: 8px;
}

.product-media-asset,
.product-media-asset picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.product-media-asset {
  z-index: 1;
}

.product-card-slider,
.product-media-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-slider {
  z-index: 1;
}

.product-media-link {
  color: inherit;
}

.product-card-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease, transform 420ms ease;
}

.product-card-slide.active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.product-card-slide .image-fallback {
  position: absolute;
  inset: 0;
}

.product-card-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--black);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 160ms ease, background 160ms ease, transform 160ms ease;
}

.product-card-arrow.prev {
  left: 8px;
}

.product-card-arrow.next {
  right: 8px;
}

.product-card-arrow .header-icon {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.product-card-slider:hover .product-card-arrow,
.product-card-slider:focus-within .product-card-arrow {
  opacity: 1;
}

.product-card-arrow:hover,
.product-card-arrow:focus-visible {
  background: #fff;
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.product-card-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
}

.product-card-dots span {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: width 180ms ease, background 180ms ease;
}

.product-card-dots span.active {
  width: 14px;
  background: #fff;
}

@media (max-width: 760px) {
  .product-card-arrow {
    width: 34px;
    height: 34px;
    opacity: 1;
  }
}

.product-media img,
.scene-media img,
.look-card img,
.pdp-image img,
.admin-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-position: center;
  padding: 0;
  transition: transform 320ms ease;
}

.product-media-asset .image-fallback {
  position: absolute;
  inset: 0;
}

.product-badge,
.product-stock-chip {
  position: absolute;
  z-index: 3;
  max-width: calc(100% - 20px);
  padding: 6px 8px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(10px);
}

.product-badge {
  top: 10px;
  left: 10px;
}

.product-stock-chip {
  right: 10px;
  bottom: 10px;
}

.product-stock-chip.low {
  color: #8a0000;
}

.product-stock-chip.sold-out {
  color: rgba(0, 0, 0, 0.5);
  background: rgba(245, 245, 245, 0.9);
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 12px 0 0;
}

.product-kicker {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-height: 12px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-kicker span:last-child {
  min-width: 0;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
}

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.product-title {
  min-width: 0;
  min-height: 2.05em;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.product-price {
  font-family: var(--font-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.compare {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.7rem;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 24px;
}

.product-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  color: rgba(0, 0, 0, 0.62);
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.045);
  border-radius: 5px;
  font-family: var(--font-light);
  font-size: 0.66rem;
  line-height: 1;
  white-space: nowrap;
}

.product-card-options {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.swatch-option {
  padding: 0;
  cursor: pointer;
}

.swatch-option.active,
.swatch-option:hover {
  border-color: var(--black);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.54),
    0 0 0 2px var(--black);
}

.swatch-option[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
}

.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.size-pill {
  min-width: 30px;
  min-height: 26px;
  padding: 0 7px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 850;
  background: #f5f5f5;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.size-option {
  cursor: pointer;
}

.size-pill.active,
.size-pill:hover {
  color: var(--bone);
  border-color: var(--black);
  background: var(--black);
}

.size-pill.disabled,
.size-pill[disabled] {
  color: #8b867b;
  text-decoration: line-through;
  background: rgba(0, 0, 0, 0.05);
  cursor: not-allowed;
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 8px;
  align-items: center;
}

.product-card-actions .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card-actions .btn {
  width: 100%;
  min-height: 38px;
  color: var(--bone);
  background: var(--black);
  border-color: var(--black);
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card-actions .btn:hover {
  background: #1c1c1e;
  border-color: #1c1c1e;
}

.product-card-actions .btn[disabled] {
  color: rgba(0, 0, 0, 0.3);
  background: #e5e5e5;
  border-color: transparent;
  cursor: not-allowed;
}

.section-dark .product-kicker,
.section-dark .compare,
.section-dark .builder-meta,
.section-dark .cart-variant {
  color: rgba(245, 245, 235, 0.58);
}

.section-dark .product-title,
.section-dark .product-price {
  color: var(--bone);
}

.section-dark .product-card-meta span {
  color: rgba(245, 245, 235, 0.62);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .swatch {
  border-color: rgba(245, 245, 235, 0.34);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.36);
}

.section-dark .swatch-option.active,
.section-dark .swatch-option:hover {
  border-color: var(--bone);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.3),
    0 0 0 2px var(--bone);
}

.section-dark .size-pill {
  color: var(--bone);
  border-color: rgba(245, 245, 235, 0.34);
  background: rgba(245, 245, 235, 0.1);
}

.section-dark .size-pill.active,
.section-dark .size-pill:hover {
  color: var(--bone);
  border-color: var(--red);
  background: var(--red);
}

.section-dark .size-pill.disabled,
.section-dark .size-pill[disabled] {
  color: rgba(245, 245, 235, 0.34);
  border-color: rgba(245, 245, 235, 0.16);
  background: rgba(245, 245, 235, 0.04);
}

.section-dark .product-card-actions .text-link {
  color: var(--bone);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .product-card-actions .btn {
  color: var(--bone);
  border-color: rgba(245, 245, 235, 0.82);
  background: transparent;
}

.section-dark .product-card-actions .btn:hover,
.section-dark .product-card-actions .btn:focus-visible {
  color: var(--black);
  background: var(--bone);
  border-color: var(--bone);
}

.section-dark .product-card-actions .btn[disabled] {
  color: rgba(245, 245, 235, 0.42);
  border-color: rgba(245, 245, 235, 0.24);
  background: transparent;
}

.pdp-hero {
  padding-bottom: 24px;
}

.pdp-hero .page-hero-inner {
  grid-template-columns: minmax(0, 860px);
}

.pdp-section {
  padding-top: 28px;
}

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(360px, 0.36fr);
  gap: 28px;
  align-items: start;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pdp-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: 0;
}

.pdp-image img {
  object-position: center;
}

.pdp-image img {
  transition: transform 420ms ease;
}

.pdp-image:hover img {
  transform: scale(1.035);
}

.pdp-panel {
  position: sticky;
  top: calc(var(--header) + 24px);
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(245, 245, 235, 0.9);
}

.pdp-price-block {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.pdp-price {
  margin: 0;
  font-family: var(--font-light);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.pdp-option-group {
  display: grid;
  gap: 10px;
}

.pdp-option-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pdp-option-head strong {
  color: var(--black);
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.option-btn {
  min-width: 46px;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--bone);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.option-btn.active,
.option-btn:hover {
  color: var(--bone);
  background: var(--black);
  border-color: var(--black);
}

.option-btn.color-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.option-btn.sold-out {
  color: #777267;
  border-style: dashed;
}

.option-btn[disabled] {
  color: #908c82;
  text-decoration: line-through;
  background: #dedbd0;
  cursor: not-allowed;
}

.variant-stock {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.variant-stock span,
.cart-meta,
.checkout-review-meta {
  color: var(--muted);
}

.variant-stock.sold-out {
  color: var(--red);
}

.detail-accordion {
  border-top: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.detail-row span {
  color: var(--muted);
  line-height: 1.45;
  white-space: pre-line;
}

.pdp-panel > .btn {
  min-height: 48px;
  width: 100%;
}

.cart-layout,
.checkout-layout,
.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(300px, 0.34fr);
  gap: 24px;
  align-items: start;
}

.cart-list,
.checkout-form,
.admin-panel,
.summary-box,
.content-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 245, 235, 0.82);
}

.cart-item {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bone-2);
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 34px;
  height: 34px;
}

.qty-btn[disabled] {
  color: #989287;
  background: #dedbd0;
  cursor: not-allowed;
}

.qty span {
  min-width: 34px;
  text-align: center;
  font-weight: 850;
}

.cart-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
}

.summary-box {
  position: sticky;
  top: calc(var(--header) + 28px);
  padding: 18px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line.total {
  border-bottom: 0;
  font-weight: 950;
  font-size: 1.2rem;
}

.checkout-form {
  padding: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.full {
  grid-column: 1 / -1;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.step {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.step.active {
  color: var(--bone);
  background: var(--black);
}

/* Checkout flow */
.checkout-layout {
  grid-template-columns: minmax(0, 0.67fr) minmax(320px, 0.33fr);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: start;
}

.checkout-form,
.checkout-layout .summary-box {
  background: rgba(245, 245, 235, 0.94);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.checkout-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.2vw, 28px);
}

.checkout-form > .h3 {
  margin-top: 0;
}

.checkout-step-head {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}

.checkout-step-head span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-step-head h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.1;
}

.checkout-step-head p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.checkout-form .form-grid {
  gap: 12px;
}

.checkout-form .field {
  min-height: 50px;
  padding: 0 14px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.checkout-form .field:focus {
  border-color: rgba(153, 0, 0, 0.42);
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.08);
}

.checkout-form .field::placeholder {
  color: rgba(0, 0, 0, 0.46);
}

.checkout-form .button-row {
  margin-top: 2px;
}

.checkout-form .button-row .btn {
  min-height: 48px;
  border-radius: 8px;
}

.stepper {
  gap: 10px;
  margin-bottom: 2px;
}

.step {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  color: rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  font-size: 0.7rem;
  line-height: 1;
}

.step span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
}

.step strong {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step.complete {
  color: rgba(0, 0, 0, 0.74);
}

.step.complete span {
  color: var(--bone);
  background: #242424;
}

.step.active {
  color: var(--bone);
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.step.active span {
  color: var(--black);
  background: var(--bone);
  border-color: transparent;
}

.checkout-layout .summary-box {
  padding: clamp(18px, 2vw, 24px);
  border-radius: 10px;
}

.checkout-layout .summary-box .h3 {
  margin: 0 0 2px;
  font-size: 1.02rem;
}

.checkout-layout .summary-line {
  padding: 11px 0;
  align-items: baseline;
}

.checkout-layout .summary-line span {
  color: rgba(0, 0, 0, 0.72);
}

.checkout-layout .summary-line strong {
  text-align: right;
}

.checkout-layout .summary-line.total {
  padding-top: 14px;
  font-size: 1.18rem;
}

.checkout-layout .summary-box .button-row {
  gap: 10px;
  margin-top: 14px;
}

.checkout-layout .summary-box .btn {
  min-height: 46px;
  border-radius: 8px;
}

.checkout-choice {
  min-height: 72px;
  padding: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.checkout-choice:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(153, 0, 0, 0.22);
}

.checkout-choice:has(input:checked) {
  background: rgba(153, 0, 0, 0.06);
  border-color: rgba(153, 0, 0, 0.34);
}

.checkout-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.checkout-choice span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.checkout-choice strong {
  margin: 0;
  color: var(--black);
}

.checkout-review-meta {
  gap: 10px;
  margin: 0;
}

.checkout-review-meta span {
  display: grid;
  align-content: center;
  min-height: 48px;
  padding: 10px 12px;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.checkout-form .cart-list {
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(0, 0, 0, 0.1);
}

.checkout-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkout-choice strong {
  display: block;
  margin-bottom: 4px;
}

.checkout-choice.disabled {
  opacity: 0.55;
}

.checkout-review-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
  font-size: 0.82rem;
}

.checkout-review-meta span {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bone-2);
}

.order-confirmation {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(57, 168, 107, 0.38);
  border-radius: var(--radius);
  background: rgba(57, 168, 107, 0.08);
}

.thank-you-hero .hero-stat strong {
  color: var(--bone);
}

.thank-you-shell {
  max-width: 920px;
}

.thank-you-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--black);
  background: rgba(245, 245, 235, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.1);
}

.thank-you-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--bone);
  background: var(--red);
  border-radius: 999px;
  font-family: var(--font-bold);
  font-size: 1.35rem;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.thank-you-grid div {
  display: grid;
  gap: 6px;
  min-height: 86px;
  align-content: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.thank-you-grid span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.thank-you-grid strong {
  color: var(--black);
  line-height: 1.25;
}

.checkout-form .checkout-review-meta {
  gap: 10px;
  margin: 0;
}

.checkout-form .checkout-review-meta span {
  display: grid;
  align-content: center;
  min-height: 48px;
  padding: 10px 12px;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.checkout-form .checkout-choice {
  min-height: 72px;
  padding: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.checkout-form .checkout-choice span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.checkout-form .checkout-choice strong {
  margin: 0;
  color: var(--black);
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
}

.admin-side {
  position: sticky;
  top: calc(var(--header) + 24px);
  display: grid;
  gap: 8px;
  align-self: start;
}

.admin-tab {
  padding: 12px;
  border-color: var(--line);
  text-align: left;
  font-weight: 850;
  text-transform: uppercase;
  background: var(--bone);
}

.admin-tab.active {
  color: var(--bone);
  background: var(--black);
}

.admin-main {
  display: grid;
  gap: 18px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric,
.admin-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 245, 235, 0.84);
}

.metric strong {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 2rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}

.data-table th,
.data-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.88rem;
}

.data-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--bone);
  background: var(--black);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-pill.red {
  background: var(--red);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.content-box {
  padding: 18px;
}

.site-footer {
  color: var(--bone);
  background:
    radial-gradient(circle at 12% 0%, rgba(176, 0, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #090909 0%, #020202 100%);
  border-top: 1px solid rgba(245, 245, 235, 0.12);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 58px) 28px 22px;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(140px, 0.55fr));
  gap: clamp(28px, 5vw, 86px);
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-brand .brand-mark {
  justify-self: start;
  max-width: 220px;
}

.footer-brand .brand-copy {
  width: clamp(140px, 12vw, 176px);
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(245, 245, 235, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 2px;
  color: var(--bone);
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: rgba(245, 245, 235, 0.58);
  font-size: 0.82rem;
  line-height: 1.2;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--bone);
  transform: translateX(2px);
}

.footer-soon {
  width: max-content;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(245, 245, 235, 0.42);
  font-size: 0.82rem;
  line-height: 1.2;
}

.footer-soon em {
  padding: 3px 7px;
  color: rgba(245, 245, 235, 0.62);
  border: 1px solid rgba(245, 245, 235, 0.14);
  border-radius: 999px;
  font-size: 0.58rem;
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: clamp(18px, 3vw, 34px);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(245, 245, 235, 0.46);
  border-top: 1px solid rgba(245, 245, 235, 0.1);
  font-size: 0.72rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.empty-state {
  padding: 46px 18px;
  text-align: center;
}

.image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(153, 0, 0, 0.62), transparent 42%),
    repeating-linear-gradient(90deg, rgba(245, 245, 235, 0.08), rgba(245, 245, 235, 0.08) 1px, transparent 1px, transparent 34px),
    var(--black);
  text-align: center;
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

@keyframes heroFade {
  0%,
  24% {
    opacity: 1;
  }
  28%,
  100% {
    opacity: 0;
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.12);
  }
}

@keyframes scenePulse {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-12px);
  }
}

/* Restored storefront sections */
.hero {
  position: relative;
  min-height: min(820px, 100vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--bone);
  background: var(--black);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.hero-slide:nth-child(1) {
  opacity: 1;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: contrast(1.04) saturate(0.96);
  animation: slowZoom 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 46%);
}

.hero-editorial {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 56px));
  margin: 0 28px clamp(96px, 12vh, 132px);
  display: grid;
  gap: 18px;
}

.hero-drop-badge {
  width: fit-content;
  padding: 9px 12px;
  color: var(--black);
  background: var(--bone);
  border-radius: var(--radius);
  font-family: var(--font-bold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-headline {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-bold);
  font-size: clamp(2.8rem, 7vw, 7.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 520px;
  margin: 0;
  color: rgba(245, 245, 235, 0.78);
  font-size: clamp(0.92rem, 1.4vw, 1.12rem);
  line-height: 1.5;
}

.hero-cta-row,
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-primary-hero,
.btn-ghost-hero {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  font-family: var(--font-bold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-primary-hero {
  color: var(--black);
  background: var(--bone);
  border: 1px solid var(--bone);
}

.btn-ghost-hero {
  color: var(--bone);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(245, 245, 235, 0.34);
  backdrop-filter: blur(10px);
}

.btn-primary-hero:hover,
.btn-ghost-hero:hover {
  transform: translateY(-1px);
}

.hero-action-bar {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  width: min(430px, calc(100% - 56px));
  min-height: 70px;
  padding: 12px 12px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--black);
  background: rgba(245, 245, 235, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-action-bar-label {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-action-bar-label span {
  color: var(--muted);
  font-family: var(--font-bold);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-action-bar-label strong {
  overflow: hidden;
  font-family: var(--font-bold);
  font-size: 0.88rem;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-charcoal {
  color: var(--bone);
  background: #171717;
}

.home-shelf,
.home-shelf-dark {
  width: 90vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: clamp(22px, 3vw, 40px);
  border-radius: var(--radius);
}

.home-shelf {
  background: #e5e5e5;
}

.home-shelf-dark {
  color: var(--bone);
  background: #0f0f0f;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.compact-head {
  margin-bottom: 18px;
}

.split-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-dark .split-head p,
.home-shelf-dark .split-head p {
  color: rgba(245, 245, 235, 0.68);
}

.store-map {
  position: sticky;
  top: var(--header);
  z-index: 12;
  color: var(--bone);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(12px);
}

.store-map-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 28px;
}

.route-line {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 1px;
  background: rgba(245, 245, 235, 0.16);
}

.map-links {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.map-links::-webkit-scrollbar {
  display: none;
}

.map-links a {
  flex: 0 0 auto;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--bone);
  background: var(--black);
  border: 1px solid rgba(245, 245, 235, 0.2);
  border-radius: 999px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cat-portrait-card {
  position: relative;
  min-height: clamp(280px, 34vw, 430px);
  overflow: hidden;
  color: var(--bone);
  background: var(--black);
  border-radius: var(--radius);
  isolation: isolate;
}

.cat-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.02);
  transition: transform 520ms ease, opacity 240ms ease;
}

.cat-portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.04) 62%);
  z-index: 1;
}

.cat-portrait-card:hover img {
  opacity: 0.92;
  transform: scale(1.07);
}

.cat-portrait-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.cat-portrait-label-inner {
  display: grid;
  gap: 4px;
}

.cat-number,
.cat-count {
  color: rgba(245, 245, 235, 0.72);
  font-size: 0.68rem;
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cat-name {
  font-family: var(--font-bold);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.cat-shop-pill {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--bone);
  border-radius: 999px;
}

.brand-studio-grid,
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.studio-pillar,
.ugc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #181818;
  border: 1px solid rgba(245, 245, 235, 0.1);
}

.studio-pillar-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #202020;
}

.studio-pillar-media img,
.ugc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 520ms ease;
}

.studio-pair-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.studio-pair-media img {
  min-width: 0;
  object-position: center 16%;
}

.studio-pillar:hover .studio-pillar-media img,
.ugc-card:hover img {
  transform: scale(1.05);
}

.studio-pillar-body {
  min-height: 210px;
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.pillar-label {
  color: rgba(245, 245, 235, 0.58);
  font-family: var(--font-bold);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.studio-pillar h3 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.studio-pillar p {
  margin: 0;
  color: rgba(245, 245, 235, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.studio-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bone);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(245, 245, 235, 0.4);
}

.studio-tags-row,
.studio-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.studio-swatch-chip {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(245, 245, 235, 0.34);
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.32);
}

.studio-swatch-chip.active {
  outline: 2px solid var(--bone);
  outline-offset: 2px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.38),
    0 0 0 5px rgba(245, 245, 235, 0.14);
  transform: scale(1.04);
}

.studio-pillar-media .scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  height: 2px;
  background: rgba(153, 0, 0, 0.86);
  box-shadow: 0 0 18px rgba(153, 0, 0, 0.8);
}

.ugc-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ugc-card {
  aspect-ratio: 4 / 5;
  display: block;
}

.ugc-tag {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 9px;
  color: var(--black);
  background: rgba(245, 245, 235, 0.92);
  border-radius: var(--radius);
  font-family: var(--font-bold);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ugc-tag span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ugc-tag strong {
  flex: 0 0 auto;
}

.ugc-follow-bar,
.newsletter-shop-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 245, 235, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.newsletter-strip {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(20px, 3.4vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
  gap: 22px 28px;
  align-items: center;
  text-align: left;
  border: 1px solid rgba(245, 245, 235, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(245, 245, 235, 0.08), rgba(245, 245, 235, 0.035)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.newsletter-copy {
  min-width: 0;
}

.newsletter-headline {
  margin: 8px 0 8px;
  font-family: var(--font-bold);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}

.newsletter-sub {
  max-width: 460px;
  margin: 0;
  color: rgba(245, 245, 235, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.newsletter-strip .newsletter-form {
  width: 100%;
  max-width: none;
  margin: 0;
  justify-self: end;
  gap: 8px;
}

.newsletter-strip .field {
  min-height: 46px;
  color: var(--black);
  background: var(--bone);
  border-radius: 12px;
}

.newsletter-strip .btn {
  min-height: 46px;
  min-width: 128px;
  border-radius: 12px;
  background: var(--bone);
  color: var(--black);
}

.newsletter-strip .btn:hover {
  background: #ffffff;
}

.newsletter-strip .newsletter-shop-links {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 245, 235, 0.1);
}

.newsletter-shop-links span {
  display: none;
}

.view-more-card {
  min-height: auto;
}

.view-more-link {
  min-height: 100%;
  padding: 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--bone);
}

.view-more-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--bone);
  border-radius: 999px;
}

.view-more-text {
  font-family: var(--font-bold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand-mark {
    grid-column: 2;
    justify-self: center;
  }

  .hero-content,
  .scene-grid,
  .color-room,
  .print-grid,
  .macro-stack,
  .look-builder,
  .fit-lab-layout,
  .page-hero-inner,
  .page-hero-visual .page-hero-inner,
  .editorial-feature,
  .story-split,
  .contact-layout,
  .account-layout,
  .account-detail-grid,
  .timeline-layout,
  .cart-layout,
  .checkout-layout,
  .footer-inner,
  .newsletter-band {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero-panel,
  .summary-box,
  .pdp-panel,
  .contact-form,
  .sticky-scene,
  .admin-side {
    position: static;
  }

  .product-grid,
  .category-card-grid,
  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .category-card-media {
    min-height: 280px;
  }

  .lookbook-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .value-grid,
  .policy-grid,
  .delivery-method-grid,
  .support-channel-grid,
  .returns-flow,
  .account-summary-grid,
  .account-tracking-card,
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-side {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header: 66px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand-mark {
    gap: 8px;
  }

  .brand-c {
    width: 34px;
    height: 34px;
  }

  .brand-word {
    font-size: 1.08rem;
  }

  .brand-copy {
    width: clamp(112px, 34vw, 150px);
  }

  .brand-text-logo {
    max-height: 27px;
  }

  .brand-pronounce {
    display: none;
  }

  .header-link {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .header-link.icon-only {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
  }

  .header-icon {
    width: 17px;
    height: 17px;
  }

  .section,
  .section-tight,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content {
    padding: calc(var(--header) + 28px) 16px 24px;
  }

  .display,
  .hero .display,
  .h1,
  .h2 {
    font-size: 1rem;
  }

  .h3 {
    font-size: 1rem;
  }

  .mobile-menu a {
    font-size: 1rem;
  }

  .product-shelf-container {
    padding: 24px 16px;
    width: 95vw;
    border-radius: 16px;
  }

  .home-shelf,
  .home-shelf-dark {
    padding: 24px 16px;
    width: 95vw;
    border-radius: 16px;
  }

  .hero-editorial {
    width: 90vw;
  }

  .hero-headline {
    font-size: clamp(1.1rem, 6vw, 1.8rem);
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .brand-studio-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-portrait-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ugc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .newsletter-strip .newsletter-form {
    flex-direction: column;
  }

  .newsletter-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 16px;
  }

  .newsletter-strip .newsletter-form {
    justify-self: stretch;
  }

  .newsletter-strip .btn {
    width: 100%;
  }

  .hero-action-bar {
    padding: 10px 14px 10px 12px;
    gap: 12px;
  }

  .hero-action-bar-label strong {
    font-size: 0.74rem;
  }

  .category-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .category-card-media {
    min-height: 220px;
    border-radius: 12px 12px 0 0;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .control-panel {
    padding: 20px 16px;
  }

  .newsletter-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .shelf-arrow {
    display: none;
  }

  .product-shelf-controls {
    justify-content: center;
    margin-top: 12px;
  }

  .product-shelf-indicator {
    width: 80px;
    margin-right: 0;
  }

  .product-rail {
    gap: 12px;
  }

  .product-rail .product-card {
    flex-basis: min(82vw, 310px);
  }

  .split-head,
  .shop-tools-inner,
  .store-map-inner,
  .pdp,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .lookbook-grid,
  .lookbook-mosaic,
  .category-card-grid,
  .content-grid,
  .metric-grid,
  .policy-grid,
  .value-grid,
  .support-channel-grid,
  .returns-flow,
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lookbook-mosaic .look-card {
    grid-column: span 1;
    grid-row: span 2;
  }

  .editorial-image-stack,
  .policy-table div {
    grid-template-columns: 1fr;
  }

  .pdp-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-media,
  .macro-frame,
  .builder-stage,
  .color-stage {
    min-height: 410px;
  }

  .walk-rail {
    grid-auto-columns: 84vw;
  }

  .cart-item {
    grid-template-columns: 82px 1fr;
  }

  .cart-item > .product-price {
    grid-column: 2;
  }

  .product-title {
    font-size: 0.76rem;
    line-height: 1.16;
    min-height: 2.25em;
  }

  .product-price {
    font-size: 0.72rem;
  }

  .product-info {
    gap: 7px;
  }

  .size-pill {
    min-width: 27px;
    min-height: 25px;
    padding: 4px 6px;
    font-size: 0.58rem;
  }

  .product-card-actions .btn {
    min-height: 32px;
  }

  .admin-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 460px) {
  .product-grid,
  .lookbook-grid,
  .lookbook-mosaic,
  .category-card-grid,
  .content-grid,
  .metric-grid,
  .policy-grid,
  .value-grid,
  .support-channel-grid,
  .returns-flow,
  .account-summary-grid,
  .account-tracking-card,
  .metric-strip,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .account-tracking-card p {
    grid-column: auto;
  }

  .account-order-card-head,
  .account-order-card-actions {
    flex-direction: column;
  }

  .account-order-card-head div:last-child {
    text-align: left;
  }

  .hero-actions,
  .button-row,
  .newsletter-form {
    flex-direction: column;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .pdp-panel {
    padding: 16px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .btn {
    width: 100%;
  }

  .product-card-actions,
  .product-title-row {
    grid-template-columns: 1fr;
  }

  .product-price {
    text-align: left;
  }
}

/* Mobile polish pass: storefront routes */
@media (max-width: 760px) {
  html {
    scroll-padding-top: var(--header);
  }

  .main {
    min-width: 0;
  }

  .mobile-menu-panel {
    padding: 18px;
  }

  .mobile-menu a {
    min-height: 44px;
    align-items: center;
  }

  .drawer-grid {
    grid-template-columns: 1fr;
  }

  .shop-tools {
    position: sticky;
    top: var(--header);
    z-index: 12;
    padding: 8px 10px;
  }

  .shop-tools-inner {
    max-width: 100%;
    padding: 7px;
    gap: 8px;
    grid-template-columns: 1fr auto;
    border-radius: 16px;
  }

  .shop-tools select,
  .shop-tools button {
    min-height: 44px;
    font-size: 0.82rem;
  }

  .category-hero {
    min-height: clamp(360px, 56svh, 520px);
  }

  .category-hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 16px 28px;
  }

  .category-hero-content .h1 {
    max-width: 100%;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-media {
    aspect-ratio: 4 / 5;
  }

  .product-card-meta,
  .product-card-options {
    gap: 7px;
  }

  .swatches,
  .size-row,
  .size-row-builder,
  .color-row-builder {
    row-gap: 8px;
  }

  .swatch {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .size-pill,
  .option-btn {
    min-height: 38px;
  }

  .look-builder {
    gap: 0;
  }

  #builder .look-builder {
    width: 100%;
  }

  #builder .builder-stage {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 16px 16px 0 0;
  }

  #builder .control-panel {
    border-radius: 0 0 16px 16px;
  }

  .style-row-builder {
    max-height: min(44svh, 320px);
    overflow-y: auto;
    padding-right: 4px;
  }

  .style-select-btn {
    min-height: 42px;
    white-space: normal;
    text-align: left;
  }

  .builder-summary-card {
    gap: 12px;
  }

  .builder-summary-card,
  .complete-look-bar,
  .pdp-option-head,
  .cart-total {
    align-items: flex-start;
  }

  .pdp-section {
    padding: 16px;
  }

  .pdp {
    gap: 14px;
  }

  .pdp-gallery {
    gap: 10px;
  }

  .pdp-image {
    border-radius: 10px;
  }

  .pdp-panel {
    position: static;
    border-radius: 12px;
  }

  .option-row {
    gap: 8px;
  }

  .option-btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .cart-layout,
  .checkout-layout {
    gap: 14px;
  }

  .cart-list,
  .checkout-form,
  .summary-box {
    border-radius: 12px;
  }

  .stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .step,
  .checkout-choice,
  .qty-btn,
  .btn {
    min-height: 44px;
  }

  .checkout-review-meta {
    grid-template-columns: 1fr;
  }

  .checkout-form {
    gap: 16px;
    padding: 16px;
  }

  .checkout-form .form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-layout .summary-box {
    position: static;
  }

  .checkout-layout .summary-box .button-row,
  .checkout-form .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 42px;
    padding: 7px 8px;
  }

  .step span {
    width: 22px;
    height: 22px;
  }

  .page-hero-inner,
  .page-hero-visual .page-hero-inner {
    gap: 18px;
  }

  .page-hero-media {
    max-height: 380px;
  }
}

@media (max-width: 460px) {
  .section,
  .section-tight,
  .page-hero,
  .pdp-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-inner {
    padding: 0 10px;
  }

  .brand-copy {
    width: clamp(92px, 30vw, 126px);
  }

  .header-link.icon-only {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .product-shelf-container,
  .home-shelf,
  .home-shelf-dark {
    width: calc(100vw - 20px);
    padding: 18px 12px;
  }

  .product-rail .product-card {
    flex-basis: min(86vw, 300px);
  }

  .product-card-body {
    padding: 12px;
  }

  .product-title {
    min-height: 0;
  }

  .product-card-actions .btn,
  .product-card-actions .text-link {
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }

  .cart-thumb {
    width: 76px;
  }

  .checkout-step-tabs {
    grid-template-columns: 1fr;
  }

  .page-hero-media,
  .story-media,
  .editorial-image-stack {
    max-height: 320px;
  }
}

html,
body,
body *:not(svg):not(svg *),
body *::before,
body *::after {
  font-family: var(--body) !important;
}

/* ── Styling Reels Section ── */
.reel-card {
  flex: 0 0 clamp(230px, 18vw, 260px);
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  padding: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.reel-video-container {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.reel-card:hover .reel-video {
  transform: scale(1.03);
}

.reel-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.85;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.reel-card:hover .reel-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.36);
}

.reel-body {
  padding: 12px 2px 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reel-brand {
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reel-body h3 {
  font-family: var(--font-bold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--black);
}

.reel-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.reel-price {
  font-family: var(--font-light);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
}

.reel-btn {
  min-height: 28px !important;
  padding: 6px 12px !important;
  font-size: 0.62rem !important;
  border-radius: 6px !important;
  letter-spacing: 0.04em;
}

.main-nav a,
.header-link,
.btn,
.pill-btn,
.text-btn,
.text-link,
.product-card-actions button,
.drawer-actions button,
.checkout-choice strong {
  font-family: var(--font-bold) !important;
}

.brand-mark,
.brand-mark *,
.brand-pronounce {
  font-family: var(--body) !important;
}

.brand-word {
  font-family: var(--font-bold) !important;
}

.product-price,
.product-price *,
.compare,
.cart-total strong,
.summary-row strong {
  font-family: var(--font-light) !important;
}

/* Product-led home hero */
.hero {
  min-height: min(760px, calc(100vh - var(--header)));
  display: block;
  color: var(--black);
  background: #ffffff;
  border-bottom: 1px solid #dedede;
}

.hero::after {
  display: none;
}

.hero-main {
  width: min(1440px, 100%);
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 46%);
}

.hero-copy {
  min-height: min(760px, calc(100vh - var(--header)));
  padding: clamp(58px, 9vw, 140px) clamp(32px, 7vw, 112px) clamp(54px, 8vw, 104px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-product-media {
  position: relative;
  display: block;
  min-height: min(760px, calc(100vh - var(--header)));
  overflow: hidden;
  background: #e6e6e6;
}

.hero-product-media picture,
.hero-product-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-product-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 36%;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-product-media:hover img {
  transform: scale(1.025);
}

.hero-media-note {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 10px;
  color: var(--black);
  background: #ffffff;
  font-family: var(--font-bold);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-headline {
  max-width: 680px;
  margin: 0;
  color: var(--black);
  font-family: var(--font-bold);
  font-size: clamp(3.6rem, 7.1vw, 7.8rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 430px;
  margin: 24px 0 0;
  color: #3d3d3d;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

.hero-cta-row {
  margin-top: 32px;
}

.btn-primary-hero,
.btn-ghost-hero {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 0;
  font-family: var(--font-bold);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary-hero {
  color: #ffffff;
  background: var(--black);
  border: 1px solid var(--black);
}

.btn-primary-hero:hover {
  color: var(--black);
  background: #ffffff;
}

.btn-ghost-hero {
  min-height: auto;
  padding: 0 0 4px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--black);
}

.btn-primary-hero:hover,
.btn-ghost-hero:hover {
  transform: translateY(-2px);
}

.hero-product-context {
  width: min(360px, 100%);
  margin-top: 48px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  color: var(--black);
  border-top: 1px solid #bbbbbb;
  transition: border-color 180ms ease;
}

.hero-product-context:hover {
  border-color: var(--black);
}

.hero-product-name,
.hero-product-price {
  font-family: var(--font-bold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-product-price {
  text-align: right;
}

.hero-product-options {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-swatches {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-swatch {
  width: 16px;
  height: 16px;
  display: block;
  border: 1px solid #686868;
  border-radius: 50%;
}

.hero-size-range {
  color: #656565;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scroll-cue {
  position: absolute;
  left: clamp(32px, 7vw, 112px);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #565656;
  font-family: var(--font-bold);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll-cue span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .hero-main {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 0;
    padding: 52px 20px 36px;
  }

  .hero-headline {
    max-width: 100%;
    font-size: clamp(3rem, 14.4vw, 4.9rem);
    line-height: 0.86;
  }

  .hero-sub {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-cta-row {
    margin-top: 26px;
    flex-direction: row;
    align-items: center;
  }

  .btn-primary-hero {
    min-height: 47px;
  }

  .hero-product-context {
    width: 100%;
    margin-top: 36px;
  }

  .hero-product-media {
    min-height: 470px;
  }

  .hero-product-media img {
    object-position: center 30%;
  }

  .hero-media-note {
    right: 14px;
    bottom: 14px;
  }

  .hero-scroll-cue {
    display: none;
  }
}

/* International ecommerce hero v2 */
body.home-route.header-transparent .site-header {
  color: #050505;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(0, 0, 0, 0.12);
  box-shadow: none;
}

body.home-route.header-transparent .site-header .brand-c img,
body.home-route.header-transparent .site-header .brand-text-logo {
  filter: invert(1) brightness(0.18);
}

body.home-route.header-transparent .site-header .header-link {
  color: #050505;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.14);
}

body.home-route.header-transparent .site-header .header-link:hover,
body.home-route.header-transparent .site-header .header-link.active {
  color: #ffffff;
  background: #050505;
  border-color: #050505;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header);
  overflow: hidden;
  background: #ffffff;
  color: #050505;
  border-bottom: 1px solid #dcdcdc;
}

.hero-commerce-strip {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
  padding: 0 20px;
  color: #4a4a4a;
  background: #ffffff;
  border-bottom: 1px solid #e4e4e4;
  font-family: var(--font-bold);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-main {
  width: min(1500px, 100%);
  min-height: calc(100vh - var(--header) - 38px);
  grid-template-columns: minmax(0, 52%) minmax(440px, 48%);
}

.hero-copy {
  min-height: calc(100vh - var(--header) - 38px);
  padding: clamp(46px, 6.4vw, 92px) clamp(32px, 7vw, 112px) clamp(58px, 6vw, 88px);
  justify-content: center;
}

.hero-headline {
  max-width: 720px;
  font-size: clamp(4.2rem, 8.1vw, 8.8rem);
  line-height: 0.86;
}

.hero-sub {
  max-width: 510px;
  margin-top: 24px;
  color: #303030;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.45;
}

.hero-product-panel {
  width: min(500px, 100%);
  margin-top: clamp(28px, 4vw, 46px);
  padding: 19px 0 0;
  border-top: 1px solid #bdbdbd;
}

.hero-product-row,
.hero-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-product-name,
.hero-product-price,
.hero-option-label,
.hero-option-value,
.hero-stock,
.hero-size-pill {
  font-family: var(--font-bold);
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-product-name {
  color: #050505;
}

.hero-product-options {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.hero-option-label,
.hero-stock {
  color: #6f6f6f;
}

.hero-option-value {
  color: #1c1c1c;
}

.hero-size-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-size-pill {
  min-width: 36px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  background: #f3f3f3;
  border: 1px solid #e5e5e5;
}

.hero-product-actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e2e2e2;
}

.hero-quick-add {
  min-height: 42px;
  padding: 0 24px;
}

.hero-product-media {
  min-height: calc(100vh - var(--header) - 38px);
  background: #eeeeee;
}

.hero-product-media img {
  object-position: center 32%;
}

.hero-media-note {
  right: 24px;
  bottom: 24px;
  color: #050505;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
  .hero-main {
    grid-template-columns: minmax(0, 49%) minmax(360px, 51%);
  }

  .hero-copy {
    padding-left: 28px;
    padding-right: 24px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: var(--header);
  }

  .hero-commerce-strip {
    height: 34px;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    font-size: 0.58rem;
  }

  .hero-commerce-strip::-webkit-scrollbar {
    display: none;
  }

  .hero-main {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .hero-headline {
    font-size: clamp(2.78rem, 13.8vw, 3.68rem);
    line-height: 0.9;
  }

  .hero-sub {
    max-width: 340px;
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .hero-cta-row {
    margin-top: 22px;
    gap: 16px;
  }

  .btn-primary-hero,
  .btn-ghost-hero {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .btn-primary-hero {
    min-height: 44px;
    padding: 0 16px;
  }

  .hero-product-panel {
    margin-top: 24px;
    padding-top: 16px;
  }

  .hero-product-row,
  .hero-product-actions {
    align-items: flex-start;
  }

  .hero-product-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-quick-add {
    width: 100%;
  }

  .hero-size-pill {
    min-width: 34px;
    height: 28px;
  }

  .hero-product-media {
    min-height: 430px;
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .hero-product-media img {
    object-position: center 24%;
  }

  .hero-media-note {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .stepper {
    grid-template-columns: 1fr;
  }

  .checkout-choice {
    align-items: flex-start;
  }

  .hero-product-row {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .hero-quick-add {
    min-height: 40px;
    padding: 0 18px;
  }
}

/* Final typography normalization */
:root {
  --type-h1: 1rem;
  --type-h2: 1rem;
  --type-h3: 1rem;
  --type-body: 1rem;
}

h1,
.h1,
.display,
.hero-headline {
  font-family: var(--font-bold) !important;
  font-size: var(--type-h1) !important;
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
}

h2,
.h2 {
  font-family: var(--font-bold) !important;
  font-size: var(--type-h2) !important;
  line-height: 0.95 !important;
  letter-spacing: 0 !important;
}

h3,
.h3 {
  font-family: var(--font-bold) !important;
  font-size: var(--type-h3) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

p,
.hero-sub,
.split-head p,
.category-card-body p,
.studio-pillar p,
.summary-details p {
  font-size: var(--type-body) !important;
  line-height: 1.5 !important;
}

@media (max-width: 760px) {
  :root {
    --type-h1: 0.96rem;
    --type-h2: 0.96rem;
    --type-h3: 0.96rem;
    --type-body: 0.96rem;
  }
}

/* Full-page image-centric hero */
body.home-route.header-transparent .site-header {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  backdrop-filter: none;
  border-bottom-color: transparent;
}

body.home-route.header-transparent .site-header .brand-c img,
body.home-route.header-transparent .site-header .brand-text-logo {
  filter: none;
}

body.home-route.header-transparent .site-header .header-link {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero {
  min-height: 100vh;
  padding-top: 0;
  color: #ffffff;
  background: #111111;
  border-bottom: 0;
}

.hero-main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: block;
  overflow: hidden;
}

.hero-product-media {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  display: block;
  background: #ededeb;
}

.hero-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.06) 34%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  animation: heroSlideFade calc(var(--slide-count, 1) * 6s) infinite;
  animation-delay: calc(var(--slide-index, 0) * 6s);
  animation-fill-mode: both;
}

.hero-slide:first-child {
  opacity: 1;
}

.hero-slide picture,
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-product-media img {
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.hero-product-media:hover img {
  transform: none;
}

@keyframes heroSlideFade {
  0% {
    opacity: 0;
  }

  4%,
  20% {
    opacity: 1;
  }

  28%,
  100% {
    opacity: 0;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: calc(var(--header) + 80px) 0 76px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.hero-headline,
.hero-sub {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.hero-sub {
  max-width: 310px;
  margin-top: 10px;
}

.hero-cta-row {
  margin-top: 22px;
}

.btn-primary-hero {
  color: #050505;
  background: #ffffff;
  border-color: #ffffff;
}

.btn-primary-hero:hover {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}

.btn-ghost-hero,
.hero-commerce-strip,
.hero-product-panel,
.hero-media-note,
.hero-scroll-cue {
  display: none !important;
}

@media (max-width: 760px) {
  .about-hero,
  .about-shell {
    width: calc(100vw - 32px);
  }

  .about-hero {
    min-height: 56vh;
    padding: 22px;
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12) 58%),
      var(--about-hero-image) center center / cover no-repeat,
      #101010;
  }

  .about-hero-copy h1 {
    font-size: clamp(2rem, 12vw, 3.8rem);
  }

  .about-intro-grid,
  .about-edit-grid,
  .about-value-grid {
    grid-template-columns: 1fr;
  }

  .about-image-pair {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .about-image-pair img,
  .about-image-pair img:first-child {
    min-height: 260px;
  }

  .about-value-card {
    min-height: 142px;
  }

  .about-category-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-product-media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.68) 100%);
  }

  .hero-product-media img {
    object-position: center top;
  }

  .hero-copy {
    width: calc(100% - 40px);
    min-height: 100vh;
    padding: calc(var(--header) + 40px) 0 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

/* =========================================
   BUILD YOUR TEE — HOMEPAGE-NATIVE CARD
   Contained, rounded, no-scroll, 80-90vh
   Palette: site dark bg + bone right panel
   ========================================= */

#builder {
  padding: clamp(32px, 4.5vw, 60px) clamp(20px, 3vw, 48px);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* The rounded card wrapper */
#builder .section-inner {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  height: clamp(600px, 82vh, 820px);
  display: flex;
  flex-direction: column;
}

#builder .home-shelf {
  flex: 1;
  min-height: 0;
  height: 100%;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 20px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.52);
  overflow: hidden;
}

/* 2-column grid */
#builder .look-builder {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
}

/* ---- LEFT: Image fills entirely ---- */
#builder .builder-stage {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  background: #111;
  overflow: hidden;
  display: block;             /* reset base display:grid centering */
  place-items: unset;        /* reset base place-items:center */
}

#builder .builder-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, rgba(5,5,5,0.35) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

#builder .builder-stage img {
  width: 100%;
  height: 100%;
  max-width: none;            /* reset base max-width: min(70%, 460px) */
  max-height: none;           /* reset base max-height: 440px */
  object-fit: cover;
  object-position: center 8%;
  object-position: center top;
  display: block;
  filter: none;               /* reset base drop-shadow filter */
  transform: none;            /* reset base parallax transform */
}

#builder .builder-stage-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: #151515;
}

#builder .builder-stage-empty span {
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Small "BUILD YOUR TEE" watermark over image */
#builder .builder-stage::after {
  content: "BUILD YOUR TEE";
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  font-family: var(--font-bold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
}

/* ---- RIGHT: Bone configurator, no scroll ---- */
#builder .control-panel {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;               /* ← NO scroll, everything must fit */
  background: var(--bone);        /* site's bone colour — feels homepage-native */
  border-left: 1px solid rgba(0,0,0,0.06);
  border-radius: 0;
  box-shadow: none;
  padding: clamp(22px, 3.2vh, 40px) clamp(22px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 0;                         /* no gap; children control their own spacing */
}

/* ---- Header area ---- */
#builder .complete-look-bar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: clamp(10px, 1.6vh, 16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: clamp(10px, 1.6vh, 18px);
}

#builder .complete-look-bar .eyebrow {
  margin-bottom: 2px;
  color: var(--red);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  font-weight: 900;
  text-transform: uppercase;
}

#builder .complete-look-bar .h2 {
  max-width: none;
  font-family: var(--font-bold);
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--black);
  text-transform: uppercase;
}

#builder .bundle-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.65);
  background: rgba(0, 0, 0, 0.055);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---- Steps — compact, evenly spaced ---- */
#builder .builder-step {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: clamp(8px, 1.4vh, 14px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

#builder .builder-step:last-of-type {
  border-bottom: none;
  padding-bottom: clamp(6px, 1vh, 12px);
}

#builder .step-num {
  width: 22px;
  height: 22px;
  padding: 0;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--bone);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

#builder .step-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

#builder .step-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.42);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#builder .step-label span {
  color: var(--black);
  font-weight: 900;
}

/* Product select grid */
#builder .style-row-builder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  max-height: none;
  overflow: visible;
  padding: 0;
}

#builder .style-select-btn {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}

#builder .style-select-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

#builder .style-select-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--bone);
  box-shadow: none;
}

/* Colour swatches */
#builder .color-row-builder {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

#builder .color-row-builder .swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border-width: 2px;
  cursor: pointer;
  box-shadow: 0 0 0 2px var(--bone), 0 1px 4px rgba(0,0,0,0.14);
  transition: box-shadow 120ms ease;
  flex-shrink: 0;
}

#builder .color-row-builder .swatch.active {
  box-shadow: 0 0 0 2px var(--bone), 0 0 0 3.5px var(--black);
}

/* Size pills */
#builder .size-row-builder {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

#builder .size-row-builder .size-pill {
  min-width: 34px;
  min-height: 28px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.055);
  border: 1px solid transparent;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}

#builder .size-row-builder .size-pill:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.1);
}

#builder .size-row-builder .size-pill.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--bone);
}

#builder .size-row-builder .size-pill:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* ---- Summary + CTA — pinned to bottom ---- */
#builder .builder-summary-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding: clamp(12px, 1.8vh, 18px) 0 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#builder .summary-details {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

#builder .summary-details h3 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#builder .summary-details p {
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

#builder .btn-builder-add {
  width: 100%;
  min-height: 42px;
  border-radius: 8px;
  background: var(--black);
  color: var(--bone);
  font-weight: 750;
  letter-spacing: 0.04em;
  font-size: 0.76rem;
  border: none;
  cursor: pointer;
  transition: opacity 140ms ease;
}

#builder .btn-builder-add:hover:not(:disabled) {
  opacity: 0.82;
}

#builder .btn-builder-add:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  #builder .look-builder {
    grid-template-columns: 1fr 0.9fr;
  }
}

@media (max-width: 860px) {
  #builder {
    padding: 18px 12px 28px;
    background: var(--black);
  }

  #builder .section-inner {
    width: 100%;
    max-width: 480px;
    height: auto;
    min-height: auto;
  }

  #builder .home-shelf {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
  }

  #builder .look-builder {
    grid-template-columns: 1fr;
    height: auto;
  }

  #builder .builder-stage {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
    border-radius: 14px 14px 0 0;
    background: #111;
  }

  #builder .builder-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
  }

  #builder .builder-stage::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.08), transparent 55%, rgba(0,0,0,0.2));
  }

  #builder .control-panel {
    height: auto;
    overflow: visible;
    padding: 18px 16px 20px;
    gap: 0;
    border-left: 0;
    border-radius: 0 0 14px 14px;
  }

  #builder .complete-look-bar {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  #builder .complete-look-bar .h2 {
    font-size: 1rem;
    line-height: 1.08;
  }

  #builder .builder-step {
    grid-template-columns: 24px 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  #builder .style-row-builder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  #builder .style-select-btn {
    min-height: 40px;
    padding: 0 9px;
    white-space: normal;
    line-height: 1.15;
    font-size: 0.62rem;
  }

  #builder .builder-summary-card {
    gap: 12px;
    padding-top: 14px;
  }
}

@media (max-width: 560px) {
  #builder {
    padding: 12px 8px 24px;
  }

  #builder .builder-stage {
    aspect-ratio: 1 / 0.74;
  }

  #builder .builder-stage::after {
    display: none;
  }

  #builder .style-row-builder {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  #builder .summary-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  #builder .summary-details p {
    white-space: normal;
  }

  #builder .btn-builder-add {
    min-height: 44px;
  }
}



/* Minimal PDP polish */
.pdp-section {
  display: flex;
  justify-content: center;
  padding: clamp(18px, 2.2vw, 30px) 24px clamp(34px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.035)),
    #f3f3eb;
}

.pdp {
  width: min(1160px, calc(100vw - 56px));
  margin-inline: auto;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(350px, 390px);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  justify-content: center;
}

.pdp-gallery {
  --pdp-thumb-width: 72px;
  --pdp-thumb-height: 90px;
  --pdp-thumb-gap: 9px;
  --pdp-thumb-rail-height: 486px;
  display: grid;
  grid-template-columns: var(--pdp-thumb-width) minmax(0, 558px);
  gap: 12px;
  align-items: stretch;
  align-self: start;
  width: 100%;
  justify-self: end;
  min-height: 0;
  outline: none;
}

.pdp-gallery:focus-visible {
  outline: 2px solid rgba(176, 0, 0, 0.42);
  outline-offset: 8px;
}

.pdp-image {
  position: absolute;
  inset: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  background: #e9e9e6;
  transition: opacity 420ms ease, transform 520ms ease;
}

.pdp-slider-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  height: auto;
  max-height: none;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: #e9e9e6;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.055);
}

.pdp-image.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.pdp-slider-stage .pdp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.pdp-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: var(--black);
  background: rgba(245, 245, 235, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.pdp-gallery-arrow:hover,
.pdp-gallery-arrow:focus-visible {
  background: var(--bone);
  transform: translateY(-50%) scale(1.04);
}

.pdp-gallery-arrow.prev {
  left: 14px;
}

.pdp-gallery-arrow.next {
  right: 14px;
}

.pdp-gallery-arrow .header-icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.pdp-gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: var(--pdp-thumb-height);
  align-self: start;
  gap: var(--pdp-thumb-gap);
  width: var(--pdp-thumb-width);
  height: var(--pdp-thumb-rail-height);
  max-height: var(--pdp-thumb-rail-height);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pdp-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.pdp-gallery-thumb {
  position: relative;
  width: var(--pdp-thumb-width);
  height: var(--pdp-thumb-height);
  aspect-ratio: 4 / 5;
  min-height: 0;
  scroll-snap-align: start;
  padding: 0;
  overflow: hidden;
  background: #e8e8e1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  opacity: 0.66;
  cursor: pointer;
  transition: opacity 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pdp-gallery-thumb.active,
.pdp-gallery-thumb:hover,
.pdp-gallery-thumb:focus-visible {
  opacity: 1;
  border-color: rgba(0, 0, 0, 0.42);
}

.pdp-gallery-thumb.active {
  transform: none;
}

.pdp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.pdp-media-stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 9px;
  height: auto;
  min-height: 0;
}

.pdp-gallery-count {
  justify-self: end;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-panel {
  top: calc(var(--header) + 22px);
  gap: 16px;
  padding: 24px;
  background: rgba(247, 247, 239, 0.96);
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.075);
  backdrop-filter: blur(10px);
}

.pdp-price-block {
  gap: 12px;
  padding-bottom: 16px;
}

.pdp-price-block .h3 {
  max-width: 340px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.pdp-buy-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.pdp-buy-meta strong {
  color: var(--black);
  font-size: 1rem;
}

.pdp-option-group {
  gap: 9px;
}

.pdp-option-head {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.option-row {
  gap: 8px;
}

.option-btn {
  min-width: 42px;
  min-height: 38px;
  padding: 8px 11px;
  border-radius: 8px;
  background: #fbfbf7;
  font-weight: 600;
}

.option-btn.color-option {
  padding-right: 12px;
}

.variant-stock {
  padding: 10px 0;
  font-size: 0.72rem;
}

.pdp-panel > .btn {
  min-height: 48px;
  border-radius: 8px;
  letter-spacing: 0.03em;
}

.pdp-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding-bottom: 2px;
}

.pdp-trust-list span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 7px;
  color: rgba(5, 5, 5, 0.68);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-size: 0.62rem;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.detail-accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.pdp-detail {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.pdp-detail summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(5, 5, 5, 0.88);
  cursor: pointer;
  font-size: 0.68rem;
  text-transform: uppercase;
  list-style: none;
}

.pdp-detail summary::-webkit-details-marker {
  display: none;
}

.pdp-detail summary::after {
  content: "+";
  color: rgba(5, 5, 5, 0.56);
  font-size: 1rem;
  line-height: 1;
}

.pdp-detail[open] summary::after {
  content: "-";
}

.pdp-detail-body {
  display: grid;
  gap: 8px;
  padding: 0 0 15px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

.pdp-detail-body p {
  margin: 0;
}

.pdp-detail-body > span {
  display: block;
  white-space: pre-line;
}

.pdp-detail-body .detail-row {
  border-bottom: 0;
}

.detail-row {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  padding: 8px 0;
}

.detail-row strong {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.detail-row span {
  font-size: 0.8rem;
  line-height: 1.35;
}

.pdp-size-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.size-chart-trigger {
  padding: 0 0 2px;
  color: #a80000;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.size-chart-trigger:hover,
.size-chart-trigger:focus-visible {
  color: #e02114;
}

body.size-chart-open {
  overflow: hidden;
}

.size-chart-dialog {
  width: min(1060px, calc(100vw - 32px));
  max-width: none;
  max-height: min(86vh, 760px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--bone);
  background: #202020;
  border: 1px solid rgba(245, 245, 235, 0.18);
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.size-chart-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(7px);
}

.size-chart-shell {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 36px);
}

.size-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.size-chart-header > div {
  display: grid;
  gap: 7px;
}

.size-chart-kicker {
  color: #ec2d1f;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.size-chart-header h2 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.size-chart-header p,
.size-chart-note {
  margin: 0;
  color: rgba(245, 245, 235, 0.64);
  font-size: 0.84rem;
  line-height: 1.45;
}

.size-chart-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--bone);
  background: rgba(245, 245, 235, 0.05);
  border: 1px solid rgba(245, 245, 235, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.size-chart-close:hover,
.size-chart-close:focus-visible {
  color: #050505;
  background: var(--bone);
}

.size-chart-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.size-chart-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(245, 245, 235, 0.14);
  border-radius: 9px;
  scrollbar-color: rgba(245, 245, 235, 0.35) transparent;
}

.size-chart-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: center;
}

.size-chart-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.size-chart-table th,
.size-chart-table td {
  min-width: 86px;
  padding: 15px 14px;
  border-right: 1px solid rgba(245, 245, 235, 0.09);
  border-bottom: 1px solid rgba(245, 245, 235, 0.09);
}

.size-chart-table tr:last-child > * {
  border-bottom: 0;
}

.size-chart-table tr > *:last-child {
  border-right: 0;
}

.size-chart-table thead th {
  color: var(--bone);
  background: rgba(245, 245, 235, 0.05);
  font-family: var(--font-bold);
  font-size: 1rem;
  text-transform: uppercase;
}

.size-chart-table thead th:first-child,
.size-chart-table tbody th {
  min-width: 190px;
  position: sticky;
  left: 0;
  z-index: 2;
  text-align: left;
  background: #202020;
}

.size-chart-table thead th:first-child {
  z-index: 3;
  color: #ec2d1f;
  background: #292929;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.size-chart-table tbody th {
  color: var(--bone);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.size-chart-table tbody td {
  color: #ec2d1f;
  font-family: var(--font-bold);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.size-chart-table .is-selected {
  box-shadow: inset 0 2px 0 #ec2d1f, inset 0 -2px 0 #ec2d1f;
  background: rgba(236, 45, 31, 0.1);
}

.size-chart-note {
  padding-top: 2px;
}

@media (max-width: 620px) {
  .size-chart-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 10px;
  }

  .size-chart-shell {
    gap: 16px;
    padding: 18px 14px;
  }

  .size-chart-header {
    gap: 14px;
  }

  .size-chart-header h2 {
    font-size: 1.55rem;
  }

  .size-chart-table th,
  .size-chart-table td {
    min-width: 72px;
    padding: 13px 10px;
  }

  .size-chart-table thead th:first-child,
  .size-chart-table tbody th {
    min-width: 148px;
  }

  .pdp-size-head-actions {
    gap: 9px;
  }
}

.pdp-related-section {
  display: flex;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px) 24px;
  background: #050505;
}

.pdp-related-section .section-inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.pdp-related-section .product-shelf-container {
  width: min(1160px, calc(100vw - 56px));
  margin: 0 auto;
  transform: none;
  padding: clamp(24px, 3vw, 38px);
  background: #f3f3eb;
  border: 1px solid rgba(245, 245, 235, 0.12);
  border-radius: 8px;
}

.pdp-related-section .split-head {
  margin-bottom: 20px;
  align-items: end;
}

.pdp-related-section .split-head .eyebrow {
  color: #b00000;
}

.pdp-related-section .split-head .h2 {
  color: var(--black);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.pdp-related-section .split-head .btn {
  min-height: 36px;
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.28);
  background: transparent;
}

.pdp-related-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 0;
}

.pdp-related-section .product-rail .product-card {
  min-width: 0;
  flex: initial;
}

.pdp-related-section .product-shelf-controls {
  display: none;
}

@media (max-width: 1100px) {
  .pdp {
    grid-template-columns: minmax(0, 590px) minmax(330px, 380px);
    gap: 28px;
  }

  .pdp-gallery {
    --pdp-thumb-width: 66px;
    --pdp-thumb-height: 82px;
    --pdp-thumb-rail-height: 446px;
    grid-template-columns: var(--pdp-thumb-width) minmax(0, 1fr);
  }

  .pdp-related-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pdp {
    width: min(700px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pdp-panel {
    position: static;
    order: 0;
    box-shadow: none;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
    width: 100%;
    justify-self: center;
    min-height: 0;
  }

  .pdp-slider-stage {
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .pdp-gallery-thumbs {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 5);
    grid-auto-rows: auto;
    grid-template-columns: none;
    order: 2;
    height: auto;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  .pdp-gallery-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .pdp-related-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pdp-section {
    padding: 10px 12px 28px;
  }

  .pdp {
    width: 100%;
    gap: 12px;
  }

  .pdp-panel {
    padding: 16px;
    border-radius: 8px;
  }

  .pdp-price-block .h3 {
    max-width: none;
  }

  .pdp-buy-meta {
    display: grid;
    justify-content: stretch;
  }

  .pdp-trust-list {
    grid-template-columns: 1fr;
  }

  .pdp-panel > .btn {
    position: sticky;
    bottom: 10px;
    z-index: 6;
    box-shadow: 0 14px 28px rgba(176, 0, 0, 0.24);
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .pdp-slider-stage {
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 10px;
  }

  .pdp-gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .pdp-gallery-arrow.prev {
    left: 10px;
  }

  .pdp-gallery-arrow.next {
    right: 10px;
  }

  .pdp-gallery-thumbs {
    gap: 6px;
    grid-auto-columns: calc((100% - 24px) / 5);
  }

  .option-btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .pdp-related-section {
    padding: 32px 10px;
  }

  .pdp-related-section .product-shelf-container {
    width: calc(100vw - 20px);
    padding: 18px 12px;
  }

  .pdp-related-section .split-head {
    grid-template-columns: 1fr;
  }

  .pdp-related-rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Global typography weight cap: keep all readable text at medium or lighter. */
body,
body :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  span,
  small,
  strong,
  b,
  a,
  button,
  input,
  textarea,
  select,
  label,
  li,
  th,
  td,
  figcaption,
  blockquote,
  .h1,
  .h2,
  .h3,
  .btn,
  .text-link,
  .eyebrow,
  .product-title,
  .product-price
) {
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
}

/* Premium unified header */
.site-header {
  height: 76px;
  color: rgba(245, 245, 235, 0.94);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.88)),
    rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(22px) saturate(1.18);
  border-bottom: 1px solid rgba(245, 245, 235, 0.11);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

body.header-transparent .site-header,
body.header-solid .site-header,
body.home-route.header-transparent .site-header {
  color: rgba(245, 245, 235, 0.94);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.74)),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(20px) saturate(1.16);
  border-bottom-color: rgba(245, 245, 235, 0.1);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.header-inner {
  width: min(100%, var(--max));
  padding: 0 clamp(16px, 2.4vw, 28px);
}

.brand-mark {
  gap: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.brand-mark:hover {
  background: rgba(255, 255, 255, 0.04);
}

.brand-c {
  width: 34px;
  height: 34px;
  border: 0;
  box-shadow: 0 0 18px rgba(245, 245, 235, 0.16);
}

.brand-copy {
  width: clamp(120px, 10vw, 156px);
}

.brand-text-logo {
  max-height: 28px;
}

body.home-route.header-transparent .site-header .brand-c img,
body.home-route.header-transparent .site-header .brand-text-logo {
  filter: none;
}

.header-link {
  color: rgba(245, 245, 235, 0.9);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(245, 245, 235, 0.13);
  border-radius: 8px;
}

.header-link.icon-only {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
}

.header-icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.75;
}

.header-link:hover,
.header-link:focus-visible,
.header-link.active,
body.home-route.header-transparent .site-header .header-link:hover,
body.home-route.header-transparent .site-header .header-link.active {
  color: #050505;
  background: rgba(245, 245, 235, 0.94);
  border-color: rgba(245, 245, 235, 0.94);
}

body.home-route.header-transparent .site-header .header-link {
  color: rgba(245, 245, 235, 0.92);
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(245, 245, 235, 0.18);
}

.header-actions {
  gap: 8px;
}

.bag-count {
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  color: #fff;
  background: var(--red);
  border: 1px solid rgba(245, 245, 235, 0.48);
  font-size: 0.62rem;
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .header-inner {
    padding: 0 14px;
    gap: 10px;
  }

  .brand-mark {
    padding: 5px 6px;
    gap: 7px;
  }

  .brand-c {
    width: 32px;
    height: 32px;
  }

  .brand-copy {
    width: clamp(118px, 34vw, 150px);
  }

  .header-link.icon-only {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .header-actions {
    gap: 6px;
  }
}

/* Main website header layout */
@media (min-width: 981px) {
  .header-inner {
    width: min(80vw, var(--max));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(22px, 3vw, 44px);
    padding-inline: 0;
  }

  .menu-toggle {
    display: none;
  }

  .brand-mark {
    grid-column: 1;
    justify-self: start;
  }

  .main-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .main-nav a {
    padding: 11px 12px;
    color: rgba(245, 245, 235, 0.72);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.active {
    color: var(--bone);
    background: rgba(245, 245, 235, 0.07);
    border-color: rgba(245, 245, 235, 0.12);
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    width: 100%;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-mark {
    grid-column: 2;
    justify-self: center;
  }
}

/* Home hero transparent header */
body.home-route.header-transparent .site-header {
  color: #ffffff;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.home-route.header-transparent .site-header .brand-c img,
body.home-route.header-transparent .site-header .brand-text-logo {
  filter: none;
}

body.home-route.header-transparent .site-header .main-nav a {
  color: rgba(255, 255, 255, 0.78);
}

body.home-route.header-transparent .site-header .main-nav a:hover,
body.home-route.header-transparent .site-header .main-nav a:focus-visible,
body.home-route.header-transparent .site-header .main-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

body.home-route.header-transparent .site-header .header-link {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

body.home-route.header-transparent .site-header .header-link:hover,
body.home-route.header-transparent .site-header .header-link:focus-visible,
body.home-route.header-transparent .site-header .header-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}
