/* Hero photographs are real image elements for reliable Aruba rendering. */
.hero {
  background-image: none !important;
  isolation: isolate;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg,rgba(38,32,27,.52) 0%,rgba(38,32,27,.24) 50%,rgba(38,32,27,.04) 82%),
    linear-gradient(0deg,rgba(38,32,27,.30),transparent 58%);
}

.hero .hero-copy { z-index: 2; }
.about-hero .hero-background { object-position: center 24%; }
.contact-hero .hero-background { object-position: center 42%; }

@media (max-width: 650px) {
  .hero .hero-overlay {
    background:
      linear-gradient(90deg,rgba(38,32,27,.57),rgba(38,32,27,.16)),
      linear-gradient(0deg,rgba(38,32,27,.32),transparent 62%);
  }

.hero {
  background-color: #261d18;
  overflow: hidden;
}

.hero .hero-background {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
}