/* Hide Astra header/footer (we render our own) */
header.site-header,
.ast-primary-header-bar,
.ast-desktop-header,
.ast-mobile-header,
.site-footer,
footer.site-footer,
.ast-footer-wrap,
.ast-footer-overlay,
.ast-footer-copyright {
  display: none !important;
}

/* Fixed header layout */
.wbd-header-spacer { height: 78px; }
.wbd-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wbd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wbd-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.wbd-logo {
  height: 46px;
  width: auto;
  display: block;
}

.wbd-brand-text {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.wbd-nav .wbd-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wbd-nav .wbd-menu a {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  text-decoration: none;
  font-weight: 600;
  color: #1b5e20; /* green */
  padding: 10px 8px;
  border-radius: 8px;
}

.wbd-nav .wbd-menu a:hover,
.wbd-nav .wbd-menu a:focus {
  background: rgba(27,94,32,0.08);
}

/* Footer */
.wbd-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  padding: 18px 0;
}

.wbd-menu-footer a { padding: 6px 8px; }

@media (max-width: 720px) {
  .wbd-header-spacer { height: 96px; }
  .wbd-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .wbd-brand-text { white-space: normal; line-height: 1.15; }
  .wbd-nav .wbd-menu { justify-content: flex-start; flex-wrap: wrap; }
}
