/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(7,7,10,0.98), rgba(7,7,10,0));
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-dropdown-toggle:hover { color: var(--accent); }
.nav-dropdown-toggle::after {
  content: ' \25BE';
  font-size: 7px;
  opacity: 0.5;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  background: transparent;
  min-width: 200px;
  display: none;
  flex-direction: column;
}
.nav-dropdown-menu::before {
  content: '';
  display: block;
  background: rgba(11,11,15,0.96);
  border: 1px solid var(--border);
  padding: 12px 0;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.is-open {
  display: flex;
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  padding: 8px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
}
.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(201,168,76,0.04);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text-dim);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 50%; }
.nav-hamburger span:nth-child(3) { bottom: 0; }

.nav-hamburger.is-active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { bottom: 50%; transform: rotate(-45deg); }

/* Mobile */
@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .nav-hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7,7,10,0.98);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right 0.3s ease;
  }
  .nav-links.is-open { right: 0; }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 8px;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown-menu.is-open { display: flex; }
}
