/* ── SUBNAV ── */
.subnav {
  background: var(--chalk);
  border-top: 1px solid #e7e0d8;
  border-bottom: 1px solid #e7e0d8;
}
.subnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav-inner a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #78716c;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.subnav-inner a:hover,
.subnav-inner a[aria-current="page"] {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ── MOBILE MENU BUTTON ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e7e0d8;
  padding: 1rem 1.5rem calc(2rem + env(safe-area-inset-bottom));
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open {
  display: flex;
  position: fixed;
  top: var(--nav-offset, 68px);
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 99;
}
.mobile-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ash);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #f5f0eb;
  transition: color 0.2s;
}
.mobile-drawer a:hover { color: var(--red); }
.drawer-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 1.5rem 0 0.25rem;
}
.drawer-label:first-child { margin-top: 0; }

@media (max-width: 1024px) {
  .nav-links { display: none !important; }
  .mobile-menu-btn { display: block; }
  .subnav { display: none; }
  .nav-inner { padding: 0 1rem; gap: 0.5rem; }
  .nav-cta {
    margin-left: 0;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .nav-logo {
    flex-shrink: 0;
    font-size: 1.3rem;
  }
  .btn-ghost,
  .btn-red {
    padding: 8px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 0.75rem; gap: 0.375rem; }
  .nav-logo { font-size: 1.15rem; }
  .btn-ghost { display: none; }        /* Login lives in the drawer */
  .btn-red { padding: 7px 12px; font-size: 0.75rem; }
}