:root {
  --bg: #0b0b0c;
  --card: #151517;
  --line: #2a2a2e;
  --text: #f4f1ea;
  --muted: #9a958a;
  --accent: #e23b2e;
  --gold: #d7b56d;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(11,11,12,.92);
  backdrop-filter: blur(10px); z-index: 20;
}
.brand { display: flex; gap: 12px; align-items: center; }
.brand-row {
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 0;
}
.house-tab {
  display: block;
  padding: 2px 0 4px;
  border-bottom: 2px solid transparent;
  opacity: .55;
}
.house-tab.on {
  opacity: 1;
  border-bottom-color: var(--gold);
}
.house-tab strong {
  font-family: Cinzel, Syne, serif;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(180deg, #f6e2a8 0%, #d7b56d 55%, #8a6a2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.house-tab span { display: block; color: var(--muted); font-size: 11px; }
.house-tab[hidden] { display: none !important; }
.mark {
  width: 52px; height: 52px; color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(215,181,109,.4), 0 8px 20px rgba(0,0,0,.35);
  overflow: hidden;
  flex: 0 0 52px;
}
.mark img, .mark svg { width: 52px; height: 52px; display: block; }
.brand strong {
  font-family: Cinzel, Syne, serif;
  letter-spacing: .14em;
  font-weight: 700;
  background: linear-gradient(180deg, #f6e2a8 0%, #d7b56d 55%, #8a6a2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand span { display: block; color: var(--muted); font-size: 12px; }
nav { display: flex; gap: 16px; align-items: center; font-size: 14px; }
.btn {
  background: var(--accent); color: #fff; border: 0; border-radius: 999px;
  padding: 10px 16px; font-weight: 700; cursor: pointer; display: inline-block;
  font-family: inherit;
}
.btn.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.hero {
  position: relative;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,12,.92) 0%, rgba(11,11,12,.78) 42%, rgba(11,11,12,.35) 100%),
    linear-gradient(180deg, rgba(11,11,12,.15) 0%, rgba(11,11,12,.55) 100%),
    url("images/hero.jpg") center right / cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 22px 40px;
  max-width: 820px;
}
.eyebrow { color: var(--gold); letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
h1, h2, h3 {
  font-family: Outfit, "Helvetica Neue", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  overflow: visible;
  padding-bottom: .2em;
}
h1 { font-size: clamp(34px, 8vw, 64px); line-height: 1.12; margin: 10px 0 16px; letter-spacing: -.03em; }
.lockup { display: flex; flex-direction: column; align-items: flex-start; margin: 8px 0 18px; }
.lockup-kicker {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 6vw, 48px);
  letter-spacing: -.04em;
  line-height: 1.15;
  padding-bottom: .12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff7ea 0%, #d7b56d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lockup-main {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 7.4vw, 62px);
  letter-spacing: -.04em;
  line-height: 1.15;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff7ea 0%, #d7b56d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede { color: #cfc8bb; max-width: 620px; }
.hero-stats { display: flex; gap: 28px; margin-top: 28px; }
.hero-stats b { display: block; font-size: 22px; }
.hero-stats span { color: var(--muted); font-size: 12px; }
.shop { padding: 22px 22px 50px; }
.shop-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; margin-bottom: 14px; flex-wrap: wrap; }
.shown { color: var(--muted); font-size: 13px; margin-top: 4px; }
.shop-tools { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-head input, .shop-head select {
  background: var(--card); border: 1px solid var(--line); color: var(--text);
  padding: 10px 14px; border-radius: 10px; font: inherit;
}
.shop-head input { min-width: min(100%, 240px); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.chip {
  background: var(--card); border: 1px solid var(--line); color: var(--text);
  padding: 7px 12px; border-radius: 999px; cursor: pointer; font: inherit; font-size: 13px;
}
.chip em { color: var(--muted); font-style: normal; margin-left: 4px; }
.chip.on { background: #fff; color: #111; border-color: #fff; }
.chip.on em { color: #555; }
.view-switch { display: flex; gap: 4px; align-items: center; }
.view-switch button {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--card); color: var(--muted); display: grid; place-items: center; cursor: pointer;
}
.view-switch button.on { color: var(--gold); border-color: var(--gold); background: #1a1612; }
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.grid.view-list { grid-template-columns: 1fr; }
.grid.view-list .card { display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); align-items: stretch; overflow: hidden; }
.grid.view-list .pic { aspect-ratio: 4/3; width: 100%; min-width: 0; overflow: hidden; }
.grid.view-list .meta { min-width: 0; }
.grid.view-split { grid-template-columns: repeat(2, 1fr); }
.grid.view-album { grid-template-columns: repeat(4, 1fr); }
.grid.view-list .sold-mark span { font-size: 18px; padding: 1px 10px; border-width: 2px; }
.grid.view-list .pic { min-height: 140px; }
.sheet-body h3 { line-height: 1.55; padding: .1em 0 .4em; overflow: visible; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  overflow: visible; cursor: pointer; transition: transform .15s ease, border-color .15s;
}
.card:hover { transform: translateY(-3px); border-color: #444; }
.card.picked { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.card .pic {
  background: #fbfaf6; aspect-ratio: 4/3; display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.pick {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 28px; height: 28px; border-radius: 8px;
  border: 1.5px solid #1a1a1a; background: rgba(255,255,255,.92);
  display: grid; place-items: center; cursor: pointer;
  font-size: 16px; line-height: 1; color: #111;
}
.pick.on { background: var(--gold); border-color: var(--gold); color: #111; }
.card.sold .pick { display: none; }
.card .pic img {
  width: 100%; height: 100%; object-fit: contain;
  background: #fbfaf6; display: block; position: relative; z-index: 1;
}
.card.sold { opacity: 1; }
.card.sold .pic img { filter: none; }
.sold-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  background: rgba(11,11,12,.05);
}
.sold-mark span {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 40px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(226,59,46,.46);
  border: 3px solid rgba(226,59,46,.42);
  padding: 2px 16px;
  transform: rotate(-18deg);
  background: rgba(255,247,234,.22);
  box-shadow: none;
}
.badge.sold-badge {
  color: #e23b2e;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price b.sold-ask { color: #e23b2e; font-weight: 800; letter-spacing: .06em; }
.size-pill {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(0,0,0,.72); color: #fff; font-size: 11px;
  padding: 3px 8px; border-radius: 999px; letter-spacing: .04em;
}
.size-hot { background: var(--accent); }
.card .meta { padding: 12px 14px 16px; }
.card h3 { font-size: 15px; line-height: 1.4; padding: .1em 0 .25em; overflow: visible; font-family: Outfit, sans-serif; }
.card p { color: var(--muted); font-size: 13px; }
.price { margin-top: 8px; display: flex; justify-content: space-between; font-size: 13px; }
.price b { color: var(--gold); }
.badge-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.badge { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #8ad18a; }
.fam { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.fam-jordan { color: #e23b2e; }
.fam-yeezy { color: #d7b56d; }
.fam-nike { color: #7eb6ff; }
.fam-vans { color: #cfcfcf; }
.fam-fragrance { color: #d7b56d; }
.fam-hats { color: #7eb6ff; }
.fam-other { color: #cfcfcf; }
.hero-reserve .hero-bg {
  background:
    linear-gradient(90deg, rgba(11,11,12,.92) 0%, rgba(11,11,12,.78) 42%, rgba(11,11,12,.35) 100%),
    linear-gradient(180deg, rgba(11,11,12,.15) 0%, rgba(11,11,12,.55) 100%),
    url("images/reserve-hero.jpg") center right / cover no-repeat;
}
.reserve-closed { padding: 48px 22px; color: var(--muted); max-width: 560px; }
.how, .inquire, footer { padding: 28px 22px; border-top: 1px solid var(--line); }
.how h2, .inquire h2, .shop h2 {
  font-family: Outfit, sans-serif;
  line-height: 1.4;
  padding: .1em 0 .28em;
  overflow: visible;
}
.how a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.how ol { margin: 14px 0 0 18px; color: var(--muted); }
.how li { margin: 8px 0; }
.note { color: var(--muted); font-size: 13px; margin-top: 14px; }
form { display: grid; gap: 12px; max-width: 480px; margin-top: 14px; }
label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
input, select, textarea {
  background: var(--card); border: 1px solid var(--line); color: var(--text);
  padding: 10px 12px; border-radius: 10px; font: inherit;
}
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
footer { color: var(--muted); font-size: 12px; }
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.72);
  display: grid; place-items: center; padding: 16px; z-index: 40;
}
.modal[hidden] { display: none; }
.sheet {
  background: #111; border: 1px solid var(--line); border-radius: 18px;
  max-width: 820px; width: 100%; max-height: 92vh; overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
}
.sheet-photo { background: #fbfaf6; display: flex; flex-direction: column; min-height: 260px; position: relative; touch-action: pan-y; }
.sheet-photo img#mImg { width: 100%; height: 100%; object-fit: contain; background: #fbfaf6; min-height: 260px; flex: 1; user-select: none; -webkit-user-drag: none; }
.shot-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 52px; border: 0; border-radius: 0;
  background: transparent; color: rgba(20,18,16,.28);
  font-size: 34px; line-height: 52px; font-weight: 300;
  cursor: pointer; z-index: 4; padding: 0;
  text-shadow: 0 0 10px rgba(255,255,255,.7);
  transition: color .15s ease;
}
.shot-nav:hover { color: rgba(20,18,16,.55); }
.shot-nav.prev { left: 2px; }
.shot-nav.next { right: 2px; }
.shot-nav[hidden] { display: none; }
.thumbs { display: flex; gap: 6px; padding: 8px; background: #111; }
.thumb {
  background: #222; color: #ccc; border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 10px; font: inherit; font-size: 12px; cursor: pointer;
}
.thumb.on { background: #fff; color: #111; }
.sheet-body { padding: 22px; }
.close {
  position: absolute; top: 10px; right: 10px; width: 40px; height: 40px;
  border-radius: 50%; border: 0; background: #111; color: #fff; font-size: 24px; cursor: pointer;
  z-index: 30; box-shadow: 0 0 0 2px #d7b56d;
}
.tag { color: var(--gold); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.color { color: var(--muted); margin: 4px 0 14px; }
dl { display: grid; gap: 8px; }
dl div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 8px; font-size: 14px; }
dt { color: var(--muted); }
.blurb { color: var(--muted); margin: 14px 0; font-size: 14px; }
@media (max-width: 720px) {
  .sheet { grid-template-columns: 1fr; }
  nav a:not(.btn) { display: none; }
  .house-tab span { display: none; }
  .house-tab strong { font-size: 12px; letter-spacing: .1em; }
  .brand-row { gap: 10px; }
  .mark { width: 42px; height: 42px; flex-basis: 42px; }
  .mark img, .mark svg { width: 42px; height: 42px; }
  .grid.view-album { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid.view-split { grid-template-columns: 1fr 1fr; }
  .grid.view-list { grid-template-columns: 1fr; }
  .grid.view-list .card { grid-template-columns: minmax(0, 118px) minmax(0, 1fr); }
  .grid.view-list .pic { min-height: 88px; }
  .grid.view-list .meta { padding: 10px 12px; }
  .grid.view-list .card h3 { font-size: 14px; }
  .grid.view-list .card p { font-size: 12px; }
  .hero { min-height: 360px; }
  .hero-inner { padding: 36px 16px 24px; }
  .hero-bg { background-position: 70% center; }
  .shop, .how, .inquire, footer { padding-left: 16px; padding-right: 16px; }
}

.req-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 35;
  background: var(--accent); color: #fff; border: 0; border-radius: 999px;
  padding: 12px 18px; font: 700 14px Outfit, sans-serif; cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.req-fab b { margin-left: 6px; }
.request {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,.45);
}
.request-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(420px, 100%);
  background: #121214; border-left: 1px solid var(--line);
  padding: 18px 18px 28px;
  overflow: auto;
  animation: slideIn .22s ease;
}
@keyframes slideIn {
  from { transform: translateX(28px); opacity: .6; }
  to { transform: translateX(0); opacity: 1; }
}
.request-head { display: flex; justify-content: space-between; align-items: start; margin-bottom: 10px; }
.request-head h2 { font-size: 26px; margin-top: 4px; }
.req-list { display: grid; gap: 8px; margin: 12px 0; }
.req-row {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 10px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 8px;
}
.req-row img { width: 64px; height: 48px; object-fit: contain; background: #fbfaf6; border-radius: 8px; }
.req-row h3 { font-size: 14px; }
.req-row p { color: var(--muted); font-size: 12px; }
.btn-remove {
  background: #e23b2e; color: #fff; border: 0; border-radius: 999px;
  padding: 6px 10px; font: 700 11px Outfit, sans-serif; cursor: pointer;
  letter-spacing: .04em; text-transform: uppercase;
}
.request-head .btn.ghost { padding: 8px 14px; font-size: 13px; }
.req-total { color: var(--gold); font-weight: 700; margin: 4px 0 12px; }
