:root {
  --asg-header-gold: #c5ad61;
  --asg-header-bg: rgba(24, 24, 23, .86);
  --asg-header-surface: #20201f;
  --asg-header-text: #f5f3ed;
  --asg-header-muted: rgba(245, 243, 237, .67);
  --asg-header-line: rgba(255, 255, 255, .16);
}

#t-header,
body > header.site-header,
body > header.price-header,
body > .price-header {
  display: none !important;
}

.asg-global-header,
.asg-global-header *,
.asg-global-drawer,
.asg-global-drawer * {
  box-sizing: border-box;
}

.asg-global-header {
  position: fixed;
  z-index: 2147482000;
  top: 10px;
  left: 0;
  width: 100%;
  pointer-events: none;
  color: var(--asg-header-text);
  font-family: "Inter Tight", Arial, sans-serif;
}

.asg-global-header__inner {
  width: calc(100% - 64px);
  min-height: 64px;
  margin-inline: auto;
  padding: 7px 9px 7px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--asg-header-line);
  border-radius: 999px;
  background: var(--asg-header-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .18);
  pointer-events: auto;
}

.asg-global-header__logo {
  flex: 0 0 auto;
  display: block;
  width: 142px;
  line-height: 0;
}

.asg-global-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.asg-global-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 5px;
}

.asg-global-header__link,
.asg-global-header__nav-button {
  min-height: 40px;
  padding: 10px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--asg-header-muted) !important;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: color .16s ease, background-color .16s ease;
}

.asg-global-header__link:hover,
.asg-global-header__nav-button:hover,
.asg-global-header__link[aria-current="page"],
.asg-global-header__nav-button[aria-current="page"],
.asg-global-header__objects.is-current > .asg-global-header__nav-button {
  color: var(--asg-header-gold) !important;
  background: rgba(197, 173, 97, .09);
}

.asg-global-header__nav-button svg {
  width: 13px;
  height: 13px;
  transition: transform .16s ease;
}

.asg-global-header__nav-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.asg-global-header__objects {
  position: relative;
}

.asg-global-header__object-menu[hidden] {
  display: none !important;
}

.asg-global-header__object-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 330px;
  padding: 9px;
  border: 1px solid rgba(197, 173, 97, .27);
  border-radius: 18px;
  background: rgba(27, 27, 26, .97);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .42);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.asg-global-header__object-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 11px;
  color: var(--asg-header-text) !important;
  font-size: 13px;
  line-height: 1.25;
  text-decoration: none !important;
}

.asg-global-header__object-menu a:hover,
.asg-global-header__object-menu a[aria-current="page"] {
  background: rgba(197, 173, 97, .1);
  color: var(--asg-header-gold) !important;
}

.asg-global-header__phone {
  margin-left: auto;
  color: #fff !important;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
}

.asg-global-header__cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2f1ed;
  color: #222 !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color .16s ease, color .16s ease;
}

.asg-global-header__cta:hover {
  background: var(--asg-header-gold);
}

.asg-global-header__mobile-call,
.asg-global-header__menu-button {
  display: none;
}

.asg-global-header__menu-button {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--asg-header-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  cursor: pointer;
}

.asg-global-header__menu-button span,
.asg-global-header__menu-button::before,
.asg-global-header__menu-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1.5px;
  margin: 0;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease;
}

.asg-global-header__menu-button::before {
  transform: translate(-50%, -6px);
}

.asg-global-header__menu-button span {
  transform: translate(-50%, -50%);
}

.asg-global-header__menu-button::after {
  transform: translate(-50%, 4.5px);
}

.asg-global-header__menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.asg-global-header__menu-button[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.asg-global-header__menu-button[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.asg-global-drawer[hidden] {
  display: none !important;
}

.asg-global-drawer {
  position: fixed;
  z-index: 2147481500;
  inset: 0;
  overflow-y: auto;
  padding: 92px 20px 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(197, 173, 97, .14), transparent 31%),
    rgba(20, 20, 19, .98);
  color: var(--asg-header-text);
  font-family: "Inter Tight", Arial, sans-serif;
}

.asg-global-drawer__inner {
  width: min(100%, 680px);
  margin-inline: auto;
}

.asg-global-drawer__eyebrow {
  margin: 0 0 11px;
  color: var(--asg-header-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.asg-global-drawer__primary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 28px;
}

.asg-global-drawer__primary a {
  min-height: 52px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  border: 1px solid var(--asg-header-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
}

.asg-global-drawer__primary a[aria-current="page"] {
  border-color: rgba(197, 173, 97, .45);
  color: var(--asg-header-gold) !important;
}

.asg-global-drawer__objects {
  display: grid;
  gap: 7px;
  margin: 0 0 24px;
  padding: 8px;
  border: 1px solid var(--asg-header-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .025);
}

.asg-global-drawer__objects a {
  padding: 12px 13px;
  border-radius: 11px;
  color: var(--asg-header-muted) !important;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none !important;
}

.asg-global-drawer__objects a:hover,
.asg-global-drawer__objects a[aria-current="page"] {
  background: rgba(197, 173, 97, .09);
  color: var(--asg-header-gold) !important;
}

.asg-global-drawer__services {
  width: 100%;
  min-height: 54px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(197, 173, 97, .42);
  border-radius: 15px;
  background: rgba(197, 173, 97, .1);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.asg-global-drawer__services span:last-child {
  color: var(--asg-header-gold);
  font-size: 20px;
}

.asg-global-drawer__contacts {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--asg-header-line);
}

.asg-global-drawer__phone {
  display: inline-block;
  margin-bottom: 16px;
  color: #fff !important;
  font-size: 23px;
  font-weight: 650;
  text-decoration: none !important;
}

.asg-global-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.asg-global-drawer__actions a {
  min-height: 48px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--asg-header-line);
  border-radius: 999px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none !important;
}

.asg-global-drawer__actions a:first-child {
  border-color: transparent;
  background: var(--asg-header-gold);
  color: #1f1f1e !important;
}

.asg-global-drawer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 22px;
}

.asg-global-drawer__legal a {
  color: var(--asg-header-muted) !important;
  font-size: 11px;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.asg-global-header a:focus-visible,
.asg-global-header button:focus-visible,
.asg-global-drawer a:focus-visible,
.asg-global-drawer button:focus-visible {
  outline: 2px solid var(--asg-header-gold);
  outline-offset: 3px;
}

body.asg-global-nav-open {
  overflow: hidden !important;
}

body.asg-global-header-offset {
  padding-top: 92px;
}

@media (max-width: 1180px) {
  .asg-global-header__inner {
    width: min(calc(100% - 24px), 960px);
  }

  .asg-global-header__nav,
  .asg-global-header__phone,
  .asg-global-header__cta {
    display: none;
  }

  .asg-global-header__mobile-call,
  .asg-global-header__menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .asg-global-header__mobile-call {
    margin-left: auto;
    padding: 8px 7px;
    color: #fff !important;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none !important;
  }
}

@media (min-width: 1181px) {
  .asg-global-drawer {
    display: none !important;
  }
}

@media (max-width: 640px) {
  body.asg-global-header-offset {
    padding-top: 74px;
  }

  .asg-global-header {
    top: 8px;
  }

  .asg-global-header__inner {
    width: calc(100% - 20px);
    min-height: 50px;
    padding: 5px 5px 5px 14px;
    gap: 7px;
  }

  .asg-global-header__logo {
    width: 112px;
  }

  .asg-global-header__mobile-call {
    font-size: 11px;
  }

  .asg-global-header__menu-button {
    width: 40px;
    height: 40px;
  }

  .asg-global-drawer {
    padding: 78px 16px 24px;
  }

  .asg-global-drawer__primary {
    gap: 7px;
    margin-bottom: 24px;
  }

  .asg-global-drawer__primary a {
    min-height: 50px;
    padding: 11px 12px;
    font-size: 14px;
  }

  .asg-global-drawer__phone {
    font-size: 21px;
  }
}

@media (max-width: 350px) {
  .asg-global-header__logo {
    width: 102px;
  }

  .asg-global-header__mobile-call {
    padding-inline: 3px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .asg-global-header *,
  .asg-global-drawer * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
