/* Header-specific styles building on base.css */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
}

.navbar__brand-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.navbar__brand-tagline {
  font-size: 0.7rem;
  color: var(--color-text-soft);
}

.navbar__nav {
  flex: 1;
}

.navbar__cta-button {
  white-space: nowrap;
}

.navbar__cta-button i {
  font-size: 0.75rem;
}

@media (max-width: 980px) {
  .navbar__nav {
    flex: 0 0 auto;
  }
}

/* When JS marks menu as open */
.navbar__menu--open {
  /* class hook, behavior defined in base.css */
}

/* Utility for visually-hidden focusable text if needed */
.header-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
