:root {
  --lhub-ink: #002D7B;
  --lhub-accent: #007BF8;
  --lhub-paper: #f1f7ff;
  --lhub-line: #c7dbff;
  --lhub-text-light: #edf4ff;
}

.lhub-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(241, 247, 255, 0.92);
  border-bottom: 1px solid rgba(0, 45, 123, 0.1);
}

.lhub-shell-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.lhub-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lhub-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lhub-ink);
  text-decoration: none;
}

.lhub-brand img {
  width: 112px;
  height: auto;
  display: block;
}

.lhub-brand-word {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lhub-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lhub-nav-links a {
  color: var(--lhub-ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.lhub-shell-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--lhub-ink);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 45, 123, 0.28);
}

.lhub-site-footer {
  background: var(--lhub-ink);
  color: var(--lhub-text-light);
  padding: 48px 0 30px;
}

.lhub-footer-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(237, 244, 255, 0.2);
}

.lhub-footer-eyebrow {
  margin: 0 0 8px;
  color: #b6d5ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lhub-footer-contact h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.12;
}

.lhub-footer-contact p:not(.lhub-footer-eyebrow) {
  max-width: 72ch;
  margin: 10px 0 0;
  color: #d7e7ff;
}

.lhub-footer-contact .lhub-shell-cta {
  background: var(--lhub-accent);
  box-shadow: 0 10px 25px rgba(0, 123, 248, 0.34);
}

.lhub-footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: #bcd6ff;
  font-size: 0.9rem;
}

.lhub-footer-meta a {
  color: #e4efff;
  text-decoration: none;
}

.map-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.map-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(0, 45, 123, 0.14);
  border-radius: 8px;
  color: var(--lhub-ink);
  background: #eef5ff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.map-tab:hover {
  background: #dcecff;
}

.map-tab.is-active {
  color: #ffffff;
  border-color: var(--lhub-accent);
  background: var(--lhub-accent);
}

@media (max-width: 930px) {
  .lhub-nav-links {
    display: none;
  }

  .lhub-footer-contact {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 600px) {
  .lhub-nav {
    min-height: 64px;
  }

  .lhub-brand img {
    width: 96px;
  }

  .lhub-brand-word {
    display: none;
  }
}