/* ─── MOBILE NAV SHARED ─── */

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: #2C1A08;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
}

/* Overlay */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -300px; bottom: 0;
  width: 280px;
  background: #EDE0C8;
  z-index: 200;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }
.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  border-bottom: 2px solid #C4A878;
  height: 72px;
  flex-shrink: 0;
}
.nav-drawer-logo {
  font-family: 'Rye', cursive;
  font-size: 0.82rem; color: #2C1A08;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.35;
}
.nav-drawer-close {
  background: none;
  border: 1px solid rgba(100,55,10,0.25);
  border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer;
  font-size: 1rem; color: #2C1A08;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-drawer-close:hover { background: rgba(100,55,10,0.1); }
.nav-drawer-links {
  display: flex; flex-direction: column;
  padding: 8px 0;
  flex: 1;
}
.nav-drawer-links a {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #2C1A08; padding: 15px 24px;
  border-bottom: 1px solid rgba(100,55,10,0.1);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-drawer-links a:hover { background: rgba(232,144,26,0.08); color: #B04A20; }
.nav-drawer-cta {
  margin: 20px 20px 0 !important;
  background: #B84A28 !important;
  color: #fff !important;
  text-align: center !important;
  padding: 15px 20px !important;
  border-radius: 8px !important;
  border: none !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
}
.nav-drawer-cta:hover { background: #983820 !important; }
