/* ============================================================
   EUROPEAN CRIBS — UNIFIED NAV
   Single source of truth for navigation across all pages.
   ============================================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: rgba(247,243,236,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,151,90,0.22);
  box-sizing: border-box;
}

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

.logo-mark {
  width: 32px;
  height: 32px;
  background: #C8D84A;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 16px;
  color: #1A1713;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 500;
  color: #1A1713;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-links li a {
  display: block;
  padding: 0 18px;
  height: 70px;
  line-height: 70px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B6055;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s;
  box-sizing: border-box;
}

.nav-links li a:hover {
  color: #1A1713;
}

.nav-links li a.active {
  color: #1A1713;
  font-weight: 500;
  box-shadow: inset 0 -2px 0 #B8975A;
}

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
    height: 60px;
  }
  .nav-links {
    display: none;
  }
}
