/* Ella Construction Group – Mobile Patch v1 */
:root {
  /* no color overrides here; only layout safety */
}
/* Prevent side-scroll caused by 100vw/negative margins */
html, body { overflow-x: clip; box-sizing: border-box; }
/* Media that might overflow */
img, svg, video, canvas { max-width: 100%; height: auto; }
/* Ensure the mobile menu is truly hidden by default */
.mobile-nav[hidden] { display: none !important; }
/* Improve tap targets for the hamburger */
.mobile-toggle { touch-action: manipulation; }
/* Optional: avoid iOS notch overlap when using viewport-fit=cover */
body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
/* Keep header above menu */
.site-header { position: sticky; top: 0; z-index: 1000; }
