*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: visible;
}

.landing-hero-bg {
  position: fixed;
  inset: 0;
  will-change: transform;
  background: url(img/homepage-hero-pic.webp) 100% 0/cover no-repeat;
  z-index: 0;
}
@media (min-width: 1600px) {
  .landing-hero-bg {
    background-image: url(img/entire-image.webp);
    background-position: 100% -7em;
    background-size: cover;
    height: calc(100svh + 7em);
  }
}
@media (max-width: 600px) {
  .landing-hero-bg {
    background-size: auto calc(100svh + 3em);
    background-position: calc(100% + 2em) -3em;
  }
}

.landing-page-content {
  position: relative;
  height: 100%;
  min-height: 680px;
  padding-top: clamp(2em, 4vh, 7em);
  padding-bottom: clamp(2em, 4vh, 7em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2em, 8vh, 9em);
  margin: auto 0 0 8%;
  color: #fff;
  z-index: 2;
}
@media (max-width: 600px) {
  .landing-page-content {
    gap: 2em;
  }
}
.landing-page-content .logo img {
  position: relative;
  width: clamp(12rem, 25vw, 18rem);
  object-fit: contain;
}
.landing-page-content h1 {
  font-size: clamp(2.125rem, 5vw, 3.625rem);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.landing-page-content h2 {
  font-size: clamp(1rem, 2vw, 1.4125em);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: clamp(0.125rem, 0.3vw, 0.225em);
  line-height: 1.625;
}
.landing-page-content h2 br {
  display: none;
}
@media (max-width: 960px) {
  .landing-page-content h2 br {
    display: block;
  }
}

.landing-page-contact-info {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.landing-page-contact-info h3 {
  margin-bottom: clamp(2em, 3vh, 3em);
  font-size: clamp(1.275rem, 2.25vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.landing-page-contact-names {
  display: flex;
}
@media (max-width: 767px) {
  .landing-page-contact-names {
    flex-direction: column;
  }
}

.landing-page-contact-name {
  margin-right: 2em;
  padding-right: 2em;
}
@media (max-width: 767px) {
  .landing-page-contact-name {
    margin-bottom: 2em;
  }
}
.landing-page-contact-name:not(:last-child) {
  border-right: 1px solid #fff;
}
@media (max-width: 767px) {
  .landing-page-contact-name:not(:last-child) {
    border-right: none;
  }
}
.landing-page-contact-name p {
  font-weight: 300;
  line-height: 1.325;
  font-size: clamp(1rem, 2vw, 1.5rem);
}
.landing-page-contact-name p a {
  text-decoration: none;
  color: #fff;
}
.landing-page-contact-name p a:hover {
  text-decoration: underline;
}
.landing-page-contact-name p span.bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}

.gradient-overlay-left {
  position: fixed;
  inset: 0 auto 0 -4em;
  width: clamp(60%, 50vw, 80%);
  will-change: transform;
  background: linear-gradient(to right, #231f20, transparent);
  mix-blend-mode: multiply;
  z-index: 1;
}
@media (max-width: 600px) {
  .gradient-overlay-left {
    inset: 0 auto 0 0;
  }
}

.gradient-overlay-bottom {
  position: fixed;
  left: 0;
  bottom: -5em;
  right: 0;
  height: 50%;
  will-change: transform;
  background: linear-gradient(to top, #231f20, transparent);
  mix-blend-mode: multiply;
  z-index: 1;
}
