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

.gblh-header {
  --gblh-bg: #040504;
  --gblh-panel: #0d0d0b;
  --gblh-gold: #d4af37;
  --gblh-gold-light: #f4d77c;
  --gblh-text: #f4efe3;
  --gblh-muted: #bcb4a5;
  --gblh-border: rgba(212, 175, 55, 0.28);
  --gblh-menu-gap: 30px;
  position: relative;
  z-index: 999;
  width: 100%;
  color: var(--gblh-text);
  background:
    radial-gradient(circle at 84% -60%, rgba(212, 175, 55, 0.12), transparent 45%),
    radial-gradient(circle at 10% 145%, rgba(212, 175, 55, 0.08), transparent 42%),
    linear-gradient(105deg, #020302 0%, var(--gblh-bg) 48%, #020302 100%);
  border-bottom: 1px solid var(--gblh-border);
  isolation: isolate;
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.gblh-header.gblh-mode-glass {
  background: linear-gradient(180deg, rgba(3, 4, 3, 0.82), rgba(3, 4, 3, 0.66));
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.gblh-header.gblh-mode-glass.is-scrolled {
  background: rgba(3, 4, 3, 0.94);
}

.gblh-is-sticky {
  position: sticky;
  top: 0;
}

body.admin-bar .gblh-is-sticky {
  top: 32px;
}

.gblh-header.is-scrolled {
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.gblh-cosmos {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.42;
}

.gblh-cosmos::before,
.gblh-cosmos::after {
  content: "";
  position: absolute;
  inset: 0;
}

.gblh-cosmos::before {
  background-image:
    radial-gradient(circle, rgba(244, 215, 124, 0.52) 0 0.65px, transparent 0.8px),
    radial-gradient(circle, rgba(212, 175, 55, 0.28) 0 0.6px, transparent 0.85px);
  background-position: 0 0, 17px 12px;
  background-size: 36px 36px, 52px 52px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.gblh-cosmos::after {
  left: 64%;
  width: 240px;
  height: 240px;
  margin-top: -118px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(212, 175, 55, 0.018),
    0 0 0 50px rgba(212, 175, 55, 0.012);
}

.gblh-frequency-bar {
  min-height: 28px;
  max-height: 28px;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(0, 0, 0, 0.14);
  transition: min-height 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.gblh-frequency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  max-width: 1180px;
  min-height: 28px;
  margin-inline: auto;
  gap: 15px;
}

.gblh-frequency-line {
  position: relative;
  display: block;
  width: min(108px, 12vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.72));
}

.gblh-frequency-line:last-child {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.72), transparent);
}

.gblh-frequency-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 5px;
  height: 5px;
  background: var(--gblh-bg);
  border: 1px solid var(--gblh-gold);
  transform: translateY(-50%) rotate(45deg);
}

.gblh-frequency-line:last-child::after {
  right: auto;
  left: -3px;
}

.gblh-frequency-text {
  color: var(--gblh-gold-light);
  font-family: Inter, Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.27em;
  text-align: center;
  white-space: nowrap;
}

.gblh-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 1180px;
  min-height: 78px;
  margin-inline: auto;
  gap: clamp(18px, 2.4vw, 38px);
  padding: 13px 20px;
  transition: min-height 220ms ease, padding 220ms ease;
}

.gblh-header[data-shrink="true"].is-scrolled .gblh-frequency-bar {
  min-height: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
}

.gblh-header[data-shrink="true"].is-scrolled .gblh-frequency-bar__inner {
  min-height: 0;
}

.gblh-header[data-shrink="true"].is-scrolled .gblh-inner {
  min-height: 66px;
}

.gblh-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  color: var(--gblh-text);
  text-decoration: none;
}

.gblh-brand:hover,
.gblh-brand:focus {
  color: var(--gblh-text);
}

.gblh-brand img {
  display: block;
  width: 180px;
  max-width: min(38vw, 100%);
  height: auto;
  object-fit: contain;
}

.gblh-brand-sigil {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  margin-right: 13px;
  color: var(--gblh-gold);
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.12));
}

.gblh-brand-sigil::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.13), transparent 68%);
}

.gblh-brand-sigil svg {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 0.85;
  opacity: 0.92;
  transition: transform 500ms ease, filter 250ms ease;
}

.gblh-brand-sigil .gblh-sigil-core {
  fill: var(--gblh-gold-light);
  stroke: none;
}

.gblh-brand:hover .gblh-brand-sigil svg {
  transform: rotate(45deg);
  filter: drop-shadow(0 0 7px rgba(244, 215, 124, 0.38));
}

.gblh-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1;
}

.gblh-brand-title {
  color: var(--gblh-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.1);
}

.gblh-brand-subtitle {
  margin-top: 7px;
  color: var(--gblh-muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.245em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gblh-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.gblh-menu,
.gblh-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gblh-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--gblh-menu-gap);
}

.gblh-menu li {
  position: relative;
}

.gblh-menu > li {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.gblh-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--gblh-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.gblh-menu > li.menu-item-has-children > a {
  color: var(--gblh-text);
}

.gblh-menu > li > a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--gblh-gold-light);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px rgba(244, 215, 124, 0.72);
  transform: translate(-50%, -4px) scale(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gblh-menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gblh-gold), transparent);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.gblh-menu > li:hover > a,
.gblh-menu > li.is-submenu-open > a,
.gblh-menu > li.current-menu-item > a,
.gblh-menu > li:focus-within > a {
  color: var(--gblh-gold-light);
}

.gblh-menu > li:hover > a::before,
.gblh-menu > li.is-submenu-open > a::before,
.gblh-menu > li.current-menu-item > a::before,
.gblh-menu > li:focus-within > a::before {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.gblh-menu > li:hover > a::after,
.gblh-menu > li.is-submenu-open > a::after,
.gblh-menu > li.current-menu-item > a::after,
.gblh-menu > li:focus-within > a::after {
  width: calc(100% + 10px);
}

.gblh-menu > .gblh-logout-menu-item > a {
  color: var(--gblh-gold-light);
}

.gblh-menu--account-only {
  justify-content: flex-end;
}

.gblh-submenu-toggle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 27px;
  height: 38px;
  margin: 0 -8px 0 1px;
  padding: 0;
  color: var(--gblh-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.gblh-submenu-toggle svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease, color 180ms ease;
}

.gblh-menu li.is-submenu-open > .gblh-submenu-toggle svg,
.gblh-menu li:focus-within > .gblh-submenu-toggle svg {
  color: var(--gblh-gold-light);
  transform: rotate(180deg);
}

.gblh-menu .sub-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 13px);
  left: -24px;
  min-width: 290px;
  padding: 16px 12px 12px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 42%),
    var(--gblh-panel);
  border: 1px solid var(--gblh-border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(244, 215, 124, 0.05);
  transition: opacity 190ms ease, transform 190ms ease, visibility 190ms ease;
}

.gblh-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.gblh-menu .sub-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, var(--gblh-gold-light), transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.18);
}

.gblh-menu li.is-submenu-open > .sub-menu,
.gblh-header:not(.gblh-mobile) .gblh-menu li:hover > .sub-menu,
.gblh-header:not(.gblh-mobile) .gblh-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gblh-menu .sub-menu > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 46px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

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

.gblh-menu .sub-menu > li::before {
  content: none !important;
  display: none !important;
}

.gblh-menu .sub-menu a {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 45px;
  padding: 10px 8px;
  color: var(--gblh-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.gblh-menu .sub-menu a::after {
  content: "";
  position: absolute;
  right: 5px;
  width: 15px;
  height: 1px;
  background: var(--gblh-gold);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gblh-menu .sub-menu a:hover,
.gblh-menu .sub-menu .current-menu-item > a,
.gblh-menu .sub-menu .current-menu-ancestor > a {
  color: var(--gblh-gold-light);
  transform: translateX(3px);
}

.gblh-menu .sub-menu a:hover::after,
.gblh-menu .sub-menu .current-menu-item > a::after,
.gblh-menu .sub-menu .current-menu-ancestor > a::after {
  opacity: 0.72;
  transform: translateX(0);
}

.gblh-menu .sub-menu .gblh-submenu-toggle {
  width: 34px;
  height: 44px;
  margin: 0;
}

.gblh-menu .sub-menu .gblh-submenu-toggle svg {
  transform: rotate(-90deg);
}

.gblh-menu .sub-menu li.is-submenu-open > .gblh-submenu-toggle svg,
.gblh-menu .sub-menu li:focus-within > .gblh-submenu-toggle svg {
  transform: rotate(90deg);
}

.gblh-menu .sub-menu .sub-menu {
  top: -12px;
  left: calc(100% + 12px);
}

.gblh-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 43px;
  padding: 11px 18px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid var(--gblh-gold);
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.gblh-cta:visited {
  color: #ffffff;
}

.gblh-cta::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
}

.gblh-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(244, 215, 124, 0.25) 47%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.gblh-cta-label {
  position: relative;
  color: #ffffff;
  z-index: 1;
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.gblh-cta-orb {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-left: 12px;
  color: #090a08;
  background: linear-gradient(135deg, #a87416, var(--gblh-gold-light), var(--gblh-gold));
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.16);
}

.gblh-cta-orb svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.gblh-cta:hover,
.gblh-cta:focus {
  color: #ffffff;
  background: var(--gblh-gold);
  box-shadow: 0 0 34px rgba(212, 175, 55, 0.16);
  transform: translateY(-2px);
}

.gblh-cta:hover::after,
.gblh-cta:focus::after {
  transform: translateX(130%);
}

.gblh-cta:hover .gblh-cta-orb svg,
.gblh-cta:focus .gblh-cta-orb svg {
  transform: translate(1px, -1px);
}

.gblh-menu-toggle,
.gblh-cta-mobile {
  display: none;
}

.gblh-quote-bar {
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background:
    linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.025) 25%, rgba(212, 175, 55, 0.04) 50%, rgba(212, 175, 55, 0.025) 75%, transparent),
    rgba(0, 0, 0, 0.12);
}

.gblh-quote-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  max-width: 1180px;
  min-height: 38px;
  margin-inline: auto;
  padding: 7px 20px 8px;
  gap: 11px;
  text-align: center;
  transition: min-height 220ms ease, padding 220ms ease;
}

.gblh-quote-mark {
  flex: 0 0 auto;
  color: var(--gblh-gold);
  font-size: 8px;
  line-height: 1;
  opacity: 0.72;
  filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.28));
}

.gblh-quote-mark--end {
  opacity: 0.4;
}

.gblh-quote-label {
  flex: 0 0 auto;
  color: var(--gblh-gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 7px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gblh-quote-divider {
  flex: 0 0 24px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.7), rgba(212, 175, 55, 0.12));
}

.gblh-quote-text {
  display: -webkit-box;
  min-width: 0;
  max-width: 760px;
  overflow: hidden;
  color: #e8decc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.025em;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gblh-quotes-data {
  display: none !important;
}

.gblh-header[data-shrink="true"].is-scrolled .gblh-quote-bar__inner {
  min-height: 32px;
  padding-block: 5px 6px;
}

.gblh-header[data-shrink="true"].is-scrolled .gblh-quote-text {
  font-size: 11px;
}

.gblh-sacred-rule {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.28) 18%, rgba(212, 175, 55, 0.1) 50%, rgba(212, 175, 55, 0.28) 82%, transparent 100%);
}

.gblh-sacred-rule span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gblh-bg);
  border: 1px solid var(--gblh-gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.2);
  transform: translate(-50%, -50%) rotate(45deg);
}

.gblh-empty-menu {
  width: 100%;
  padding: 13px 18px;
  color: var(--gblh-muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  text-align: center;
  border: 1px dashed var(--gblh-border);
}

.gblh-brand:focus-visible,
.gblh-menu a:focus-visible,
.gblh-submenu-toggle:focus-visible,
.gblh-menu-toggle:focus-visible,
.gblh-cta:focus-visible {
  outline: 2px solid var(--gblh-gold-light);
  outline-offset: 4px;
}

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

/* Prevent a desktop-menu flash before JavaScript applies the selected breakpoint. */
@media (max-width: 1200px) {
  .gblh-bp-1200 .gblh-inner { flex-wrap: wrap; }
  .gblh-bp-1200 .gblh-menu-toggle { display: inline-flex; }
  .gblh-bp-1200 .gblh-nav { display: none; }
  .gblh-bp-1200 .gblh-nav.is-open { display: block; }
  .gblh-bp-1200 .gblh-cta-desktop { display: none; }
  .gblh-bp-1200 .gblh-cta-mobile { display: inline-flex; }
}

@media (max-width: 1024px) {
  .gblh-bp-1024 .gblh-inner { flex-wrap: wrap; }
  .gblh-bp-1024 .gblh-menu-toggle { display: inline-flex; }
  .gblh-bp-1024 .gblh-nav { display: none; }
  .gblh-bp-1024 .gblh-nav.is-open { display: block; }
  .gblh-bp-1024 .gblh-cta-desktop { display: none; }
  .gblh-bp-1024 .gblh-cta-mobile { display: inline-flex; }
}

@media (max-width: 767px) {
  body.admin-bar .gblh-is-sticky { top: 46px; }
  .gblh-bp-767 .gblh-inner { flex-wrap: wrap; }
  .gblh-bp-767 .gblh-menu-toggle { display: inline-flex; }
  .gblh-bp-767 .gblh-nav { display: none; }
  .gblh-bp-767 .gblh-nav.is-open { display: block; }
  .gblh-bp-767 .gblh-cta-desktop { display: none; }
  .gblh-bp-767 .gblh-cta-mobile { display: inline-flex; }
}

.gblh-header.gblh-mobile .gblh-frequency-bar {
  display: none;
}

.gblh-header.gblh-mobile .gblh-inner {
  flex-wrap: wrap;
  width: calc(100% - 24px);
  min-height: 70px;
  padding-block: 10px;
}

.gblh-header.gblh-mobile .gblh-brand {
  margin-right: auto;
}

.gblh-header.gblh-mobile .gblh-brand-sigil {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.gblh-header.gblh-mobile .gblh-brand-sigil svg {
  width: 40px;
  height: 40px;
}

.gblh-header.gblh-mobile .gblh-brand-title {
  font-size: 17px;
}

.gblh-header.gblh-mobile .gblh-menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 74px;
  height: 43px;
  margin-left: auto;
  padding: 0 11px;
  color: var(--gblh-text);
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--gblh-border);
  cursor: pointer;
}

.gblh-header.gblh-mobile .gblh-menu-toggle::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  pointer-events: none;
}

.gblh-menu-toggle__label {
  margin-right: 9px;
  color: var(--gblh-gold-light);
  font-family: Inter, Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gblh-menu-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.gblh-menu-toggle__icon i {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.gblh-menu-toggle__icon i:nth-child(2) {
  width: 12px;
  margin-left: auto;
}

.gblh-header.gblh-mobile .gblh-menu-toggle.is-active .gblh-menu-toggle__icon i:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.gblh-header.gblh-mobile .gblh-menu-toggle.is-active .gblh-menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.gblh-header.gblh-mobile .gblh-menu-toggle.is-active .gblh-menu-toggle__icon i:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.gblh-header.gblh-mobile .gblh-nav {
  position: absolute;
  z-index: 60;
  top: calc(100% + 1px);
  left: 50%;
  display: none;
  order: 10;
  width: min(calc(100vw - 24px), 680px);
  max-height: calc(100vh - 104px);
  margin: 0;
  padding: 13px;
  overflow-y: auto;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 88% 0%, rgba(212, 175, 55, 0.1), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.02), transparent 42%),
    var(--gblh-panel);
  border: 1px solid var(--gblh-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.68);
}

.gblh-header.gblh-mobile .gblh-nav::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.gblh-header.gblh-mobile .gblh-nav.is-open {
  display: block;
  animation: gblh-panel-in 200ms ease both;
}

@keyframes gblh-panel-in {
  from { opacity: 0; transform: translate(-50%, -7px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.gblh-header.gblh-mobile .gblh-menu {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.gblh-header.gblh-mobile .gblh-menu > li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 56px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.13);
}

.gblh-header.gblh-mobile .gblh-menu > li:last-child {
  border-bottom: 0;
}

.gblh-header.gblh-mobile .gblh-menu > li::before {
  content: none !important;
  display: none !important;
}

.gblh-header.gblh-mobile .gblh-menu li > a {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 55px;
  padding: 12px 8px;
}

.gblh-header.gblh-mobile .gblh-menu > li > a {
  color: var(--gblh-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.gblh-header.gblh-mobile .gblh-menu > .gblh-logout-menu-item > a {
  color: var(--gblh-gold-light);
}

.gblh-header.gblh-mobile .gblh-menu > li > a::before,
.gblh-header.gblh-mobile .gblh-menu > li > a::after {
  display: none;
}

.gblh-header.gblh-mobile .gblh-submenu-toggle {
  flex: 0 0 49px;
  width: 49px;
  height: 55px;
  margin: 0;
  border-left: 1px solid rgba(212, 175, 55, 0.13);
}

.gblh-header.gblh-mobile .gblh-menu .sub-menu {
  position: static;
  display: block;
  flex: 1 0 100%;
  min-width: 100% !important;
  max-height: 0;
  padding: 0 10px 0 22px;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.22);
  border: 0;
  border-left: 1px solid transparent;
  box-shadow: none;
  transition: max-height 280ms ease, padding 280ms ease, border-color 280ms ease;
}

.gblh-header.gblh-mobile .gblh-menu .sub-menu::before,
.gblh-header.gblh-mobile .gblh-menu .sub-menu::after {
  display: none;
}

.gblh-header.gblh-mobile .gblh-menu li.is-submenu-open > .sub-menu {
  max-height: 1600px;
  padding-top: 7px;
  padding-bottom: 7px;
  pointer-events: auto;
  border-left-color: var(--gblh-gold);
}

.gblh-header.gblh-mobile .gblh-menu .sub-menu > li {
  min-height: 44px;
}

.gblh-header.gblh-mobile .gblh-menu .sub-menu > li::before {
  content: none !important;
  display: none !important;
}

.gblh-header.gblh-mobile .gblh-menu .sub-menu a {
  min-height: 44px;
  padding: 9px 6px;
}

.gblh-header.gblh-mobile .gblh-menu .sub-menu .gblh-submenu-toggle {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.gblh-header.gblh-mobile .gblh-menu .sub-menu .gblh-submenu-toggle svg {
  transform: none;
}

.gblh-header.gblh-mobile .gblh-menu .sub-menu li.is-submenu-open > .gblh-submenu-toggle svg {
  transform: rotate(180deg);
}

.gblh-header.gblh-mobile .gblh-cta-desktop {
  display: none;
}

.gblh-header.gblh-mobile .gblh-cta-mobile {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 100%;
  margin-top: 14px;
}

.gblh-header.gblh-mobile .gblh-quote-bar__inner {
  width: calc(100% - 20px);
  min-height: 44px;
  padding: 7px 4px 8px;
  gap: 8px;
}

.gblh-header.gblh-mobile .gblh-quote-label {
  font-size: 6px;
  letter-spacing: 0.16em;
}

.gblh-header.gblh-mobile .gblh-quote-divider {
  flex-basis: 14px;
  width: 14px;
}

.gblh-header.gblh-mobile .gblh-quote-text {
  max-width: none;
  font-size: 11px;
  line-height: 1.38;
  -webkit-line-clamp: 2;
}

@media (max-width: 600px) {
  .gblh-header.gblh-mobile .gblh-quote-label,
  .gblh-header.gblh-mobile .gblh-quote-divider,
  .gblh-header.gblh-mobile .gblh-quote-mark--end {
    display: none;
  }

  .gblh-header.gblh-mobile .gblh-quote-bar__inner {
    justify-content: flex-start;
    width: calc(100% - 16px);
    min-height: 46px;
    padding-inline: 8px;
    text-align: left;
  }

  .gblh-header.gblh-mobile .gblh-quote-mark {
    margin-top: 4px;
  }

  .gblh-header.gblh-mobile .gblh-quote-text {
    font-size: 10.5px;
  }
  .gblh-header.gblh-mobile .gblh-inner {
    width: calc(100% - 16px);
    padding-inline: 4px;
  }

  .gblh-brand-title {
    font-size: 15px !important;
    letter-spacing: 0.055em;
  }

  .gblh-brand-subtitle {
    max-width: 180px;
    overflow: hidden;
    font-size: 6px;
    letter-spacing: 0.19em;
    text-overflow: ellipsis;
  }

  .gblh-header.gblh-mobile .gblh-brand-sigil {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }

  .gblh-header.gblh-mobile .gblh-brand-sigil svg {
    width: 36px;
    height: 36px;
  }

  .gblh-header.gblh-mobile .gblh-menu-toggle {
    min-width: 65px;
    height: 40px;
    padding-inline: 9px;
  }

  .gblh-menu-toggle__label {
    display: none;
  }

  .gblh-header.gblh-mobile .gblh-nav {
    width: calc(100vw - 16px);
    padding: 10px;
  }
}

@media (max-width: 390px) {
  .gblh-brand-subtitle {
    display: none;
  }

  .gblh-brand-title {
    font-size: 14px !important;
  }
}
