.brand-logo img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.hero-logo {
  justify-self: center;
  width: min(30vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 28px 70px rgba(42, 7, 18, .14);
  overflow: hidden;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(145deg, #07143b, #102768);
  box-shadow: 24px 24px 0 var(--gold);
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.footer-logo {
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}

.footer-logo img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

@media (max-width: 800px) {
  .hero-logo { width: 260px; }
  .founder-photo { max-width: 360px; }
}

@media (max-width: 480px) {
  .hero-logo { width: 220px; }
}
