.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  min-height: 42px;
  padding: 0 14px;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #18099c;
  box-shadow: none;
  font: 500 11px/1 Suisse, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-menu-toggle:focus-visible,
.mobile-menu-close:focus-visible,
.mobile-menu-link:focus-visible {
  outline: 3px solid #7063d9;
  outline-offset: 3px;
}

.mobile-menu-icon {
  width: 16px;
  height: 11px;
  display: grid;
  align-content: space-between;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  width: 16px;
  height: 1px;
  display: block;
  background: currentColor;
}

.mobile-menu-layer[hidden] {
  display: none;
}

.mobile-menu-layer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  visibility: hidden;
  transition: visibility 0s linear .28s;
}

.mobile-menu-layer.is-open {
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(7, 8, 16, .54);
  opacity: 0;
  cursor: default;
  transition: opacity .28s ease;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 390px);
  height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 22px 24px 28px;
  color: #141416;
  background: #f7f4ed;
  box-shadow: -18px 0 54px rgba(7, 8, 16, .2);
  transform: translateX(104%);
  transition: transform .28s cubic-bezier(.22, .82, .36, 1);
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-layer.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-layer.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  min-height: 46px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(20, 20, 22, .2);
}

.mobile-menu-brand {
  color: #141416;
  font: 400 19px/.84 Suisse, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -.04em;
  text-decoration: none;
}

.mobile-menu-brand span {
  display: block;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  margin-top: -4px;
  padding: 0;
  border: 1px solid rgba(20, 20, 22, .28);
  border-radius: 50%;
  color: #141416;
  background: transparent;
  font: 300 25px/1 Arial, sans-serif;
  cursor: pointer;
}

.mobile-menu-eyebrow {
  margin: 28px 0 13px;
  color: #18099c;
  font: 500 9px/1 Suisse, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.mobile-menu-links {
  display: grid;
  border-top: 1px solid #141416;
}

.mobile-menu-link {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(20, 20, 22, .2);
  color: #141416;
  font: 400 24px/1 Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  text-decoration: none;
}

.mobile-menu-link::after {
  content: "↗";
  flex: 0 0 auto;
  color: #7063d9;
  font: 400 14px/1 Suisse, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.mobile-menu-link[aria-current="page"] {
  color: #18099c;
}

.mobile-menu-link.mobile-menu-collaborate {
  min-height: 50px;
  justify-content: center;
  margin-top: 22px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #18099c;
  font: 500 12px/1 Suisse, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mobile-menu-link.mobile-menu-collaborate::after {
  color: inherit;
}

.mobile-menu-foot {
  margin: auto 0 0;
  padding-top: 28px;
  color: #737172;
  font: 400 10px/1.45 Suisse, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  body.mobile-nav-ready .mobile-menu-toggle {
    display: inline-flex;
  }

  body.mobile-nav-ready .home-nav .home-links,
  body.mobile-nav-ready .site-nav .site-links,
  body.mobile-nav-ready .site-nav .nav-links,
  body.mobile-nav-ready > nav[aria-label="Primary navigation"] .home-link {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-layer,
  .mobile-menu-backdrop,
  .mobile-menu-panel {
    transition-duration: .01ms !important;
  }
}
