/* ─── TOKENS ─── */
:root {
  --bg: #080808;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --fg: #f0ebe3;
  --fg-2: #a09888;
  --fg-3: #6a6258;
  --gold: #e8a027;
  --gold-dim: rgba(232,160,39,0.15);
  --gold-border: rgba(232,160,39,0.3);
  --accent: #e8a027;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1200px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ─── SELECTION & SCROLLBAR ─── */
::selection { background: var(--gold); color: #000; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 3px; }

/* ─── SECTION TITLE ─── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,160,39,0.1);
  padding: 0 2rem;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--fg);
}
.brand-mark { color: var(--gold); font-size: 1rem; }
.brand-name strong { color: var(--gold); }
.nav-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-ambient-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(232,160,39,0.06) 0%, transparent 70%);
}
.hero-crosshair {
  position: absolute;
  border: 1px solid rgba(232,160,39,0.04);
}
.hero-crosshair-1 {
  top: 10%;
  left: 10%;
  width: 40%;
  height: 40%;
}
.hero-crosshair-2 {
  bottom: 20%;
  right: 5%;
  width: 30%;
  height: 30%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.headline-accent { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 500px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #f5b035; transform: translateY(-1px); }
.hero-cta-note {
  font-size: 0.8rem;
  color: var(--fg-3);
  letter-spacing: 0.06em;
}

/* Gavel visual */
.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.12;
  width: 400px;
  height: 500px;
  pointer-events: none;
}
.auction-gavel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  transform-origin: center top;
}
.gavel-head {
  width: 60px;
  height: 36px;
  background: var(--gold);
  border-radius: 4px;
  margin-bottom: 0;
}
.gavel-shaft {
  width: 10px;
  height: 280px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
}
.gavel-block {
  width: 80px;
  height: 20px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
}

/* ─── PROOF ─── */
.proof {
  border-top: 1px solid rgba(232,160,39,0.1);
  border-bottom: 1px solid rgba(232,160,39,0.1);
  padding: 3rem 2rem;
  background: var(--bg-2);
}
.proof-stats {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 3rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(232,160,39,0.2);
}
.proof-tagline {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ─── SCHEDULE ─── */
.schedule { padding: 5rem 2rem; }
.schedule-inner { max-width: var(--max); margin: 0 auto; }
.night-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(232,160,39,0.12);
  border: 1px solid rgba(232,160,39,0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.night-card {
  background: var(--bg-2);
  padding: 1.8rem 1.2rem;
  position: relative;
  transition: background 0.2s;
}
.night-card:hover { background: var(--bg-3); }
.night-icon { color: var(--gold); margin-bottom: 0.8rem; opacity: 0.8; }
.night-day {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.night-theme {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.night-time {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.schedule-note {
  font-size: 0.82rem;
  color: var(--fg-3);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ─── CATEGORIES ─── */
.categories { padding: 5rem 2rem; background: var(--bg-2); }
.categories-inner { max-width: var(--max); margin: 0 auto; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cat-card {
  background: var(--bg);
  border: 1px solid rgba(232,160,39,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.cat-card:hover {
  border-color: rgba(232,160,39,0.3);
  transform: translateY(-2px);
}
.cat-visual {
  height: 180px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cat-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,160,39,0.05) 0%, transparent 70%);
}

/* Coin slab */
.cat-slab {
  width: 90px;
  height: 62px;
  background: #1e1e1e;
  border: 1px solid rgba(232,160,39,0.4);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(232,160,39,0.15), 0 8px 24px rgba(0,0,0,0.5);
}
.slab-label {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
}
.slab-design {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(232,160,39,0.5);
}
.slab-hologram {
  position: absolute;
  bottom: 6px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100,200,255,0.6), rgba(100,255,200,0.4), rgba(255,200,100,0.6));
  opacity: 0.7;
}

/* Mint error coin */
.cat-error-coin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, #c9a84c 0%, #8b6914 100%);
  border: 3px solid #a07820;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(232,160,39,0.2), 0 8px 24px rgba(0,0,0,0.5);
}
.error-face {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #5a3c08;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.error-offset {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(232,160,39,0.5);
  transform: rotate(15deg);
}
.error-rim {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(232,160,39,0.15);
}

/* Card slab */
.cat-slab-card {
  width: 80px;
  height: 56px;
  background: #1e1e1e;
  border: 1px solid rgba(232,160,39,0.4);
  border-radius: 3px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(232,160,39,0.15), 0 8px 24px rgba(0,0,0,0.5);
}
.card-design {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 32px;
}
.card-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(232,160,39,0.2);
  border: 1px solid rgba(232,160,39,0.3);
  position: absolute;
  left: 0;
  top: 0;
}
.card-lines {
  position: absolute;
  right: 0;
  top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-line {
  width: 28px;
  height: 4px;
  background: rgba(232,160,39,0.2);
  border-radius: 2px;
}
.card-line-sm { width: 20px; height: 3px; }

/* Antique watch */
.cat-watch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.watch-case {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d4a017, #8b6914);
  border: 3px solid #a07820;
  box-shadow: inset 0 2px 4px rgba(255,220,100,0.3), 0 0 0 2px rgba(232,160,39,0.15), 0 8px 24px rgba(0,0,0,0.5);
  position: relative;
}
.watch-case::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(90,60,8,0.5);
}
.watch-crown {
  width: 8px;
  height: 14px;
  background: #a07820;
  border-radius: 2px;
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}
.watch-chain {
  width: 24px;
  height: 4px;
  background: repeating-linear-gradient(90deg, #a07820 0px, #a07820 3px, transparent 3px, transparent 5px);
  margin-left: -4px;
  opacity: 0.6;
}

/* Cat info */
.cat-info { padding: 1.2rem 1.4rem; }
.cat-number {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--fg-3);
  margin-bottom: 0.4rem;
}
.cat-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.cat-desc { font-size: 0.82rem; color: var(--fg-3); line-height: 1.5; }

/* ─── CONSIGN ─── */
.consign {
  padding: 5rem 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(232,160,39,0.08);
  border-bottom: 1px solid rgba(232,160,39,0.08);
}
.consign-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.consign-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.consign-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.consign-body {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.consign-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.8rem 1.6rem;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.consign-link:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ─── MANIFESTO ─── */
.manifesto { padding: 5rem 2rem; background: var(--bg-2); }
.manifesto-inner { max-width: var(--max); margin: 0 auto; }
.manifesto-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.pillar-icon {
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.pillar p { font-size: 0.85rem; color: var(--fg-3); line-height: 1.6; }
.manifesto-statement {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--fg-2);
  line-height: 1.6;
  max-width: 780px;
  font-style: italic;
  font-weight: 300;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}

/* ─── FOOTER ─── */
.footer {
  padding: 3rem 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(232,160,39,0.08);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--fg-2);
}
.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-3);
  flex: 1;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--fg-3);
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232,160,39,0.06);
  margin-top: 1rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .night-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-visual { display: none; }
}
@media (max-width: 600px) {
  .night-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 0 1.5rem; }
  .proof-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-headline { font-size: 3rem; }
}