.btn-primary {
  background-color: #8B5E3C;
  border-color: #8B5E3C;
}

.btn-primary:hover {
  background-color: #D8A98A;
  border-color: #D8A98A;
}

.services-hero {
  height: 70vh;
  background:  var(--hero-desktop) center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center; /* vertical middle */
}
.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
@media (max-width: 767px) {
  .services-hero {
    background:  var(--hero-mobile) center/cover no-repeat;
  }
	.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(256,256,256,0.45);
}
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: left;
}
h2 {
	font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
}
