/* Mobile Performance Boost - Force font-display: swap on ALL fonts */
@font-face {
  font-display: swap;
}

/* Ensure all images have aspect ratio reserved */
img {
  height: auto;
  max-width: 100%;
}

img[width][height] {
  aspect-ratio: attr(width) / attr(height);
}

/* Reserve space for iframes to prevent CLS */
iframe {
  min-height: 400px;
}

/* Optimize Google Maps embed */
.elementor-widget-google_maps iframe,
iframe[src*='google.com/maps'] {
  min-height: 400px;
  width: 100%;
}

/* Lazy load optimization hint */
img[loading='lazy'],
iframe[loading='lazy'] {
  content-visibility: auto;
}
