/* === MOBILE NAVIGATION === */
@media (max-width: 768px) {
  header nav a:not(.mobile-menu-toggle) { display: none !important; }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #000;
    cursor: pointer;
    position: relative;
    padding: 0;
    z-index: 200;
  }

  .hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
  }
  .hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .mobile-menu-toggle.active .hamburger-icon span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .mobile-nav-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
    z-index: 150;
    padding: 1rem 0;
    margin-top: 0;
  }
  .mobile-nav-menu.active { display: block !important; }

  header .max-w-7xl { height: 80px !important; }

  .mobile-nav-menu a {
    display: block !important;
    padding: 1rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .mobile-nav-menu a:last-child { border-bottom: none; }
  .mobile-nav-menu a:hover,
  .mobile-nav-menu a[aria-current="page"] {
    background: rgba(0,0,0,0.05);
  }
}

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