/* Five-item service-led navigation */
@media (max-width: 1280px) and (min-width: 901px) {
  .topbar { padding-left: 14px; }
  .brand { min-width: 205px; }
  .nav a { padding: 13px 11px; font-size: 8px; }
  .headerCta { padding-left: 14px; gap: 11px; }
}

@media (max-width: 1080px) and (min-width: 901px) {
  .headerCta { display: none; }
  .nav { margin-left: auto; margin-right: 0; }
  .nav a { padding-inline: 14px; }
}

/* Shared navigation states and mobile clarity */
.nav a[aria-current="page"] {
  color: #fff;
  background: rgba(216, 181, 113, .14);
}

.nav a[aria-current="page"]::after {
  width: 3px;
  opacity: 1;
  background: #ddb976;
}

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

@media (max-width: 900px) {
  .brand { min-height: 48px; }
  .nav.open {
    overflow-y: auto;
    max-height: calc(100svh - 94px);
  }
  .nav.open a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }
  .nav.open a::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    margin-right: 12px;
    border-radius: 50%;
    background: rgba(216, 181, 113, .35);
  }
  .nav.open a[aria-current="page"]::before { background: #ddb976; box-shadow: 0 0 12px rgba(221, 185, 118, .5); }
  .menuButton span { transition: transform .25s ease, opacity .25s ease; }
  .menuButton[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menuButton[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  .menuButton span { transition: none; }
}
