/* Make the identity the visual anchor of the page. */
@media (min-width: 801px) {
  .site-header {
    justify-content: space-between;
    min-height: 118px;
  }

  .brand {
    position: absolute;
    left: 50%;
    top: 9px;
    transform: translateX(-50%);
    z-index: 2;
  }

  .brand img {
    width: 230px;
    height: 98px;
  }

  .main-nav {
    margin: 0;
    padding-right: 250px;
  }

  .header-cta {
    margin-left: auto;
  }
}

@media (max-width: 800px) {
  .site-header {
    justify-content: center;
  }

  .brand img {
    width: 165px;
    height: 66px;
  }

  .menu-button {
    position: absolute;
    right: 17px;
  }
}

/* Hero identity replaces the generic renewable-energy illustration. */
.hero-art .windmill,
.hero-art .solar,
.hero-art .leaf,
.hero-art .energy-card {
  display: none;
}

.hero-logo {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 52%;
  width: min(610px, 82%);
  height: auto;
  transform: translate(-50%, -48%);
  filter: drop-shadow(0 20px 24px rgba(11, 46, 94, .16));
}

@media (max-width: 800px) {
  .hero-logo {
    top: 48%;
    left: 50%;
    width: min(470px, 96%);
    transform: translate(-50%, -50%);
  }
}
