:root {
  --bg: #1a120c;
  --bg-deep: #120c08;
  --card: #24180f;
  --card-2: #2c1e14;
  --border: #3a2a1c;
  --border-soft: rgba(58, 42, 28, 0.7);
  --gold: #f5c518;
  --gold-dim: #c9a014;
  --gold-glow: rgba(245, 197, 24, 0.18);
  --cream: #f5f0e8;
  --cream-muted: rgba(245, 240, 232, 0.68);
  --cream-faint: rgba(245, 240, 232, 0.42);
  --danger: #c45c3a;
  --used: #8b7355;
  --ok: #7dba5a;
  --radius: 18px;
  --radius-sm: 12px;
  --nav-h: 72px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

button {
  font-family: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  pointer-events: none;
  position: fixed;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.35;
}

.glow-a {
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.22), transparent 65%);
}

.glow-b {
  bottom: 10%;
  left: -20%;
  background: radial-gradient(circle, rgba(90, 50, 20, 0.55), transparent 70%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(26, 18, 12, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(18, 12, 8, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #1a120c;
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.35), 0 8px 24px var(--gold-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--cream-faint);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a {
  color: var(--cream-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(245, 197, 24, 0.06);
  color: var(--gold) !important;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav.is-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav.is-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: rgba(18, 12, 8, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav-drawer a {
  padding: 0.85rem 0.5rem;
  border-radius: 10px;
  color: var(--cream-muted);
  font-weight: 500;
}

.nav-drawer a:hover {
  background: var(--card);
  color: var(--gold);
}

.nav.is-open .nav-drawer {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(180deg, #ffd84a, var(--gold) 45%, var(--gold-dim));
  color: #1a120c;
  box-shadow: 0 10px 30px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 14px 36px rgba(245, 197, 24, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.05);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.dot.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px var(--gold-glow);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 197, 24, 0.08);
  }
}

.gold {
  color: var(--gold);
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.section-head h2,
.hero h1,
.contact h2,
.rto h2,
.range h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.85rem;
}

.section-head h2,
.range h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.section-sub {
  margin: 0;
  color: var(--cream-muted);
  font-size: 1.05rem;
}

.section-sub strong {
  color: var(--cream);
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  margin-bottom: 1.1rem;
}

.lede {
  max-width: 34rem;
  color: var(--cream-muted);
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.lede-sub {
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.lede strong {
  color: var(--cream);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 6.5rem;
}

.hero-stats strong {
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--cream-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-card {
  background: linear-gradient(165deg, rgba(44, 30, 20, 0.92), rgba(36, 24, 15, 0.96));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.panel-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0 0.25rem;
}

.panel-label {
  font-weight: 700;
  font-size: 0.95rem;
}

.panel-hint {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.fact-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  margin-bottom: 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(26, 18, 12, 0.55);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}

.fact-row:hover {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.06);
  transform: translateX(4px);
}

.fact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.05rem;
}

.fact-row strong {
  display: block;
  font-size: 0.95rem;
}

.fact-row small {
  color: var(--cream-faint);
  font-size: 0.78rem;
}

.chip-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.7;
}

.panel-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--cream-faint);
  padding: 0 0.25rem;
}

.range,
.inventory,
.rto,
.contact {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
}

.range-card,
.rto-card,
.contact-inner {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    linear-gradient(120deg, rgba(245, 197, 24, 0.07), transparent 40%),
    linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow: var(--shadow);
}

.range-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  padding: 2rem;
}

.range-copy p,
.rto-copy > p {
  color: var(--cream-muted);
  margin: 0 0 0;
  max-width: 36rem;
}

.range-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.range-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.range-row input {
  flex: 1 1 16rem;
  min-width: 0;
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(18, 12, 8, 0.7);
  color: var(--cream);
  font: inherit;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  outline: none;
}

.range-row input::placeholder {
  color: var(--cream-faint);
}

.range-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.range-hint {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--cream-faint);
}

.range-result {
  margin-top: 1rem;
  min-height: 3.2rem;
}

.range-status {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(18, 12, 8, 0.55);
}

.range-status strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.range-status p {
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.92rem;
}

.range-status.is-in {
  border-color: rgba(125, 186, 90, 0.45);
  background: rgba(125, 186, 90, 0.1);
}

.range-status.is-in strong {
  color: #b7e09a;
}

.range-status.is-out {
  border-color: rgba(196, 92, 58, 0.5);
  background: rgba(196, 92, 58, 0.1);
}

.range-status.is-out strong {
  color: #e8a28a;
}

.range-status.is-wait,
.range-status.is-err {
  color: var(--cream-muted);
}

.gallery-disclaimer {
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 197, 24, 0.22);
  background: rgba(245, 197, 24, 0.06);
  color: var(--cream-muted);
  font-size: 0.9rem;
}

.sku-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.sku-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.25s, box-shadow 0.3s;
}

.sku-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.sku-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  aspect-ratio: 16 / 11;
  background: #0d0a07;
  border-bottom: 1px solid var(--border);
}

.sku-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0d0a07;
}

.sku-media:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.inv-view-photos {
  position: absolute;
  left: 0.65rem;
  bottom: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.65);
  background: rgba(245, 197, 24, 0.16);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.sku-card:hover .inv-view-photos,
.sku-media:focus-visible .inv-view-photos {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.22);
  color: var(--gold);
}

.sku-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.inv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
}

.badge.new {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
}

.badge.used {
  background: rgba(139, 115, 85, 0.25);
  color: #d4c0a0;
}

.badge.lot {
  background: rgba(245, 240, 232, 0.06);
  color: var(--cream-muted);
  border: 1px solid var(--border);
}

.sku-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.sku-blurb {
  margin: 0 0 0.85rem;
  color: var(--cream-muted);
  font-size: 0.92rem;
}

.sku-price {
  margin: 0 0 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sku-price strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gold);
  line-height: 1;
}

.sku-price strong span {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--cream-muted);
  margin-left: 0.25rem;
}

.sku-price small {
  color: var(--cream-faint);
  font-size: 0.85rem;
}

.sku-down {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.inv-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

.inv-link:hover {
  letter-spacing: 0.02em;
}

.rto-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.rto h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.rto-copy > p {
  margin-bottom: 1.25rem;
}

.rto-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.rto-pills span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.06);
}

.rto-viz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.rto-step {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(26, 18, 12, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rto-step strong {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.rto-step span {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

.rto-step.lit {
  border-color: rgba(245, 197, 24, 0.45);
  background: rgba(245, 197, 24, 0.1);
}

.contact {
  padding-bottom: 4rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr auto 1fr;
  gap: 2rem;
  align-items: end;
  padding: 2rem;
  background: rgba(36, 24, 15, 0.65);
  backdrop-filter: blur(10px);
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.contact-soft {
  margin: 0;
  color: var(--cream-faint);
  font-size: 0.9rem;
  max-width: 28rem;
}

.contact-soft a {
  color: var(--gold);
  font-weight: 600;
}

.contact-soft a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-addr {
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-addr a {
  color: var(--gold);
}

.contact-addr a:hover {
  text-decoration: underline;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0.35rem 0 0;
  color: var(--cream-faint);
  font-size: 0.85rem;
}

.footer-note {
  color: var(--cream-faint);
  font-size: 0.8rem !important;
  align-self: flex-end;
}

.footer-note a {
  color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

body.lot-modal-open {
  overflow: hidden;
}

.lot-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lot-modal[hidden] {
  display: none !important;
}

.lot-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 3, 0.78);
  backdrop-filter: blur(6px);
}

.lot-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--card);
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 0, 0, 0.4);
  padding: 1.1rem 1.1rem 1.35rem;
}

.lot-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lot-modal-close:hover,
.lot-modal-close:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.1);
  outline: none;
}

.lot-modal-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-top: 0.35rem;
}

.lot-gallery-main {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0d0a07;
  border: 1px solid var(--border);
}

.lot-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.lot-gallery-count {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--cream-muted);
  font-variant-numeric: tabular-nums;
}

.lot-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  background: rgba(18, 12, 8, 0.72);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0 0 0.1rem;
}

.lot-gallery-nav:hover,
.lot-gallery-nav:focus-visible {
  background: rgba(245, 197, 24, 0.16);
  border-color: var(--gold);
  outline: none;
}

.lot-gallery-nav.prev {
  left: 0.55rem;
}

.lot-gallery-nav.next {
  right: 0.55rem;
}

.lot-gallery-nav[hidden] {
  display: none;
}

.lot-gallery-thumbs {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.lot-gallery-thumbs[hidden] {
  display: none !important;
}

.lot-thumb {
  flex: 0 0 auto;
  width: 4.4rem;
  height: 3.1rem;
  padding: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #0d0a07;
  opacity: 0.72;
}

.lot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lot-thumb.is-active,
.lot-thumb:hover,
.lot-thumb:focus-visible {
  opacity: 1;
  border-color: var(--gold);
  outline: none;
}

.lot-modal-info {
  padding-top: 0.15rem;
  padding-right: 2rem;
}

.lot-modal-info h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.inv-meta {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: var(--cream-faint);
}

.lot-modal-info .inv-price {
  font-size: 1.25rem;
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.modal-disclaimer {
  margin-bottom: 1.1rem;
}

.lot-modal-call {
  display: inline-flex;
  width: auto;
}

@media (max-width: 980px) {
  .hero-grid,
  .range-card,
  .rto-card,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .sku-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .sku-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .range-card,
  .rto-card,
  .contact-inner {
    padding: 1.35rem;
  }

  .range-row .btn {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .lot-modal {
    padding: 0.5rem;
    align-items: end;
  }

  .lot-modal-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 18px 18px 12px 12px;
    padding: 0.9rem 0.85rem 1.15rem;
  }

  .lot-modal-layout {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .lot-modal-info {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .dot.pulse,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* —— Ship banner + grades + 4-picture chooser —— */
.ship-banner {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  padding: calc(var(--nav-h, 72px) + 1rem) 1.25rem 0;
}
.ship-banner img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius, 18px);
  border: 1px solid var(--border, #3a2a1c);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.ship-banner-caption {
  position: absolute;
  left: 2rem;
  bottom: 1.25rem;
  right: 2rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}
.ship-banner-kicker {
  margin: 0;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  color: #f5f0e8;
}
.ship-banner-sub {
  margin: 0.2rem 0 0;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5c518;
}
.grade-guide {
  max-width: 1180px;
  margin: 2.5rem auto 0;
  padding: 0 1.25rem;
}
.section-head.tight { margin-bottom: 1.25rem; }
.grade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.grade-card {
  background: linear-gradient(180deg, var(--card-2, #2c1e14), var(--card, #24180f));
  border: 1px solid var(--border, #3a2a1c);
  border-radius: var(--radius, 18px);
  padding: 1.25rem 1.35rem;
}
.grade-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--gold, #f5c518);
}
.grade-card p {
  margin: 0;
  color: var(--cream-muted, rgba(245, 240, 232, 0.68));
  line-height: 1.55;
  font-size: 0.98rem;
}
.sku-chooser {
  margin: 0 0 1.5rem;
}
.sku-chooser-label {
  margin: 0 0 0.75rem;
  color: var(--cream-muted, rgba(245, 240, 232, 0.68));
  font-size: 0.95rem;
}
.sku-chooser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.sku-choice {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border, #3a2a1c);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card, #24180f);
  transition: border-color 0.2s, transform 0.2s;
}
.sku-choice:hover {
  border-color: rgba(245, 197, 24, 0.5);
  transform: translateY(-3px);
}
.sku-choice img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #000;
}
.sku-choice span {
  display: block;
  padding: 0.55rem 0.65rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream, #f5f0e8);
  text-align: center;
}
@media (max-width: 800px) {
  .grade-grid,
  .sku-chooser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ship-banner-caption { left: 1.25rem; right: 1.25rem; }
}

/* Price under photo + contact on card */
.sku-card[data-open-gallery] { cursor: pointer; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.sku-card .sku-media { position: relative; margin: 0; border-radius: 0; aspect-ratio: 4 / 3; background: #000; width: 100%; }
.sku-card .sku-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sku-under { padding: 0.85rem 1rem 0.25rem; }
.sku-name { margin: 0 0 0.35rem; font-weight: 700; font-size: 0.98rem; color: var(--cream, #f5f0e8); }
.sku-under .sku-price { margin: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.sku-under .sku-price strong { font-size: 1.4rem; color: var(--gold, #f5c518); font-family: var(--display, "Bebas Neue", Impact, sans-serif); letter-spacing: 0.03em; }
.sku-under .sku-price span { font-size: 0.85rem; color: var(--cream-muted, rgba(245,240,232,0.68)); }
.sku-under .sku-down { margin: 0.35rem 0 0; font-size: 0.85rem; color: var(--cream-muted, rgba(245,240,232,0.68)); }
.sku-contact { margin: 0.65rem 1rem 1rem; text-align: center; display: block; }
.lot-modal-info .sku-down { margin: 0.35rem 0 0.75rem; color: var(--gold, #f5c518); font-weight: 600; }
.lot-modal-info .inv-price { font-size: 1.35rem; color: var(--gold, #f5c518); font-family: var(--display, "Bebas Neue", Impact, sans-serif); }
