.collections-hero {
  padding: var(--space-16) 0 var(--space-10);
}

.collections-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.collections-hero__lead {
  max-width: 40rem;
  color: var(--color-text-muted);
}

.collections-hero__actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.collections-hero__image {
  max-width: 480px;
  margin-left: auto;
}

.collections-browse,
.collections-rooms,
.collections-extra {
  padding: var(--space-10) 0;
}

.collections-section-header {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.collections-section-header p {
  color: var(--color-text-muted);
}

.collections-grid {
  align-items: stretch;
}

.collection-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
}

.collection-card__image-wrapper {
  margin-bottom: var(--space-4);
}

.collection-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.collection-card__body p {
  color: var(--color-text-muted);
}

.collection-card__link {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.collections-extra__layout {
  display: flex;
}

.collections-extra__content {
  width: 100%;
}

.collections-extra__highlights {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}

.collections-extra__item h3 {
  margin-bottom: var(--space-2);
}

.collections-extra__item p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.collections-extra__support {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.collections-extra__support-text {
  max-width: 40rem;
}

.collections-extra__support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 960px) {
  .collections-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .collections-hero__image {
    max-width: 100%;
    order: -1;
  }
}

@media (max-width: 640px) {
  .collections-hero {
    padding: var(--space-12) 0 var(--space-8);
  }

  .collections-browse,
  .collections-rooms,
  .collections-extra {
    padding: var(--space-8) 0;
  }

  .collection-card {
    padding: var(--space-3);
  }
}
