/* ============================================================
   NIGHT MACARON — Stats Section
   ============================================================ */

.stats {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.stats .section-inner {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* ── Grid: 4 stats + 3 dividers ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 0;
}

/* ── Thin vertical dividers ── */
.stat-divider {
  width: 0.5px;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
  margin-inline: auto;
}

/* ── Single stat ── */
.stat-item {
  text-align: center;
  padding: 2rem 3rem;
  position: relative;
}

/* ── Number + suffix ── */
.stat-value {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
}

.stat-suffix {
  font-size: 0.45em;
  color: var(--gold-dim);
  letter-spacing: 0.05em;
}

.stat-number {
  display: inline-block;
}

/* ── Label ── */
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0;
  }

  /* Hide vertical dividers on tablet */
  .stat-divider {
    display: none;
  }

  .stat-item {
    border-bottom: 0.5px solid var(--border);
    padding: 2.5rem 2rem;
  }

  .stat-item:nth-child(even) {
    border-left: 0.5px solid var(--border);
  }
}

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

  .stat-item:nth-child(even) {
    border-left: none;
  }

  .stats .section-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
