.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  pointer-events: none;
}
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.site-header__shell {
  position: relative;
  padding: 0;
  transition: transform var(--duration-normal) var(--ease-out);
  will-change: transform;
  /* backdrop-filter: blur(4px); */
}
.site-header__inner {
  width: 100%;
  min-height: 105px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  border: 0;
  border-radius: 0;
  background: transparent;
  /* backdrop-filter: blur(4px); */
  box-shadow: none;
  pointer-events: auto;
}
.site-header__left,
.site-header__right {
  display: inline-flex;
  align-items: center;
  min-height: 105px;
  background: transparent;
}
.site-header__left {
  min-width: 80%;
  flex:  1 1 auto;
}
.site-header__right {
  flex: 0 0 auto;
}

.site-header__left-main {
  display: flex;
  min-width: 100%;
  min-height: 105px;
  align-items: center;
  gap: clamp(var(--space-3xl), 12vw, 209px);
  padding: 12px 32px;
  background: rgba(13, 13, 13, 1);
  z-index: 10;
  position: relative;

}
.site-header__left-cutout {
  width: 44px;
  height: 105px;
  flex: 0 0 auto;
  position: relative;
  background: transparent;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.site-header__left-cutout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: red;
}

.site-header__left-cutout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 1);
  clip-path: polygon(0 0, 92% 0, 0 92%);
}
/* Right cutout */
.site-header__right-cutout {
  width: 45px;
  height: 105px;
  flex: 0 0 auto;
  position: relative;
  background: transparent;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.site-header__right-cutout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: red;
}

.site-header__right-cutout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 1);
  clip-path: polygon(100% 100%, 100% 8%, 8% 100%);
}





.site-header__logo .site-logo,
.site-header__logo-img {
  display: block;
  width: 250px;
  height: 81px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-header__logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--color-text-light);
  min-width: 0;
}
.site-header__logo-kicker {
  font-family: var(--font-secondary);
  font-size: var(--fs-form-caption);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.site-header__logo-title {
  font-family: var(--font-display);
  font-size: var(--fs-section-text);
  line-height: 1;
  letter-spacing: 0.03em;
}
.site-header__nav {
  margin-left: 0;
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 991px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.site-header__nav-item {
  position: relative;
}
.site-header__nav-item.has-dropdown:hover > .site-header__dropdown,
.site-header__nav-item.has-dropdown:focus-within > .site-header__dropdown,
.site-header__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header__nav-item.is-active > .site-header__nav-link {
  color: var(--color-text-light);
  background: transparent;
}
.site-header__nav-item.has-dropdown:hover > .site-header__nav-link,
.site-header__nav-item.has-dropdown:focus-within > .site-header__nav-link,
.site-header__nav-item.is-dropdown-open > .site-header__nav-link,
.site-header__nav-item:hover > .site-header__nav-link {
  color: var(--color-text-light);
  background: transparent;
}
.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  color: var(--color-text-light);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-card-text);
  font-weight: var(--fw-medium);
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    color var(--duration-normal) var(--ease-out),
    opacity var(--duration-normal) var(--ease-out);
}
@media (max-width: 1500px) {
  .site-header__inner {
    gap: 0;
  }

  .site-header__left-main {
    gap: clamp(48px, 6vw, 120px);
  }

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

  .site-header__nav-link {
    font-size: var(--fs-kicker);
  }
}
.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
  opacity: var(--opacity-hover);
}
.site-header__nav-chevron {
  display: none;
}
.site-header__nav-chevron svg {
  width: 100%;
  height: 100%;
}
.site-header__dropdown-stack {
  position: relative;
  width: 100%;
  margin: 0;
  pointer-events: auto;
}
.site-header__dropdown-stack[hidden] {
  display: none;
}
.site-header__dropdown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
  will-change: opacity, transform;
}
.site-header__dropdown-stack .site-header__dropdown {
  top: 0;
  left: 0;
}
.site-header__dropdown::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}
.site-header__dropdown-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 88px);
  width: 100%;
  padding: 56px clamp(24px, 8vw, 150px) 64px;
  border-top: 1px solid rgba(220, 54, 16, 0.45);
  border-bottom: 1px solid rgba(220, 54, 16, 0.45);
  border-radius: 0;
  background: rgba(13, 13, 13, 0.96);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.38);
  max-height: calc(100dvh - 105px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  will-change: clip-path;
}
.admin-bar .site-header__dropdown-panel {
  max-height: calc(100dvh - 105px - 32px);
}
.site-header__dropdown-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(220, 54, 16, 0.12), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(220, 54, 16, 0.18), transparent 30%);
}
.site-header__dropdown-intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
  padding-left: 18px;
  border-left: 2px solid var(--color-cta-default);
  color: var(--color-text-light);
}
.site-header__dropdown-kicker {
  font-family: var(--font-body);
  font-size: var(--fs-form-caption);
  font-weight: var(--fw-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cta-default);
}
.site-header__dropdown-title {
  margin: 0;
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-size: var(--fs-section-title);
  font-weight: var(--fw-regular);
  line-height: 0.95;
  letter-spacing: 0;
}
.site-header__dropdown-summary {
  margin: 0;
  color: rgba(245, 242, 234, 0.72);
  font-size: var(--fs-meta);
  line-height: 1.6;
}
.site-header__dropdown-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__dropdown-item.is-active .site-header__dropdown-link {
  color: var(--color-text-light);
  background: rgba(220, 54, 16, 0.2);
}
.site-header__dropdown-item.is-active .site-header__dropdown-card {
  background: rgba(220, 54, 16, 0.14);
}
.site-header__dropdown-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition:
    background-color 0.22s ease,
    opacity 0.22s ease;
}
.site-header__dropdown-card:hover {
  background: rgba(245, 242, 234, 0.06);
}
.site-header__dropdown-link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text-light);
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    opacity 0.22s ease;
}
.site-header__dropdown-link:hover {
  background: rgba(245, 242, 234, 0.06);
}
.site-header__dropdown-parent-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  color: var(--color-text-light);
  text-decoration: none;
}
.site-header__dropdown-label {
  color: inherit;
  font-family: var(--font-body);
  font-size: var(--fs-section-text);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}
.site-header__dropdown-text {
  display: none;
}
.site-header__dropdown-icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border: 1px solid rgba(220, 54, 16, 0.68);
  border-radius: 50%;
  background: rgba(245, 242, 234, 0.08);
}
.site-header__dropdown-icon picture,
.site-header__dropdown-icon-img {
  display: block;
  width: 100%;
  height: 100%;
}
.site-header__dropdown-icon-img {
  object-fit: cover;
}
.site-header__dropdown-icon-fallback {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-cta-default);
  transform: translate(-50%, -50%);
}
.site-header__dropdown-icon--small {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}
.site-header__dropdown-sub-list {
  list-style: none;
  display: grid;
  gap: 4px;
  margin: 0 0 0 56px;
  padding: 0;
  border-top: 0;
}
.site-header__dropdown-sub-item {
  margin: 0;
}
.site-header__dropdown-sub-item.is-active .site-header__dropdown-sub-link {
  background: rgba(220, 54, 16, 0.18);
  color: var(--color-text-light);
}
.site-header__dropdown-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245, 242, 234, 0.78);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.site-header__dropdown-sub-link:hover {
  color: var(--color-text-light);
  background: rgba(245, 242, 234, 0.06);
}
.site-header__dropdown-sub-label {
  color: inherit;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: var(--fw-medium);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-header__dropdown-sub-text {
  display: none;
}
@media (max-width: 1180px) {
  .site-header__dropdown-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-inline: 32px;
  }

  .site-header__dropdown-intro {
    max-width: none;
  }

  .site-header__dropdown-list {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 105px;
  flex-shrink: 0;
  background: rgba(13, 13, 13, 1);
  padding: 0 32px 0 12px;
}
@media (max-width: 991px) {
  .site-header__left,
  .site-header__right {
    min-height: auto;
  }

  .site-header__left {
    flex: 0 1 auto;
  }

  .site-header__right {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .site-header__left-main {
    min-height: auto;
    gap: var(--space-md);
    padding: 0;
    background: transparent;
  }

  .site-header__left-cutout,
  .site-header__left-accent,
  .site-header__right-accent,
  .site-header__right-cutout {
    display: none;
  }

  .site-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-height: auto;
    margin-left: 0;
    padding: 0;
    background: transparent;
  }

}
.site-header__phone,
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 105px;
  padding: 41px 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text-light);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-cta);
  font-weight: var(--fw-medium);
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    color var(--duration-normal) var(--ease-out),
    opacity var(--duration-normal) var(--ease-out);
}
.site-header__phone:hover,
.site-header__phone:focus-visible,
.site-header__cta:hover,
.site-header__cta:focus-visible {
  opacity: var(--opacity-hover);
}
@media (max-width: 991px) {
  .site-header__phone,
  .site-header__cta {
    display: none;
  }
}
.site-header__menu-button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease;
}
@media (max-width: 991px) {
  .site-header__menu-button {
    display: inline-flex;
    width: 100%;
    flex: 1 1 auto;
  }
}
.site-header__menu-button.isActive {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}
.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__menu-button-icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}
.site-header__menu-button-label {
  font-family: var(--font-secondary);
  font-size: var(--fs-form-caption);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.site-header__menu-button-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text-light);
  transition: transform 0.22s ease;
}
.site-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: var(--z-overlay);
  width: min(420px, 100vw);
  height: 100dvh;
  max-height: 100dvh;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}
.site-header__drawer:not([hidden]) {
  visibility: visible;
}
.site-header__drawer.is-open {
  pointer-events: auto;
}
.site-header__drawer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(13, 13, 13, 0.96);
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.42);
  clip-path: polygon(100% 0, 100% 0, 0 100%, 0 100%);
  will-change: clip-path;
  transition: clip-path 0.38s var(--ease-out);
}
.site-header__drawer.is-open .site-header__drawer-panel {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.site-header__menu-slash {
  position: fixed;
  top: 0;
  left: 110%;
  z-index: calc(var(--z-overlay) - 1);
  width: 15px;
  height: 130vh;
  margin-left: -22px;
  background: linear-gradient(
    180deg,
    rgba(220, 54, 16, 0.12),
    var(--color-cta-default) 45%,
    rgba(220, 54, 16, 0.12)
  );
  box-shadow:
    0 0 36px rgba(220, 54, 16, 0.65),
    0 0 80px rgba(220, 54, 16, 0.28);
  transform: rotate(28deg);
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  will-change: transform, opacity;
}
.site-header__menu-slash:not([hidden]) {
  visibility: visible;
}
.site-header__menu-slash.is-drawn {
  opacity: 1;
}
.site-header__drawer-header,
.site-header__drawer-body {
  position: relative;
  z-index: 1;
  width: 100%;
  pointer-events: auto;
}
.site-header__drawer-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(220, 54, 16, 0.45);
  background: rgba(13, 13, 13, 0.96);
}
.site-header__drawer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 80%;
  object-fit: contain;
  text-decoration: none;
  color: var(--color-text-light);
}
.site-header__drawer-logo .site-logo {
width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header__drawer-logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-section-text);
  line-height: 1.1;
}
.site-header__drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(220, 54, 16, 0.68);
  border-radius: 50%;
  background: rgba(245, 242, 234, 0.08);
  color: var(--color-text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease;
}
.site-header__drawer-close:hover {
  background: rgba(245, 242, 234, 0.12);
}
.site-header__drawer-close svg {
  width: 18px;
  height: 18px;
}
.site-header__drawer-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 32px 24px 40px;
  border: 0;
  border-radius: 0;
  background: rgba(13, 13, 13, 0.96);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.38);
  color: var(--color-text-light);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.site-header__drawer-body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(220, 54, 16, 0.12), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(220, 54, 16, 0.18), transparent 30%);
}
.site-header__drawer-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--color-cta-default);
  border-radius: 0;
  background: transparent;
}
.site-header__drawer-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-form-caption);
  font-weight: var(--fw-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cta-default);
}
.site-header__drawer-summary {
  margin: 0;
  color: rgba(245, 242, 234, 0.72);
  font-size: var(--fs-meta);
  line-height: 1.6;
}
.site-header__drawer-nav {
  position: relative;
  z-index: 1;
}
.site-header__drawer-list,
.site-header__drawer-sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__drawer-item {
  border-top: 1px solid rgba(220, 54, 16, 0.2);
}
.site-header__drawer-item:last-child {
  border-bottom: 1px solid rgba(220, 54, 16, 0.2);
}
.site-header__drawer-item.is-active > .site-header__drawer-row .site-header__drawer-link-label {
  color: var(--color-text-light);
}
.site-header__drawer-item.is-active
  > .site-header__drawer-row
  .site-header__drawer-toggle
  svg {
  transform: rotate(180deg);
}
.site-header__drawer-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
}
.site-header__drawer-link {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}
.site-header__drawer-link-label,
.site-header__drawer-sub-label {
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: var(--fs-card-text);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}
.site-header__drawer-link-text,
.site-header__drawer-sub-text {
  color: rgba(245, 242, 234, 0.62);
  font-size: var(--fs-meta);
  line-height: 1.5;
}
.site-header__drawer-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(220, 54, 16, 0.68);
  border-radius: 50%;
  background: rgba(245, 242, 234, 0.08);
  color: var(--color-text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.22s ease;
}
.site-header__drawer-toggle:hover {
  background: rgba(245, 242, 234, 0.12);
}
.site-header__drawer-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.22s ease;
}
.site-header__drawer-sub {
  display: none;
  overflow: hidden;
  padding-bottom: 18px;
}
.site-header__drawer-sub-list {
  padding: 4px 0 0 14px;
  display: grid;
  gap: 4px;
  border-left: 2px solid rgba(220, 54, 16, 0.35);
}
.site-header__drawer-sub-item.is-active .site-header__drawer-sub-link {
  background: rgba(220, 54, 16, 0.18);
  color: var(--color-text-light);
}
.site-header__drawer-sub-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  color: rgba(245, 242, 234, 0.78);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.site-header__drawer-sub-link:hover {
  color: var(--color-text-light);
  background: rgba(245, 242, 234, 0.06);
}
.site-header__drawer-sub-children {
  list-style: none;
  margin: 10px 0 0;
  padding: 0 0 0 14px;
  display: grid;
  gap: 8px;
}
.site-header__drawer-sub-child-item {
  margin: 0;
}
.site-header__drawer-sub-child-item.is-active .site-header__drawer-sub-child-link {
  background: rgba(220, 54, 16, 0.18);
  border-color: rgba(220, 54, 16, 0.45);
}
.site-header__drawer-sub-child-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid rgba(220, 54, 16, 0.2);
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.site-header__drawer-sub-child-link:hover {
  background: rgba(245, 242, 234, 0.06);
}
.site-header__drawer-sub-child-label {
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: var(--fw-medium);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-header__drawer-sub-child-text {
  color: rgba(245, 242, 234, 0.56);
  font-size: var(--fs-meta);
  line-height: 1.45;
}
.site-header__drawer-footer {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(220, 54, 16, 0.45);
}
.site-header__drawer-cta {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: var(--color-cta-default);
  color: var(--color-text-light);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-kicker);
  font-weight: var(--fw-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity var(--duration-normal) var(--ease-out);
}
.site-header__drawer-cta:hover {
  opacity: var(--opacity-hover);
}
.site-header__drawer-meta {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}
.site-header__drawer-meta a {
  color: rgba(245, 242, 234, 0.72);
  text-decoration: none;
  font-size: var(--fs-meta);
  transition: color 0.2s ease;
}
.site-header__drawer-meta a:hover {
  color: var(--color-text-light);
}
.site-header__overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) + 50);
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}
.site-header__overlay:not([hidden]) {
  visibility: visible;
}
.site-header__overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991px) {
  .site-header__shell {
    padding-top: 12px;
  }
  .site-header__inner {
    padding: 14px 16px;
    border-radius: 20px;
    gap: 14px;
    min-height: auto;
    background: rgba(13, 13, 13, 0.72);
  }
  .site-header__logo {
    width: auto;
    height: auto;
  }
  .site-header__logo .site-logo {
    width: 140px;
    height: auto;
    max-height: 54px;
  }
  .site-header__logo-copy {
    display: none;
  }
}
@media (max-width: 575px) {
  .site-header__shell {
    padding-left: 12px;
    padding-right: 12px;
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }
  .site-header__logo .site-logo,
  .site-header__logo-img {
    width: 46px;
    height: auto;
    max-height: 46px;
  }
  .site-header__actions {
    width: 100%;
    margin-left: 0;
  }
  .site-header__menu-button {
    justify-content: flex-start;
    min-width: 0;
  }
  .site-header__drawer {
    width: 100vw;
    left: 0;
  }
  .site-header__drawer-header {
    padding: 16px 20px;
  }
  .site-header__drawer-body {
    padding: 28px 20px 32px;
  }
}

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

/* Skip to main content */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  font-family: var(--font-secondary);
  font-size: var(--fs-meta);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

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

.landing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  min-height: 105px;
  pointer-events: none;
}

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

.landing-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(360px, 1fr) minmax(280px, 360px);
  align-items: center;
  width: 100%;
  min-height: 105px;
  padding: 12px 32px 12px 28px;
  background: #0d0d0d;
  pointer-events: auto;
}

.landing-header__inner::before,
.landing-header__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  pointer-events: none;
  background: transparent;
  border-left: 3px solid #dc3610;
  transform: skewX(-19deg);
  transform-origin: top;
  z-index: 0;
}

.landing-header__inner::before {
  right: 420px;
}

.landing-header__inner::after {
  right: 358px;
}

.landing-header__logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.landing-header__logo .site-logo,
.landing-header__logo img {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  max-height: 81px;
  object-fit: contain;
}

.landing-header__logo-text {
  color: #f5f2ea;
  font-family: var(--font-display);
  font-size: var(--fs-h5);
  font-weight: 700;
  line-height: 1;
}

.landing-header__nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  min-width: 0;
}

.landing-header__link,
.landing-header__cta,
.landing-mobile-review {
  color: #f5f2ea;
  font-family: var(--font-body);
  font-size: var(--fs-card-text);
  font-weight: var(--fw-medium);
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color var(--duration-normal) var(--ease-out),
    opacity var(--duration-normal) var(--ease-out),
    background-color var(--duration-normal) var(--ease-out);
}

.landing-header__link:hover,
.landing-header__link:focus-visible,
.landing-header__cta:hover,
.landing-header__cta:focus-visible {
  opacity: var(--opacity-hover);
}

.landing-header__cta {
  position: relative;
  z-index: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 47px;
  padding: 0 32px;
  background: #dc3610;
  clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  white-space: nowrap;
}

.landing-header__cta:hover,
.landing-header__cta:focus-visible,
.landing-mobile-review:hover,
.landing-mobile-review:focus-visible {
  background: #b92d0d;
  opacity: 1;
}

.landing-mobile-review {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: calc(var(--z-header) + 1);
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #f5f2ea;
  background: #dc3610;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
  clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}

@media (max-width: 1180px) {
  .landing-header__inner {
    grid-template-columns: minmax(160px, 260px) minmax(260px, 1fr) minmax(240px, 300px);
    gap: 24px;
  }

  .landing-header__logo .site-logo,
  .landing-header__logo img {
    width: 220px;
  }

  .landing-header__nav {
    gap: 22px;
  }

  .landing-header__link,
  .landing-header__cta {
    font-size: var(--fs-kicker);
  }

  .landing-header__inner::before {
    right: 350px;
  }

  .landing-header__inner::after {
    right: 300px;
  }

  .landing-header__cta {
    width: min(100%, 280px);
    padding-inline: 24px;
  }
}

@media (max-width: 920px) {
  .landing-header__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }

  .landing-header__inner::before,
  .landing-header__inner::after,
  .landing-header__nav {
    display: none;
  }

  .landing-header__cta {
    width: min(42vw, 280px);
  }
}

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

  .landing-header {
    min-height: 84px;
  }

  .landing-header__inner {
    display: flex;
    min-height: 84px;
    justify-content: center;
    padding: 12px 20px;
  }

  .landing-header__inner::before,
  .landing-header__inner::after,
  .landing-header__nav,
  .landing-header__cta {
    display: none;
  }

  .landing-header__logo .site-logo,
  .landing-header__logo img {
    width: 188px;
    max-height: 60px;
  }

  .landing-mobile-review {
    display: inline-flex;
  }
}
