.nav-actions-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--ink, #12233E);
  border-radius: 2px;
  background: transparent;
  color: var(--ink, #12233E);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-toggle:hover {
  background: var(--ink, #12233E);
  color: var(--paper, #FAFAF7);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0.25rem 1.2rem 0.75rem;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule, #E8EAEC);
    box-shadow: 0 8px 24px rgba(18, 35, 62, 0.08);
    z-index: 60;
  }

  nav.is-menu-open .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--rule, #E8EAEC);
    white-space: normal;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }
}
