@charset "utf-8";

:root {
  --cream: #f5f0e8;
  --parchment: #ede5d0;
  --ink: #1a1208;
  --brown: #3d2b1a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --red: #8b1a1a;
  --rust: #a0522d;
  --aged: #6b5b45;
  --shadow: rgba(26, 18, 8, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── HEADER ─────────────────────────────────── */
header {
  background: var(--ink);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.logo-block {
  padding: 1.2rem 0;
}

.logo-block a {
    text-decoration: none;
}

.logo-block .tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
  opacity: 0.8;
}

.logo-block h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1;
}

.logo-block h1 span {
  color: var(--gold);
}

nav {
  display: flex;
  gap: 0;
}

nav a {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 0.9rem 1.1rem;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  transition: background 0.2s, color 0.2s;
  opacity: 0.85;
}

nav a:last-child { border-right: 1px solid rgba(201, 168, 76, 0.2); }
nav a:hover { background: var(--gold); color: var(--ink); opacity: 1; }

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  padding: 6rem 4rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  animation: fadeInLeft 1s ease both;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--brown));
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.3s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.0rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.9s 0.5s ease both;
}

.hero-title em {
  font-size: clamp(2.4rem, 4.2vw, 4.0rem);
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeIn 0.9s 0.7s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 0.9s 0.9s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-weight: 400;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.1); }

.hero-right {
  background: var(--parchment);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  animation: fadeIn 1.1s 0.2s ease both;
}

/* Decorative diagonal stripe on hero right */
.hero-right::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 200px; height: 200px;
  border: 2px solid var(--gold);
  opacity: 0.2;
  transform: rotate(45deg);
  pointer-events: none;
}

.record-card {
    display:                grid;
    grid-template-columns:  100px 1fr;
    gap:                    0.5rem;
    padding:                2.5rem 3rem;
    border-bottom:          1px solid rgba(61, 43, 26, 0.15);
    position:               relative;
    transition:             background 0.3s;
    cursor:                 pointer;
}


.record-card:hover {
    background:     rgba(201, 168, 76, 0.07);
}

.record-card:first-child {
    border-top:     none;
}

.record-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.record-badge::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--red);
}

.record-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.record-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.record-sub {
  font-size: 0.85rem;
  color: var(--aged);
  font-style: italic;
}

.record-arrow {
  position: absolute;
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s, right 0.2s;
}

.record-card:hover .record-arrow { opacity: 1; right: 1.5rem; }

/* ── TICKER BAR ─────────────────────────────────── */
.ticker-bar {
  background: var(--brown);
  padding: 0.75rem 0;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.ticker-track {
  display: flex;
  gap: 4rem;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-item span {
  color: var(--cream);
  opacity: 0.7;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── WELCOME SECTION ─────────────────────────────────── */
.welcome {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.welcome-label {
  position: sticky;
  top: 8rem;
}

.welcome-label h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1.1;
}

.section-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: var(--parchment);
  line-height: 1;
  display: block;
  margin-bottom: -1rem;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--aged);
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
}

.welcome-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.welcome-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.welcome-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--brown);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.welcome-content p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 0.85;
  font-weight: 900;
  color: var(--gold);
  margin-right: 0.1em;
  margin-top: 0.1em;
}

.welcome-sig {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sig-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--brown);
}

.sig-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aged);
}

/* ── SERVICES GRID ─────────────────────────────────── */
.services {
  background: var(--ink);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: 'COLLECT';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22rem;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.services-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.services-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding-bottom: 2rem;
}

.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
}

.services-header a {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.services-header a:hover { text-decoration: underline; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.service-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-item:last-child { border-right: none; }
.service-item:hover { background: rgba(201, 168, 76, 0.06); }

.service-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-item:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  transition: color 0.3s;
}

.service-item:hover .service-num { color: rgba(201, 168, 76, 0.35); }

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  display: block;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.7;
  font-weight: 300;
}

.service-icon {
  position: absolute;
  bottom: 2rem; right: 2rem;
  font-size: 1.5rem;
  opacity: 0.15;
  transition: opacity 0.3s;
}

.service-item:hover .service-icon { opacity: 0.5; }

/* ── RECORD SALES SECTION ─────────────────────────────────── */
.records-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 4rem;
}

.records-header {
  text-align: center;
  margin-bottom: 5rem;
}

.records-header .eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.records-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}

.records-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}

.records-header h2 em {
  font-style: italic;
  color: var(--red);
}

.records-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
}

.record-feat {
  background: var(--cream);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}

.record-feat:hover { background: var(--parchment); }

.record-feat .issue-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--aged);
  margin-bottom: 0.75rem;
}

.record-feat .comic-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.record-feat .grade {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  background: var(--ink);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.record-feat .sale-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.record-feat .record-note {
  font-size: 0.85rem;
  color: var(--aged);
  font-style: italic;
  line-height: 1.5;
}

.feat-deco {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  opacity: 0.3;
  transform: rotate(45deg);
}

/* ── EBAY CTA ─────────────────────────────────── */
.ebay-section {
  background: var(--parchment);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(61, 43, 26, 0.1);
  border-bottom: 1px solid rgba(61, 43, 26, 0.1);
}

.ebay-section::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 100%);
}

.ebay-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.ebay-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ebay-text h2 em { color: var(--gold); font-style: italic; }

.ebay-text p {
  font-size: 1.1rem;
  color: var(--brown);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.ebay-stats {
  display: flex;
  gap: 3rem;
}

.stat-item .stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-item .stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aged);
}

.ebay-username {
  text-align: center;
}

.username-box {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 2.5rem 3.5rem;
  text-align: center;
  position: relative;
}

.username-box::before, .username-box::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--gold);
}

.username-box::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.username-box::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.username-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--aged);
  margin-bottom: 0.75rem;
  display: block;
}

.username-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 1.5rem;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 2rem;
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand .logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.7;
  font-weight: 300;
}

.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.3);
}

.footer-bottom a {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: rgba(201, 168, 76, 0.6);
  text-decoration: none;
}

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

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── DIVIDER ─────────────────────────────────── */
.ornament {
  text-align: center;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  margin: 0;
  letter-spacing: 0.5em;
  padding: 2rem 0;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 4rem 2rem; }
  .hero-right { min-height: 60vh; }
  .welcome { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem; }
  .welcome-label { position: static; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .records-row { grid-template-columns: 1fr; }
  .ebay-inner { grid-template-columns: 1fr; }
  footer .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  nav { display: none; }
  .hero-ctas { flex-direction: column; }
  .ebay-stats { gap: 2rem; }
}
