/* ── SITE NAV ── */
.site-nav {
  position: fixed;
  touch-action: manipulation;
  top: 0; left: 0; right: 0;
  padding: 20px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(26,46,36,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: rgba(255,255,255,0.85); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: none; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 12px;
  right: 0;
  background: rgba(20,30,24,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 190px;
  list-style: none;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.05); }
.nav-dropdown-menu li.divider { border-top: 1px solid rgba(255,255,255,0.07); margin: 6px 0; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1002;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── MOBILE ── */
@media (max-width: 700px) {
  .site-nav {
    padding: 16px 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #141E18;
    justify-content: flex-start;
    align-items: center;
    z-index: 1001;
    overflow-y: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .nav-links.open {
    display: flex;
    height: 100%;
    height: 100dvh;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { font-size: 1rem; padding: 14px 0; display: block; color: rgba(255,255,255,0.7); }

  .nav-dropdown > a::after { content: none; }

  .nav-dropdown-menu {
    display: block !important;
    position: static;
    background: none;
    border: none;
    backdrop-filter: none;
    padding: 0;
    min-width: unset;
  }

  .nav-dropdown-menu li a { font-size: 0.82rem; color: rgba(255,255,255,0.45); padding: 8px 0; }
  .nav-dropdown-menu li.divider { display: none; }
}
