/* STATS / KPIs */
section.services__stats,
.luxury__stats {
  background: var(--color-surface-muted);
  padding-block: 1.5rem;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  width:auto;
  flex: 1;
}
.stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat--visible {
  opacity: 1;
  transform: translateY(0);
}

.stat__number {
  margin: 0 0 0.25rem;
  color: var(--color-text);
  font: var(--h2-font);
}
.stat__label {
  font: var(--h4-font);
  color: var(--color-text);
  font-size: 24px;
} /* 24/32 */
.stat__sublabel {
  font: 400 1.375rem/2rem Montserrat, sans-serif;
  color: var(--color-text);
} /* 22/32 */
.stat--sep {
  width: 1px;
  height: 5.75rem;
  background: var(--border);
  display: none; /* 92px */
}


