/* Mobile-only brand centering. Desktop untouched. */
@media (max-width: 768px) {
  header.nav-glass { position: relative; min-height: 64px; }

  /* Center the brand whether or not a wrapper exists */
  header.nav-glass .brand-wrapper,
  header.nav-glass .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  /* Keep menu label and CTA tappable above the centered brand */
  header.nav-glass .mnav-btn,
  header.nav-glass .nav-right,
  header.nav-glass .book,
  header.nav-glass .book-pill,
  header.nav-glass .cta {
    position: relative;
    z-index: 2;
  }

  /* Make sure the row has height so absolute brand has room */
  header.nav-glass .nav-row,
  header.nav-glass .nav-inner {
    min-height: 64px;
    align-items: center;
  }
}
