/* Home page extras
   A bright (not dark) photo behind every section, kept light enough that
   the original dark text still reads clearly — visible background
   everywhere without the page turning into a dark/moody theme. */

#work {
  padding-block: clamp(72px, 10vw, 128px);
  position: relative;
  background:
    linear-gradient(rgba(248,250,255,0.5), rgba(248,250,255,0.68)),
    var(--wr-img-home-work) center / cover no-repeat;
  background-attachment: fixed;
}

#services {
  position: relative;
  background:
    linear-gradient(rgba(238,242,255,0.55), rgba(238,242,255,0.7)),
    var(--wr-img-home-services) center / cover no-repeat;
  background-attachment: fixed;
}

#services .service-item {
  padding-block: 1.2rem;
}

@media (max-width: 900px) {
  #work, #services { background-attachment: scroll; }
}
