/* ============================================================
   JDH ANALYTICS — MOBILE MENU STYLES
   ============================================================ */

/* Mobile toggle button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,248,250,0.98);
  backdrop-filter: blur(20px);
  z-index: 890;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 24px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-nav-list {
  list-style: none;
  text-align: center;
}
.mobile-nav-list li {
  margin-bottom: 20px;
}
.mobile-nav-list a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav-list a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }
}
