html .site-head,
html .service-header,
html .hs-header,
html .booking-header {
  background: rgba(244, 246, 250, .9);
  background: color-mix(in srgb, var(--grey, #f4f6fa) 90%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
}

.global-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-auth-action {
  box-sizing: border-box;
  display: inline-flex;
  min-width: 72px;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--teal, #005c65);
  font-family: var(--sans, 'Oldschool Grotesk', Tahoma, sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-auth-action:hover {
  background: transparent;
  color: var(--teal, #005c65);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 999px) {
  .site-head .site-menu-button,
  .service-header .service-menu-button,
  .hs-header .hs-menu-button {
    width: 32px;
    flex-basis: 32px;
  }

  .site-head .site-menu-button .header-menu-icon,
  .service-header .service-menu-button .header-menu-icon,
  .hs-header .hs-menu-button .header-menu-icon {
    transform: none;
  }
}

@media (min-width: 1000px) {
  .site-head .global-header-actions,
  .service-header .global-header-actions,
  .hs-header .global-header-actions {
    justify-self: end;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .global-header-actions > .header-auth-action,
  .booking-header .header-auth-action {
    display: none;
  }
}

@media (min-width: 1000px) and (max-width: 1199px) {
  .global-header-actions { gap: 5px; }
  .global-header-actions > .global-search-toggle {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .header-auth-action {
    min-width: 68px;
    padding-inline: 6px;
  }
  .site-head .global-header-actions > .site-head-cta,
  .service-header .global-header-actions > .service-header-cta--top,
  .hs-header .global-header-actions > .hs-header-cta--top {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0;
  }
  .site-head .global-header-actions > .site-head-cta::after,
  .service-header .global-header-actions > .service-header-cta--top::after,
  .hs-header .global-header-actions > .hs-header-cta--top::after {
    content: 'Free consult';
    font-size: 14px;
  }
}
