/* GE2studio V1.9.6 — mobile hamburger refinement.
   Purpose: restore the right-edge alignment after removal of the header CTA,
   and give the icon enough visual weight on high-density mobile screens. */

@media (max-width: 1100px) {
  .mobile-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .mobile-menu-toggle {
    position: relative;
    top: -1px; /* optical centering against the wordmark */
    width: 46px;
    height: 46px;
    gap: 5px;
    border-color: rgba(244, 240, 232, .20);
  }

  .mobile-menu-toggle .mobile-menu-bar {
    width: 21px;
    height: 2px;
    flex: 0 0 2px;
    border-radius: 999px;
    background: #f4f0e8;
    opacity: .96;
  }
}

/* The old three-column mobile grid reserved a now-empty column for the
   removed header CTA.  Use a true brand + menu layout so the hamburger is
   aligned with the right safe-area edge instead of floating inward. */
@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 12px;
  }

  .navigation-root {
    grid-column: 2;
    justify-self: end;
    width: 46px;
    min-width: 46px;
    margin-left: 0;
  }

  .mobile-navigation,
  .mobile-menu-toggle {
    justify-self: end;
  }
}

@media (max-width: 360px) {
  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .navigation-root {
    width: 44px;
    min-width: 44px;
  }
}
