/* ============================================================
   REWIND 84 — MASTER STYLESHEET
   Curated. Reworn. Reimagined.
   1980s Vintage Fashion Editorial + Archive Streetwear
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color Palette — Aged 80s Fashion Archive */
  --black:         #0d0d0b;
  --black-deep:    #060605;
  --black-mid:     #151512;
  --black-card:    #1c1c18;
  --off-white:     #f2ede6;
  --cream:         #ede8df;
  --cream-dim:     #c8c1b4;
  --grey-light:    #a89e91;
  --grey-mid:      #7a7168;
  --red-faded:     #8b2e24;
  --red-muted:     #a83a30;
  --red-vibrant:   #d13b2e;
  --blue-vintage:  #2c4a6e;
  --gold-worn:     #b8922a;

  /* Typography */
  --font-display:  'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:     'Barlow Condensed', sans-serif;
  --font-mono:     'DM Mono', 'Courier New', monospace;
  --font-italic:   'Playfair Display', serif;

  /* Spacing — Tightened & Dense */
  --space-xs:  0.4rem;
  --space-sm:  0.85rem;
  --space-md:  1.5rem;
  --space-lg:  2.25rem;
  --space-xl:  3.5rem;
  --space-2xl: 4.75rem;

  /* Layout */
  --container-max: 1440px;
  --nav-h: 70px;
  --nav-h-scrolled: 56px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-display);
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

/* Screen reader only */
.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;
}

/* ─── TYPOGRAPHY HIERARCHY ──────────────────────────────────── */
.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-eyebrow {
  display: inline-block;
  color: var(--grey-mid);
  margin-bottom: 0.45rem;
  letter-spacing: 0.16em;
}

/* Three Established Heading Scales */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.35rem;
}

.section-title--light { color: var(--off-white); }

.subsection-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--grey-mid);
  letter-spacing: 0.02em;
  font-style: italic;
  font-family: var(--font-italic);
}
.section-subtitle--light { color: var(--cream-dim); }

.offset-title {
  display: inline-block;
  transform: translateX(1rem);
}

/* Publication Section Transition Bar */
.archive-section-tag {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.6rem var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
  color: var(--grey-mid);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  border-top: 1px solid rgba(13,13,11,0.06);
}
.archive-section-tag .ast-line {
  flex: 1;
  height: 1px;
  background: var(--red-muted);
  opacity: 0.35;
}

.text-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--black);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--red-faded); border-color: var(--red-faded); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9em 2.2em;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--black);
  color: var(--off-white);
}
.btn--primary:hover {
  background: var(--red-faded);
  color: var(--off-white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(13,13,11,0.4);
  color: var(--off-white);
  border: 1px solid rgba(242,237,230,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(242,237,230,0.15);
  border-color: var(--off-white);
  color: var(--off-white);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--off-white);
}

/* ─── GRAIN OVERLAY ─────────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
  animation: grain-shift 0.15s steps(2) infinite;
}

/* ─── CONTAINERS ────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-fluid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, height 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav-header.scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(13,13,11,0.94);
  border-bottom-color: rgba(242,237,230,0.1);
  backdrop-filter: blur(14px);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--space-md);
  gap: 1rem;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--off-white);
  padding: 0.5em 0.7em;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover { color: var(--cream-dim); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.7em;
  right: 0.7em;
  height: 2px;
  background: var(--red-muted);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0;
}

.nav-logo-img {
  height: 58px;
  max-height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease, transform 0.2s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
.nav-header.scrolled .nav-logo-img { height: 46px; }
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.4em 0.6em;
  color: var(--off-white);
  transition: color 0.2s;
}
.nav-icon-btn svg { stroke: var(--off-white); transition: stroke 0.2s; }
.nav-icon-btn:hover svg { stroke: var(--cream-dim); }

.nav-icon-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
}

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px; right: 4px;
  background: var(--red-vibrant);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.cart-count.bump { animation: cart-bump 0.3s ease; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--off-white);
  transition: all 0.3s ease;
}

/* ─── Mobile Menu ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  pointer-events: all;
  visibility: visible;
}
.mobile-menu-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open .mobile-menu-inner { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}
.mobile-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--off-white);
}
.mobile-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}
.mobile-menu-close {
  background: none; border: none; cursor: pointer;
  color: var(--cream-dim); font-size: 1.4rem;
}

.mobile-nav-links {
  display: flex; flex-direction: column;
  flex: 1;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--off-white);
  letter-spacing: -0.01em;
  line-height: 1.25;
  border-bottom: 1px solid rgba(242,237,230,0.08);
  padding: 0.4em 0;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { color: var(--red-vibrant); padding-left: 0.5rem; }

.mobile-menu-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--grey-mid);
}

/* ─── Search Overlay ────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay-inner { width: 100%; max-width: 800px; padding: var(--space-md); }
.search-close {
  position: absolute; top: var(--space-md); right: var(--space-md);
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--grey-mid);
}
.search-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--grey-mid);
  display: block; margin-bottom: 1rem;
}
.search-input-row { display: flex; border-bottom: 2px solid var(--black); }
.search-input {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  background: none; border: none; outline: none;
  color: var(--black); padding: 0.5em 0; text-transform: uppercase;
}
.search-submit {
  background: none; border: none; cursor: pointer;
  font-size: 2rem; color: var(--black); padding: 0 0.5rem;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-image-wrap { position: absolute; inset: 0; }
.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,11,0.92) 0%,
    rgba(13,13,11,0.45) 45%,
    rgba(13,13,11,0.2) 75%,
    rgba(13,13,11,0.3) 100%
  );
}

/* Metadata corner pieces */
.hero-meta {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 10;
}
.hero-meta--tl { top: calc(var(--nav-h) + 1.2rem); left: var(--space-md); }
.hero-meta--tr { top: calc(var(--nav-h) + 1.2rem); right: var(--space-md); text-align: right; }
.hero-meta--bl { bottom: 2rem; left: var(--space-md); }
.hero-meta--br { bottom: 2rem; right: var(--space-md); text-align: right; }

.vhs-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--red-vibrant);
  animation: vhs-blink 2s infinite;
}
.vhs-timestamp {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(242,237,230,0.6);
  letter-spacing: 0.08em;
}
.vhs-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(242,237,230,0.8);
}
.vhs-drop, .vhs-catalog, .vhs-origin {
  font-size: 0.55rem;
  color: rgba(242,237,230,0.45);
  letter-spacing: 0.12em;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 var(--space-md) 4.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  color: rgba(242,237,230,0.65);
}
.hero-badge {
  background: var(--red-faded);
  color: #fff;
  padding: 2px 6px;
  font-weight: 600;
}
.hero-divider { color: rgba(242,237,230,0.3); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 11vw, 10rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.headline-line { display: block; }
.headline-line--indent { padding-left: clamp(1.5rem, 5vw, 4.5rem); }

.hero-subtext {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(242,237,230,0.75);
  margin-bottom: 2.2rem;
  text-transform: uppercase;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(242,237,230,0.35);
  animation: scroll-drop 1.5s infinite;
}
.scroll-label { color: rgba(242,237,230,0.45); font-size: 0.55rem; }

/* ============================================================
   SECTION TRANSITION BAR
============================================================ */
.section-transition-bar {
  background: var(--black);
  border-top: 1px solid rgba(242,237,230,0.08);
  border-bottom: 1px solid rgba(242,237,230,0.08);
  overflow: hidden;
  padding: 0.9rem 0;
}
.transition-track { overflow: hidden; }
.transition-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 1.5rem;
  animation: marquee-scroll 24s linear infinite;
  width: max-content;
}
.tb-item {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.tb-rule { color: var(--red-muted); opacity: 0.6; }

/* ============================================================
   01 — NEW DROP (Product-focused Dynamic Rail)
============================================================ */
.drop-section {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--off-white);
  border-bottom: 1px solid rgba(13,13,11,0.08);
}

.drop-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.drop-title-badge-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.drop-num-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  background: var(--black);
  color: var(--off-white);
  padding: 4px 8px;
  margin-top: 0.5rem;
}

.drop-main-title {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  line-height: 0.92;
  margin-bottom: 0.5rem;
}

.drop-description {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--grey-mid);
  max-width: 540px;
}

.drop-header-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.drop-filter-pills {
  display: flex;
  gap: 0.4rem;
  background: rgba(13,13,11,0.05);
  padding: 4px;
}

.drop-pill-btn {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--grey-mid);
  transition: all 0.2s;
}
.drop-pill-btn:hover { color: var(--black); }
.drop-pill-btn.active {
  background: var(--black);
  color: var(--off-white);
  font-weight: 600;
}

.rail-nav-arrows {
  display: flex;
  gap: 0.5rem;
}
.rail-arrow-btn {
  width: 40px; height: 40px;
  background: var(--black);
  color: var(--off-white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.rail-arrow-btn:hover {
  background: var(--red-faded);
  transform: translateY(-1px);
}

/* Product Rail */
.product-rail-wrapper {
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--black) rgba(13,13,11,0.1);
}
.product-rail-wrapper::-webkit-scrollbar { height: 4px; }
.product-rail-wrapper::-webkit-scrollbar-track { background: rgba(13,13,11,0.08); }
.product-rail-wrapper::-webkit-scrollbar-thumb { background: var(--black); }

.product-rail {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem 0;
}

/* Individual Product Card in Rail */
.product-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--cream);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(13,13,11,0.09);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(13,13,11,0.09);
  border-color: rgba(13,13,11,0.22);
}

.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e2ddd3;
}
.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .product-card-img { transform: scale(1.03); }

.product-card-img-alt {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover .product-card-img-alt { opacity: 1; }

.product-card-badges {
  position: absolute; top: 0.6rem; left: 0.6rem;
  display: flex; flex-direction: column; gap: 4px; z-index: 2;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  padding: 3px 6px;
  text-transform: uppercase;
}
.badge-oneofone { background: var(--red-faded); color: #fff; }
.badge-unavailable { background: var(--grey-mid); color: #fff; }

.product-card-archive-tag {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(13,13,11,0.75);
  color: var(--off-white);
  padding: 2px 6px;
  font-size: 0.48rem;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.product-card-hover-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,11,0.9) 0%, rgba(13,13,11,0.4) 65%, transparent 100%);
  padding: 1.5rem 0.85rem 0.85rem;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
}
.product-card:hover .product-card-hover-overlay { transform: translateY(0); }

.hover-view-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--off-white);
}
.hover-meta {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  color: rgba(242,237,230,0.75);
  margin-top: 3px;
}

.product-card-info {
  padding: 0.85rem 0.85rem 1rem;
  background: var(--off-white);
  border-top: 1px solid rgba(13,13,11,0.08);
}
.product-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}
.product-card-archive-no {
  font-size: 0.52rem;
  color: var(--red-muted);
}
.product-card-category {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: var(--grey-mid);
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.45rem;
  line-height: 1.05;
}
.product-card-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(13,13,11,0.06);
  padding-bottom: 0.45rem;
  margin-bottom: 0.45rem;
}
.product-card-size-cond {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--grey-mid);
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
}
.product-card-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card-inspect-link {
  font-size: 0.58rem;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.product-card:hover .product-card-inspect-link { color: var(--red-faded); }
.product-card-availability {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  color: var(--grey-mid);
}
.product-card-availability.unavailable { color: var(--red-faded); font-weight: 600; }

.drop-footer {
  margin-top: var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(13,13,11,0.08);
  padding-top: 1.5rem;
}
.drop-footer-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: var(--grey-mid);
  font-size: 0.6rem;
}

/* ============================================================
   02 — DARK ARCHIVE SECTION (Mood Shift / Black Full-Bleed)
============================================================ */
.dark-archive-section {
  background: var(--black-deep);
  color: var(--off-white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(242,237,230,0.08);
  border-bottom: 1px solid rgba(242,237,230,0.08);
}

.dark-archive-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: 1rem;
}

.dark-archive-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(242,237,230,0.2);
  padding: 0.75rem 1.25rem;
}
.vault-code { font-family: var(--font-mono); font-size: 0.5rem; color: var(--red-muted); }
.vault-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }

.dark-archive-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.dark-piece-card {
  background: var(--black-mid);
  border: 1px solid rgba(242,237,230,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.dark-piece-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,237,230,0.3);
}

.dark-piece-img-box {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #11110e;
}
.dark-piece-card--primary .dark-piece-img-box { aspect-ratio: 16/10; }

.dark-piece-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: contrast(1.08) saturate(0.9);
}
.dark-piece-card:hover .dark-piece-img { transform: scale(1.04); }

.dark-piece-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(13,13,11,0.85);
  color: var(--off-white);
  padding: 3px 6px;
  font-size: 0.5rem;
}
.dark-piece-sold-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--red-faded);
  color: #fff;
  padding: 3px 6px;
  font-size: 0.5rem;
}

.dark-piece-details {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dark-piece-eyebrow {
  color: var(--red-muted);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}
.dark-piece-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.dark-piece-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--grey-light);
  margin-bottom: 1.2rem;
  flex: 1;
}

.dark-spec-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(242,237,230,0.1);
  border-bottom: 1px solid rgba(242,237,230,0.1);
  padding: 0.5rem 0;
  font-size: 0.6rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}
.dark-price { font-weight: 800; color: var(--off-white); font-family: var(--font-display); font-size: 0.9rem; }

.dark-inspect-btn {
  background: none;
  border: 1px solid rgba(242,237,230,0.25);
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.7em;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}
.dark-inspect-btn:hover {
  background: var(--off-white);
  color: var(--black);
}

.dark-archive-manifesto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(242,237,230,0.1);
  padding-top: 2rem;
}
.manifesto-col { padding: 0.5rem; }
.manifesto-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-muted);
  display: block; margin-bottom: 0.25rem;
}
.manifesto-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}
.manifesto-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--grey-light);
}

/* ============================================================
   03 — HOW IT WORKS (Editorial Timeline)
============================================================ */
.process-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: 1rem;
}
.process-title { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-bottom: 0.5rem; }
.process-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--grey-mid);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
}

.process-timeline-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--black);
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ps-marker {
  width: 10px; height: 10px;
  background: var(--red-vibrant);
  position: absolute;
  top: -2.35rem; left: 0;
}

.ps-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ps-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(13,13,11,0.12);
  line-height: 0.8;
}

.ps-label { color: var(--red-muted); margin-bottom: 0.5rem; font-size: 0.65rem; }
.ps-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.ps-body {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ps-meta {
  font-size: 0.6rem;
  color: var(--grey-mid);
  line-height: 1.8;
}

.ps-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e4e0d8;
  border: 1px solid rgba(13,13,11,0.08);
}
.ps-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.process-step:hover .ps-img-wrapper img { transform: scale(1.05); }

.ps-img-caption, .ps-img-caption-right {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  font-size: 0.55rem; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.ps-img-caption-right { left: auto; right: 0.75rem; text-align: right; }

.ps-measure-marks {
  position: absolute; inset: 0;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}
.pm-mark {
  position: absolute;
  background: rgba(13,13,11,0.7);
  padding: 2px 6px;
  border: 1px solid rgba(255,255,255,0.4);
}
.pm-top { top: 12%; left: 50%; transform: translateX(-50%); border-top: 2px solid var(--red-vibrant); }
.pm-side { top: 50%; right: 8%; transform: translateY(-50%); border-right: 2px solid var(--red-vibrant); }
.pm-bottom { bottom: 12%; left: 50%; transform: translateX(-50%); border-bottom: 2px solid var(--red-vibrant); }

/* ============================================================
   04 — THE SOLE ARCHIVE (Sneaker Technical Section)
============================================================ */
.sole-archive-section {
  background: #11110e;
  color: var(--off-white);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(242,237,230,0.08);
}

.sole-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: 1rem;
}
.sole-header-badge {
  border: 1px solid rgba(242,237,230,0.25);
  padding: 6px 12px;
  color: var(--cream-dim);
}

.sole-technical-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.sole-blueprint-stage {
  position: relative;
  background: #181814;
  border: 1px solid rgba(242,237,230,0.12);
  padding: 2rem;
  overflow: hidden;
}

.blueprint-frame {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sole-featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.08);
}

/* Precision Pointer Callout Lines */
.blueprint-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  z-index: 5;
}
.callout-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-vibrant);
  box-shadow: 0 0 8px var(--red-vibrant);
}
.callout-line {
  height: 1px;
  background: rgba(242,237,230,0.4);
}
.callout-tag {
  background: rgba(13,13,11,0.88);
  border: 1px solid rgba(242,237,230,0.25);
  padding: 4px 8px;
  font-size: 0.52rem;
  color: var(--off-white);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.callout-toe { top: 62%; left: 8%; }
.callout-toe .callout-line { width: 30px; }
.callout-sole { bottom: 15%; right: 18%; }
.callout-sole .callout-line { width: 35px; }
.callout-collar { top: 22%; right: 10%; }
.callout-collar .callout-line { width: 40px; }
.callout-insole { top: 40%; left: 15%; }
.callout-insole .callout-line { width: 25px; }

.sole-specs-card {
  background: #181814;
  border: 1px solid rgba(242,237,230,0.12);
  padding: 2rem;
}
.specs-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
}
.specs-tag { color: var(--red-muted); font-size: 0.6rem; }
.specs-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.specs-sub { color: var(--grey-mid); font-size: 0.6rem; margin-bottom: 1.5rem; }

.specs-table {
  border-top: 1px solid rgba(242,237,230,0.1);
  margin-bottom: 1.5rem;
}
.specs-row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(242,237,230,0.08);
  font-size: 0.8rem;
}
.specs-k { color: var(--grey-mid); font-size: 0.58rem; letter-spacing: 0.12em; }
.specs-v { font-family: var(--font-display); font-weight: 700; color: var(--cream); text-transform: uppercase; }
.specs-price { color: var(--off-white); font-size: 1.2rem; font-weight: 900; }

.sole-companion-row {
  border-top: 1px solid rgba(242,237,230,0.1);
  padding-top: 2rem;
}
.sole-companion-title {
  color: var(--grey-mid);
  margin-bottom: 1.2rem;
  font-size: 0.65rem;
}

.sneakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sneaker-card {
  background: #181814;
  border: 1px solid rgba(242,237,230,0.08);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.sneaker-card:hover { transform: translateY(-4px); }
.sneaker-card-img-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.sneaker-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.sneaker-card:hover .sneaker-card-img { transform: scale(1.05); }

.sneaker-card-info { padding: 1rem; }
.sneaker-archive-num { font-family: var(--font-mono); font-size: 0.52rem; color: var(--grey-mid); display: block; margin-bottom: 0.3rem; }
.sneaker-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--off-white); text-transform: uppercase; margin-bottom: 0.5rem; }
.sneaker-meta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; border-top: 1px solid rgba(242,237,230,0.08); padding-top: 0.5rem; }
.sneaker-meta-item { display: flex; flex-direction: column; }
.sneaker-meta-label { font-family: var(--font-mono); font-size: 0.45rem; color: var(--grey-mid); }
.sneaker-meta-val { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--cream); }
.sneaker-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 0.75rem; }
.sneaker-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--off-white); }

/* ============================================================
   05 — FIT TECHNOLOGY (Interactive Fitting Room)
============================================================ */
.fit-showcase-section {
  padding: var(--space-xl) 0;
  background: var(--cream);
  border-top: 1px solid rgba(13,13,11,0.08);
}

.fit-showcase-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fit-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.fit-headline span { display: block; }
.fit-headline-accent { color: var(--red-faded); }

.fit-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--grey-mid);
  margin-bottom: 2rem;
  max-width: 520px;
}

.fit-action-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.fit-launch-btn { background: var(--black); padding: 1.1em 2.5em; font-size: 0.95rem; }
.fit-privacy-note { color: var(--grey-mid); font-size: 0.6rem; }

.future-tech-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.future-badge {
  background: var(--off-white);
  border: 1px solid rgba(13,13,11,0.12);
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: all 0.2s;
}
.future-badge--active {
  background: #fff;
  border-color: var(--red-muted);
  box-shadow: 0 2px 8px rgba(168, 58, 48, 0.12);
}
.future-badge-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.badge-dot { color: var(--red-vibrant); font-size: 0.6rem; animation: vhs-blink 1.5s infinite; }
.badge-title { font-family: var(--font-display); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; color: var(--black); }
.badge-sub { font-family: var(--font-mono); font-size: 0.52rem; color: var(--grey-mid); letter-spacing: 0.08em; }
.future-badge--active .badge-sub { color: var(--red-muted); font-weight: 600; }

/* Interactive HUD Viewfinder Card */
.fit-hud-card {
  background: var(--black);
  border: 1px solid rgba(13,13,11,0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(13,13,11,0.15);
  transition: transform 0.3s ease;
}
.fit-hud-card:hover { transform: translateY(-4px); }

.hud-screen-header {
  background: #181814;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(242,237,230,0.1);
}
.hud-status-row { display: flex; justify-content: space-between; align-items: center; }
.hud-live-rec { font-family: var(--font-mono); font-size: 0.58rem; color: var(--red-vibrant); animation: vhs-blink 1.5s infinite; }
.hud-calib { color: var(--cream-dim); font-size: 0.55rem; }

.hud-viewport {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #11110e;
}
.hud-scan-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.1) grayscale(0.2);
}

.hud-scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red-vibrant);
  box-shadow: 0 0 12px var(--red-vibrant);
  animation: hud-laser-scan 3s ease-in-out infinite;
}

.hud-corner {
  position: absolute; width: 16px; height: 16px;
  border: 2px solid var(--off-white);
}
.hud-corner--tl { top: 1rem; left: 1rem; border-right: none; border-bottom: none; }
.hud-corner--tr { top: 1rem; right: 1rem; border-left: none; border-bottom: none; }
.hud-corner--bl { bottom: 1rem; left: 1rem; border-right: none; border-top: none; }
.hud-corner--br { bottom: 1rem; right: 1rem; border-left: none; border-top: none; }

.hud-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--off-white);
  z-index: 5;
}
.hud-crosshair { color: var(--red-vibrant); font-weight: 700; font-size: 0.9rem; }
.hud-tag {
  background: rgba(13,13,11,0.85);
  border: 1px solid rgba(242,237,230,0.3);
  padding: 3px 6px;
}
.marker-shoulder { top: 28%; left: 15%; }
.marker-chest { top: 40%; right: 15%; }
.marker-waist { top: 55%; left: 20%; }

.hud-match-pill {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,13,11,0.92);
  border: 1px solid var(--red-faded);
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 6;
}
.match-pct {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red-vibrant);
}
.match-lbl { font-size: 0.55rem; color: var(--off-white); }

.hud-footer {
  background: #181814;
  padding: 0.75rem;
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.55rem;
}

/* ============================================================
   06 — EDITORIAL LOOKBOOK (Lookbook 001 + Curation)
============================================================ */
.lookbook-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  border-top: 1px solid rgba(13,13,11,0.08);
}

.lookbook-intro-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: var(--cream);
  border: 1px solid rgba(13,13,11,0.1);
  padding: 1.75rem 2rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.lookbook-intro-left {
  max-width: 650px;
}
.lookbook-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 0.2rem;
  line-height: 0.9;
}
.lookbook-sub-theme {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--red-faded);
  margin-bottom: 0.5rem;
}
.lookbook-intro-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--grey-mid);
}

.lookbook-intro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}
.lookbook-meta-strip {
  font-size: 0.58rem;
  color: var(--grey-mid);
  letter-spacing: 0.12em;
}

.lookbook-asymm-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.75rem;
}

.look-card {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(13,13,11,0.1);
  padding: 1rem;
}
.look-card--01 { grid-row: 1 / 3; }

.look-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e0dbd1;
}
.look-card--01 .look-img-wrap { aspect-ratio: 4/5; }

.look-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.95);
  transition: transform 0.6s ease;
}
.look-card:hover .look-img { transform: scale(1.03); }

/* Editorial Tape Marks */
.tape-mark {
  position: absolute;
  width: 70px; height: 24px;
  background: rgba(237, 232, 223, 0.75);
  border: 1px dashed rgba(13,13,11,0.15);
  z-index: 10;
  backdrop-filter: blur(2px);
}
.tape-top-left { top: -10px; left: 20px; transform: rotate(-6deg); }
.tape-top-right { top: -10px; right: 20px; transform: rotate(5deg); }
.tape-bottom-left { bottom: -10px; left: 30px; transform: rotate(4deg); }

/* Interactive Look Hotspots */
.look-hotspot {
  position: absolute;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 15;
}
.hotspot-pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red-vibrant);
  animation: hotspot-pulse 1.8s infinite;
  box-shadow: 0 0 10px var(--red-vibrant);
}
.hotspot-label {
  background: var(--black);
  color: var(--off-white);
  padding: 4px 8px;
  font-size: 0.55rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.look-hotspot:hover .hotspot-label {
  opacity: 1;
  transform: translateX(0);
}

.hotspot-jacket { top: 35%; left: 30%; }
.hotspot-denim { top: 65%; left: 45%; }
.hotspot-sneaker { bottom: 20%; left: 40%; }
.hotspot-tee { top: 40%; left: 50%; }

.look-card-caption {
  padding: 0.85rem 0 0.35rem;
}
.look-tag { color: var(--red-muted); font-size: 0.58rem; margin-bottom: 0.25rem; }
.look-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.look-pieces { color: var(--grey-mid); font-size: 0.58rem; }

/* ============================================================
   07 — BRAND STATEMENT (Poster Structure & Watermark)
============================================================ */
.brand-statement-section {
  background: var(--black-deep);
  color: var(--off-white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(242,237,230,0.08);
  border-bottom: 1px solid rgba(242,237,230,0.08);
}

.statement-grid-overlay {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(242,237,230,0.08);
  pointer-events: none;
  z-index: 2;
}
.poster-reg-mark {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--red-vibrant);
  line-height: 1;
}
.reg-tl { top: -6px; left: -6px; }
.reg-tr { top: -6px; right: -6px; }
.reg-bl { bottom: -6px; left: -6px; }
.reg-br { bottom: -6px; right: -6px; }

.poster-meta-tag {
  position: absolute;
  font-size: 0.52rem;
  color: rgba(242,237,230,0.35);
  letter-spacing: 0.14em;
}
.poster-meta-tag.top-left { top: 0.6rem; left: 0.75rem; }
.poster-meta-tag.top-right { top: 0.6rem; right: 0.75rem; }
.poster-meta-tag.bot-left { bottom: 0.6rem; left: 0.75rem; }
.poster-meta-tag.bot-right { bottom: 0.6rem; right: 0.75rem; }

.statement-backdrop-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 900;
  color: rgba(242,237,230,0.035);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: -0.04em;
}

.statement-container { position: relative; z-index: 5; }
.statement-eyebrow { color: var(--red-muted); margin-bottom: 1rem; }

.statement-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.statement-giant-wrap {
  display: block;
  margin-top: 0.35rem;
}
.statement-giant-rewind { font-style: italic; color: var(--off-white); }
.statement-red-84 {
  color: var(--red-vibrant);
  font-style: normal;
  display: inline-block;
  transform: translateY(-0.06em);
}
.statement-giant-them { color: var(--off-white); margin-left: 0.5rem; }

.statement-sub { color: var(--grey-light); font-size: 0.65rem; letter-spacing: 0.16em; }

/* ============================================================
   08 — THE REWIND STORY (Editorial Spread with Annotations)
============================================================ */
.story-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}

.story-editorial-spread {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.story-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.story-lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--red-faded);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.story-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--grey-mid);
  margin-bottom: 0.85rem;
}

/* Fashion Archive Specification Statistics */
.story-archive-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 2px solid var(--black);
  border-bottom: 1px solid rgba(13,13,11,0.1);
  padding: 1.25rem 0;
  margin-top: 1.5rem;
}
.stat-box {
  display: flex;
  flex-direction: column;
  padding: 0 0.5rem;
  border-right: 1px solid rgba(13,13,11,0.08);
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.stat-label {
  color: var(--grey-mid);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.story-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(13,13,11,0.12);
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(13,13,11,0.06);
}
.story-main-photo {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Visual Archive Annotations around Photo */
.story-anno-tag {
  position: absolute;
  background: rgba(13,13,11,0.85);
  color: var(--off-white);
  padding: 3px 7px;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  z-index: 5;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(242,237,230,0.2);
}
.anno-archive { top: 0.75rem; left: 0.75rem; background: var(--black); color: var(--gold-worn); }
.anno-found { top: 30%; left: 0.75rem; }
.anno-inspected { top: 52%; right: 0.75rem; }
.anno-measured { bottom: 22%; left: 0.75rem; }
.anno-reworn { bottom: 0.75rem; right: 0.75rem; background: var(--red-faded); color: #fff; border-color: transparent; }

.story-stamp-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--black);
  color: var(--off-white);
  padding: 0.4rem 0.6rem;
  display: flex; flex-direction: column; align-items: center;
  z-index: 4;
}
.stamp-verified { font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; color: var(--gold-worn); }

.story-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--black);
  line-height: 1.45;
  border-left: 3px solid var(--red-faded);
  padding-left: 1.25rem;
}
.story-quote cite { display: block; margin-top: 0.4rem; font-style: normal; color: var(--grey-mid); font-size: 0.58rem; }

/* ============================================================
   09 — SHOP BY CATEGORY (Curated Directory)
============================================================ */
.categories-section {
  padding: var(--space-xl) 0;
  background: var(--cream);
  border-top: 1px solid rgba(13,13,11,0.08);
}
.categories-header { margin-bottom: var(--space-lg); }

.categories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}
.category-tile-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}

.category-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(13,13,11,0.1);
}
.category-tile--large { aspect-ratio: 4/5; }

.cat-img-wrap {
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
  background: #d8d3c8;
}
.cat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-tile:hover .cat-img { transform: scale(1.05); }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,11,0.85) 0%, rgba(13,13,11,0.2) 60%, transparent 100%);
}

.cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cat-tag { color: var(--red-muted); font-size: 0.6rem; }
.cat-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.cat-count { color: var(--cream-dim); font-size: 0.58rem; }

/* ============================================================
   10 — COMMUNITY ARCHIVE / SOCIAL
============================================================ */
.social-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}
.social-header { margin-bottom: var(--space-lg); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.social-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  border: 1px solid rgba(13,13,11,0.08);
}
.social-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) grayscale(0.2);
  transition: transform 0.5s ease, filter 0.3s ease;
}
.social-item:hover img {
  transform: scale(1.08);
  filter: contrast(1.1) grayscale(0);
}
.social-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,11,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.social-item:hover .social-item-overlay { opacity: 1; }
.social-item-overlay span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--off-white);
  letter-spacing: 0.1em;
}

.social-footer { text-align: center; margin-top: var(--space-lg); }

/* ============================================================
   11 — NEWSLETTER (Archive Dispatch Pass)
============================================================ */
.newsletter-section {
  padding: var(--space-xl) 0;
  background: var(--black);
  border-top: 1px solid rgba(242,237,230,0.08);
}

.newsletter-ticket-card {
  background: var(--black-mid);
  border: 1px dashed rgba(242,237,230,0.25);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 3rem;
  position: relative;
}

.ticket-code { color: var(--red-muted); display: block; margin-bottom: 0.5rem; }
.newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--off-white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.newsletter-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.5;
}

.newsletter-input-row {
  display: flex;
  border-bottom: 2px solid var(--off-white);
  margin-bottom: 1.2rem;
}
.newsletter-input {
  flex: 1;
  background: none; border: none; outline: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--off-white);
  padding: 0.8rem 0;
  text-transform: uppercase;
}
.newsletter-input::placeholder { color: rgba(242,237,230,0.3); }

.newsletter-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--off-white);
  letter-spacing: 0.12em;
  padding: 0 0.5rem;
  transition: color 0.2s;
}
.newsletter-btn:hover { color: var(--red-vibrant); }

.newsletter-perks {
  display: flex;
  gap: 1rem;
  color: var(--grey-mid);
  font-size: 0.55rem;
  flex-wrap: wrap;
}
.newsletter-success {
  color: var(--gold-worn);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  margin-top: 1rem;
}

/* ============================================================
   12 — FOOTER (Refined Archive Final Statement)
============================================================ */
.site-footer {
  background: var(--black-deep);
  color: var(--off-white);
  border-top: 1px solid rgba(242,237,230,0.08);
  padding: var(--space-lg) 0 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 72px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.footer-brand-statement {
  display: flex;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.footer-brand-statement span {
  display: inline-block;
}

.footer-archive-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-mid);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.45rem;
  flex-wrap: wrap;
}
.footer-red-marker {
  color: var(--red-vibrant);
  font-size: 0.65rem;
}
.footer-dispatch-tag {
  color: var(--red-muted);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--grey-mid);
  margin-bottom: 1.2rem;
}
.footer-link-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--cream-dim);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--off-white); }

.footer-bottom {
  border-top: 1px solid rgba(242,237,230,0.08);
  padding: 1.25rem var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--grey-mid);
}

/* ============================================================
   CART DRAWER
============================================================ */
.cart-drawer {
  position: fixed; inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.open { pointer-events: all; visibility: visible; }
.cart-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,11,0.65);
  opacity: 0; transition: opacity 0.3s ease;
}
.cart-drawer.open .cart-drawer-overlay { opacity: 1; }

.cart-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--off-white);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--space-md);
  border-bottom: 1px solid rgba(13,13,11,0.1);
}
.cart-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; }
.cart-close { background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--grey-mid); }
.cart-receipt-header {
  display: flex; justify-content: space-between;
  padding: 0.75rem var(--space-md);
  background: var(--black);
  color: var(--cream-dim);
  font-family: var(--font-mono);
  font-size: 0.55rem;
}
.cart-items { flex: 1; overflow-y: auto; padding: var(--space-md); }
.cart-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; text-align: center; color: var(--grey-mid); }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(13,13,11,0.08);
}
.cart-item-img { width: 80px; height: 100px; object-fit: cover; }
.cart-item-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.3rem; }
.cart-item-meta { font-family: var(--font-mono); font-size: 0.55rem; color: var(--grey-mid); display: flex; flex-direction: column; gap: 2px; }
.cart-item-price { font-family: var(--font-display); font-size: 1rem; font-weight: 800; margin-top: 0.5rem; }
.cart-item-remove { background: none; border: none; cursor: pointer; font-family: var(--font-mono); font-size: 0.55rem; color: var(--grey-mid); }
.cart-item-remove:hover { color: var(--red-faded); }

.cart-summary {
  padding: var(--space-md);
  border-top: 1px solid rgba(13,13,11,0.1);
  background: var(--cream);
}
.cart-line {
  display: flex; justify-content: space-between;
  padding: 0.4rem 0;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
}
.cart-line--total { font-size: 1.2rem; font-weight: 900; padding: 0.75rem 0; }
.cart-checkout-btn { width: 100%; justify-content: center; margin-top: 1rem; }
.cart-continue { background: none; border: none; cursor: pointer; display: block; width: 100%; text-align: center; margin-top: 1rem; color: var(--grey-mid); }

/* ============================================================
   PRODUCT DETAIL MODAL
============================================================ */
.product-modal {
  position: fixed; inset: 0;
  z-index: 3000;
  pointer-events: none;
  visibility: hidden;
}
.product-modal.open { pointer-events: all; visibility: visible; }
.product-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,11,0.75);
  opacity: 0; transition: opacity 0.3s ease;
}
.product-modal.open .product-modal-overlay { opacity: 1; }

.product-modal-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(980px, 100vw);
  background: var(--off-white);
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.product-modal.open .product-modal-panel { transform: translateX(0); }

.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  z-index: 10;
  background: var(--black); color: var(--off-white);
  border: none; cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--red-faded); }

.product-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100%;
}
.modal-gallery {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--cream);
}
.modal-gallery-main { height: calc(100% - 100px); overflow: hidden; }
.modal-main-img { width: 100%; height: 100%; object-fit: cover; }
.modal-gallery-thumbs {
  height: 100px;
  display: flex; gap: 4px; padding: 4px;
  background: var(--cream); overflow-x: auto;
}
.modal-thumb {
  width: 90px; flex-shrink: 0; cursor: pointer;
  opacity: 0.6; transition: opacity 0.2s;
  border: 1px solid transparent;
}
.modal-thumb.active { opacity: 1; border-color: var(--black); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.modal-info { padding: 3rem 2rem; overflow-y: auto; }
.modal-brand-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; color: var(--grey-mid); }
.modal-product-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin-bottom: 1rem;
}
.modal-price-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.modal-price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; }

.modal-meta-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(13,13,11,0.1); margin-bottom: 1.5rem;
}
.modal-meta-item { background: var(--cream); padding: 0.85rem 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.modal-meta-label { color: var(--grey-mid); font-size: 0.55rem; }
.modal-meta-value { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; }

.modal-section-title {
  display: block; color: var(--grey-mid);
  margin-bottom: 0.6rem; border-bottom: 1px solid rgba(13,13,11,0.08); padding-bottom: 0.4rem;
  font-size: 0.6rem;
}
.modal-measurements, .modal-description, .modal-condition-notes, .modal-shipping-info {
  margin-bottom: 1.5rem;
  font-size: 0.85rem; line-height: 1.6; color: var(--grey-mid);
}

/* REWIND FIT entry section inside product modal */
.fit-entry-section {
  background: var(--black);
  color: var(--off-white);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--red-vibrant);
}
.fit-entry-eyebrow { font-family: var(--font-mono); font-size: 0.55rem; color: var(--red-muted); display: block; margin-bottom: 0.35rem; }
.fit-entry-headline { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem; }
.fit-entry-sub { font-size: 0.8rem; line-height: 1.5; color: var(--cream-dim); margin-bottom: 1rem; }
.fit-entry-btn {
  background: var(--off-white); color: var(--black);
  border: none; padding: 0.8em 1.5em;
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.12em;
  cursor: pointer; text-transform: uppercase; transition: all 0.2s;
}
.fit-entry-btn:hover { background: var(--red-faded); color: #fff; }
.fit-entry-pills { display: flex; gap: 0.4rem; margin-top: 0.75rem; flex-wrap: wrap; }
.fit-pill { font-family: var(--font-mono); font-size: 0.48rem; background: rgba(242,237,230,0.1); color: var(--cream-dim); padding: 2px 6px; }

.modal-condition-legend {
  background: var(--black); padding: 1rem; margin-bottom: 1.5rem;
}
.condition-legend-title { color: var(--grey-mid); display: block; margin-bottom: 0.5rem; font-size: 0.58rem; }
.condition-legend-items { display: flex; flex-direction: column; gap: 4px; }
.cond-item { font-family: var(--font-mono); font-size: 0.55rem; color: var(--cream-dim); }

.modal-add-btn { width: 100%; justify-content: center; margin-bottom: 1rem; font-size: 0.95rem; }
.modal-oneofone-notice { color: var(--red-faded); text-align: center; font-size: 0.6rem; }

/* ============================================================
   MOBILE BOTTOM NAV
============================================================ */
.mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 500; height: 60px;
  background: var(--black);
  border-top: 1px solid rgba(242,237,230,0.08);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.mbn-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: var(--cream-dim); background: none; border: none;
  cursor: pointer; font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.1em;
  text-decoration: none; text-transform: uppercase; position: relative;
}
.mbn-item:hover, .mbn-item.active { color: var(--off-white); }
.mbn-item svg { stroke: currentColor; }
.mbn-item .cart-count { top: 6px; right: calc(50% - 14px); }

/* ============================================================
   ANIMATIONS & REVEALS
============================================================ */
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-5%, -5%); }
  100% { transform: translate(5%, 5%); }
}

@keyframes vhs-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes hud-laser-scan {
  0% { top: 0%; opacity: 0.8; }
  50% { top: 96%; opacity: 1; }
  100% { top: 0%; opacity: 0.8; }
}

@keyframes hotspot-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes cart-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.reveal-up, .reveal-left {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-up.in-view, .reveal-left.in-view {
  opacity: 1; transform: translate(0);
}

/* ============================================================
   RESPONSIVE DESIGN
============================================================ */
@media (max-width: 1200px) {
  .dark-archive-grid { grid-template-columns: 1fr 1fr; }
  .dark-piece-card--primary { grid-column: 1 / 3; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .category-tile-stack { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}

@media (max-width: 992px) {
  .nav-left { display: none; }
  .nav-hamburger { display: flex; }
  .nav-container { grid-template-columns: auto 1fr auto; }

  .process-timeline { grid-template-columns: 1fr; gap: 2.5rem; }
  .sole-technical-grid { grid-template-columns: 1fr; }
  .fit-showcase-inner { grid-template-columns: 1fr; }
  .lookbook-asymm-collage { grid-template-columns: 1fr; }
  .look-card--01 { grid-row: auto; }
  .story-editorial-spread { grid-template-columns: 1fr; }
  .newsletter-ticket-card { grid-template-columns: 1fr; padding: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .product-modal-inner { grid-template-columns: 1fr; }
  .modal-gallery { position: relative; height: 60vw; }
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; --nav-h-scrolled: 52px; }
  body { padding-bottom: 60px; }

  .mobile-bottom-nav { display: grid; }
  .nav-right .nav-icon-label { display: none; }

  .hero-meta--tl, .hero-meta--tr { top: calc(var(--nav-h) + 0.75rem); }
  .hero-meta--bl, .hero-meta--br { display: none; }

  .hero-headline { font-size: clamp(3rem, 14vw, 5.5rem); }
  .headline-line--indent { padding-left: 1.5rem; }

  .dark-archive-grid { grid-template-columns: 1fr; }
  .dark-piece-card--primary { grid-column: auto; }
  .dark-archive-manifesto { grid-template-columns: 1fr; }

  .sneakers-grid { grid-template-columns: 1fr; }
  .category-tile-stack { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr 1fr; }

  .product-card { width: 280px; }
}
