.home-page #title-block-header {
  display: none;
}

.home-page main.content {
  margin: 0;
  padding: 0;
}

.home-hero {
  display: flex;
  min-height: calc(100vh - 72px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--bs-primary) 18%, transparent) 0, transparent 31%),
    linear-gradient(135deg, color-mix(in srgb, var(--bs-body-bg) 92%, var(--bs-primary)) 0%, var(--bs-body-bg) 58%);
}

.home-grid {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  align-items: center;
  column-gap: clamp(2rem, 6vw, 6rem);
}

.home-copy {
  align-self: center;
}

.home-eyebrow {
  margin: 0 0 1rem;
  color: var(--bs-primary);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-copy h1 {
  margin: 0 0 1.4rem;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.home-blurb {
  max-width: 720px;
  color: var(--bs-secondary-color);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.75;
}

.home-blurb p {
  margin: 0;
}

.home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.home-links p {
  display: contents;
}

.home-links .btn {
  border-radius: 999px;
  padding: 0.58rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

.home-photo {
  position: relative;
  align-self: center;
}

.home-photo::before {
  position: absolute;
  inset: 9% -6% -7% 10%;
  z-index: 0;
  border-radius: 2rem;
  background: color-mix(in srgb, var(--bs-primary) 24%, transparent);
  content: "";
  transform: rotate(3deg);
}

.home-photo figure {
  position: relative;
  z-index: 1;
  margin: 0;
}

.home-photo img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 1.6rem;
  box-shadow: 0 24px 70px rgba(15, 20, 30, 0.24);
  object-fit: cover;
}

.home-photo figcaption {
  display: none;
}

@media (max-width: 991.98px) {
  .home-hero {
    min-height: auto;
  }

  .home-grid {
    width: min(720px, calc(100% - 2.5rem));
    padding: 3.5rem 0 5rem;
    grid-template-columns: minmax(0, 1fr) !important;
    column-gap: 0;
    row-gap: 3rem;
  }

  .home-copy,
  .home-photo {
    grid-column: 1 !important;
    width: auto !important;
    max-width: 100%;
    min-width: 0;
  }

  .home-blurb,
  .home-links {
    width: auto;
    max-width: 100%;
  }

  .home-photo {
    grid-row: 1;
    width: min(100%, 580px) !important;
  }

  .home-copy h1 {
    font-size: clamp(3.6rem, 15vw, 6rem);
  }
}

@media (max-width: 575.98px) {
  .home-grid {
    width: min(100% - 2rem, 720px);
    padding-top: 2rem;
  }

  .home-copy h1 {
    font-size: 3.65rem;
  }

  .home-blurb {
    font-size: 1.02rem;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-photo::before {
    transform: none;
  }
}
