/* Fixed header */
.cl-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999999; /* above map */
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 16px 48px;
}

.cl-header__inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cl-header__logo img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* Nav */
.cl-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
}

.cl-nav a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}
.cl-nav a:hover { color: #60a5fa; }

.cl-nav__btn {
  margin-left: 16px;
  background: #2563eb;
  color: #fff !important;
  font-size: 12px;
  padding: 10px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(37,99,235,.25);
}
.cl-nav__btn:hover { background: #3b82f6; }

/* Spacing so fixed header doesn't cover content */
body { padding-top: 110px; }

/* Responsive hides (to match your Tailwind hidden md/lg behavior) */
@media (max-width: 767px) {
  .cl-nav a[data-hide="md"] { display: none; }
}
@media (max-width: 1023px) {
  .cl-nav a[data-hide="lg"] { display: none; }
}
