/* Brand artwork and an unobstructed split hero */
.site-header .brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 44%) 1fr;
  background: var(--charcoal);
}

.hero-image {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  min-height: calc(100vh - 92px);
  object-position: center;
}

.hero-shade {
  display: none;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  margin: 0;
  padding: clamp(72px, 8vw, 120px) clamp(32px, 6vw, 96px);
  align-self: center;
}

.hero h1 {
  font-size: clamp(58px, 6.2vw, 98px);
}

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

footer .brand-light img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

@media (max-width: 850px) {
  .site-header .brand img {
    width: 58px;
    height: 58px;
  }

  .hero {
    display: flex;
    min-height: calc(100svh - 76px);
    align-items: end;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .hero-shade {
    display: block;
    background: linear-gradient(0deg, rgba(12,25,27,.9) 0%, rgba(12,25,27,.38) 60%, transparent 100%);
  }

  .hero-content {
    width: min(680px, 100%);
    margin: 0;
    padding: 280px 22px 65px;
    align-self: end;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 76px);
  }
}
