/* ===================================================
   ROSE EVENTS — Stats Counter Section
   =================================================== */

.stats-section {
  padding: 4rem 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 6rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-value .stat-suffix {
  color: var(--accent);
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 3px;
  text-transform: uppercase;
}
