.collection-hero {
  padding: 0;
}

.collection-hero__container {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

/* ===== Label ===== */
.collection-hero__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(var(--color-foreground), 0.4);
  margin-bottom: 1.5rem;
}

/* ===== Heading ===== */
.collection-hero__heading {
  font-size: clamp(3.2rem, 7vw, 5rem);
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin: 0 0 2rem 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* ===== Description ===== */
.collection-hero__text {
  font-size: 1.25rem;
  line-height: 1.75;
  color: rgba(var(--color-foreground), 0.55);
  margin: 0 auto 0 auto;
  max-width: 38rem;
}

/* ===== Stats Row ===== */
.collection-hero__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.collection-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 3rem;
  position: relative;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-hero__stat:hover {
  transform: translateY(-4px);
}

.collection-hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 3rem;
  background: rgba(var(--color-foreground), 0.1);
}

.collection-hero__stat-value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: rgb(var(--color-foreground));
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.collection-hero__stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(var(--color-foreground), 0.4);
}

/* ===== Mobile ===== */
@media screen and (max-width: 749px) {
  .collection-hero__stats {
    gap: 0;
  }

  .collection-hero__stat {
    padding: 0 1.5rem;
  }

  .collection-hero__stat:not(:last-child)::after {
    height: 2rem;
  }
}

/* ===== Animations ===== */
.collection-hero__container.scroll-trigger.animate--slide-in {
  opacity: 0;
}

.collection-hero__container.scroll-trigger.animate--slide-in.scroll-trigger--animate {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .collection-hero__stat {
    transition: none;
  }
}
