.home-hero {
  padding: var(--space-32) 0 var(--space-40);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-32);
  align-items: center;
}

.home-hero__content p {
  max-width: 34rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
  margin-bottom: var(--space-16);
}

.home-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-16);
}

.home-hero__meta-item {
  padding-left: var(--space-8);
  border-left: 1px solid var(--color-border-subtle);
}

.home-hero__meta-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.home-hero__visual {
  min-height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, var(--color-primary-soft), transparent 55%),
              radial-gradient(circle at 80% 80%, #fdf2f5, transparent 55%),
              linear-gradient(135deg, #fff7fa, #f5e4ea);
  box-shadow: var(--shadow-md);
}

.home-section {
  padding: var(--space-32) 0;
}

.home-section--featured {
  background-color: var(--color-surface);
}

.home-section--mood {
  background-color: var(--color-surface-muted);
}

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

.home-section__header {
  margin-bottom: var(--space-24);
}

.home-section__header--split {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  align-items: flex-end;
}

.home-section__header--center {
  text-align: center;
}

.home-section__subtitle {
  max-width: 40rem;
}

.home-section__header--center .home-section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.home-section__header-actions {
  flex-shrink: 0;
}

.home-featured {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  gap: var(--space-24);
  align-items: center;
}

.home-featured__figure {
  position: relative;
}

.home-featured__image {
  width: 100%;
}

.home-featured__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.home-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.home-featured__list {
  display: grid;
  gap: var(--space-12);
}

.home-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.home-grid {
  margin-top: var(--space-16);
}

.home-card {
  height: 100%;
}

.home-card-minimal {
  height: 100%;
}

.home-card-minimal h3 {
  margin-bottom: var(--space-6);
}

.home-card-minimal p {
  margin-bottom: 0;
}

.home-mood {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  gap: var(--space-32);
  align-items: center;
}

.home-mood__list {
  display: grid;
  gap: var(--space-12);
  margin-top: var(--space-8);
  margin-bottom: var(--space-16);
}

.home-mood__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.home-trust__alert-wrapper {
  margin-top: var(--space-24);
}

.home-trust__alert {
  max-width: 44rem;
}

.home-personalized .home-grid--personalized {
  margin-top: var(--space-16);
}

.home-guides .home-grid--guides {
  margin-top: var(--space-16);
}

.home-reviews .home-grid {
  margin-top: var(--space-16);
}

.home-review {
  position: relative;
}

.home-review__rating {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-6);
}

.home-review__name {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.home-review__text {
  margin-bottom: 0;
}

.home-reviews__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-24);
}

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

  .home-featured {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  }

  .home-mood {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding-top: var(--space-24);
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero__visual {
    order: -1;
    min-height: 200px;
  }

  .home-section__header--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-section__header-actions {
    width: 100%;
  }

  .home-section__header-actions .button {
    width: 100%;
    justify-content: center;
  }

  .home-featured {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-mood {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-trust__alert {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .home-hero__actions,
  .home-featured__actions,
  .home-mood__actions,
  .home-reviews__cta {
    flex-direction: column;
  }

  .home-hero__actions .button,
  .home-featured__actions .button,
  .home-mood__actions .button,
  .home-reviews__cta .button {
    width: 100%;
    justify-content: center;
  }
}
