/* ===== Unified site header (static pages) ===== */
.bx-hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,243,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.bx-hdr-inner {
  max-width: 1320px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.bx-logo { display: inline-flex; flex-direction: column; align-items: center; text-decoration: none; flex-shrink: 0; }
.bx-logo-word {
  font-family: var(--font-display); font-weight: 800; font-size: 46px; letter-spacing: -0.03em;
  color: var(--black); transform: skewX(-9deg); line-height: 0.85;
}
.bx-logo-sub {
  font-family: var(--font-sans); font-weight: 700; font-size: 12px; letter-spacing: 0.4em;
  color: var(--black); margin-top: 5px; padding-left: 0.4em; white-space: nowrap;
}
.bx-hdr nav { display: flex; align-items: center; gap: 2px; }
.bx-nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-sans); font-weight: 800; font-size: 20px;
  color: var(--text-body); text-decoration: none;
  padding: 9px; border-radius: var(--radius-md); white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.bx-nav-link:hover { background: var(--oasis-50); color: var(--oasis-700); }

/* Services mega menu */
.bx-svc-wrap { position: relative; }
.bx-mega-pos { position: absolute; top: 100%; left: 0; padding-top: 8px; z-index: 70; display: none; }
.bx-svc-wrap:hover .bx-mega-pos, .bx-svc-wrap:focus-within .bx-mega-pos { display: block; }
.bx-mega {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px 28px;
  width: 640px; max-width: calc(100vw - 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.bx-mega-kicker {
  font-weight: 700; font-size: 13.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--oasis-600); margin-bottom: 12px;
}
.bx-mega-col { display: flex; flex-direction: column; gap: 2px; }
.bx-mega-item {
  font-weight: 700; font-size: 21px; color: var(--text-body); text-decoration: none;
  padding: 12px; border-radius: 12px; transition: background .15s ease, color .15s ease;
}
.bx-mega-item:hover { background: var(--oasis-50); color: var(--oasis-700); }
.bx-mega-medallion {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; background: #FDEDE6;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 14px; vertical-align: middle;
}
.bx-mega-medallion img { width: 44px; height: 44px; object-fit: contain; }
.bx-mega-addons { grid-column: 1/-1; border-top: 1px solid var(--border); padding-top: 20px; }
.bx-mega-addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 20px; }

/* CTA buttons */
.bx-hdr-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.bx-hdr-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 900; font-size: 17px; color: #fff; text-decoration: none; white-space: nowrap;
  padding: 13px 18px; border-radius: 999px;
  background: linear-gradient(110deg, var(--sun-500) 0%, var(--sun-500) 50%, var(--oasis-600) 50%);
  background-size: 225% 100%; background-position: 99% 0;
  transition: background-position .45s cubic-bezier(.22,.61,.36,1), transform .2s ease, box-shadow .2s ease;
}
.bx-hdr-phone:hover { background-position: 0% 0; transform: translateY(-2px); box-shadow: var(--shadow-brand); color: #fff; }
.bx-hdr-quote {
  display: inline-flex; align-items: center;
  font-weight: 900; font-size: 17px; color: var(--oasis-700); text-decoration: none; white-space: nowrap;
  padding: 13px 18px; border-radius: 999px; border: 2px solid var(--oasis-600);
  background: linear-gradient(110deg, var(--oasis-600) 0%, var(--oasis-600) 50%, transparent 50%);
  background-size: 225% 100%; background-position: 99% 0;
  transition: background-position .45s cubic-bezier(.22,.61,.36,1), color .3s ease, transform .2s ease;
}
.bx-hdr-quote:hover { background-position: 0% 0; color: #fff; transform: translateY(-2px); }

/* Compact mobile actions in the bar */
.bx-mobile-actions { display: none; align-items: center; gap: 10px; flex-shrink: 0; }
.bx-icon-btn-sun {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--sun-500); color: var(--slate-900); text-decoration: none; flex-shrink: 0;
}
.bx-icon-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 999px;
  border: 2px solid var(--oasis-600); background: transparent; color: var(--oasis-700);
  cursor: pointer; padding: 0; flex-shrink: 0;
}

/* Mobile drawer */
.bx-drawer-scrim {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(16,24,28,0.55); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.bx-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); z-index: 96;
  background: var(--color-bg); box-shadow: -8px 0 40px rgba(16,24,28,0.28);
  display: flex; flex-direction: column; overflow-y: auto;
  transform: translateX(100%); transition: transform .26s cubic-bezier(.22,.61,.36,1);
}
body[data-nav-open="1"] .bx-drawer-scrim { opacity: 1; pointer-events: auto; }
body[data-nav-open="1"] .bx-drawer { transform: translateX(0); }
.bx-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.bx-drawer-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.03em;
  color: var(--black); transform: skewX(-9deg); line-height: 0.85;
}
.bx-drawer-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--border); background: transparent; color: var(--text-strong);
  cursor: pointer; padding: 0;
}
.bx-drawer nav { display: flex; flex-direction: column; padding: 12px 12px 8px; }
.bx-drawer nav a {
  font-weight: 700; font-size: 19px; color: var(--text-body); text-decoration: none;
  padding: 15px 14px; border-radius: 12px;
}
.bx-drawer nav a:hover { background: var(--oasis-50); color: var(--oasis-700); }
.bx-drawer-foot {
  margin-top: auto; display: flex; flex-direction: column; gap: 10px;
  padding: 16px 20px 24px; border-top: 1px solid var(--border);
}
.bx-drawer-quote {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; font-size: 17px; color: #fff; text-decoration: none;
  padding: 16px; border-radius: 999px; background: var(--oasis-600);
}
.bx-drawer-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; font-size: 17px; color: var(--slate-900); text-decoration: none;
  padding: 16px; border-radius: 999px; background: var(--sun-500);
}

/* Mobile sticky action bar */
.bx-mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: 10px 14px; gap: 10px; background: #fff; border-top: 1px solid var(--border);
}
.bx-mobile-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 16px; color: #fff; text-decoration: none;
  padding: 15px; border-radius: 999px;
}
.bx-mobile-bar .bx-mb-quote { background: var(--oasis-600); }
.bx-mobile-bar .bx-mb-call { background: var(--sun-500); }

/* Logo must never react to hover — matches the live header */
.bx-logo, .bx-logo:hover, .bx-logo:focus { text-decoration: none; }
.bx-logo-word, .bx-logo-sub,
.bx-logo:hover .bx-logo-word, .bx-logo:hover .bx-logo-sub,
.bx-logo:focus .bx-logo-word, .bx-logo:focus .bx-logo-sub {
  color: var(--black); transition: none; transform: none;
}
.bx-logo-word, .bx-logo:hover .bx-logo-word { transform: skewX(-9deg); }
