/* ==========================================================================
   THE PRINTED PAST — 26th-century archivists' museum
   ========================================================================== */
:root {
  --ink:        #07090d;
  --panel:      #0d1117;
  --panel-2:    #11161f;
  --line:       rgba(201, 163, 92, .22);
  --line-soft:  rgba(201, 163, 92, .12);
  --brass:      #c9a35c;
  --brass-hi:   #e8cd92;
  --parchment:  #eadfc8;
  --dim:        #9a917c;
  --teal:       #6fd3c3;
  --serif: "Cormorant Garamond", Georgia, serif;
  --mono:  "Space Grotesk", "Consolas", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: rgba(201,163,92,.35); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.mono {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  font-weight: 400;
}

/* ---------- ambient layers ---------- */
.grain, .scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 90;
}
.grain {
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scanlines {
  opacity: .35;
  background: repeating-linear-gradient(
    to bottom, transparent 0 3px, rgba(0,0,0,.14) 3px 4px);
}

/* ---------- protection ---------- */
.protected, .protected * {
  -webkit-user-select: none; user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.protected img { pointer-events: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .9rem 2rem;
  background: linear-gradient(to bottom, rgba(7,9,13,.92), rgba(7,9,13,.75));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__sigil { color: var(--brass); font-size: 1rem; }
.nav__wordmark {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  letter-spacing: .04em; white-space: nowrap;
}
.nav__wordmark em { color: var(--brass-hi); font-style: italic; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dim);
  transition: color .25s;
  position: relative; padding: .3rem 0;
}
.nav__links a:hover { color: var(--brass-hi); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--brass);
  transition: width .3s;
}
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cart {
  display: flex; align-items: center; gap: .55rem;
  background: transparent; border: 1px solid var(--line);
  color: var(--parchment); padding: .5rem .9rem; cursor: pointer;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .16em;
  transition: border-color .25s, background .25s;
}
.nav__cart:hover { border-color: var(--brass); background: rgba(201,163,92,.08); }
.nav__cart-count {
  display: grid; place-items: center;
  min-width: 1.35rem; height: 1.35rem; padding: 0 .25rem;
  background: var(--brass); color: var(--ink);
  border-radius: 50%; font-weight: 600;
}
.nav__burger { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -6%;
  background: url("../assets/img/full/novi-belgii.jpg") center 30% / cover no-repeat;
  filter: sepia(.4) contrast(1.05) brightness(.7);
  animation: kenburns 38s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.09) translateY(-1.8%); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(7,9,13,.25) 0%, rgba(7,9,13,.88) 78%),
    linear-gradient(to bottom, rgba(7,9,13,.85), rgba(7,9,13,.35) 30%, rgba(7,9,13,.35) 65%, var(--ink) 100%);
}
.hero__frame {
  position: absolute; inset: 2rem; pointer-events: none;
  border: 1px solid var(--line-soft);
}
.hero__frame::before, .hero__frame::after {
  content: ""; position: absolute; width: 28px; height: 28px;
  border-color: var(--brass); border-style: solid;
}
.hero__frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero__frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.hero__content { position: relative; z-index: 2; padding: 6rem 1.5rem 3rem; max-width: 880px; }
.hero__status { color: var(--teal); margin-bottom: 2rem; opacity: .85; }
.blink { animation: blink 1.2s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero__title {
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 600; line-height: 1.02; letter-spacing: .01em;
  text-wrap: balance;
}
.hero__title span { color: var(--brass-hi); font-style: italic; }
.hero__sub {
  margin: 1.6rem auto 2.4rem; max-width: 620px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--dim); font-weight: 400;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__tag { margin-top: 3.2rem; color: var(--brass); opacity: .7; }
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--dim); font-size: .6rem;
  animation: drift 2.6s ease-in-out infinite;
}
@keyframes drift { 50% { transform: translateX(-50%) translateY(6px); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: .85rem 2rem; cursor: pointer;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; border: 1px solid var(--brass);
  transition: all .3s;
}
.btn--solid { background: var(--brass); color: var(--ink); font-weight: 600; }
.btn--solid:hover { background: var(--brass-hi); box-shadow: 0 0 32px rgba(201,163,92,.35); }
.btn--ghost { background: transparent; color: var(--brass-hi); }
.btn--ghost:hover { background: rgba(201,163,92,.1); }

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden; background: var(--panel);
  padding: .7rem 0;
}
.ticker__track {
  display: flex; white-space: nowrap; width: max-content;
  animation: ticker 42s linear infinite;
  color: var(--dim); font-size: .62rem;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 6.5rem 2rem; }
.section-head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.kicker { color: var(--teal); opacity: .8; margin-bottom: 1rem; }
.section-head h2, .commissions h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600; line-height: 1.1;
}
.section-head__sub { margin-top: 1.2rem; color: var(--dim); }

/* ---------- toolbar (search + sort) ---------- */
.toolbar {
  display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center;
  max-width: 760px; margin: 0 auto 1.4rem;
}
.toolbar__search {
  flex: 1 1 380px;
  background: var(--panel); border: 1px solid var(--line-soft);
  color: var(--parchment); padding: .85rem 1.1rem;
  font-family: var(--serif); font-size: 1.02rem;
  transition: border-color .25s;
}
.toolbar__search::placeholder { color: var(--dim); font-style: italic; }
.toolbar__search:focus { outline: none; border-color: var(--brass); }
.toolbar__sort {
  background: var(--panel); border: 1px solid var(--line-soft);
  color: var(--dim); padding: .85rem .9rem; cursor: pointer;
  font-size: .62rem; letter-spacing: .14em;
}
.toolbar__sort:focus { outline: none; border-color: var(--brass); }
.archive__count {
  text-align: center; color: var(--teal); opacity: .75;
  margin-bottom: 2.2rem; font-size: .58rem;
}
.archive__more { text-align: center; margin-top: 2.6rem; }
.grid__none {
  grid-column: 1 / -1; text-align: center; color: var(--dim);
  font-style: italic; padding: 3rem 1rem;
}
.grid__none a { color: var(--brass-hi); text-decoration: underline; }

/* ---------- filters ---------- */
.filters {
  display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 3rem;
}
.chip {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .14em;
  text-transform: uppercase; cursor: pointer;
  color: var(--dim); background: transparent;
  border: 1px solid var(--line-soft); padding: .55rem 1.1rem;
  transition: all .25s;
}
.chip:hover { color: var(--brass-hi); border-color: var(--line); }
.chip.is-active {
  color: var(--ink); background: var(--brass);
  border-color: var(--brass); font-weight: 600;
}
.chip--orig { color: var(--brass-hi); border-color: var(--line); }

/* ---------- grid / cards ---------- */
.grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1360px; margin: 0 auto;
}
.card {
  position: relative; background: var(--panel);
  border: 1px solid var(--line-soft);
  cursor: pointer; overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  opacity: 0; transform: translateY(24px);
}
.card.is-in { opacity: 1; transform: translateY(0); }
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 18px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(201,163,92,.15);
}
.card__media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--panel-2);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92);
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after { /* holo sheen */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(111,211,195,.10) 45%, rgba(201,163,92,.12) 55%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .9s ease;
}
.card:hover .card__media::after { transform: translateX(110%); }
.card__shield { position: absolute; inset: 0; z-index: 2; }
.card__acc {
  position: absolute; top: .7rem; left: .8rem; z-index: 3;
  color: var(--brass-hi); background: rgba(7,9,13,.65);
  padding: .25rem .55rem; backdrop-filter: blur(4px);
  font-size: .58rem;
}
.card__cat {
  position: absolute; top: .7rem; right: .8rem; z-index: 3;
  color: var(--teal); background: rgba(7,9,13,.65);
  padding: .25rem .55rem; backdrop-filter: blur(4px);
  font-size: .58rem;
}
.card__body { padding: 1.2rem 1.3rem 1.4rem; }
.card__era { color: var(--teal); opacity: .75; font-size: .58rem; margin-bottom: .5rem; }
.card__title {
  font-size: 1.28rem; font-weight: 600; line-height: 1.25;
  min-height: 3.1em;
}
.card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem; padding-top: .9rem;
  border-top: 1px solid var(--line-soft);
}
.card__price { color: var(--brass-hi); font-size: .72rem; }
.card__view { color: var(--dim); font-size: .6rem; transition: color .25s; }
.card:hover .card__view { color: var(--brass-hi); }

/* ---------- formats ---------- */
.formats { background: var(--panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.formats__row {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1180px; margin: 0 auto;
}
.format {
  border: 1px solid var(--line-soft); padding: 2.2rem 1.8rem;
  background: var(--ink);
  transition: border-color .3s, transform .3s;
}
.format:hover { border-color: var(--line); transform: translateY(-4px); }
.format__num { color: var(--teal); opacity: .7; margin-bottom: 1.2rem; }
.format h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: .8rem; }
.format p { color: var(--dim); font-size: .98rem; }
.format__price { color: var(--brass-hi); margin-top: 1.4rem; }
.formats__note {
  max-width: 700px; margin: 3rem auto 0; text-align: center;
  color: var(--dim); font-style: italic; font-size: .95rem;
}

/* ---------- commissions ---------- */
.commissions__inner {
  display: grid; gap: 4rem;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px; margin: 0 auto; align-items: start;
}
.commissions__text p { color: var(--dim); margin-top: 1.2rem; }
.commissions__list { margin-top: 1.6rem; list-style: none; }
.commissions__list li {
  padding: .7rem 0 .7rem 1.6rem; position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.commissions__list li::before {
  content: "✦"; position: absolute; left: 0; color: var(--brass);
  font-size: .8rem; top: .85rem;
}
.commissions__form {
  border: 1px solid var(--line-soft); padding: 2.2rem;
  background: var(--panel);
  display: flex; flex-direction: column; gap: 1.3rem;
}
.field { display: flex; flex-direction: column; gap: .45rem; }
.field__label { color: var(--teal); opacity: .8; font-size: .6rem; }
.field input, .field textarea {
  background: var(--ink); border: 1px solid var(--line-soft);
  color: var(--parchment); padding: .8rem .9rem;
  font-family: var(--serif); font-size: 1rem;
  transition: border-color .25s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brass);
}
.field__hint { color: var(--teal); font-size: .6rem; min-height: 1em; }

/* ---------- charter ---------- */
.charter { text-align: center; }
.charter__inner { max-width: 820px; margin: 0 auto; }
.charter blockquote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic; font-weight: 400; line-height: 1.4;
  color: var(--parchment);
}
.charter__sig { margin-top: 1.8rem; color: var(--dim); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--panel);
  padding: 4rem 2rem 2rem;
}
.footer__brand { text-align: center; margin-bottom: 3rem; }
.footer__tag { color: var(--dim); margin-top: .8rem; font-size: .95rem; }
.footer__cols {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1000px; margin: 0 auto 3rem;
}
.footer__h { color: var(--teal); opacity: .8; margin-bottom: 1rem; font-size: .62rem; }
.footer__cols a {
  display: block; color: var(--dim); padding: .3rem 0;
  font-size: .95rem; transition: color .25s;
}
.footer__cols a:hover { color: var(--brass-hi); }
.footer__fine { color: var(--dim); font-size: .85rem; }
.footer__legal {
  text-align: center; color: var(--dim); opacity: .6;
  border-top: 1px solid var(--line-soft); padding-top: 1.6rem;
  font-size: .58rem;
}

/* ---------- modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4,5,8,.86); backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 0; width: min(1080px, 100%); max-height: 90vh;
  background: var(--panel); border: 1px solid var(--line);
  animation: rise .4s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
@keyframes rise { from { opacity: 0; transform: translateY(28px); } }
.modal__close {
  position: absolute; top: 0; right: 0; z-index: 5;
  background: var(--ink); color: var(--brass-hi);
  border: none; border-left: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: .7rem 1rem; cursor: pointer; font-size: .62rem; letter-spacing: .16em;
}
.modal__close:hover { color: var(--parchment); background: var(--panel-2); }
.modal__viewer { background: #05060a; display: flex; align-items: center; justify-content: center; }
.viewer { position: relative; width: 100%; height: 100%; min-height: 320px; display: flex; align-items: center; justify-content: center; }
.viewer img { max-height: 90vh; width: 100%; height: 100%; object-fit: contain; }
.viewer__shield { position: absolute; inset: 0; z-index: 2; }
.viewer__badge {
  position: absolute; left: 50%; bottom: .9rem; transform: translateX(-50%);
  z-index: 3; white-space: nowrap;
  color: var(--brass-hi); background: rgba(7,9,13,.75);
  border: 1px solid var(--line-soft);
  padding: .35rem .8rem; font-size: .52rem; letter-spacing: .14em;
  backdrop-filter: blur(4px);
}
.modal__info { padding: 2.4rem 2.2rem; overflow-y: auto; }
.modal__acc { color: var(--teal); opacity: .8; margin-bottom: .8rem; }
.modal__info h3 { font-size: 1.9rem; font-weight: 600; line-height: 1.15; }
.modal__era { color: var(--brass-hi); margin: .7rem 0 1.1rem; font-size: .62rem; }
.modal__desc { color: var(--dim); font-size: 1rem; }
.modal__formats { margin: 1.6rem 0; display: flex; flex-direction: column; gap: .6rem; }
.fmt {
  display: flex; align-items: center; gap: .9rem;
  border: 1px solid var(--line-soft); padding: .85rem 1rem;
  cursor: pointer; transition: border-color .25s, background .25s;
}
.fmt:hover { border-color: var(--line); }
.fmt.is-active { border-color: var(--brass); background: rgba(201,163,92,.07); }
.fmt input { accent-color: #c9a35c; }
.fmt__name { font-weight: 600; font-size: 1.05rem; }
.fmt__sub { font-family: var(--mono); font-size: .56rem; letter-spacing: .1em; color: var(--dim); margin-top: .15rem; }
.fmt__price { margin-left: auto; font-family: var(--mono); color: var(--brass-hi); font-size: .8rem; }
.modal__add { width: 100%; }
.modal__note {
  margin-top: 1.3rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  color: var(--dim); font-style: italic; font-size: .85rem;
}
.modal__note a { color: var(--brass-hi); text-decoration: underline; }

/* ---------- drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 210; display: none; }
.drawer.is-open { display: block; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(4,5,8,.7); backdrop-filter: blur(4px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--panel); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  animation: slide .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes slide { from { transform: translateX(100%); } }
.drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--line-soft);
  color: var(--teal);
}
.drawer__close { background: none; border: none; color: var(--dim); cursor: pointer; font-size: .9rem; }
.drawer__close:hover { color: var(--parchment); }
.drawer__items { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.drawer__empty { color: var(--dim); font-style: italic; text-align: center; margin-top: 3rem; }
.ditem {
  display: flex; gap: .9rem; align-items: center;
  padding: .9rem 0; border-bottom: 1px solid var(--line-soft);
}
.ditem__thumb { width: 60px; height: 46px; object-fit: cover; border: 1px solid var(--line-soft); }
.ditem__meta { flex: 1; min-width: 0; }
.ditem__title { font-size: .95rem; font-weight: 600; line-height: 1.2; }
.ditem__fmt { font-family: var(--mono); font-size: .55rem; letter-spacing: .12em; color: var(--dim); margin-top: .2rem; }
.ditem__price { font-family: var(--mono); font-size: .7rem; color: var(--brass-hi); }
.ditem__rm {
  background: none; border: none; color: var(--dim); cursor: pointer;
  font-size: .8rem; padding: .3rem;
}
.ditem__rm:hover { color: #d97a6c; }
.drawer__foot { padding: 1.3rem 1.4rem; border-top: 1px solid var(--line-soft); }
.drawer__total {
  display: flex; justify-content: space-between;
  color: var(--parchment); margin-bottom: 1rem; font-size: .8rem;
}
.drawer__total span { color: var(--brass-hi); }
.drawer__foot .btn { width: 100%; }
.drawer__hint { margin-top: .9rem; color: var(--dim); font-size: .52rem; text-align: center; }

/* ---------- item page ---------- */
.item { padding: 7.5rem 2rem 4rem; max-width: 1180px; margin: 0 auto; min-height: 70vh; }
.item__loading { text-align: center; color: var(--teal); padding: 6rem 0; }
.item__crumb {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 1.6rem; color: var(--dim); font-size: .6rem;
}
.item__crumb a { color: var(--brass-hi); }
.item__crumb a:hover { color: var(--parchment); }
.item__panel {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  background: var(--panel); border: 1px solid var(--line);
}
.item__viewer { background: #05060a; display: flex; align-items: center; justify-content: center; }
.item__viewer .viewer img { max-height: 76vh; }
.item__info { padding: 2.6rem 2.4rem; }
.item__acc { color: var(--teal); opacity: .8; margin-bottom: .8rem; }
.item__info h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; line-height: 1.15; }
.item__era { color: var(--brass-hi); margin: .7rem 0 1.1rem; font-size: .62rem; }
.item__desc { color: var(--dim); font-size: 1rem; }
.item__add { width: 100%; }
.item__missing { text-align: center; padding: 5rem 1rem; }
.item__missing h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; margin: 1rem 0; }
.item__missing-sub { color: var(--dim); }
.item__missing-sub a { color: var(--brass-hi); text-decoration: underline; }

/* ---------- originals / sold ---------- */
.card__soldband {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  text-align: center; padding: .45rem;
  background: rgba(7,9,13,.82); color: #d97a6c;
  border-top: 1px solid rgba(217,122,108,.4);
  font-size: .58rem; letter-spacing: .22em;
  backdrop-filter: blur(4px);
}
.card--sold .card__media img { filter: saturate(.4) brightness(.75); }
.item__market {
  margin: 1.6rem 0; padding: 1.4rem 1.5rem;
  border: 1px solid var(--line); background: rgba(201,163,92,.05);
}
.item__market--sold { border-color: rgba(217,122,108,.4); background: rgba(217,122,108,.05); }
.item__market-line { color: var(--teal); opacity: .8; font-size: .58rem; }
.item__market-price {
  font-size: 2.4rem; font-weight: 600; color: var(--brass-hi);
  line-height: 1.1; margin: .4rem 0;
}
.item__market--sold .item__market-price { color: #d97a6c; font-size: 1.7rem; }
.item__market-sub { color: var(--dim); font-size: .92rem; }
.item__market-sub a { color: var(--brass-hi); text-decoration: underline; }

/* ---------- related ---------- */
.related { margin-top: 3rem; }
.related .kicker { display: block; margin-bottom: 1.2rem; text-align: center; }
.related__row {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.related__card {
  border: 1px solid var(--line-soft); background: var(--panel);
  transition: border-color .3s, transform .3s;
}
.related__card:hover { border-color: var(--line); transform: translateY(-4px); }
.related__card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.related__title {
  display: block; padding: .8rem .9rem; font-size: .92rem;
  font-weight: 600; line-height: 1.25;
}

.footer--slim { padding: 2rem; }
.footer--slim .footer__legal { border-top: none; padding-top: 0; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 1.6rem; left: 50%;
  transform: translate(-50%, 200%);
  z-index: 300; background: var(--brass); color: var(--ink);
  padding: .8rem 1.6rem; font-weight: 600; font-size: .66rem;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.toast.is-show { transform: translate(-50%, 0); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s, transform .8s; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav__links {
    position: fixed; top: 62px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(7,9,13,.97); border-bottom: 1px solid var(--line);
    padding: 1rem 2rem; display: none;
  }
  .nav.menu-open .nav__links { display: flex; }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: .4rem;
  }
  .nav__burger span { width: 22px; height: 1.5px; background: var(--brass-hi); }
  .nav__cart-label { display: none; }
  .modal__panel { grid-template-columns: 1fr; overflow-y: auto; }
  .viewer img { max-height: 46vh; }
  .item { padding: 6rem 1.2rem 3rem; }
  .item__panel { grid-template-columns: 1fr; }
  .item__viewer .viewer img { max-height: 52vh; }
  .commissions__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  section { padding: 4.5rem 1.2rem; }
}
