/* BLACK EVEREST v3.4 — global 110% scale
   Functional patch 3.4.7.
   Keeps the approved design and proportions, but makes the entire site
   approximately 10% larger on both desktop and mobile. */

html {
  overflow-x: hidden;
}

body {
  zoom: 1.10;
}

/* Prevent accidental horizontal scrolling after the global scale. */
body,
.site-header,
main,
.footer,
.modal {
  max-width: 100%;
}

/* Keep fixed overlays usable at the larger scale. */
.modal__panel {
  max-height: calc(92vh / 1.10);
}

@media (max-width: 767px) {
  /* The approved v3.4 mobile layout remains intact; only its visual scale changes. */
  .nav-wrap.mobile-docked {
    top: max(10px, env(safe-area-inset-top));
  }
}
