.mobile-site-nav {
  display: none;
}

@media (max-width: 800px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .mobile-site-nav {
    align-items: stretch;
    background: #fffaf1;
    border-top: 1px solid #dfc9aa;
    bottom: 0;
    box-shadow: 0 -5px 20px rgba(65, 20, 15, .14);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: 0;
    padding: 5px 4px calc(5px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 10000;
  }

  .mobile-site-nav a {
    align-items: center;
    border-radius: 8px;
    color: #6f1b1b;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    gap: 2px;
    justify-content: center;
    letter-spacing: .02em;
    min-height: 52px;
    padding: 4px 2px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-site-nav a[aria-current="page"] {
    background: #7f1d1d;
    color: #fffaf1;
  }

  .mobile-site-nav .mobile-nav-icon {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
  }
}
