.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #0d1523;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }
.mobile-menu-toggle, .cta-short { display: none; }

@media (max-width: 760px) {
  html { scroll-padding-top: 68px; }
  .site-header { overflow: visible; }
  .nav-inner {
    position: relative;
    min-height: 68px;
    padding: 10px 16px !important;
    gap: 10px !important;
  }
  .site-logo { margin-right: auto; }
  .mobile-menu-toggle {
    display: inline-grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #0d1523;
    cursor: pointer;
  }
  .mobile-menu-toggle:hover { background: rgba(13, 21, 35, .06); }
  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease;
  }
  .mobile-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none !important;
    overflow: visible !important;
    padding: 8px 16px 18px;
    flex-direction: column;
    align-items: stretch !important;
    gap: 0 !important;
    background: rgba(244, 244, 242, .98);
    border-top: 1px solid rgba(13, 21, 35, .1);
    border-bottom: 1px solid rgba(13, 21, 35, .1);
    box-shadow: 0 18px 36px rgba(13, 21, 35, .08);
    white-space: normal !important;
  }
  .primary-nav.is-open { display: flex !important; }
  .primary-nav a {
    min-height: 48px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(13, 21, 35, .1);
    font-family: "Schibsted Grotesk", system-ui, sans-serif;
    font-size: 17px;
  }
  .primary-nav a:last-child { border-bottom: 0; }
  .header-cta {
    min-height: 44px;
    padding: 10px 15px !important;
    font-size: 13px !important;
  }
  .page-shell [style*="max-width:1240px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .page-shell .nav-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 390px) {
  .cta-full { display: none; }
  .cta-short { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
