.site-header {
  --header-bg: #0d1f2b;
  --header-ink: #030a07;
  --header-white: #ffffff;
  --header-aqua: #a9d8de;
  --header-border: rgba(255, 255, 255, 0.08);
  --header-dropdown-duration: 950ms;
  --header-dropdown-ease: var(--ease-out-expo);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  width: 100%;
  color: var(--header-white);
  pointer-events: none;
  transition: transform var(--duration-normal) var(--ease-out);
  will-change: transform;
}

.site-header.is-drawer-open {
  top: 0 !important;
  height: 100vh;
  height: 100dvh;
  z-index: 10000;
  transform: none !important;
  pointer-events: auto;
}

.site-header.is-drawer-open .site-header__contact-bar,
.site-header.is-drawer-open .site-header__shell {
  display: none;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header__contact-bar {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--header-bg);
  pointer-events: auto;
}

.site-header__contact-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  width: 100%;
  margin: 0;
  padding-inline: clamp(20px, 5vw, 96px);
}

.site-header__contact-link {
  color: var(--header-aqua);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__contact-divider {
  display: block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.site-header__shell {
  position: relative;
  width: 100%;
  min-height: 100px;
  overflow: visible;
  background: rgba(3, 10, 7, 0.1);
  backdrop-filter: blur(3px);
  pointer-events: auto;
  transition:
    background-color var(--duration-normal) var(--ease-out),
    backdrop-filter var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.site-header.is-scrolled .site-header__shell {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--header-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  min-height: 100px;
  margin: 0;
  padding-inline: clamp(20px, 5vw, 96px);
}

.site-header__logo,
.site-header__drawer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--header-white);
  text-decoration: none;
}

.site-header__logo {
  width: min(340px, 28vw);
  min-height: 70px;
}

.site-header__logo .site-logo,
.site-header__logo img {
  display: block;
  width: min(340px, 100%);
  height: auto;
  object-fit: contain;
}

.site-header__logo-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-header__logo-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-header__logo-title {
  color: var(--header-white);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  line-height: 1;
}

.site-header__nav {
  margin-left: auto;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav-item {
  position: static;
}

.site-header__nav-item.has-dropdown.is-dropdown-open {
  z-index: 3;
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--header-white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible,
.site-header__nav-item.is-active > .site-header__nav-link,
.site-header__nav-item.is-current-ancestor > .site-header__nav-link {
  color: var(--header-aqua);
}

.site-header__nav-chevron {
  display: inline-flex;
  width: 12px;
  height: 12px;
  color: currentColor;
}

.site-header__nav-chevron svg {
  width: 100%;
  height: 100%;
}

.site-header__nav-item.has-dropdown.is-dropdown-open > .site-header__nav-link {
  color: var(--header-aqua);
}

.site-header__dropdown-stack {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 4;
  width: 100vw;
  max-width: 100vw;
  padding-top: 16px;
  transform: translateX(-50%);
  pointer-events: none;
  box-sizing: border-box;
}

.site-header__dropdown-stack.is-active {
  pointer-events: auto;
}

.site-header__dropdown {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 70vh;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translate3d(0, -10px, 0);
  pointer-events: none;
  transition:
    opacity var(--header-dropdown-duration) var(--header-dropdown-ease),
    transform var(--header-dropdown-duration) var(--header-dropdown-ease),
    visibility 0s linear var(--header-dropdown-duration);
  will-change: opacity, transform;
}

.site-header__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  transition:
    opacity var(--header-dropdown-duration) var(--header-dropdown-ease),
    transform var(--header-dropdown-duration) var(--header-dropdown-ease),
    visibility 0s linear 0s;
}

.site-header__dropdown.is-closing {
  pointer-events: none;
}

.site-header__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: 0;
  height: 16px;
  background: rgba(13, 31, 43, 0.14);
  backdrop-filter: blur(2px);
  pointer-events: auto;
}

.site-header__dropdown-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.34fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 88px);
  width: 100%;
  max-height: 70vh;
  padding: clamp(36px, 4vw, 64px) clamp(20px, 5vw, 96px);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0 16%, transparent 16% 100%),
    #e7ebf3;
  box-shadow: 0 34px 70px rgba(3, 10, 7, 0.22);
  box-sizing: border-box;
  transition:
    opacity var(--header-dropdown-duration) var(--header-dropdown-ease),
    transform var(--header-dropdown-duration) var(--header-dropdown-ease);
  transition-delay: 80ms;
  will-change: opacity, transform;
}

.site-header__dropdown.is-open .site-header__dropdown-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 120ms;
}

.site-header__dropdown.is-closing .site-header__dropdown-panel {
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  .site-header__dropdown,
  .site-header__dropdown-panel {
    transition: none;
    transform: none;
    will-change: auto;
  }
}

.site-header__dropdown-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  color: #1b3b4d;
}

.site-header__dropdown-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 8px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(27, 59, 77, 0.12);
}

.site-header__dropdown-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(3, 10, 7, 0.28) 100%);
  pointer-events: none;
}

.site-header__dropdown-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header__dropdown-kicker {
  color: #c8a46a;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  line-height: 1.1;
}

.site-header__drawer-kicker {
  color: var(--header-aqua);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-header__dropdown-summary {
  margin: 0;
  color: rgba(27, 59, 77, 0.78);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

.site-header__dropdown-overview {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  min-height: auto;
  margin-top: auto;
  padding: 0;
  background: transparent;
  color: #1b3b4d;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__dropdown-list,
.site-header__dropdown-sub-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__dropdown-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
  gap: clamp(28px, 3vw, 48px);
}

.site-header__dropdown-link,
.site-header__dropdown-card,
.site-header__dropdown-sub-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1b3b4d;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-header__dropdown-card:hover,
.site-header__dropdown-link:hover,
.site-header__dropdown-sub-link:hover {
  color: #c8a46a;
  transform: translateX(2px);
}

.site-header__dropdown-parent-link:hover .site-header__dropdown-label,
.site-header__dropdown-link:hover .site-header__dropdown-label,
.site-header__dropdown-sub-link:hover .site-header__dropdown-sub-label,
.site-header__dropdown-item.is-active .site-header__dropdown-label,
.site-header__dropdown-item.is-current-ancestor .site-header__dropdown-label,
.site-header__dropdown-sub-item.is-active .site-header__dropdown-sub-label {
  color: #c8a46a;
}

.site-header__dropdown-parent-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
  color: #1b3b4d;
  text-decoration: none;
}

.site-header__dropdown-parent-link::before,
.site-header__dropdown-link::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c8a46a;
}

.site-header__dropdown-link {
  position: relative;
  padding-left: 18px;
}

.site-header__dropdown-label,
.site-header__dropdown-sub-label {
  color: #1b3b4d;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0;
}

.site-header__dropdown-text,
.site-header__dropdown-sub-text {
  color: rgba(27, 59, 77, 0.72);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
}

.site-header__dropdown-sub-list {
  padding-top: 14px;
  padding-left: 18px;
}

.site-header__dropdown-sub-link {
  position: relative;
  gap: 4px;
  padding-left: 14px;
}

.site-header__dropdown-sub-link::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 6px;
  height: 1px;
  background: rgba(27, 59, 77, 0.62);
}

.site-header__dropdown-sub-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--fw-bold);
}

.site-header__dropdown-sub-text {
  font-size: 13px;
  line-height: 1.45;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 16px 32px;
  background: var(--header-aqua);
  box-shadow:
    0 8px 10px -6px rgba(149, 200, 207, 0.2),
    0 20px 25px -5px rgba(149, 200, 207, 0.2);
  color: var(--header-ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__cta svg,
.site-header__drawer-cta svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.site-header__drawer-cta:hover,
.site-header__drawer-cta:focus-visible {
  background: #c1eef3;
}

.site-header__drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 72px;
  padding: 24px 48px;
  background: var(--header-aqua);
  box-shadow:
    0 8px 10px -6px rgba(149, 200, 207, 0.2),
    0 20px 25px -5px rgba(149, 200, 207, 0.2);
  color: var(--header-ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--header-white);
  cursor: pointer;
  pointer-events: auto;
}

.site-header__menu-button-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.site-header__menu-button-line {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header__menu-button-label {
  color: inherit;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header__menu-button.isActive .site-header__menu-button-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header__menu-button.isActive .site-header__menu-button-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100vw;
  padding: 30px 15px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  pointer-events: none;
  background: #142b3a;
}

.site-header__drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.site-header__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(345px, 100%);
  margin: 0 auto 30px;
  pointer-events: auto;
}

.site-header__drawer-logo {
  width: min(243px, 70vw);
}

.site-header__drawer-logo .site-logo,
.site-header__drawer-logo img {
  display: block;
  width: min(243px, 100%);
  height: auto;
}

.site-header__drawer-logo-text {
  color: var(--header-white);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.site-header__drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--header-aqua);
  cursor: pointer;
}

.site-header__drawer-close svg {
  width: 42px;
  height: 42px;
}

.site-header__drawer-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: min(345px, 100%);
  height: calc(100vh - 132px);
  max-height: calc(100dvh - 132px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--header-white);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

.site-header__drawer-nav {
  width: 100%;
}

.site-header__drawer-list,
.site-header__drawer-sub-list,
.site-header__drawer-sub-children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__drawer-item {
  border-bottom: 1px solid var(--header-border);
}

.site-header__drawer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 30px 0;
}

.site-header__drawer-link,
.site-header__drawer-sub-link,
.site-header__drawer-sub-child-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--header-white);
  text-decoration: none;
}

.site-header__drawer-link {
  flex: 1 1 auto;
}

.site-header__drawer-link-label,
.site-header__drawer-sub-label,
.site-header__drawer-sub-child-label {
  color: var(--header-aqua);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-header__drawer-link-text,
.site-header__drawer-sub-text,
.site-header__drawer-sub-child-text {
  display: none;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
}

.site-header__drawer-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--header-aqua);
  cursor: pointer;
}

.site-header__drawer-toggle svg {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
  transition: transform 180ms ease;
}

.site-header__drawer-item.is-active > .site-header__drawer-row .site-header__drawer-toggle svg {
  transform: rotate(0deg);
}

.site-header__drawer-sub {
  display: none;
  overflow: hidden;
  padding-bottom: 18px;
}

.site-header__drawer-sub-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  border-left: 0;
}

.site-header__drawer-sub-link,
.site-header__drawer-sub-child-link {
  padding: 12px 0;
  border-radius: 0;
  background: transparent;
}

.site-header__drawer-sub-children {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-left: 14px;
}

.site-header__drawer-footer {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.site-header__drawer-cta {
  width: 100%;
}

.site-header__drawer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__drawer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #ffc756;
  text-decoration: none;
}

.site-header__drawer-social svg {
  display: block;
  width: 20px;
  height: 20px;
}

.site-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(3, 10, 18, 0.55);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.site-header__overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 2px solid var(--header-aqua);
  outline-offset: 4px;
}

@media (max-width: 1399px) {
  .site-header__inner {
    gap: 28px;
  }

  .site-header__nav-list {
    gap: 26px;
  }

  .site-header__logo {
    width: min(300px, 26vw);
  }

  .site-header__dropdown-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1139px) {
  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .site-header__menu-button {
    display: inline-flex;
  }

  .site-header__logo {
    width: min(300px, 58vw);
  }

  .site-header__contact-inner,
  .site-header__inner {
    width: 100%;
    padding-inline: 20px;
  }
}

@media (max-width: 767px) {
  .site-header__contact-bar {
    display: none;
  }

  .site-header__shell,
  .site-header__inner {
    min-height: 82px;
  }

  .site-header__logo {
    width: min(240px, 58vw);
    min-height: auto;
  }

  .site-header__drawer {
    width: 100vw;
    padding: 30px 15px;
  }

  .site-header__drawer-body {
    height: calc(100vh - 110px);
    max-height: calc(100dvh - 110px);
  }
}

html.is-locked,
body.is-locked {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  background: var(--header-aqua);
  color: var(--header-ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 0;
}
