:root {
  --arx-purple: #92278f;
  --arx-purple-deep: #6d1b6d;
  --arx-purple-soft: #f7eef8;
  --arx-gold: #fff200;
  --arx-gold-deep: #d6c900;
  --arx-ink: #1b1330;
  --arx-muted: #6f6a7d;
  --arx-border: rgba(146, 39, 143, 0.12);
  --arx-shadow: 0 16px 40px rgba(30, 15, 50, 0.08);
}

body.has-unified-header > header:not(.arx-header),
body.has-unified-header > .utility-bar,
body.has-unified-header #mobile_only_menu,
body.has-unified-header .mean-container {
  display: none !important;
}

.arx-header,
.arx-header * {
  box-sizing: border-box;
}

.arx-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  font-family: "Inter", "Montserrat", Arial, sans-serif;
}

.arx-header a {
  text-decoration: none;
}

.arx-header__utility {
  background: linear-gradient(135deg, var(--arx-purple-deep), var(--arx-purple));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.arx-header__container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.arx-header__utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.arx-header__utility-copy {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.95;
}

.arx-header__utility-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.arx-header__utility-links a,
.arx-header__utility-links span {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  opacity: 0.96;
}

.arx-header__utility-links a:hover {
  opacity: 1;
}

.arx-header__lang {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.arx-header__main {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid rgba(255, 242, 0, 0.92);
  box-shadow: var(--arx-shadow);
}

.arx-header.is-scrolled .arx-header__main {
  background: rgba(255, 255, 255, 0.985);
}

.arx-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 94px;
  padding: 12px 0;
}

.arx-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: 380px;
}

.arx-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #fbf8fc);
  border: 1px solid rgba(146, 39, 143, 0.14);
  box-shadow: 0 10px 24px rgba(146, 39, 143, 0.1);
  padding: 8px;
}

.arx-brand__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.arx-brand__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.arx-brand__title {
  color: var(--arx-ink);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.arx-brand__subtitle {
  color: var(--arx-muted);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.arx-header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.arx-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.arx-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.arx-menu > li {
  position: relative;
}

.arx-menu > li > a,
.arx-submenu-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--arx-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arx-menu > li > a {
  padding: 0 14px;
  border-radius: 12px;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.arx-menu > li > a:hover,
.arx-menu > li > a:focus-visible,
.arx-menu > li.is-active > a,
.arx-menu > li.is-open > a {
  background: var(--arx-purple-soft);
  color: var(--arx-purple);
}

.arx-menu > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--arx-purple), var(--arx-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.arx-menu > li > a:hover::after,
.arx-menu > li.is-active > a::after,
.arx-menu > li.is-open > a::after {
  transform: scaleX(1);
}

.arx-menu__item--cta > a {
  background: linear-gradient(135deg, var(--arx-gold), #fff6a8);
  color: #342700 !important;
  box-shadow: 0 10px 22px rgba(214, 201, 0, 0.24);
}

.arx-menu__item--cta > a::after {
  display: none;
}

.arx-menu__item--cta > a:hover,
.arx-menu__item--cta > a:focus-visible {
  background: linear-gradient(135deg, #fff8b6, var(--arx-gold));
}

.arx-menu__item--has-children {
  display: flex;
  align-items: center;
}

.arx-submenu-toggle {
  width: 34px;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--arx-purple);
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.arx-submenu-toggle::before {
  content: "▾";
  font-size: 15px;
  line-height: 1;
}

.arx-menu__item--has-children.is-open > .arx-submenu-toggle,
.arx-menu__item--has-children:hover > .arx-submenu-toggle {
  transform: translateY(1px);
}

.arx-submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 280px;
  padding: 14px;
  margin: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--arx-border);
  box-shadow: 0 22px 44px rgba(33, 18, 55, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.arx-submenu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 26px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-top: 1px solid var(--arx-border);
  border-left: 1px solid var(--arx-border);
  transform: rotate(45deg);
}

.arx-menu__item--has-children:hover > .arx-submenu,
.arx-menu__item--has-children:focus-within > .arx-submenu,
.arx-menu__item--has-children.is-open > .arx-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.arx-submenu li + li {
  margin-top: 4px;
}

.arx-submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--arx-ink);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.arx-submenu a:hover,
.arx-submenu a:focus-visible,
.arx-submenu a.is-active {
  background: linear-gradient(135deg, var(--arx-purple-soft), #fffbe0);
  color: var(--arx-purple);
  transform: translateX(2px);
}

.arx-menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(146, 39, 143, 0.18);
  background: linear-gradient(145deg, #ffffff, #f8f4fa);
  color: var(--arx-purple);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(40, 18, 64, 0.08);
}

.arx-menu-toggle span,
.arx-menu-toggle::before,
.arx-menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.arx-menu-toggle span {
  margin: 6px auto;
}

.arx-menu-toggle.is-open::before {
  transform: translateY(8px) rotate(45deg);
}

.arx-menu-toggle.is-open::after {
  transform: translateY(-8px) rotate(-45deg);
}

.arx-menu-toggle.is-open span {
  opacity: 0;
}

@media (max-width: 1180px) {
  .arx-brand__title {
    font-size: 20px;
  }

  .arx-menu > li > a {
    padding: 0 11px;
  }
}

@media (max-width: 1024px) {
  .arx-header__utility {
    display: none;
  }

  .arx-header__main-inner {
    min-height: 84px;
  }

  .arx-menu-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .arx-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: block;
    background: #fff;
    border: 1px solid var(--arx-border);
    border-radius: 22px;
    box-shadow: 0 28px 46px rgba(30, 15, 50, 0.14);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .arx-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .arx-menu {
    display: block;
  }

  .arx-menu > li {
    display: block;
    border-bottom: 1px solid rgba(146, 39, 143, 0.08);
  }

  .arx-menu > li:last-child {
    border-bottom: 0;
  }

  .arx-menu > li > a {
    min-height: 0;
    width: calc(100% - 38px);
    padding: 14px 12px;
    border-radius: 14px;
  }

  .arx-menu > li > a::after {
    bottom: 6px;
  }

  .arx-menu__item--has-children {
    display: grid;
    grid-template-columns: 1fr 38px;
    align-items: start;
  }

  .arx-submenu-toggle {
    width: 38px;
    min-height: 50px;
  }

  .arx-submenu {
    position: static;
    min-width: 0;
    padding: 8px 0 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: -2px;
  }

  .arx-submenu::before {
    display: none;
  }

  .arx-menu__item--has-children.is-open > .arx-submenu {
    display: block;
  }

  .arx-submenu a {
    padding: 10px 14px 10px 20px;
  }
}

@media (max-width: 700px) {
  .arx-header__container {
    width: min(100% - 24px, 1320px);
  }

  .arx-header__main-inner {
    min-height: 78px;
    gap: 12px;
  }

  .arx-brand {
    gap: 10px;
    max-width: calc(100% - 70px);
  }

  .arx-brand__mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 14px;
  }

  .arx-brand__title {
    font-size: 17px;
  }

  .arx-brand__subtitle {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .arx-nav {
    left: 12px;
    right: 12px;
  }
}

body.has-unified-chrome > header:not(.arx-header),
body.has-unified-chrome > .utility-bar,
body.has-unified-chrome #mobile_only_menu,
body.has-unified-chrome .mean-container,
body.has-unified-chrome .header-injector,
body.has-unified-chrome footer:not(.arx-footer),
body.has-unified-chrome .lux-footer,
body.has-unified-chrome #footer,
body.has-unified-chrome .site-footer:not(.arx-footer) {
  display: none !important;
}

.arx-brand__mark {
  width: 78px;
  height: 78px;
  flex-basis: 78px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(146, 39, 143, 0.14);
}

.arx-menu {
  gap: 2px;
}

@media (max-width: 700px) {
  .arx-brand__mark {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }
}


/* === 2026 premium navigation refinement === */
:root {
  --arx-purple: #5f2d78;
  --arx-purple-deep: #24163b;
  --arx-purple-soft: #f6f2f8;
  --arx-gold: #c7a448;
  --arx-gold-deep: #9c7d2e;
  --arx-ink: #20172d;
  --arx-muted: #70677d;
  --arx-border: rgba(95, 45, 120, 0.12);
  --arx-shadow: 0 18px 42px rgba(28, 19, 46, 0.09);
}

.arx-header__container {
  width: min(1380px, calc(100% - 36px));
}

.arx-header__utility {
  background: linear-gradient(135deg, #20142f 0%, #4e285f 100%);
}

.arx-header__main {
  background: rgba(255, 255, 255, 0.985);
  border-bottom: 1px solid rgba(199, 164, 72, 0.34);
  box-shadow: 0 12px 36px rgba(26, 17, 44, 0.07);
}

.arx-header__main-inner {
  min-height: 88px;
  gap: 18px;
}

.arx-brand {
  flex: 0 0 310px;
  max-width: 310px;
  gap: 12px;
}

.arx-brand__mark {
  width: 122px;
  height: 60px;
  flex-basis: 122px;
  border-radius: 16px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,242,248,0.98));
  border: 1px solid rgba(95, 45, 120, 0.12);
  box-shadow: 0 12px 28px rgba(95, 45, 120, 0.10);
}

.arx-brand__mark img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  margin: 0 auto;
}

.arx-brand__title {
  font-size: 18px;
  letter-spacing: -0.01em;
}

.arx-brand__subtitle {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.arx-header__nav-wrap {
  gap: 10px;
}

.arx-nav {
  justify-content: flex-end;
  background: #faf8fc;
  border: 1px solid rgba(95, 45, 120, 0.10);
  border-radius: 999px;
  padding: 6px 8px;
  box-shadow: 0 10px 28px rgba(26, 17, 44, 0.04);
}

.arx-menu {
  gap: 0;
}

.arx-menu > li > a,
.arx-submenu-toggle {
  min-height: 42px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.arx-menu > li > a {
  padding: 0 10px;
  border-radius: 999px;
}

.arx-menu > li > a::after {
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
}

.arx-menu > li > a:hover,
.arx-menu > li > a:focus-visible,
.arx-menu > li.is-active > a,
.arx-menu > li.is-open > a {
  background: rgba(95, 45, 120, 0.07);
  color: var(--arx-purple-deep);
}

.arx-submenu-toggle {
  width: 28px;
}

.arx-menu__item--cta > a {
  background: linear-gradient(135deg, #e1cf90 0%, #c7a448 100%);
  color: #2f2410 !important;
  box-shadow: 0 10px 18px rgba(156, 125, 46, 0.18);
}

.arx-menu__item--cta > a:hover,
.arx-menu__item--cta > a:focus-visible {
  background: linear-gradient(135deg, #ebdba4 0%, #d0af5f 100%);
}

.arx-submenu {
  top: calc(100% + 12px);
  min-width: 270px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(95, 45, 120, 0.10);
  box-shadow: 0 18px 42px rgba(27, 18, 43, 0.11);
}

.arx-submenu::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--arx-purple), var(--arx-gold));
}

.arx-submenu a {
  border-radius: 12px;
  font-size: 13px;
  color: var(--arx-ink);
}

.arx-submenu a:hover,
.arx-submenu a:focus-visible,
.arx-submenu a.is-active {
  background: rgba(95, 45, 120, 0.08);
  color: var(--arx-purple-deep);
}

@media (max-width: 1280px) {
  .arx-header__container {
    width: min(100% - 28px, 1360px);
  }

  .arx-brand {
    flex-basis: 270px;
    max-width: 270px;
  }

  .arx-brand__title {
    font-size: 17px;
  }

  .arx-menu > li > a,
  .arx-submenu-toggle {
    font-size: 11px;
  }

  .arx-menu > li > a {
    padding: 0 8px;
  }
}

@media (max-width: 1120px) {
  .arx-brand {
    flex-basis: auto;
    max-width: calc(100% - 88px);
  }

  .arx-brand__subtitle {
    display: none;
  }

  .arx-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 700px) {
  .arx-brand__mark {
    width: 104px;
    height: 54px;
    flex-basis: 104px;
    padding: 8px 10px;
  }

  .arx-brand__title {
    font-size: 16px;
  }
}
