body.home-page {
  background-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.home-hero {
  position: relative;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-96);
  padding-bottom: var(--space-80);
}

.home-hero__text {
  max-width: 640px;
}

.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

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

.home-hero__meta-text {
  font-size: var(--font-size-sm);
  max-width: 420px;
  margin-top: var(--space-12);
  color: rgba(245, 241, 232, 0.78);
}

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

.home-section__inner {
  align-items: center;
  gap: var(--space-40);
}

.home-section__text {
  max-width: 640px;
}

.home-section__media {
  max-width: 560px;
  justify-self: center;
}

.home-section__image {
  height: 100%;
}

.home-section__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.home-section--tasting .home-section__highlight,
.home-section--wine .home-section__highlight,
.home-section--reservations .home-section__form,
.home-section--newsletter .home-section__form {
  align-self: stretch;
}

.home-reservation-form,
.home-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.home-reservation-form__field,
.home-newsletter-form__field {
  width: 100%;
}

.home-reservation-form__submit,
.home-newsletter-form__submit {
  width: 100%;
  justify-content: center;
}

.home-reservation-form__note,
.home-newsletter-form__note {
  font-size: var(--font-size-xs);
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .home-hero__content {
    padding-top: var(--space-80);
    padding-bottom: var(--space-64);
  }

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

@media (max-width: 768px) {
  .home-hero__text {
    max-width: none;
  }

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

  .home-section__inner {
    gap: var(--space-32);
  }

  .home-section__media {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .home-hero__content {
    padding-top: var(--space-64);
    padding-bottom: var(--space-56);
  }

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