/* ──────────────────────────────────────────────
   FIELDWORK · SHARED HEADER STYLES
   Include via <link rel="stylesheet" href="header.css">
   on every page that uses the shared header.
   ────────────────────────────────────────────── */

/* Mobile nav (hidden on desktop, shown on mobile) */
.resp-nav-mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger-btn {
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1A1714;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 80px 24px 32px;
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a,
.mobile-menu button {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #F8F5F0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(248, 245, 240, 0.08);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #F8F5F0;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* Switch nav at 768px breakpoint */
@media (max-width: 768px) {
  .resp-nav-desktop { display: none !important; }
  .resp-nav-mobile { display: flex !important; }

  /* Tighten header padding on mobile */
  header {
    padding-left: 18px !important;
    padding-right: 18px !important;
    height: 56px !important;
  }
}
