/* ─── NAVBAR — nav height variable ─────────────────────────────── */
:root {
  --nav-height: 90px;
}

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: var(--z-nav);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: height 0.4s var(--ease-luxury), background 0.4s var(--ease-luxury);
}

.site-nav.scrolled {
  height: 80px;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

/* ─── LEFT: Nani Rosen text only ─────────────────────────────────── */
.nav-left {
  display: flex;
  align-items: center;
}

.nav-founder {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white-80);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-luxury);
  white-space: nowrap;
}
.nav-founder:hover { color: var(--gold); }

/* ─── CENTER: Logo PNG ───────────────────────────────────────────── */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}
.nav-logo-img:hover { opacity: 0.82; }

/* ─── RIGHT: Nav links spread full width ────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 36px);
}

.nav-right a:not(.btn-contact) {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white-80);
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-luxury);
}

/* VRE link — "THE" sits above, rest wraps below */
.nav-vre-link {
  white-space: normal !important;
  text-align: center;
  line-height: 1.25;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 2px;
}
.nav-vre-the {
  display: block !important;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  opacity: 0.65;
  white-space: nowrap;
}
.nav-vre-rest {
  display: block !important;
  white-space: nowrap;
}
.nav-right a:not(.btn-contact):hover { color: var(--gold); }

/* ─── CONTACT US button — white bg, dark text ───────────────────── */
.btn-contact {
  display: inline-block;
  padding: 10px 22px;
  background: #ffffff;
  color: #0a0a0a !important;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #ffffff;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-contact:hover {
  background: transparent !important;
  color: #ffffff !important;
}

/* ─── SERVICES DROPDOWN ─────────────────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-wrap > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown-wrap > a::after {
  content: '▾';
  font-size: 0.6rem;
  opacity: 0.65;
  transition: transform 0.2s ease;
}
.nav-dropdown-wrap:hover > a::after {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(201,168,76,0.22);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  display: block;
}
.nav-dropdown a {
  display: block;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78) !important;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(201,168,76,0.06);
}

/* ─── HAMBURGER — desktop hidden ────────────────────────────────── */
.nav-hamburger { display: none; }

/* ─── MOBILE DRAWER ─────────────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 85vw; max-width: 360px;
  height: 100vh;
  background: var(--black-soft);
  border-left: 1px solid rgba(201,168,76,0.2);
  z-index: 350;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 90px 40px 40px;
  transition: right 0.45s var(--ease-snap);
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }

.nav-drawer a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white-80);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 16px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer a.drawer-active { color: var(--gold); }

.nav-drawer-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--gold); font-size: 1.4rem; cursor: pointer;
}

/* Drawer logo */
.nav-drawer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.nav-drawer-logo img {
  height: 52px;
  width: auto;
}

/* Drawer services sub-items */
.drawer-sub {
  font-size: 0.85rem !important;
  letter-spacing: 0.1em !important;
  padding-left: 16px !important;
  color: rgba(255,255,255,0.55) !important;
  border-bottom: none !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.drawer-sub:hover { color: var(--gold) !important; }

/* Contact in drawer */
.drawer-contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #ffffff;
  color: #0a0a0a !important;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: none !important;
}

/* ─── MOBILE RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: 1fr auto 44px;
    padding: 0 20px;
    height: 72px;
  }
  .site-nav.scrolled { height: 64px; }

  .nav-right { display: none; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: var(--z-nav);
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-logo-img { height: 44px; }
}
