/* ==========================================================================
   Module: Stats Section
   ========================================================================== */
.stats {
  background: var(--color-dark-2);
  padding-block: var(--space-20);
  border-top: 1px solid rgba(184, 146, 42, 0.2);
  border-bottom: 1px solid rgba(184, 146, 42, 0.2);
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  padding: var(--space-4);
  position: relative;
}

.stats__icon {
  margin-bottom: var(--space-1);
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(184, 146, 42, 0.3));
  transition: transform 0.3s ease;
}

.stats__item:hover .stats__icon {
  transform: translateY(-5px) scale(1.1);
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184, 146, 42, 0.3), transparent);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.stats__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.stats__item:hover .stats__label {
  color: var(--color-gold-light);
}

/* Responsive */
@media (max-width: 1023px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(even)::after { display: none; }
}

@media (max-width: 768px) {
  .stats { 
    padding-block: 2.5rem !important; 
  }
  .stats__grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: var(--space-4) !important; 
  }
  .stats__item {
    padding: 0.75rem !important;
    gap: var(--space-2) !important;
  }
  .stats__item::after { display: none !important; }
  
  .stats__icon svg {
    width: 32px !important;
    height: 32px !important;
  }
  
  .stats__number { 
    font-size: 1.8rem !important; 
  }
  .stats__label {
    font-size: 0.65rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1.2 !important;
  }
}
