.lc-mobile-menu { display: none; }

@media (max-width: 800px) {
  .lc-header {
    grid-template-columns: 1fr auto auto;
    gap: 9px;
    padding: 10px 16px;
  }

  .lc-header .lc-mobile-menu {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--lc-border);
    border-radius: 13px;
    background: #191919;
    color: #f5f5f5;
    cursor: pointer;
  }

  .lc-header .lc-mobile-menu span,
  .lc-header .lc-mobile-menu::before,
  .lc-header .lc-mobile-menu::after {
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transition: transform .2s, opacity .2s;
  }

  .lc-header .lc-mobile-menu {
    align-content: center;
    gap: 4px;
  }

  .lc-header .lc-mobile-menu.is-open span { opacity: 0; }
  .lc-header .lc-mobile-menu.is-open::before { transform: translateY(6px) rotate(45deg); }
  .lc-header .lc-mobile-menu.is-open::after { transform: translateY(-6px) rotate(-45deg); }

  .lc-header nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin: 0;
    padding: 6px 0 2px;
    overflow: visible;
    border-top: 1px solid var(--lc-border);
  }

  .lc-header nav.is-open { display: flex; }
  .lc-header nav a { flex: 1 0 auto; padding: 8px 3px; font-size: 12px; text-align: center; }
  .lc-tools label { display: none; }
  .lc-profile-buttons .lc-profile-edit { flex: 1 0 100%; }
  .lc-profile-buttons .lc-profile-home,
  .lc-profile-buttons .lc-profile-signout { flex: 1; }

  .lc-site-footer__inner {
    width: min(100% - 32px, 1400px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0;
  }
  .lc-site-footer__nav { justify-content: flex-start; }
  .lc-site-footer__bottom { width: min(100% - 32px, 1400px); padding: 15px 0; }
}

@media (max-width: 430px) {
  .lc-brand { gap: 8px; font-size: 17px; }
  .lc-brand span { width: 36px; height: 36px; border-radius:13px; }
  .lc-brand img { width: 30px; height: 30px; }
  .lc-header nav { overflow-x: auto; scrollbar-width: none; }
  .lc-header nav::-webkit-scrollbar { display: none; }
  .lc-header nav a { flex: 0 0 auto; padding: 9px 8px; }
  .lc-site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 4px; }
}
