.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 5vw, 78px);
  align-items: center;
  padding-block: clamp(54px, 5vw, 78px);
}

.hero-copy {
  max-width: 470px;
  margin: 0;
}

.hero-photo {
  width: 100%;
  max-width: 720px;
  min-height: 0;
  height: auto;
  justify-self: end;
  overflow: visible;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 58px;
  }

  .hero-photo {
    order: -1;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    justify-self: stretch;
  }

  .hero-copy {
    max-width: 520px;
    margin: 0;
    padding-bottom: 0;
  }
}
