.global-masthead {
  position: relative;
  z-index: 30;
  width: min(1380px, calc(100% - 2.5rem));
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: #171914;
  box-shadow: 0 0 0 100vmax #171914;
  clip-path: inset(0 -100vmax);
  color: #eee4ca;
  font-family: "Source Serif 4", Georgia, serif;
}

.global-masthead--overlay {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1500px, calc(100% - 5rem));
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(244, 241, 234, 0.18);
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.global-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.global-brand__sigil {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  color: #dec798;
  background: currentColor;
  -webkit-mask: url("/assets/images/logo-lb-rune-master-v2.svg") center / contain no-repeat;
  mask: url("/assets/images/logo-lb-rune-master-v2.svg") center / contain no-repeat;
}

.global-brand__copy { display: grid; }

.global-brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.global-brand small {
  margin-top: 0.12rem;
  color: rgba(238, 228, 202, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.global-nav a {
  padding: 0.2rem 0;
  color: rgba(238, 228, 202, 0.72);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] { color: #fff3d3; }

.global-nav a[aria-current="page"] { border-bottom: 1px solid #b79151; }

.global-brand:focus-visible,
.global-nav a:focus-visible {
  outline: 2px solid #c6a66c;
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .global-masthead,
  .global-masthead--overlay {
    width: min(100% - 1.25rem, 680px);
    min-height: 78px;
    align-items: center;
    gap: 1rem;
  }

  .global-brand__sigil { width: 38px; height: 38px; }
  .global-brand strong { font-size: 1.25rem; }
  .global-brand small { display: none; }
  .global-nav { gap: 0.7rem 1rem; }
  .global-nav a { font-size: 0.61rem; }
}
