nav .nav-left, nav .nav-right { flex: 1; display: flex; align-items: center; gap: 28px; }
nav .nav-right { justify-content: flex-end; }
nav .nav-center { flex: 0 0 auto; }
nav a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.15s ease;
}
nav a:hover { color: var(--wood); }
nav .logo {
  font-family: 'FreightBig', Georgia, serif;
  font-size: 22px;
  letter-spacing: 0.18em;
}

/* ============================== HAMBURGER TOGGLE (mobile only) ============================== */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  margin: -6px;
  cursor: pointer;
  color: var(--mahogany);
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger svg { display: block; width: 22px; height: 22px; }

/* ============================== OFF-CANVAS MOBILE MENU ============================== */
.nav-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(50, 16, 18, 0.35);
  z-index: 9980; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-menu-overlay.open { opacity: 1; pointer-events: all; }
.nav-menu-panel {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(320px, 84vw);
  background: var(--cream-light);
  z-index: 9981;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 4px 0 24px rgba(50, 16, 18, 0.15);
}
.nav-menu-panel.open { transform: translateX(0); }
.nav-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(50, 16, 18, 0.1);
}
.nav-menu-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mahogany);
}
.nav-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--mahogany);
  padding: 4px 6px;
  margin: -4px -6px;
}
.nav-menu-links {
  display: flex;
  flex-direction: column;
  padding: 12px 8px;
  overflow-y: auto;
}
.nav-menu-links a {
  padding: 16px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mahogany);
  text-decoration: none;
  border-bottom: 1px solid rgba(50, 16, 18, 0.06);
}
.nav-menu-links a:hover, .nav-menu-links a:active { color: var(--wood-dark); }

@media (max-width: 900px) {
  nav.site-nav .nav-left a,
  nav.site-nav .nav-right a:not([data-cart-open]) { display: none; }
  .nav-hamburger { display: inline-flex; align-items: center; justify-content: center; }
}

@media (min-width: 901px) {
  .nav-menu-overlay, .nav-menu-panel { display: none; }
}
