/* ===== Shared: Header & Nav ===== */
.bh-header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.bh-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bh-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  line-height: 1;
}
.bh-logo-icon { font-size: 26px; line-height: 1; }
.bh-logo-sub { color: #888; font-weight: 400; font-size: 15px; }
.bh-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.bh-nav-link {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.bh-nav-link:hover { color: #07c160; }
.bh-nav-link.active { color: #07c160; font-weight: 600; }
.bh-cta {
  font-size: 14px;
  color: #07c160;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 16px;
  border: 1.5px solid #07c160;
  border-radius: 20px;
  transition: background .15s, color .15s;
}
.bh-cta:hover { background: #07c160; color: white; }

/* ===== Shared: Footer ===== */
.bh-footer {
  padding: 24px;
  text-align: center;
  color: #888;
  font-size: 13px;
  border-top: 1px solid #eee;
}
