.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 5vw 3.5rem;
  background: linear-gradient(165deg, var(--grey-100) 0%, var(--white) 55%, #f3f6ee 100%);
}
.hero-split .copy .muted { margin-bottom: 0.75rem; }
.hero-photo {
  margin: 0;
  justify-self: end;
  width: min(100%, 380px);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 40px rgba(47, 67, 104, 0.18);
}
@media (max-width: 800px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }
  .hero-photo {
    justify-self: center;
    order: -1;
    width: min(100%, 280px);
  }
}
