.site-header {
  min-height: 80px;
  padding-bottom: 1px;
  background: var(--abc-color-navy-deep);
  border-bottom: 2px solid var(--abc-color-gold);
  color: #fff;
}

.site-header__inner {
  display: flex;
  width: 100%;
  min-height: 77px;
  margin: 0 auto;
  padding: 0 58px;
  align-items: center;
  gap: 34px;
}

.site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #fff;
  line-height: 0;
  text-decoration: none;
}

.site-header__logo {
  display: block;
  width: 207px;
  height: auto;
}

.site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 0;
}

.site-header__menu-link {
  display: inline-flex;
  align-items: center;
  color: rgb(255 255 255 / 0.95);
  font-family: var(--abc-font-sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.8px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-header__menu-link:hover,
.site-header__menu-link:focus-visible {
  color: rgb(255 255 255 / 0.72);
}

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

.site-header__language {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--abc-font-sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.site-header__language::after,
.site-header__offcanvas-language::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  pointer-events: none;
  transform: translateY(-5px) rotate(45deg);
}

.site-header__language-select,
.site-header__offcanvas-language-select {
  width: 100%;
  min-height: 38px;
  padding: 6px 18px 0 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  line-height: 1.2;
  outline: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-header__language-select option,
.site-header__offcanvas-language-select option {
  color: var(--abc-color-navy-deep);
}

.site-header__language-select:hover,
.site-header__language-select:focus-visible,
.site-header__offcanvas-language-select:hover,
.site-header__offcanvas-language-select:focus-visible {
  color: rgb(255 255 255 / 0.72);
}

.site-header__contact {
  display: inline-flex;
  min-width: 140px;
  min-height: 38px;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.95);
  color: #fff;
  font-family: var(--abc-font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.8px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__contact:hover,
.site-header__contact:focus-visible {
  background: #fff;
  color: var(--abc-color-navy-deep);
}

.site-header__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgb(255 255 255 / 0.35);
  color: #fff;
}

.site-header__mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.site-header__offcanvas {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}

.site-header__offcanvas.is-open {
  pointer-events: auto;
  visibility: visible;
}

.site-header__offcanvas-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgb(7 21 32 / 0);
  transition: background-color 0.25s ease;
}

.site-header__offcanvas.is-open .site-header__offcanvas-backdrop {
  background: rgb(7 21 32 / 0.64);
}

.site-header__offcanvas-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(86vw, 390px);
  height: 100%;
  padding: 24px;
  flex-direction: column;
  gap: 32px;
  background: var(--abc-color-navy-deep);
  border-left: 2px solid var(--abc-color-gold);
  box-shadow: -24px 0 60px rgb(0 0 0 / 0.24);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.site-header__offcanvas.is-open .site-header__offcanvas-panel {
  transform: translateX(0);
}

.site-header__offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__offcanvas-brand {
  display: inline-flex;
  line-height: 0;
}

.site-header__offcanvas-logo {
  width: 190px;
  height: auto;
}

.site-header__offcanvas-close {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / 0.35);
  color: #fff;
}

.site-header__offcanvas-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.site-header__offcanvas-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header__offcanvas-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__offcanvas-nav {
  min-height: 0;
  overflow-y: auto;
}

.site-header__offcanvas-menu {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
}

.site-header__offcanvas-menu-link {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  color: #fff;
  font-family: var(--abc-font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__offcanvas-actions {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  gap: 18px;
}

.site-header__offcanvas-language {
  position: relative;
  color: #fff;
  font-family: var(--abc-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.site-header__offcanvas-contact {
  display: inline-flex;
  min-height: 48px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--abc-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-decoration: none;
  text-transform: uppercase;
}

body.site-menu-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: 18px 28px;
    padding: 18px 32px;
  }

  .site-header__nav {
    order: 3;
    flex-basis: 100%;
  }

  .site-header__menu {
    justify-content: flex-start;
    gap: 18px 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    min-height: 77px;
    padding: 0 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .site-header__logo {
    width: 240px;
  }

  .site-header__nav,
  .site-header__actions {
    display: none;
  }

  .site-header__mobile-toggle {
    display: inline-flex;
  }
}
