@media (max-width: 859px) {
  .topbar {
    justify-content: flex-end;
    min-height: 86px;
  }

  .topbar .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c6b58f;
    background: #f4ead3;
    color: #3a3228;
    border-radius: 999px;
    padding: 8px 12px;
    font: inherit;
    font-size: 0.92rem;
    cursor: pointer;
  }

  .mobile-menu-toggle__icon {
    width: 19px;
    height: 16px;
    border: 1px solid #a5946d;
    border-radius: 4px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 2px 3px;
    background: #f7f0df;
  }

  .mobile-menu-toggle__icon span {
    display: block;
    height: 1px;
    background: #716341;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 12, 8, 0.5);
    z-index: 150;
  }

  .mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 330px);
    background: #f8f2e4;
    border-left: 1px solid #d7c7a1;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 160;
    transform: translateX(100%);
    transition: transform 220ms ease;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

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

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .mobile-menu-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    line-height: 1;
  }

  .mobile-menu-close {
    border: 1px solid #ccb991;
    background: #f5ead3;
    color: #3d3429;
    border-radius: 999px;
    padding: 6px 10px;
    font: inherit;
    cursor: pointer;
  }

  .mobile-menu-nav {
    display: grid;
    gap: 8px;
  }

  .mobile-menu-nav a {
    text-decoration: none;
    color: #3a3228;
    border: 1px solid #d3c3a0;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fbf6eb;
  }

  .mobile-menu-nav a[aria-current="page"] {
    background: #ece2ca;
    border-color: #bba97f;
    font-weight: 600;
  }

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

@media (min-width: 860px) {
  .mobile-menu-toggle,
  .mobile-menu-overlay,
  .mobile-menu-drawer {
    display: none !important;
  }
}
