@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin-600-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

#primo-global-header-mvp {
  --pgh-navy: #000f1e;
  --pgh-navy-2: #0a2440;
  --pgh-copper: #ac5522;
  --pgh-copper-2: #c2672d;
  --pgh-white: #fff;
  --pgh-safe-inset-initial: 126px;
  --pgh-safe-inset-sticky: 90px;
  position: fixed;
  z-index: 99990;
  inset: 0 0 auto;
  width: 100%;
  height: 0;
  margin: 0;
  color: var(--pgh-white);
  font-family: "Manrope", "Plus Jakarta Sans", system-ui, sans-serif;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
}

#primo-global-header-mvp,
#primo-global-header-mvp * { box-sizing: border-box; }
#primo-global-header-mvp button { color: inherit; font: inherit; }
#primo-global-header-mvp a { color: inherit; text-decoration: none; }
#primo-global-header-mvp ul { margin: 0; padding: 0; list-style: none; }
#primo-global-header-mvp [hidden] { display: none !important; }

#primo-global-header-mvp button:focus-visible,
#primo-global-header-mvp a:focus-visible {
  outline: 3px solid #efaa7b;
  outline-offset: 3px;
}

#primo-global-header-mvp .pgh__skip {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 2px;
  background: var(--pgh-copper);
  color: var(--pgh-white);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 120ms ease;
  pointer-events: auto;
}
#primo-global-header-mvp .pgh__skip:focus { transform: translateY(0); }

#primo-global-header-mvp .pgh__shell {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 50%;
  width: min(calc(100% - 48px), 1360px);
  min-width: 0;
  height: 78px;
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  align-items: center;
  padding: 0 10px 0 20px;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(4, 24, 43, 0.79), rgba(0, 15, 30, 0.75));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  transform: translateX(-50%);
  transition: top 180ms ease, height 180ms ease, width 180ms ease, background 180ms ease, box-shadow 180ms ease;
  pointer-events: auto;
}

#primo-global-header-mvp.pgh--scrolled .pgh__shell {
  top: 10px;
  height: 68px;
  width: min(calc(100% - 32px), 1360px);
  background: linear-gradient(180deg, rgba(4, 24, 43, 0.96), rgba(0, 15, 30, 0.94));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

#primo-global-header-mvp .pgh__brand {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
#primo-global-header-mvp .pgh__brand img { display: block; width: 170px; height: auto; max-height: 58px; object-fit: contain; }

#primo-global-header-mvp .pgh__drawer {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
#primo-global-header-mvp .pgh__drawer-head,
#primo-global-header-mvp .pgh__menu-toggle { display: none; }

#primo-global-header-mvp .pgh__nav { min-width: 0; height: 100%; }
#primo-global-header-mvp .pgh__nav-list { min-width: 0; height: 100%; display: flex; align-items: center; justify-content: center; }
#primo-global-header-mvp .pgh__nav-item { position: relative; height: 100%; display: flex; align-items: center; }
#primo-global-header-mvp .pgh__nav-label,
#primo-global-header-mvp .pgh__nav-control {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 0;
  color: var(--pgh-white);
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
#primo-global-header-mvp .pgh__nav-control { cursor: pointer; }
#primo-global-header-mvp .pgh__nav-label { cursor: default; }
#primo-global-header-mvp a.pgh__nav-label { cursor: pointer; }
#primo-global-header-mvp .pgh__nav-label--static { color: rgba(255, 255, 255, 0.58); }
#primo-global-header-mvp .pgh__nav-label::after,
#primo-global-header-mvp .pgh__nav-control::after {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 7px;
  height: 2px;
  content: "";
  background: var(--pgh-copper-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
#primo-global-header-mvp .pgh__nav-control:hover::after,
#primo-global-header-mvp .pgh__nav-control[aria-expanded="true"]::after,
#primo-global-header-mvp .pgh__nav-label[aria-current="page"]::after { transform: scaleX(1); }

#primo-global-header-mvp .pgh__caret {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.8;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}
#primo-global-header-mvp .pgh__nav-control[aria-expanded="true"] .pgh__caret { transform: translateY(1px) rotate(225deg); }

#primo-global-header-mvp .pgh__submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 360px;
  padding: 10px;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(4, 24, 43, 0.985), rgba(0, 15, 30, 0.985));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
}
#primo-global-header-mvp .pgh__submenu ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
#primo-global-header-mvp .pgh__submenu-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  cursor: default;
}
#primo-global-header-mvp a.pgh__submenu-item { cursor: pointer; }
#primo-global-header-mvp a.pgh__submenu-item:hover,
#primo-global-header-mvp a.pgh__submenu-item[aria-current="page"] { color: var(--pgh-white); background: rgba(172, 85, 34, 0.16); }

#primo-global-header-mvp .pgh__actions { display: flex; align-items: center; gap: 8px; padding-left: 8px; }
#primo-global-header-mvp .pgh__phone {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  color: var(--pgh-white);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
#primo-global-header-mvp .pgh__phone svg { width: 16px; height: 16px; color: #edb18a; }
#primo-global-header-mvp .pgh__cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 4px;
  color: var(--pgh-white);
  background: var(--pgh-copper-2);
  box-shadow: 0 8px 20px rgba(172, 85, 34, 0.24);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

#primo-global-header-mvp .pgh__backdrop { pointer-events: auto; }

@media (max-width: 1180px) {
  #primo-global-header-mvp .pgh__shell { grid-template-columns: 184px minmax(0, 1fr); }
  #primo-global-header-mvp .pgh__brand img { width: 160px; }
  #primo-global-header-mvp .pgh__nav-label,
  #primo-global-header-mvp .pgh__nav-control { padding-inline: 8px; font-size: 12.5px; }
  #primo-global-header-mvp .pgh__actions { padding-left: 4px; }
  #primo-global-header-mvp .pgh__phone { display: none; }
  #primo-global-header-mvp .pgh__cta { padding-inline: 14px; font-size: 11px; }
}

@media (max-width: 1024px) {
  #primo-global-header-mvp .pgh__shell,
  #primo-global-header-mvp.pgh--scrolled .pgh__shell {
    top: 16px;
    width: min(calc(100% - 32px), 760px);
    height: 70px;
    grid-template-columns: minmax(0, 1fr) 48px;
    padding: 0 12px 0 18px;
  }
  #primo-global-header-mvp.pgh--scrolled .pgh__shell { top: 8px; height: 64px; }
  #primo-global-header-mvp .pgh__brand img { width: 158px; max-height: 52px; }
  #primo-global-header-mvp .pgh__menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }
  #primo-global-header-mvp .pgh__menu-toggle span { width: 21px; height: 2px; background: var(--pgh-white); }
  #primo-global-header-mvp .pgh__drawer {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    width: min(430px, 92%);
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 24px 28px;
    background: linear-gradient(180deg, #061a2e, var(--pgh-navy));
    box-shadow: -24px 0 50px rgba(0, 0, 0, 0.34);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 0s linear 220ms;
  }
  #primo-global-header-mvp.pgh--drawer-open .pgh__drawer { transform: translateX(0); visibility: visible; transition-delay: 0s; }
  #primo-global-header-mvp .pgh__drawer-head {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #e9b08b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  #primo-global-header-mvp .pgh__drawer-close {
    position: relative;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  #primo-global-header-mvp .pgh__drawer-close::before,
  #primo-global-header-mvp .pgh__drawer-close::after { position: absolute; left: 13px; top: 23px; width: 22px; height: 2px; content: ""; background: var(--pgh-white); transform: rotate(45deg); }
  #primo-global-header-mvp .pgh__drawer-close::after { transform: rotate(-45deg); }
  #primo-global-header-mvp .pgh__nav { height: auto; }
  #primo-global-header-mvp .pgh__nav-list { height: auto; display: block; padding-block: 13px; }
  #primo-global-header-mvp .pgh__nav-item { height: auto; display: block; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  #primo-global-header-mvp .pgh__nav-label,
  #primo-global-header-mvp .pgh__nav-control {
    width: 100%;
    min-height: 56px;
    justify-content: flex-start;
    padding: 0 4px;
    font-size: 16px;
    text-align: left;
  }
  #primo-global-header-mvp .pgh__nav-control .pgh__caret { margin-left: auto; margin-right: 6px; }
  #primo-global-header-mvp .pgh__nav-label::after,
  #primo-global-header-mvp .pgh__nav-control::after { display: none; }
  #primo-global-header-mvp .pgh__submenu {
    position: static;
    width: auto;
    padding: 0 0 12px 14px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    transform: none;
  }
  #primo-global-header-mvp .pgh__submenu ul { display: block; }
  #primo-global-header-mvp .pgh__submenu-item { min-height: 46px; padding: 7px 10px; font-size: 14px; }
  #primo-global-header-mvp .pgh__actions { display: grid; gap: 10px; margin-top: auto; padding: 22px 0 0; }
  #primo-global-header-mvp .pgh__phone { min-height: 50px; display: flex; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 2px; font-size: 15px; }
  #primo-global-header-mvp .pgh__cta { min-height: 54px; white-space: normal; font-size: 12px; }
  #primo-global-header-mvp .pgh__backdrop {
    position: fixed;
    z-index: 1;
    inset: 0;
    background: rgba(0, 8, 16, 0.64);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

@media (max-width: 430px) {
  #primo-global-header-mvp .pgh__shell,
  #primo-global-header-mvp.pgh--scrolled .pgh__shell { top: 12px; width: calc(100% - 24px); height: 66px; padding-left: 14px; }
  #primo-global-header-mvp.pgh--scrolled .pgh__shell { top: 7px; height: 62px; }
  #primo-global-header-mvp .pgh__brand img { width: 148px; }
  #primo-global-header-mvp .pgh__drawer { width: min(388px, 94%); padding-inline: 20px; }
}

@media (max-width: 340px) {
  #primo-global-header-mvp .pgh__brand img { width: 138px; }
  #primo-global-header-mvp .pgh__drawer { padding-inline: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  #primo-global-header-mvp *,
  #primo-global-header-mvp *::before,
  #primo-global-header-mvp *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
