.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid oklch(91.2% .004 286);
  background: oklch(100% 0 0 / 0.95);
  backdrop-filter: blur(6px);
}
.site-header__phonebar {
  display: none;
  background: oklch(38.6% .107 313.2);
  padding: 6px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: oklch(99% 0 0);
}
.site-header__phonebar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.site-header__phonebar a:hover { text-decoration: underline; }
@media (min-width: 768px) {
  .site-header__phonebar { display: block; }
}
.site-header__main {
  margin: 0 auto;
  display: flex;
  height: 80px;
  max-width: 1152px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
}
.site-header__logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .site-header__nav { display: flex; }
}
.site-header__nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: oklch(25.3% .005 285.9 / 0.8);
  text-decoration: none;
  transition: color 0.15s;
}
.site-header__nav a:hover { color: oklch(47.5% .132 304.5); }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  background: oklch(47.5% .132 304.5);
  color: oklch(99% 0 0);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__signin:hover { opacity: 0.9; }
.site-header__menu-toggle {
  display: inline-flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid oklch(91.2% .004 286);
  background: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .site-header__menu-toggle { display: none; }
}
.site-header{position:sticky;top:0;z-index:40;width:100%;border-bottom:1px solid #e5e2ea;background:rgba(255,255,255,.95);backdrop-filter:blur(6px)}
.site-header__phonebar{display:none;background:#3d2a52;padding:6px 0;text-align:center;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.18em;color:#fdfdfd}
.site-header__phonebar a{display:inline-flex;align-items:center;gap:8px;color:inherit;text-decoration:none}
.site-header__phonebar a:hover{text-decoration:underline}
@media (min-width:768px){.site-header__phonebar{display:block}}
.site-header__main{margin:0 auto;display:flex;height:80px;max-width:1152px;align-items:center;justify-content:space-between;gap:16px;padding:0 16px;box-sizing:border-box}
.site-header__logo{display:flex;align-items:center}
.site-header__logo img{height:48px;width:auto;max-width:220px;object-fit:contain}
.site-header__nav{display:none;align-items:center;gap:24px}
@media (min-width:1024px){.site-header__nav{display:flex}}
.site-header__nav a{font-size:14px;font-weight:600;text-transform:uppercase;letter-spacing:.02em;color:rgba(35,34,37,.8);text-decoration:none;transition:color .15s}
.site-header__nav a:hover{color:#5c3d78}
.site-header__actions{display:flex;align-items:center;gap:8px}
.site-header__signin{display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 12px;border-radius:6px;background:#5c3d78;color:#fdfdfd;font-size:12px;font-weight:500;text-decoration:none;white-space:nowrap}
.site-header__signin:hover{opacity:.9}
.site-header__menu-toggle{display:inline-flex;height:36px;width:36px;align-items:center;justify-content:center;border-radius:6px;border:1px solid #e5e2ea;background:none;cursor:pointer}
@media (min-width:1024px){.site-header__menu-toggle{display:none}}

/* mobile nav dropdown, added for the toggle button since Sitejet's global
   code didn't ship this piece for use outside the Sitejet editor */
@media (max-width: 1023px) {
  .site-header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e2ea;
    padding: 16px;
    gap: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }
}
.site-header__menu-toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}
