.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 60;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 70;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 480ms cubic-bezier(.22,1,.36,1), opacity 240ms ease;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer-panel {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #292524;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17,17,17,.98), rgba(10,10,10,.98));
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

.nav-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(68,64,60,.7);
}

.drawer-handle {
  width: 110px;
  height: 5px;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(251,191,36,.15), rgba(251,191,36,.6), rgba(251,191,36,.15));
  box-shadow: 0 0 12px rgba(251,191,36,.18);
  margin: 0 auto;
}

.drawer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 2rem;
  padding: 1.5rem;
  align-items: start;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.drawer-link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(68,64,60,.45);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.drawer-link:hover {
  transform: translateX(8px);
  border-color: rgba(251,191,36,.55);
  fill:#000;
}

.drawer-link-label {
  display: inline-block;
  position: relative;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 1rem;
  color: #fbbf24;
}

.drawer-link-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 68px;
  height: 7px;
  background: radial-gradient(ellipse at center, rgba(251,191,36,.7), transparent 72%);
  filter: blur(4px);
}

.drawer-link-sub {
  display: block;
  margin-top: .75rem;
  color: #a8a29e;
  font-size: .95rem;
  line-height: 1.5;
}

.drawer-feature {
  border: 1px solid rgba(68,64,60,.65);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(28,25,23,.55);
}

.drawer-feature-image {
  height: 220px;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.5)),
    url('/images/chopsticks-meat.jpeg');
  background-size: cover;
  background-position: center;
}

.drawer-feature-body {
  padding: 1.25rem;
}

.drawer-close {
  border: 1px solid rgba(251,191,36,.55);
  color: #fcd34d;
  background: transparent;
  border-radius: .75rem;
  padding: .65rem .9rem;
  transition: all 180ms ease;
}

.drawer-close:hover {
  background: #fbbf24;
  color: #000;
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .nav-drawer-panel {
    margin: 0 .75rem;
  }

  .drawer-grid {
    grid-template-columns: 1fr;
  }

  .drawer-feature-image {
    height: 180px;
  }
}