@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

/* ==========================================
   ANALOGUE APPAREL — Design System
   ========================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f4ef;
  --bg-card: #f7f5f0;
  --paper: #0b0a09;
  --muted: rgba(11, 10, 9, 0.66);
  --faint: rgba(11, 10, 9, 0.42);
  --line: rgba(11, 10, 9, 0.12);
  --line-solid: rgba(11, 10, 9, 0.26);
  --accent: #0b0a09;
  --accent-dim: rgba(11, 10, 9, 0.06);
  --green: #536a38;
  --green-dim: rgba(83, 106, 56, 0.11);
  --scarcity: #9a6a1c;
  --max: 1180px;
  --nav-h: 68px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--paper);
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ---- UTILITY ---- */
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.91;
  letter-spacing: 0;
}
h1 { font-size: clamp(48px, 7.5vw, 92px); }
h2 { font-size: clamp(34px, 5vw, 64px); }
h3 { font-size: clamp(22px, 3vw, 40px); }
h4 { font-size: 18px; }
p { line-height: 1.68; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  height: 52px;
  font-size: 12px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border-color 0.16s;
  white-space: nowrap;
}
.btn-primary { background: var(--paper); color: var(--bg); border-color: var(--paper); }
.btn-primary:hover { background: #2a2520; border-color: #2a2520; }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--line-solid); }
.btn-ghost:hover { border-color: var(--paper); }
.btn-accent { background: var(--scarcity); color: #ffffff; border-color: var(--scarcity); }
.btn-accent:hover { background: #7c5315; border-color: #7c5315; }
.btn-full { width: 100%; }
.btn-lg { height: 60px; font-size: 13px; }

/* ---- NAVIGATION ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand-logo { height: 32px; width: auto; object-fit: contain; }
.brand-name {
  font-family: "Anton", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.topnav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 12px;
  font-size: 12px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.14s, border-color 0.14s;
}
.nav-link:hover, .nav-link.active { color: var(--paper); border-color: var(--line-solid); }
.topnav > .nav-link[href="Contact.html"] { margin-left: 18px; }
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-solid);
  color: var(--paper);
  font-size: 12px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.14s;
  background: transparent;
  font-family: inherit;
}
.cart-btn:hover { border-color: var(--paper); }
.cart-count {
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--bg);
  font-size: 10px;
  font-weight: 900;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-count.visible { display: inline-flex; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-solid);
  color: var(--paper);
  font-size: 18px;
  cursor: pointer;
  background: transparent;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(246, 244, 239, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.22s var(--ease-out), opacity 0.22s;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav .nav-link { width: 100%; color: var(--paper); }

/* ---- HERO DROP (above fold / current drop) ---- */
.hero-drop {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #0b0a09;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: grayscale(0.95) contrast(1.04) brightness(0.82);
  transform: scale(1.02);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 42%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 30%),
    linear-gradient(90deg, rgba(11, 10, 9, 0.68) 0%, rgba(11, 10, 9, 0.36) 48%, rgba(11, 10, 9, 0.58) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.10) 0%, rgba(11, 10, 9, 0.62) 100%);
  pointer-events: none;
}
.hero-stage {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  gap: 44px;
  padding-top: 46px;
  padding-bottom: 46px;
}
.hero-intro {
  max-width: 510px;
  color: #ece6da;
}
.hero-intro .eyebrow { color: rgba(236, 230, 218, 0.78); }
.hero-intro h1 {
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.86;
  margin-bottom: 24px;
}
.hero-intro p {
  max-width: 430px;
  color: rgba(236, 230, 218, 0.74);
  font-size: 17px;
  line-height: 1.65;
}
.drop-number {
  display: inline-flex;
  font-size: 11px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  margin-bottom: 18px;
}
.hero-product-card {
  display: grid;
  grid-template-columns: minmax(300px, 1.04fr) minmax(260px, 0.96fr);
  align-items: stretch;
  min-height: 330px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-product-media {
  position: relative;
  min-height: 330px;
  background: #ffffff;
  overflow: hidden;
  border-left: 1px solid rgba(11, 10, 9, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.hero-product-media::after {
  content: none;
}
.hero-product-img {
  width: 100%;
  height: 100%;
  max-height: 370px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 38px;
  color: var(--paper);
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.drop-title { margin-bottom: 14px; font-size: clamp(38px, 3.8vw, 62px); }
.drop-subtitle {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 700;
}
.drop-meta-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.drop-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.drop-meta-row .drop-edition-label,
.drop-meta-row .drop-remaining {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.drop-meta-row .drop-edition-label { color: var(--faint); }
.drop-meta-row .drop-remaining { color: var(--scarcity); }
.drop-desc {
  color: var(--muted);
  font-size: 14px;
  max-width: 360px;
  margin-bottom: 22px;
}
.edition-block { margin-bottom: 22px; }
.edition-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.edition-row .remaining { color: var(--scarcity); }
.edition-bar {
  height: 3px;
  background: var(--line-solid);
  border-radius: 2px;
  overflow: hidden;
}
.edition-fill {
  height: 100%;
  background: var(--scarcity);
  border-radius: 2px;
}
.restock-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.restock-note::before { content: "↺"; font-size: 13px; }
.drop-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.hero-product-card .btn-ghost { color: var(--paper); background: transparent; }
.drop-secondary-link {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line-solid);
  padding-bottom: 4px;
}
.drop-secondary-link:hover { color: var(--paper); border-color: var(--paper); }

/* ---- SECTIONS ---- */
.section {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head h2 { flex-shrink: 0; }
.section-kicker {
  max-width: 460px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.product-card.hidden { display: none; }
.card-image {
  aspect-ratio: 4 / 5;
  background: #ece9e2 center / cover;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  display: block;
}
.card-body { padding: 16px; }
.card-title-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.card-price { white-space: nowrap; }
.card-tag {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.card-remaining {
  margin: 12px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--scarcity);
}

/* ---- FILTER BAR ---- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-right: 6px;
}
.filter-btn {
  height: 36px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.14s;
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--line-solid); color: var(--paper); }
.filter-btn.active { background: var(--paper); color: var(--bg); border-color: var(--paper); }

/* ---- SHOP HERO ---- */
.shop-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
  background: #0b0a09 url("images/shop-busta-banner.jpg") center 42% / cover no-repeat;
  overflow: hidden;
  color: #ece6da;
}
.contact-hero {
  background-image: url("images/contact-90s-hip-hop-banner.jpg");
  background-position: center 38%;
}
.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.82) 0%, rgba(11, 10, 9, 0.48) 54%, rgba(11, 10, 9, 0.68) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.10) 0%, rgba(11, 10, 9, 0.58) 100%);
  pointer-events: none;
}
.shop-hero .container {
  position: relative;
  z-index: 1;
}
.shop-hero .eyebrow { color: rgba(236, 230, 218, 0.78); }
.shop-hero h1 { margin-bottom: 14px; }
.shop-hero .sub {
  color: rgba(236, 230, 218, 0.76);
  font-size: 16px;
  max-width: 520px;
}

/* ---- COLLECTION SCROLL ---- */
.collection-scroll {
  --collection-scroll-progress: 0;
  --collection-scroll-tease: 0;
  position: relative;
  height: 300svh;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.collection-scroll-sticky {
  position: sticky;
  top: var(--nav-h);
  height: calc(100svh - var(--nav-h));
  overflow: hidden;
}
.collection-scroll-track {
  display: flex;
  width: 300%;
  height: 100%;
  transform: translate3d(calc((var(--collection-scroll-progress) + var(--collection-scroll-tease)) * -66.6667%), 0, 0);
  will-change: transform;
}
.collection-scroll-panel {
  flex: 0 0 33.3333%;
  min-width: 33.3333%;
  height: 100%;
  overflow: hidden;
}
.collection-scroll-panel .collection-panel {
  display: flex;
  align-items: center;
  height: 100%;
  border-bottom: none;
  padding: 54px 0;
}

/* ---- ARCHIVE / SPLIT SECTION ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.split-image {
  position: relative;
  min-height: 480px;
  background: var(--bg-card);
}
.split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.07);
}
.split-image img.tee-profile-image { object-position: center top; }
.split-image img.archive-story-image { object-position: center top; }
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  border-left: 1px solid var(--line);
}
.split-copy h2 { margin-bottom: 22px; }
.split-copy p {
  color: var(--muted);
  font-size: 15px;
  max-width: 440px;
  margin-bottom: 16px;
  line-height: 1.72;
}
.split-copy p:last-of-type { margin-bottom: 28px; }
.archive-story-cta { align-self: flex-start; }
.archive-material-image {
  width: 100%;
  max-width: 440px;
  margin: 4px 0 0;
}
.archive-material-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.04);
}
.archive-material-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- SOCIAL PROOF ---- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.proof-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 26px;
}
.proof-quote {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}
.proof-quote::before { content: "\201C"; color: var(--accent); font-size: 24px; font-style: normal; display: block; margin-bottom: 8px; }
.proof-author {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---- BUNDLES ---- */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bundle-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 26px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.bundle-card:hover { border-color: var(--line-solid); }
.bundle-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.bundle-thumb {
  width: 72px;
  height: 88px;
  background: var(--bg) center / cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
  filter: grayscale(1) contrast(1.05);
}
.bundle-plus {
  font-size: 22px;
  color: var(--faint);
  font-weight: 300;
}
.bundle-name {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bundle-desc { color: var(--muted); font-size: 13px; margin-bottom: 16px; line-height: 1.55; }
.bundle-pricing { display: flex; align-items: baseline; gap: 10px; }
.bundle-price { font-size: 22px; font-weight: 900; color: var(--accent); }
.bundle-save {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 3px 8px;
}

/* ---- EMAIL CAPTURE ---- */
.email-section {
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.email-section h2 { margin-bottom: 14px; }
.email-section .sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.email-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--line-solid);
}
.email-input {
  flex: 1;
  height: 52px;
  padding: 0 18px;
  background: var(--bg-soft);
  color: var(--paper);
  border: none;
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.email-input::placeholder { color: var(--faint); }
.email-submit {
  height: 52px;
  padding: 0 22px;
  background: var(--paper);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.14s;
  font-family: inherit;
}
.email-submit:hover { background: #fff; }
.email-confirm {
  display: none;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
}
.email-confirm.visible { display: block; }

/* ---- CART DRAWER ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  max-width: calc(100vw - 40px);
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.28s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-title { font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.cart-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  background: transparent;
  transition: all 0.14s;
}
.cart-close:hover { border-color: var(--paper); color: var(--paper); }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-image {
  width: 68px; height: 84px;
  object-fit: cover;
  filter: grayscale(1);
}
.cart-item-name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.cart-item-size { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.cart-item-qty { display: flex; align-items: center; gap: 6px; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.14s;
}
.qty-btn:hover { border-color: var(--paper); }
.qty-value { min-width: 22px; text-align: center; font-size: 13px; font-weight: 700; }
.cart-item-price { font-size: 15px; font-weight: 900; color: var(--accent); white-space: nowrap; }
.cart-remove {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--faint);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: none;
  border: none;
  font-family: inherit;
}
.cart-remove:hover { color: var(--paper); }
.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.subtotal-amount { font-size: 22px; font-weight: 900; color: var(--accent); }
.checkout-meta {
  font-size: 11px;
  color: var(--faint);
  text-align: center;
  margin-top: 10px;
  line-height: 1.55;
}

/* ---- PRODUCT DETAIL PAGE ---- */
.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  height: calc(100svh - var(--nav-h));
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}
.pd-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 24px 28px 16px;
  border-right: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}
.pd-image-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  flex: 1;
}
.pd-main-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  display: block;
  cursor: zoom-in;
}
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 420px);
  flex: 0 0 72px;
  border-top: 1px solid var(--line);
}
.pd-thumb {
  height: 72px;
  background: var(--bg-card) center / cover;
  border-right: 1px solid var(--line);
  border-top: none;
  border-bottom: none;
  border-left: none;
  cursor: pointer;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.2s;
}
.pd-thumb:last-child { border-right: none; }
.pd-thumb.active, .pd-thumb:hover { filter: grayscale(0.3) brightness(1); }
.pd-zoom-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line-solid);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.pd-zoom-btn:hover { background: var(--paper); }
.pd-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(11, 10, 9, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.pd-zoom-overlay.open { opacity: 1; pointer-events: auto; }
.pd-zoom-image {
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  cursor: zoom-out;
}
.pd-zoom-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.pd-zoom-close:hover { background: rgba(255, 255, 255, 0.12); }
.pd-info {
  display: flex;
  flex-direction: column;
  padding: 38px 44px 44px;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
}
.pd-eyebrow { margin-bottom: 8px; }
.pd-title { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 6px; }
.pd-price { font-size: 26px; font-weight: 900; color: var(--accent); margin-bottom: 22px; }
.pd-edition-block {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  margin-bottom: 22px;
}
.pd-edition-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pd-edition-label { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.pd-edition-count { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--scarcity); }
.pd-desc { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 22px; }

/* Archive meta */
.pd-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.meta-item .meta-key {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}
.meta-item .meta-val { font-size: 13px; font-weight: 700; color: var(--paper); }

/* Product options */
.colour-section,
.size-section { margin-bottom: 22px; }
.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.option-label { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.colour-chips { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.colour-chip {
  min-height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: border-color 0.14s, background 0.14s, color 0.14s;
}
.colour-chip:hover { border-color: var(--paper); }
.colour-chip.selected { background: var(--paper); color: var(--bg); border-color: var(--paper); }
.colour-swatch {
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-solid);
  display: inline-block;
  flex: 0 0 auto;
}
.colour-swatch-black { background: #080808; }
.colour-swatch-white { background: #ffffff; }
.size-guide-btn {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.size-guide-btn:hover { color: var(--paper); }
.size-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.size-chip {
  width: 50px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.14s;
  font-family: inherit;
  text-transform: uppercase;
}
.size-chip:hover { border-color: var(--paper); }
.size-chip.selected { background: var(--paper); color: var(--bg); border-color: var(--paper); }
.size-chip.out { opacity: 0.28; cursor: not-allowed; text-decoration: line-through; }
.fit-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(217, 170, 97, 0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.fit-note::before { content: "→"; font-style: normal; }

/* Add to cart */
.atc-section { margin-bottom: 18px; }
.atc-btn {
  width: 100%;
  height: 56px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: background 0.14s;
  font-family: inherit;
  margin-bottom: 9px;
}
.atc-btn:hover { background: #fff; }
.atc-btn:disabled { opacity: 0.36; cursor: not-allowed; }
.buy-now-btn {
  width: 100%;
  height: 48px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line-solid);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.14s;
}
.buy-now-btn:hover { border-color: var(--paper); }
.shipping-note { font-size: 11px; color: var(--faint); text-align: center; margin-top: 10px; letter-spacing: 0.08em; }

/* Product story section */
.product-story {
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}
.story-image {
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.story-copy {
  padding: 56px 52px;
  border-left: 1px solid var(--line);
}
.story-copy h3 { margin-bottom: 22px; }
.story-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
  margin-bottom: 16px;
}
.story-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.story-meta .meta-key {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}
.story-meta .meta-val { font-size: 13px; font-weight: 700; }

/* ---- SIZE CHART MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(600px, calc(100vw - 32px));
  background: var(--bg-soft);
  border: 1px solid var(--line-solid);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.22s var(--ease-out);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg-soft);
}
.modal-title { font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.modal-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  font-size: 18px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all 0.14s;
}
.modal-close:hover { border-color: var(--paper); color: var(--paper); }
.modal-body { padding: 22px; }
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 14px;
}
.size-table th {
  text-align: left;
  padding: 9px 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  border-bottom: 1px solid var(--line);
}
.size-table td {
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.size-table tr:last-child td { border-bottom: none; }
.model-note {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.model-note strong { color: var(--paper); font-weight: 700; }

/* ---- CHECKOUT MODAL ---- */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }
.checkout-modal {
  width: min(500px, calc(100vw - 32px));
  background: var(--bg-soft);
  border: 1px solid var(--line-solid);
  transform: translateY(16px);
  transition: transform 0.22s var(--ease-out);
}
.checkout-overlay.open .checkout-modal { transform: translateY(0); }
.checkout-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.checkout-modal-body { padding: 28px 22px; }
.checkout-modal-body h3 { margin-bottom: 14px; font-size: 24px; }
.checkout-modal-body p { color: var(--muted); font-size: 14px; margin-bottom: 22px; line-height: 1.65; }
.checkout-platform-grid { display: grid; gap: 10px; }
.checkout-platform {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.14s;
}
.checkout-platform:hover { border-color: var(--line-solid); }
.checkout-platform-icon {
  width: 36px; height: 36px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.checkout-platform-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.checkout-platform-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---- ABOUT PAGE ---- */
.about-scroll {
  --about-scroll-progress: 0;
  --about-scroll-tease: 0;
  position: relative;
  height: 300svh;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.about-scroll-sticky {
  position: sticky;
  top: calc(var(--nav-h) + ((100svh - var(--nav-h) - 70svh) / 2));
  height: 70svh;
  overflow: hidden;
}
.about-scroll-track {
  display: flex;
  width: 300%;
  height: 100%;
  transform: translate3d(calc((var(--about-scroll-progress) + var(--about-scroll-tease)) * -66.6667%), 0, 0);
  will-change: transform;
}
.about-scroll-panel {
  flex: 0 0 33.3333%;
  min-width: 33.3333%;
  height: 100%;
  overflow: hidden;
}
.about-scroll-panel .split-section {
  height: 100%;
  border-bottom: none;
}

.about-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.72) 50%, rgba(255,255,255,0.24) 100%),
    linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0) 40%),
    url("images/archive-craig-mack-biggie-banner.jpg") center / cover;
  filter: grayscale(1) contrast(1.05);
  z-index: 0;
}
.about-hero-inner { position: relative; z-index: 1; padding: 64px 0; }
.about-hero h1 { margin-bottom: 18px; }
.about-hero p { color: var(--muted); font-size: 17px; max-width: 560px; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.value-item {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
}
.value-item:last-child { border-right: none; }
.value-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.value-item h4 { margin-bottom: 10px; font-size: 17px; }
.value-item p { color: var(--muted); font-size: 14px; line-height: 1.68; }

/* ---- FOOTER ---- */
.site-footer {
  padding: 44px 0 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-logo { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--faint); max-width: 260px; line-height: 1.6; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--faint);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color 0.14s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.copyright-notice { max-width: 560px; font-size: 11px; line-height: 1.5; color: var(--faint); }

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 22px;
  right: 22px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 400;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.28s var(--ease-out), opacity 0.28s;
  pointer-events: none;
  max-width: 280px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.56s var(--ease-out), transform 0.56s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-drop { min-height: auto; }
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .hero-intro { max-width: 720px; }
  .hero-intro h1 { font-size: clamp(52px, 11vw, 92px); }
  .hero-product-card { grid-template-columns: 1fr 0.82fr; }
  .hero-product-media { min-height: 360px; }
  .hero-product-img { max-height: 390px; }
  .hero-copy { padding: 34px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .bundles-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 320px; }
  .split-copy { border-left: none; border-top: 1px solid var(--line); padding: 48px 28px; }
  .product-detail { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .pd-gallery { height: min(72svh, 680px); min-height: 420px; border-right: none; border-bottom: 1px solid var(--line); }
  .pd-info { height: auto; }
  .pd-info { padding: 28px 22px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { border-left: none; border-top: 1px solid var(--line); padding: 40px 24px; }
  .story-meta { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-kicker { text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .collection-scroll {
    height: auto;
    border-bottom: none;
  }
  .collection-scroll-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }
  .collection-scroll-track {
    display: block;
    width: 100%;
    height: auto;
    transform: none;
  }
  .collection-scroll-panel {
    min-width: 0;
    height: auto;
    overflow: visible;
  }
  .collection-scroll-panel .collection-panel {
    display: block;
    height: auto;
    border-bottom: 1px solid var(--line);
    padding: 86px 0;
  }
  .about-scroll {
    height: auto;
    border-bottom: none;
  }
  .about-scroll-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }
  .about-scroll-track {
    display: block;
    width: 100%;
    height: auto;
    transform: none;
  }
  .about-scroll-panel {
    min-width: 0;
    height: auto;
    overflow: visible;
  }
  .about-scroll-panel .split-section {
    height: auto;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root { --nav-h: 60px; }
  .hero-bg {
    object-position: center top;
    filter: grayscale(0.9) contrast(1.02) brightness(0.92);
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(11, 10, 9, 0.28) 0%, rgba(11, 10, 9, 0.62) 46%, rgba(11, 10, 9, 0.76) 100%),
      linear-gradient(90deg, rgba(11, 10, 9, 0.34), rgba(11, 10, 9, 0.18));
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .nav-link { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .email-form { flex-direction: column; }
  .email-input { border: 1px solid var(--line-solid); }
  .email-submit { height: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pd-meta { grid-template-columns: 1fr; }
  .pd-gallery { height: min(70svh, 560px); min-height: 360px; padding: 18px 16px 12px; }
  .pd-thumbs, .pd-thumb { height: 60px; flex-basis: 60px; }
  .pd-zoom-btn { right: 10px; bottom: 10px; }
  .story-meta { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .about-hero { min-height: 360px; }
  .cart-drawer { width: 100%; max-width: 100%; }
  .hero-stage { padding-top: 34px; padding-bottom: 34px; }
  .hero-intro h1 { font-size: clamp(44px, 15vw, 70px); margin-bottom: 16px; }
  .hero-intro p { font-size: 15px; }
  .hero-product-card { grid-template-columns: 1fr; }
  .hero-product-media {
    order: -1;
    min-height: 340px;
    border-left: none;
    border-top: 1px solid rgba(11, 10, 9, 0.12);
    border-bottom: none;
    padding: 22px;
  }
  .hero-product-img { max-height: 300px; object-position: center; }
  .drop-title { font-size: clamp(36px, 13vw, 56px); }
  .drop-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 26px 18px 30px; }
  .hero-product-media { min-height: 300px; padding: 18px; }
  .hero-product-img { max-height: 270px; }
}
