/* ── Navigation ── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(0, 46, 24, .97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 5%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}
.nav-logo svg { width: 30px; height: 37px; flex-shrink: 0; }
.logo-name {
  font-family: 'Merriweather', serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.logo-sub {
  font-size: 8px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  font-weight: 600;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.current-menu-item { color: var(--gold); }

.nav-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.15);
  margin: 0 6px;
}

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 9px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--gold-h); }

/* Mobile nav — hide links, keep logo + CTA */
@media (max-width: 960px) {
  .nav-links,
  .nav-divider { display: none; }
  .nav-cta    { margin-left: auto; }
}
