/* ============================================================
   LIKHIT PENS — LIMITED EDITION PAGE
   Source: docs/design.md → Section 6 "LIMITED EDITION PAGE"
   ============================================================ */

/* Hero */
.limited-hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D0D0D;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-height-desktop);
  text-align: center;
}

.limited-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.limited-hero-content { position: relative; z-index: 2; }

.limited-hero-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--color-antique-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.limited-hero-sub {
  font-style: italic;
  font-family: var(--font-script);
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-7);
}

/* ── Parallax Heritage Wall (Desktop) — Animation #6 ── */
#heritage-wall {
  height: 300vh;
  position: relative;
}

.heritage-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0A0A0A;
}

.heritage-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0808 0%, #150800 50%, #0A0808 100%);
  will-change: transform;
}

.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transition: background 0.1s;
}

.heritage-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  padding: var(--space-8) var(--space-8);
  opacity: 0;
  z-index: 2;
  will-change: opacity, transform;
}

@media (max-width: 767px) {
  .heritage-panel { flex-direction: column; gap: var(--space-6); padding: var(--space-6) var(--space-5); }
}

.heritage-pen-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}

.heritage-pen-display img {
  max-height: 60vh;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(201,168,76,0.4));
}

.heritage-pen-placeholder {
  width: 100%;
  max-width: 420px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heritage-pen-placeholder svg { width: 100%; height: auto; }

.heritage-text-panel {
  flex: 1;
  max-width: 460px;
  color: white;
}

.heritage-edition-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--color-antique-gold);
  margin-bottom: var(--space-3);
}

.heritage-pen-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.heritage-pen-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  line-height: var(--leading-loose);
  font-weight: var(--weight-light);
  margin-bottom: var(--space-6);
}

.heritage-wax { margin-bottom: var(--space-5); }

/* ── Mobile Heritage ── */
#heritage-mobile {
  display: none;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100vh;
}

@media (max-width: 767px) {
  #heritage-wall { display: none; }
  #heritage-mobile { display: block; }
}

.heritage-pen-section {
  height: 100vh;
  scroll-snap-align: start;
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-7) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.heritage-pen-image {
  max-height: 40vh;
  max-width: 80%;
  object-fit: contain;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.5s ease-out;
  filter: drop-shadow(0 10px 30px rgba(201,168,76,0.3));
}

.heritage-pen-image.visible {
  transform: translateY(0);
  opacity: 1;
}

.heritage-mobile-glow {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  pointer-events: none;
}

/* ── Collector's Grid (below heritage wall) ── */
.collectors-grid {
  background: #0D0D0D;
  padding: var(--space-11) 0;
}

.collectors-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1023px) { .collectors-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .collectors-cards { grid-template-columns: 1fr; } }

.collector-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}

.collector-card:hover {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.04);
}

.collector-card .wax-seal {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
}

.collector-img {
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.collector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collector-card:hover .collector-img img {
  transform: scale(1.04);
}

.collector-name {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  color: white;
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-tight);
}

.collector-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-5);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
}

.collector-price {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-antique-gold);
  margin-bottom: var(--space-4);
}
