.contact-hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  max-height: 980px;
  background: #d8cdbd;
  color: #243831;
  overflow: hidden;
}
.contact-hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  min-height: 760px;
  padding: 32px 7vw 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(36, 56, 49, 0.16);
  padding-bottom: 24px;
  color: rgba(36, 56, 49, 0.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.27em;
}
.contact-hero-top span:first-child {
  color: #bd674f;
}
.contact-hero-heading {
  width: 52%;
  margin-left: 7%;
  margin-top: auto;
  margin-bottom: auto;
}
.contact-hero-kicker {
  display: block;
  margin-bottom: 24px;
  color: #bd674f;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.contact-hero-heading h1 {
  font-family: var(--font-display);
  font-size: clamp(105px, 12vw, 185px);
  font-weight: 500;
  line-height: 0.67;
  letter-spacing: -0.095em;
}
.contact-hero-heading h1 em {
  font-style: italic;
  color: #bd674f;
}
.contact-hero-heading p {
  max-width: 310px;
  margin: 38px 0 0 8px;
  color: rgba(36, 56, 49, 0.58);
  font-size: 9px;
  line-height: 1.9;
}
.contact-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 32px 0 0 8px;
  color: #243831;
  text-decoration: none;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.contact-hero-scroll strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(36, 56, 49, 0.35);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 400;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}
.contact-hero-scroll:hover strong {
  background: #bd674f;
  color: #eee6da;
  border-color: #bd674f;
  transform: translateY(4px);
}
.contact-hero-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(36, 56, 49, 0.16);
  color: rgba(36, 56, 49, 0.36);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.contact-hero-image {
  position: absolute;
  z-index: 2;
  width: 31%;
  height: 67%;
  right: 8%;
  top: 17%;
  overflow: hidden;
  clip-path: polygon(7% 0, 100% 4%, 94% 100%, 0 94%);
  background: #243831;
}
.contact-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(36, 56, 49, 0.05),
    rgba(36, 56, 49, 0.35)
  );
}
.contact-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.contact-hero-image:hover img {
  transform: scale(1.05);
}
.contact-hero-image-label {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(238, 230, 218, 0.76);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.contact-hero-orbit {
  position: absolute;
  z-index: 3;
  width: 360px;
  height: 360px;
  right: 24%;
  top: 8%;
  pointer-events: none;
}
.contact-orbit-ring {
  position: absolute;
  border: 1px solid rgba(189, 103, 79, 0.45);
  border-radius: 50%;
}
.contact-orbit-ring-one {
  inset: 0;
}
.contact-orbit-ring-two {
  inset: 35px;
  border-style: dashed;
  border-color: rgba(36, 56, 49, 0.2);
}
.contact-orbit-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  right: 18px;
  top: 57px;
  background: #bd674f;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(189, 103, 79, 0.12);
}
.contact-orbit-label {
  position: absolute;
  right: -38px;
  top: 175px;
  transform: rotate(90deg);
  transform-origin: center;
  color: rgba(36, 56, 49, 0.38);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.23em;
  white-space: nowrap;
}
@media (max-width: 1150px) {
  .contact-hero-heading {
    width: 55%;
    margin-left: 3%;
  }
  .contact-hero-heading h1 {
    font-size: clamp(90px, 11vw, 145px);
  }
  .contact-hero-image {
    width: 34%;
    right: 6%;
  }
  .contact-hero-orbit {
    right: 22%;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 800px) {
  .contact-hero {
    height: auto;
    min-height: 900px;
    max-height: none;
  }
  .contact-hero-content {
    min-height: 900px;
    padding: 25px 20px;
  }
  .contact-hero-top {
    font-size: 5px;
  }
  .contact-hero-top span:last-child {
    display: none;
  }
  .contact-hero-heading {
    width: 100%;
    margin: 0;
    padding-top: 330px;
  }
  .contact-hero-kicker {
    font-size: 5px;
    margin-bottom: 20px;
  }
  .contact-hero-heading h1 {
    font-size: 86px;
    line-height: 0.7;
  }
  .contact-hero-heading p {
    margin: 28px 0 0 4px;
    max-width: 330px;
    font-size: 8px;
  }
  .contact-hero-scroll {
    margin-left: 4px;
  }
  .contact-hero-image {
    width: 43%;
    height: 285px;
    right: 7%;
    top: 105px;
    clip-path: polygon(5% 0, 100% 5%, 95% 100%, 0 94%);
  }
  .contact-hero-image-label {
    left: 14px;
    right: 14px;
    bottom: 13px;
    font-size: 4px;
  }
  .contact-hero-orbit {
    width: 245px;
    height: 245px;
    right: 24%;
    top: 65px;
  }
  .contact-orbit-label {
    right: -43px;
    font-size: 4px;
  }
  .contact-hero-bottom {
    font-size: 4px;
  }
  .contact-hero-bottom span:last-child {
    display: none;
  }
}
@media (max-width: 500px) {
  .contact-hero {
    min-height: 790px;
  }
  .contact-hero-content {
    min-height: 790px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .contact-hero-heading {
    padding-top: 265px;
  }
  .contact-hero-heading h1 {
    font-size: 65px;
  }
  .contact-hero-heading p {
    max-width: 275px;
    font-size: 7px;
    line-height: 1.8;
    margin-top: 23px;
  }
  .contact-hero-scroll {
    margin-top: 24px;
    font-size: 5px;
  }
  .contact-hero-scroll strong {
    width: 33px;
    height: 33px;
  }
  .contact-hero-image {
    width: 46%;
    height: 225px;
    top: 88px;
    right: 5%;
  }
  .contact-hero-orbit {
    width: 190px;
    height: 190px;
    right: 22%;
    top: 65px;
  }
  .contact-orbit-ring-two {
    inset: 23px;
  }
  .contact-orbit-dot {
    width: 9px;
    height: 9px;
    right: 10px;
    top: 31px;
  }
  .contact-orbit-label {
    right: -53px;
    top: 91px;
  }
  .contact-hero-bottom {
    padding-top: 18px;
  }
}
