/*
 * DreamyOpt26 — Home-only performance tweaks
 *
 * 1) Reduce below-the-fold render work.
 *    Many home sections are marked with .dreamyhome26-defer.
 *    content-visibility lets the browser skip layout/paint until needed.
 */

@supports (content-visibility: auto) {
  body.dreamyhome26-home .dreamyhome26-defer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}
