/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: rgba(17, 23, 20, .9);
  color: var(--white);
  backdrop-filter: blur(16px);
}
.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand__mark { width: 42px; height: 42px; }
.brand__text {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .035em;
  line-height: .78;
  text-transform: uppercase;
}
.brand__text small {
  display: block;
  margin-top: 7px;
  color: var(--signal);
  font-family: var(--body);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .23em;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links > a {
  position: relative;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.nav__links > a:not(.nav__phone):not(.nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--signal);
  content: "";
  transition: transform .2s ease;
}
.nav__links > a:hover { color: var(--white); }
.nav__links > a:hover::after { transform: scaleX(1); }
.nav__phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white) !important;
  white-space: nowrap;
}
.nav__phone::before {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}
.nav__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--signal);
  color: var(--ink) !important;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  background: transparent;
  color: white;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
