:root {
  --gold: #b57134;
  --green: #b57134;
}

header {
  height: 104px;
  padding-left: 5%;
  padding-right: 5%;
  align-items: center;
}

@media (min-width: 651px) {
  header {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: clamp(48px, 7vw, 120px);
  }

  header nav {
    justify-self: end;
    align-self: center;
  }
}

.brand-logo {
  display: block;
  width: 270px;
  height: 94px;
  line-height: 0;
  flex: 0 0 auto;
  align-self: center;
}

header nav {
  gap: 31px;
  font-size: 15px;
  font-weight: 600;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: 250px;
  height: 87px;
}

.footer-logo img {
  width: 100%;
}

.nav-contact {
  border-color: var(--gold);
}

.eyebrow span {
  background: var(--gold);
}

.button {
  background: var(--gold);
  color: #fff;
}

.button:hover {
  background: #d09558;
}

.dark-button {
  background: var(--navy);
  color: #fff;
}

.dark-button:hover {
  background: #484c50;
}

.text-link,
.steps article > span {
  color: #dca058;
}

.contact {
  border-top: 4px solid var(--gold);
}

.service-more {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 25px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.service-more:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  header { height: 98px; }
  .brand-logo { width: 245px; height: 85px; }
  .footer-logo { width: 230px; height: 80px; }
}

@media (max-width: 650px) {
  header { height: auto; padding-top: 4px; padding-bottom: 10px; }
  .brand-logo { width: 235px; height: 82px; }
  .footer-logo { width: 220px; height: 77px; }
}
