.lsh-hero {
  position:relative;
  background:none;

  /* min:15px - max:150px */
  --lsh-offset:clamp(1.5rem, -22.5rem + 31.25vw, 15rem);
}

.lsh-hero:before {
  content: "";
  position: absolute;
  top:0;
  right:0;
  width:100%;
  height:500px;
  background-image:var(--lsh-bg);
  background-size:cover;
  background-position:top center;
  background-repeat:no-repeat;
  z-index:0;
}

.lsh-hero > * {
  position:relative;
  z-index:1;
}

@media (min-width: 768px) {
  .lsh-hero:before {
    background-size:100%;
    height:100%;
    background-position:top right;
  }
}

.lsh-hero .lsh-text-container {
  padding-top:45px;
  margin:0 var(--lsh-offset) 45px var(--lsh-offset);
}

@media (min-width: 768px) {
  .lsh-hero .lsh-text-container {
    padding-top:130px;
    margin:0 var(--lsh-offset) 130px var(--lsh-offset);
  }
}

.lsh-hero .lsh-text-container .lsh-heading {
  font-family:var(--text-display-alt);
  display:inline-block;
  font-weight:900;
  -webkit-text-stroke-width:unset;
  -webkit-text-stroke-color:unset;
  -webkit-text-fill-color:#D9D9D9;
  text-transform:uppercase;
  transition:var(--transition-default);
}

.lsh-hero.single-image .lsh-text-container .lsh-heading {
  /* min:50px max:150px */
  font-size:clamp(5rem, -13.667rem + 24.306vw, 15.5rem);
  line-height:1;
}

.lsh-hero.multiple-images .lsh-text-container .lsh-heading {
  /* min:50px max:115px */
  font-size:clamp(5rem, -6.556rem + 15.046vw, 11.5rem);
  letter-spacing:1%;
  line-height:1;
}

@media (min-width: 992px) {
  .lsh-hero .lsh-text-container .lsh-heading {
    -webkit-text-stroke-width:3px;
    -webkit-text-stroke-color:var(--white);
    -webkit-text-fill-color:transparent;
  }
}

.lsh-hero .lsh-text-container .lsh-heading:hover {
  -webkit-text-fill-color:#D9D9D9;
}

@media (min-width: 992px) {
  .lsh-hero .lsh-text-container .lsh-heading:hover {
    -webkit-text-fill-color:var(--white);
  }
}

.lsh-hero .lsh-text-container .lsh-subheading {
  display:block;
  color:var(--web-marigold);
  font-family:var(--text-sans);
  font-size:clamp(1.6rem, -1.244rem + 3.704vw, 3.2rem);
  font-weight:900;
  letter-spacing:6%;
  margin-bottom:40px;
  margin-top:-10px;
  line-height:34px;
  text-transform:uppercase;
}

.lsh-hero .lsh-text-container .lsh-cta {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:15px;
}

@media (min-width: 768px) {
  .lsh-hero .lsh-text-container .lsh-cta {
    flex-direction:row;
    flex-wrap:wrap;
  }
}

.lsh-hero .lsh-text-container .lsh-cta .button {
  background:transparent;
  color:var(--white);
  border:2px solid var(--white);
  margin-right:0;
  margin-left:0;
  margin-bottom:0;
  padding:.3em 45px;
  width:auto;
  display:inline-flex;
}

.lsh-hero .lsh-text-container .lsh-cta .button:hover {
  background:var(--white);
  color:var(--cutler);
}

/* images */
.lsh-hero .lsh-images-container {
  position:relative;
}

/* single image */
.lsh-hero.single-image .lsh-images-container .lsh-hero-image {
  display:flex;
  width:100%;
  justify-content:center;
  padding-left:15px;
  padding-right:15px;
}

@media (min-width: 1007px) {
  .lsh-hero.single-image .lsh-images-container .lsh-hero-image {
    justify-content:right;
    padding-left:0;
    padding-right:0;
  }
}

.lsh-hero.single-image .lsh-images-container .lsh-hero-image img {
  width:100%;
  height:auto;
  aspect-ratio:16 / 9;
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  box-shadow:0 0 55px 15px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1007px) {
  .lsh-hero.single-image .lsh-images-container .lsh-hero-image img {
    width:75%;
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
    border-top-right-radius:0;
    border-bottom-right-radius:0;
  }
}

/* multiple images */
.lsh-hero.multiple-images .lsh-images-container .lsh-hero-images {
  position:relative;
  width:calc(100% - (var(--lsh-offset) * 2));
  margin: 0 auto;
  aspect-ratio:16 / 9;
  background:var(--under-the-elms);
  box-shadow:0 0 55px 15px rgba(0, 0, 0, 0.25);
  border-radius:10px;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-images .lsh-hero-image-container {
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  border-radius:10px;
  overflow:hidden;
  transition:opacity 500ms ease, visibility 0s linear 500ms;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-images .lsh-hero-image-container:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 39.5%, rgba(0,0,0,0.7) 100%);
  z-index:3;
  pointer-events:none;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-images .lsh-hero-image-container:is(.active, .is-exiting) {
  visibility:visible;
  transition:opacity 500ms ease, visibility 0s linear 0s;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-images .lsh-hero-image-container.active {
  opacity:1;
  z-index:2;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-images .lsh-hero-image-container.is-exiting {
  opacity:0;
  z-index:1;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-images .lsh-hero-image-container img {
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  object-position:center;
  border-radius:10px;
  box-shadow:0 0 55px 15px rgba(0, 0, 0, 0.25);
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-buttons {
  display:flex;
  width:100%;
  justify-content:center;
  gap:10px;
  position:absolute;
  bottom:30px;
  z-index:3;
}

@media (min-width: 768px) {
  .lsh-hero.multiple-images .lsh-images-container .lsh-hero-buttons {
    bottom:45px;
  }
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-buttons button {
  height:50px;
  width:50px;
  transition:var(--transition-default);
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-buttons button:after {
  content:"";
  display:block;
  height:5px;
  width:50px;
  background-color:var(--white);
  opacity:.5;
  transition:var(--transition-default);
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-buttons button:hover {
  opacity:1;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-buttons button:focus {
  outline:2px solid #85b7d1;
  opacity:1;
  outline-offset:2px;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-hero-buttons button.active:after {
  background-color:var(--moss);
  opacity:1;
}

/* badges */
.lsh-hero .lsh-images-container .lsh-badge-container {
  z-index:99;
}

.lsh-hero.multiple-images .lsh-images-container .lsh-badge-container {
  position:relative;
}

.lsh-hero.single-image .lsh-images-container .lsh-badge-container {
  position:absolute;
  width:clamp(15rem, -48.111rem + 82.176vw, 50.5rem);
  height:clamp(15rem, -48.111rem + 82.176vw, 50.5rem);
}

.lsh-hero.single-image .lsh-images-container .lsh-badge-container {
  left:30px;
  top:clamp(7.5rem, calc(-15.87rem + 58.424vw), 29rem);
}

@media (min-width: 768px) {
  .lsh-hero.single-image .lsh-images-container .lsh-badge-container {
    top:clamp(26rem, calc(42.854rem - 16.736vw), 30rem);
  }
}

@media (min-width: 1007px) {
  .lsh-hero.single-image .lsh-images-container .lsh-badge-container {
    top:0;
  }
}

.lsh-hero .lsh-images-container .lsh-badge-container .lsh-badge {
  position:absolute;
  /* max:505px - min:150px  */
  width:clamp(15rem, -48.111rem + 82.176vw, 50.5rem);
  height:clamp(15rem, -48.111rem + 82.176vw, 50.5rem);
}

.lsh-hero.multiple-images .lsh-images-container .lsh-badge-container .lsh-badge {
  top:clamp(-25rem, calc(23.611rem - 40.509vw), -4rem);
  right:30px;
}

.lsh-hero .lsh-images-container .lsh-badge-container .lsh-badge img {
  width:100%;
  height:auto;
}

.lsh-hero .lsh-images-container .lsh-badge-container .lsh-badge:first-of-type img {
  transform:rotate(15deg);
}

@keyframes badgeRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes badgeRotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

.lsh-hero .lsh-images-container .lsh-badge-container .lsh-badge:last-of-type img {
  animation-name:badgeRotate;
  animation-duration:40s;
  animation-iteration-count:infinite;
  animation-timing-function:linear;
}

/* icons */
.lsh-hero .lsh-images-container .lsh-icon-image {
  position:absolute;
  /* max:-60 - min:-40 */
  top:clamp(-6rem, calc(-0.278rem - 4.63vw), -4rem);
  /* max:120 - min:45 */
  right:clamp(4.5rem, -8.833rem + 17.361vw, 12rem);
  /* max:150 - min:75 */
  width:clamp(7.5rem, -5.833rem + 17.361vw, 15rem);
  height:auto;
}

.lsh-hero .lsh-images-container .lsh-icon-image img {
  width:100%;
  height:auto;
}
