.mobile-menu-toggle,
.mobile-menu-panel{
  display:none;
}

@media (max-width:900px){
  .nav,
  .site-nav{
    position:sticky;
    top:0;
    z-index:80;
  }

  .nav-inner{
    height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
  }

  .nav-links,
  .nav-meta,
  .nav-inner > .nav-cta{
    display:none!important;
  }

  .mobile-menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border:1px solid rgba(233,81,14,.72);
    background:rgba(17,17,15,.78);
    color:#fff;
    flex:0 0 auto;
    position:relative;
    z-index:82;
  }

  .mobile-menu-toggle span{
    width:20px;
    height:1.5px;
    background:currentColor;
    position:relative;
    display:block;
    transition:background .2s ease;
  }

  .mobile-menu-toggle span::before,
  .mobile-menu-toggle span::after{
    content:"";
    position:absolute;
    left:0;
    width:20px;
    height:1.5px;
    background:currentColor;
    transition:transform .22s ease, top .22s ease;
  }

  .mobile-menu-toggle span::before{top:-7px}
  .mobile-menu-toggle span::after{top:7px}

  body.mobile-menu-open .mobile-menu-toggle span{background:transparent}
  body.mobile-menu-open .mobile-menu-toggle span::before{top:0;transform:rotate(45deg)}
  body.mobile-menu-open .mobile-menu-toggle span::after{top:0;transform:rotate(-45deg)}

  .mobile-menu-panel{
    display:block;
    position:fixed;
    top:74px;
    left:0;
    right:0;
    max-height:calc(100dvh - 74px);
    overflow:auto;
    padding:18px var(--agency-gutter,24px) 28px;
    background:rgba(17,17,15,.98);
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(233,81,14,.46);
    box-shadow:0 24px 80px rgba(0,0,0,.46);
    transform:translateY(-12px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index:79;
  }

  body.mobile-menu-open .mobile-menu-panel{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .mobile-menu-panel a{
    display:flex;
    align-items:center;
    min-height:54px;
    padding:0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.82);
    font-size:12px;
    font-weight:700;
    letter-spacing:.22em;
    text-transform:uppercase;
    text-decoration:none;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a:focus-visible{
    color:#fff;
  }

  .mobile-menu-panel .mobile-menu-cta{
    justify-content:center;
    min-height:54px;
    margin-top:18px;
    border:1px solid #e9510e;
    color:#fff;
  }
}
