.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px 10px;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  cursor: pointer;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 122px;
}

.brand {
  width: 204px;
  height: 115px;
}

#site-nav {
  font-family: Georgia, serif;
  font-size: 17px;
}

#site-nav .call {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.credentials-grid .service-icon {
  width: 52px;
  height: 52px;
  padding: 7px;
  overflow: visible;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(6, 47, 79, .08);
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 14px;
  background-image:
    linear-gradient(115deg, rgba(255, 211, 61, .94), rgba(255, 106, 0, .82)),
    url("images/plumbing-contact.webp");
  background-position: center 55%;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(6, 47, 79, .08);
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .14), transparent 58%);
  pointer-events: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 800px) {
  header {
    position: sticky;
    height: 102px;
  }

  .brand {
    width: 123px;
    height: 86px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  #site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 5vw;
    left: 5vw;
    z-index: 30;
    display: none;
    padding: 14px;
    border-top: 4px solid var(--blue);
    border-radius: 0 0 12px 12px;
    background: #fff;
    box-shadow: 0 18px 34px #062f4f35;
  }

  #site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  #site-nav > a,
  #site-nav > a:not(.call) {
    display: block;
    padding: 11px 13px;
    font-size: 18px;
  }

  #site-nav .call {
    font-size: 14px;
  }

  #site-nav .call {
    margin-top: 5px;
    text-align: center;
  }
}
