/* stats.css — Home stats band */

.stats {
  width: 100%;
  background-color: var(--color-beige);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-xl);
}

.stats__heading {
  font-size: 42px;
  font-weight: var(--fw-light);
  line-height: 51px;
  color: var(--color-forest);
  text-align: left;
  width: 100%;
  max-width: var(--max-w);
}

.stats__grid {
  display: flex;
  gap: clamp(40px, 14vw, 196px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stats__value {
  font-size: 36px;
  font-weight: var(--fw-extralight);
  line-height: 33px;
  letter-spacing: -0.72px;
  color: var(--color-forest);
  margin-bottom: 4px;
}

.stats__label {
  font-size: 18px;
  font-weight: var(--fw-regular);
  line-height: 33px;
  color: var(--color-forest);
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .stats__heading {
    font-size: 32px;
    line-height: 40px;
  }

  .stats__grid {
    gap: 60px;
  }

  .stats__value {
    font-size: 28px;
    line-height: 30px;
  }

  .stats__label {
    font-size: 16px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .stats {
    padding: var(--space-lg) var(--page-px);
  }

  .stats__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .stats__heading br {
    display: none;
  }

  .stats__grid {
    flex-wrap: wrap;
    gap: 32px 40px;
    justify-content: center;
  }

  .stats__item {
    flex: 0 0 calc(50% - 20px);
    text-align: center;
  }

  .stats__value {
    font-size: 24px;
    line-height: 28px;
  }

  .stats__label {
    font-size: 14px;
    line-height: 24px;
  }
}
