
/* Force site width to ~75% of viewport, everywhere */
.max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl, .section-wrap, header .max-w-7xl, footer .max-w-7xl,
main, .container, .wrapper, .page-wrap {
  max-width: 75vw !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Make sure text remains readable on very narrow viewports */
html, body { background: #f8fafc; color: #0f172a; }

/* Mobile menu basic fallback (works with or without Tailwind) */
#mobileMenu { display: none; }
@media (max-width: 767px){
  #mobileMenu.show { display: block; }
  #mobileMenu a { display: block; padding: .5rem 0; }
}
#mobileMenuButton { cursor: pointer; }
