nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}

.nav-logo-text {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 12.5px;
  padding: 8px 11px;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-links a.active {
  background: rgba(201, 168, 76, 0.18);
  color: var(--gold-light);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

main { padding-top: 70px; min-height: calc(100vh - 70px); }

@media (max-width: 600px) {
  .nav-links a { padding: 6px 7px; font-size: 11px; }
}
