.section--hero-home {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.hero-home__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: var(--space-32);
  align-items: center;
}

.hero-home__content {
  max-width: 34rem;
}

.hero-home__lead {
  font-size: var(--font-size-lg);
}

.hero-home__actions {
  margin-top: var(--space-16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.hero-home__meta {
  margin-top: var(--space-24);
  display: grid;
  gap: var(--space-16);
}

.hero-home__meta-title {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-neutral-600);
  margin-bottom: var(--space-4);
}

.hero-home__meta-text {
  margin-bottom: 0;
}

.hero-home__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-md);
}

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collections-home__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-bottom: var(--space-24);
}

.collections-home__grid {
  margin-bottom: var(--space-24);
}

.collections-home__link,
.featured-home__link,
.cases-home__link,
.ordering-home__link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collections-home__footer {
  text-align: center;
}

.inspiration-home__grid {
  align-items: center;
}

.inspiration-home__list,
.chandelier-smart-home__list,
.bedroom-consult-home__list,
.ordering-home__list {
  list-style: none;
  margin-top: var(--space-12);
}

.inspiration-home__list li,
.chandelier-smart-home__list li,
.bedroom-consult-home__list li,
.ordering-home__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.inspiration-home__list li::before,
.chandelier-smart-home__list li::before,
.bedroom-consult-home__list li::before,
.ordering-home__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary);
}

.inspiration-home__actions,
.chandelier-smart-home__actions,
.bedroom-consult-home__actions,
.consultation-home__cta,
.ordering-home__cta,
.contact-home__actions {
  margin-top: var(--space-16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.featured-home__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
}

.featured-home__grid .card__price {
  margin-top: var(--space-8);
}

.chandelier-smart-home__grid,
.bedroom-consult-home__grid,
.testimonials-cases-home__grid,
.ordering-contact-home__grid {
  align-items: flex-start;
  gap: var(--space-32);
}

.bedroom-consult-home__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-md);
}

.consultation-home__intro {
  text-align: center;
  margin-bottom: var(--space-24);
}

.consultation-home__grid {
  margin-bottom: var(--space-24);
}

.testimonials-home__list {
  display: grid;
  gap: var(--space-16);
}

.testimonials-home__author {
  margin-top: var(--space-6);
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
}

.cases-home__card {
  height: 100%;
}

.contact-home__form {
  margin-top: var(--space-12);
}

.contact-home__consent span {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.contact-home__consent input[type="checkbox"] {
  width: auto;
}

@media (min-width: 768px) {
  .hero-home__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .hero-home__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-home__header,
  .featured-home__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .section--hero-home {
    padding-top: var(--space-32);
  }

  .hero-home__media {
    order: -1;
  }

  .hero-home__content {
    max-width: 100%;
  }
}
