/* relax.host — mobile nav + responsive tweaks (injected, applies to all pages) */
.nav-burger { display: none; }
@media (max-width: 760px) {
  nav.nav { gap: 0 !important; padding: 8px 8px 8px 16px !important; width: auto !important; max-width: calc(100vw - 20px) !important; }
  nav.nav > a:not(.brand), nav.nav > .divider, nav.nav > .cta, nav.nav .nav-mark { display: none !important; }
  nav.nav .brand { font-size: 18px !important; }
  .nav-burger {
    display: inline-flex; flex-direction: column; gap: 4px;
    justify-content: center; align-items: center;
    width: 40px; height: 40px; margin-left: 12px;
    border: none; background: transparent; cursor: pointer; padding: 0;
  }
  .nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink, #0a0a0c); border-radius: 2px; transition: transform .22s, opacity .22s; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-mobile-menu {
    display: none; position: fixed; z-index: 60;
    top: 74px; left: 12px; right: 12px;
    flex-direction: column; gap: 4px; padding: 12px;
    background: rgba(255,255,255,0.96);
    -webkit-backdrop-filter: blur(30px) saturate(180%); backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.85); border-radius: 22px;
    box-shadow: 0 24px 70px -20px rgba(10,10,12,0.28);
  }
  body.nav-open .nav-mobile-menu { display: flex; animation: navDrop .22s cubic-bezier(.2,.7,.2,1); }
  @keyframes navDrop { from { opacity: 0; transform: translateY(-10px); } }
  .nav-mobile-menu a {
    padding: 14px 16px; border-radius: 13px; text-decoration: none;
    color: var(--ink, #0a0a0c); font-family: var(--f-sans, system-ui);
    font-weight: 600; font-size: 16px;
  }
  .nav-mobile-menu a:active, .nav-mobile-menu a:hover { background: rgba(10,10,12,0.05); }
  .nav-mobile-menu a.cta { background: var(--ink, #0a0a0c); color: #fff; text-align: center; margin-top: 4px; }
  .nav-scrim { display: none; position: fixed; inset: 0; z-index: 55; background: rgba(10,10,12,0.12); }
  body.nav-open .nav-scrim { display: block; }
}
