/* Prestige mobile chrome — Call + Menu must not collide (≤760px).
   Loaded after hashed index-*.css + /mobile-fix.css. Desktop unchanged. */

.header-call {
  display: none;
}

@media (max-width: 760px) {
  /* header-stack is the sticky containing block for absolute Menu */
  .header-stack {
    position: sticky;
  }

  .site-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 100px !important;
    box-sizing: border-box;
  }

  .site-header > .brand {
    width: min(160px, 42vw);
    flex: 0 1 auto;
    min-width: 0;
  }

  /* Compact one-tap Call — short label only */
  .site-header > .header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
    flex: 0 0 auto;
    min-height: 40px;
    min-width: 52px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--lime, #c8f135);
    color: var(--ink, #0a151c);
    font-size: 0;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    z-index: 2;
    box-shadow: none;
    border: 0;
    position: relative;
  }

  .site-header > .header-call::after {
    content: "Call";
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .site-header > .header-call:focus-visible {
    outline: 2px solid var(--ink, #0a151c);
    outline-offset: 2px;
  }

  .mobile-menu-toggle {
    z-index: 6 !important;
  }
}
