/* ── HAMBURGER BUTTON (mobile only) ── */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: rgba(184,134,11,0.12);
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.btn-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; }
.btn-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0; right: 0;
  background: linear-gradient(180deg, #0d0a04 0%, #1e1508 100%);
  border-bottom: 2px solid var(--gold);
  z-index: 9998;
  padding: 8px 0 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  animation: slideDown 0.2s ease;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 10px;
  border-bottom: 1px solid rgba(200,169,110,0.2);
  margin-bottom: 6px;
}
.mobile-menu-logo {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}
.mobile-menu-logo span { color: #fff; font-weight: 400; }
.mobile-menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.mobile-menu-close:hover { color: #fff; }
body.light-mode .mobile-menu {
  background: linear-gradient(180deg, #1a1000 0%, #2e1e00 100%);
}
.mobile-menu.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu-item {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.mobile-menu-item:hover { background: rgba(184,134,11,0.18); color: var(--gold-light); }
.mobile-menu-divider {
  height: 1px;
  background: rgba(200,169,110,0.2);
  margin: 6px 24px;
}
