/* NOVA — Double barre. Single source for the header menu button. */
.nova-menu-toggle {
  box-sizing: border-box;
  width: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 17, 17, .45) !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #111 !important;
  cursor: pointer;
  overflow: hidden;
  box-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
}
.nova-menu-toggle::before,
.nova-menu-toggle::after { content: none !important; }
.nova-menu-toggle__bars {
  position: relative;
  display: block;
  width: 28px;
  height: 19px;
  flex: 0 0 19px;
}
.nova-menu-toggle__bars > span {
  position: absolute;
  display: block;
  left: 0;
  top: 3px;
  width: 28px;
  height: 4px;
  background: currentColor;
  transition: transform 350ms, top 350ms;
}
.nova-menu-toggle__bars > span:last-child { top: 12px; }
.nova-menu-toggle .nova-menu-toggle__label {
  display: block;
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  line-height: 12px;
  letter-spacing: .25px;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .nova-menu-toggle:hover .nova-menu-toggle__bars > span:first-child { transform: translateY(-1px); }
  .nova-menu-toggle:hover .nova-menu-toggle__bars > span:last-child { transform: translateY(1px); }
}
.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle__bars > span:first-child {
  top: 8px;
  transform: rotate(45deg);
}
.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle__bars > span:last-child {
  top: 8px;
  transform: rotate(-45deg);
}
.nova-menu-toggle:focus-visible { outline: 2px solid #111; outline-offset: 3px; }
@media (max-width: 767px) {
  .nova-menu-toggle {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nova-menu-toggle__bars > span { transition: none; }
}
