:root {
  --bg-deep: #0a0f1a;
  --bg-section: #0f1525;
  --bg-card: #151d30;
  --bg-card-hover: #1a2540;
  --fg: #e8e0d4;
  --fg-muted: #9a917f;
  --fg-dim: #5c5647;
  --accent: #c9a84c;
  --accent-light: #e4c96a;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --red-heritage: #8b2c2c;
  --blue-heritage: #1e3a5f;
  --white-heritage: #e8e0d4;
  --border: rgba(201, 168, 76, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(139, 44, 44, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(30, 58, 95, 0.2), transparent),
    radial-gradient(ellipse 50% 50% at 50% 50%, var(--accent-glow), transparent),
    var(--bg-deep);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--accent);
  display: block;
}

.lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.hero-cta-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.hero-cta-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ STATS ============ */
.stats {
  padding: 4rem 2rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-card {
  background: var(--bg-section);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ============ FEATURES ============ */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.features-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.25);
}

.feature-card--large {
  grid-column: 1 / -1;
}

.feature-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ============ TIMELINE ============ */
.timeline {
  padding: 6rem 2rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timeline-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
}

.timeline-track {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2.55rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-section);
}

.timeline-marker.active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ============ CLOSING ============ */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201, 168, 76, 0.08), transparent),
    var(--bg-deep);
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing-star {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-muted);
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-bottom: 1.2rem;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.2rem;
}

.footer-note {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.footer-links {
  margin-bottom: 0.5rem;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-sep {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin: 0 0.5rem;
}

/* ============ SHOP ============ */
.shop {
  padding: 6rem 2rem 4rem;
  background: var(--bg-deep);
}

.shop-container {
  max-width: 1100px;
  margin: 0 auto;
}

.shop-header {
  text-align: center;
  margin-bottom: 4rem;
}

.shop-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.shop-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.shop-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 3-col grid, last 2 span to fill row cleanly */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* 4th item (print) spans 2 cols — feature */
.product-card--featured {
  grid-column: span 2;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.product-img-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-deep);
  aspect-ratio: 1;
}

.product-card--featured .product-img-wrap {
  aspect-ratio: 2 / 1;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
  padding: 1rem;
}

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

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.product-card:hover .product-img-overlay {
  opacity: 1;
  background: rgba(10, 15, 26, 0.45);
}

.product-view-btn {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  background: rgba(10, 15, 26, 0.7);
}

.product-badge-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.7rem;
  background: var(--red-heritage);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.product-badge-tag--gold {
  background: var(--accent);
  color: var(--bg-deep);
}

.product-info {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.product-buy-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.product-buy-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* Trust strip */
.shop-trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.trust-icon {
  font-size: 1rem;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  pointer-events: all;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 18, 0.88);
  backdrop-filter: blur(4px);
}

.lightbox-panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 90%;
  max-width: 860px;
  max-height: 88vh;
  overflow-y: auto;
  z-index: 1;
  transform: translateY(16px);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}

.lightbox.is-open .lightbox-panel {
  transform: translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
  padding: 0;
  transition: color 0.15s ease;
}

.lightbox-close:hover {
  color: var(--fg);
}

.lightbox-inner {
  padding: 2.5rem;
}

.lb-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.lb-img-col {
  position: relative;
}

.lb-img {
  width: 100%;
  border-radius: 4px;
  background: var(--bg-deep);
  padding: 1rem;
}

.lb-badge {
  margin-top: 0.75rem;
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.lb-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.lb-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.lb-desc {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lb-desc p {
  margin-bottom: 0.9rem;
}

.lb-desc p:last-child {
  margin-bottom: 0;
}

.product-detail-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  margin-top: 1rem;
}

.product-detail-specs li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}

.product-detail-specs li strong {
  color: var(--fg);
  font-weight: 600;
}

.lb-buy-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.lb-buy-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.lb-trust {
  font-size: 0.75rem;
  color: var(--fg-dim);
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card--featured {
    grid-column: span 2;
  }
  .lb-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-card--large {
    grid-column: 1;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 90vh;
  }

  .features,
  .timeline,
  .closing,
  .shop {
    padding: 4rem 1.5rem;
  }

  .shop-trust {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .product-card--featured {
    grid-column: span 1;
  }
  .product-card--featured .product-img-wrap {
    aspect-ratio: 1;
  }
  .lightbox-inner {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
}