
.header__inner--site {
  display:flex !important;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  min-height:88px;
}
.brand--site-left {
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex-shrink:0;
}
.brand--site-left .brand__logo {
  display:block;
  width:auto;
  height:48px;
  max-width:min(18vw,180px);
  object-fit:contain;
}
.nav--desktop-center {
  display:flex !important;
  justify-content:center;
  align-items:center;
  flex-wrap:nowrap;
  gap:clamp(1.2rem,1.8vw,2.2rem);
  flex-grow:1;
  margin:0 auto;
}
.nav--desktop-center .nav__link { 
  white-space:nowrap;
  font-size:.87rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:500;
  transition:color 0.3s ease;
}
.nav--desktop-center .nav__link:hover {
  color:#c6a46a;
}
.header__actions { 
  flex-shrink:0;
}

/* Hamburger Menu Button */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 50px;
  height: 50px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgba(244, 239, 230, 0.85);
  transition: all 0.3s ease;
}

.nav__toggle span:not(.nav__toggle-label) {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(198, 164, 106, 1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle-label {
  display: none;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Mobile nav styles */
.nav--mobile {
  display:none;
  position:fixed;
  top:80px;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:calc(100vh - 80px);
  background:rgba(7,7,7,.98);
  backdrop-filter:blur(8px);
  padding:40px 24px;
  flex-direction:column;
  gap:0;
  z-index:10000;
  overflow-y:auto;
  align-items:center;
  justify-content:flex-start;
}

.nav--mobile.is-open {
  display:flex;
  animation:fadeIn .3s ease;
}

@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

.nav--mobile .nav__link {
  font-size:1rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(244,239,230,.85);
  padding:14px 0;
  border-bottom:1px solid rgba(198,164,106,.1);
  transition:color .3s ease, padding-left .3s ease;
}

.nav--mobile .nav__link:hover {
  color:#c6a46a;
  padding-left:12px;
}

@media (max-width: 1060px) {
  .header__inner--site { min-height:72px; }
  .brand--site-left { min-width:auto; }
  .brand--site-left .brand__logo { height:38px; max-width:220px; }
  .nav--desktop-center { display:none !important; }
  .nav--mobile {
    top:72px;
  }
  
  /* Show hamburger menu button */
  .nav__toggle {
    display: flex;
  }
}
