.site-header {
  height: 104px;
}

.hero {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 4vw, 64px);
  padding-inline: clamp(24px, 4vw, 72px);
}

.hero-copy,
.stage-card {
  min-width: 0;
}

.stage-card {
  width: 100%;
  max-width: 920px;
  justify-self: end;
}

.brand {
  flex: 0 0 auto;
}

.hero-brand-illustration {
  display: block;
  width: min(100%, 430px);
  max-height: 235px;
  margin: 0 0 22px;
  object-fit: contain;
  object-position: left center;
}

.homepage-logo {
  display: block;
  width: clamp(230px, 23vw, 340px);
  height: 82px;
  object-fit: contain;
  object-position: left center;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .site-header {
    height: 82px;
    padding-inline: 12px;
    gap: 12px;
  }

  .homepage-logo {
    width: 170px;
    height: 60px;
  }

  .hero-brand-illustration {
    width: min(100%, 360px);
    max-height: 210px;
    margin-bottom: 18px;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .site-header {
    padding-inline: 28px;
    gap: 26px;
  }

  .homepage-logo {
    width: 225px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
    padding: 62px 28px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.5vw, 60px);
  }

  .hero-brand-illustration {
    max-height: 210px;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .stage-card {
    justify-self: center;
  }
}

.footer-brand {
  color: #d9e1ef;
  letter-spacing: 0.08em;
}

.footer-ts-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 700px) {
  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  footer p:last-child {
    margin-left: 0;
  }
}
