.home-hero {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #1a1f2e;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(26, 31, 46, 0.98) 4%, rgba(26, 31, 46, 0.75) 50%, rgba(26, 31, 46, 0.35) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 5rem 3rem;
  padding-inline: max(1rem, env(safe-area-inset-left));
}

.home-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 52rem;
}

.home-hero__lead {
  max-width: 42rem;
  color: #e5e7eb;
  font-size: 1.125rem;
}

.home-hero__note {
  color: #bef264;
  font-weight: 600;
}

main.layout-home {
  max-width: none;
  padding-top: 0;
}

.home-section {
  margin-bottom: 2rem;
}

.home-section--sand {
  background: #f5f0e8;
}

.home-section--dark {
  background: #1a1f2e;
}

.home-section--dark-alt {
  background: #252b3d;
}
