:root {
  --bg: #F5F0E8;
  --surface: #EDE8DC;
  --forest: #1A3328;
  --forest-mid: #234D38;
  --forest-light: #2D6048;
  --gold: #C9A84C;
  --gold-light: #D4BC6A;
  --ink: #1A1A18;
  --ink-muted: #5A5A54;
  --cream: #FDFAF4;
  --white: #FFFFFF;
  --border: rgba(26,51,40,0.12);
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  background: var(--forest);
  padding: 18px 48px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  background: var(--forest);
  padding: 80px 48px 60px;
  color: var(--cream);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(253,250,244,0.7);
  max-width: 480px;
}

/* Card visual */
.card-frame {
  position: relative;
  width: 240px;
  margin: 0 auto;
}
.card-inner {
  background: var(--forest-mid);
  border: 2px solid var(--gold);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
}
.card-art-zone {
  padding: 24px;
  background: linear-gradient(135deg, #0D1F17 0%, #1A3328 100%);
}
.card-pokemon-silhouette svg { width: 100%; height: auto; display: block; }
.card-info-bar {
  background: var(--forest);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}
.card-set {
  font-size: 11px;
  color: rgba(253,250,244,0.5);
}
.card-rarity {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.card-price-tag {
  margin-top: 16px;
  text-align: center;
}
.price-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
}
.price-label {
  display: block;
  font-size: 11px;
  color: rgba(253,250,244,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero stats */
.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 48px 0 0;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: rgba(253,250,244,0.5);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin: 0 48px 0 0;
}

/* Section labels */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 48px;
}

/* Showcase */
.showcase {
  padding: 80px 48px;
  background: var(--cream);
}
.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,51,40,0.1);
}
.showcase-card--featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}
.showcase-card--featured .section-title { color: var(--cream); }
.showcase-icon { margin-bottom: 20px; }
.showcase-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--forest);
}
.showcase-card--featured h3 { color: var(--cream); }
.showcase-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.showcase-card--featured p { color: rgba(253,250,244,0.65); }
.showcase-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 4px 12px;
}
.showcase-card--featured .showcase-tag {
  border-color: var(--gold);
}

/* Features */
.features {
  padding: 80px 48px;
  background: var(--bg);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Slabs */
.slabs {
  padding: 80px 48px;
  background: var(--forest);
}
.slabs-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.slabs .section-eyebrow { color: var(--gold); }
.slabs .section-title { color: var(--cream); }
.slabs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.slab-card {
  background: var(--forest-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.slab-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 0 12px 0 60px;
}
.slab-label {
  margin-bottom: 16px;
}
.grade-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}
.slab-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.slab-card-set {
  font-size: 12px;
  color: rgba(253,250,244,0.45);
  margin-bottom: 12px;
}
.slab-card-price {}
.price {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.market-note {
  display: block;
  font-size: 11px;
  color: rgba(253,250,244,0.4);
  margin-top: 2px;
}
.slabs-note {
  font-size: 13px;
  color: rgba(253,250,244,0.4);
  text-align: center;
}

/* Process */
.process {
  padding: 80px 48px;
  background: var(--cream);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process-step {}
.step-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--forest);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
}
.closing p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(253,250,244,0.65);
  margin-bottom: 12px;
}
.closing-note {
  font-size: 14px !important;
  color: rgba(253,250,244,0.4) !important;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.footer p {
  font-size: 13px;
  color: rgba(253,250,244,0.4);
}
.footer-meta {
  text-align: right;
}
.footer-meta p { line-height: 1.6; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .slabs-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-meta { text-align: left; }
  .hero { padding: 60px 24px 48px; }
  .showcase, .features, .slabs, .process { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .navbar { padding: 16px 24px; }
  .footer { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .slabs-grid { grid-template-columns: 1fr; }
}