/* Responsive hamburger menu for executive site */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 80vw;
    max-width: 400px;
    height: calc(100vh - 64px);
    background: #0a2847;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 2.5rem 2rem 0 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    box-shadow: 2px 0 24px 0 rgba(10,40,71,0.12);
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link {
    height: 56px;
    line-height: 56px;
    font-size: 1.15rem;
    width: 100%;
    padding: 0 0.5em;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
}
