/* Last in chain on standalone service pages — restores index nav over standalone */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid var(--gold);
  box-shadow: none;
  transition: box-shadow 0.35s ease;
}

nav.nav-scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  height: 115px;
  width: auto;
  display: block;
  margin: -33px 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  opacity: 1 !important;
  font-weight: 500 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

@media (max-width: 900px) {
  nav {
    padding: 1.2rem 2rem;
  }

  .nav-logo img {
    height: 90px;
    margin: -18px 0;
  }
}
