/* Mobile menu — synced with styles.css */
@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
  .header__inner > .nav {
    position: static;
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .nav__panel {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

@media (max-width: 1024px) {
  .nav {
    display: block;
    position: fixed;
    top: var(--total-header);
    left: 0;
    right: 0;
    z-index: 290;
  }
  .nav__panel {
    background: #fff;
    box-shadow: 0 12px 40px rgba(10, 37, 64, 0.14);
  }
  .nav__links {
    display: flex;
    flex-direction: column;
  }
  .nav__link {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav__link.active {
    color: var(--teal);
  }
  .nav__cta {
    width: calc(100% - 3rem);
    margin: 1.25rem 1.5rem 1.5rem;
    min-height: 52px;
  }
}
