html { scroll-padding-top: 76px; }
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .9);
}
.site-header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 32px;
  padding: 8px 16px;
}
.site-header a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.site-header a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 5px 0 #ff7a19, 0 10px 0 #ffad17;
  opacity: 0;
  pointer-events: none;
}
.site-header a:hover::after,
.site-header a:focus-visible::after { opacity: 1; }
.site-header .contact-email { font-size: .875rem; }
.site-header .contact-phone { white-space: nowrap; }
.hero-content { padding-top: 100px; }
.site-header a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
@media (max-width: 600px) {
  .site-header .contact-email { flex-basis: 100%; justify-content: center; min-height: 32px; }
  .site-header .contact-phone { flex-basis: 100%; justify-content: center; min-height: 32px; }
  .hero-content { padding-top: 166px; }
  .site-header nav { gap: 4px 18px; padding: 6px 12px; }
  .site-header a { font-size: .875rem; }
}
