nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 var(--pad-x);
  background: rgba(6, 6, 6, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

nav.solid {
  /* Nav altijd zwart — scroll-styling niet meer nodig */
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.05;
  min-width: 0;
  flex: 1 1 auto;
  max-width: calc(100% - 56px);
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.48rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.logo-name .logo-num {
  display: inline-block;
  font-size: 1.65em;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold2);
  line-height: 0.85;
  vertical-align: baseline;
  margin: 0 0.02em;
  text-shadow: 0 0 28px rgba(212, 175, 106, 0.22);
}

.logo-name .logo-taxi {
  color: var(--gold2);
  font-weight: 400;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.93rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-top: 2px;
  opacity: 0.95;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-lang-btn {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 7px 11px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-lang-btn:hover {
  color: var(--gold2);
  border-color: rgba(184, 150, 62, 0.45);
}

.nav-lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 150, 62, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .2s, background .2s;
}

.nav-links a:hover {
  color: var(--gold2);
}

.book-btn {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 24px;
}

.book-btn:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: rgba(6, 6, 6, 0.97);
  border: 1px solid var(--border);
  padding: 8px 0;
  min-width: 260px;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--silver);
  transition: color 0.15s, background 0.15s;
}

.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(184, 150, 62, 0.05);
}

.dropdown-menu li + li {
  border-top: 1px solid var(--border);
}

.hbg {
  display: none;
  width: 38px;
  height: 38px;
  position: relative;
}

.hbg span {
  position: absolute;
  left: 7px;
  right: 7px;
  height: 1px;
  background: var(--text);
  transition: var(--trans);
}

.hbg span:nth-child(1) { top: 11px; }
.hbg span:nth-child(2) { top: 18px; }
.hbg span:nth-child(3) { top: 25px; }

.hbg.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 499;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: max(96px, calc(var(--nav-h) + env(safe-area-inset-top))) 20px max(24px, env(safe-area-inset-bottom));
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#mob-menu.open {
  opacity: 1;
  pointer-events: auto;
}

#mob-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text);
}

#mob-menu a.book {
  color: var(--gold);
}
