/* 1. Force the menu to always stay visible on desktop */
@media (min-width: 768px) {
  .header-nav__primary {
    display: flex !important;
    justify-content: flex-start !important;
  }

  /* Hide the hamburger button on desktop */
  .header-nav__button {
    display: none !important;
  }
}

/* 2. Make sure the list items don't wrap */
.menu--main {
  display: flex !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

/* Mobile-First: Simplify the Header */
@media (max-width: 768px) {
  /* Hide the long brand text links on mobile */
  .header-utility-links a:not([href^="tel:"]) {
    display: none !important;
  }

  /* Ensure the phone number stays visible and looks clickable */
  .header-utility-links a[href^="tel:"] {
    display: block !important;
    font-weight: bold;
    padding: 5px 10px;
    background: #f0f0f0; /* Optional: adds a 'button' feel */
    border-radius: 5px;
    text-decoration: none;
  }

/* Only apply this when the screen is narrow (mobile) */
@media (max-width: 768px) {
    /* Force your branding block to take up 100% width and stack */
    .your-manual-branding-class {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Hide the hamburger button only on mobile */
    .sticky-header-toggle {
        display: none !important;
    }
}