@keyframes contact-us-reveal-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.contact-us {
  opacity: 0;
}

.contact-us.is-revealed {
  animation: contact-us-reveal-up 850ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.contact-us {
  width: 100%;
  background: #ffffff;
  color: #141414;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
  padding-top: 76px;
}

.contact-us__inner {
  max-width: 1380px;
  margin: 0 auto;
}

.contact-us__form-note {
  /* margin-top: -40px; */
  top: 36px;
  padding: 6px 15px;
  background-color: #3DBF7B;
  font-size: 13px;
  line-height: 13px;
  text-transform: uppercase;
  color: #18141E;
  border-radius: 999px;
  position: absolute;
}

@media (max-width: 1380px) {
  .contact-us__inner {
    padding: 0 15px;
  }
}

.contact-us__top {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(420px, 1.45fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.contact-us__left {
  max-width: 400px;
}

.contact-us__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 15px;
  border-radius: 999px;
  background: #eef3f1;
  color: #3f4342;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-us__title {
  margin: 0;
  color: #171717;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 400;
}

@media (max-width: 1090px) {
  .contact-us__title {
    font-size: 32px;
  }
}

.contact-us__description {
  color: #18141E;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.contact-us__right {
  position: relative;
  min-height: 220px;
  padding: 87px 39px 31px 39px;
  border-radius: 1.15rem;
  background: linear-gradient(0deg, #E6ECE9 0%, #FCFCFC 100%);
}

/* Webflow projects the form through a native <slot> in light DOM.
   Descendants can't be styled from this shadow sheet — see ContactUs.form.css. */
.contact-us__right:has(> slot[name="rightSide"]) {
  display: block;
}

.contact-us__right > slot[name="rightSide"] {
  display: block !important;
  width: 100%;
}

.contact-us__right > slot[name="rightSide"]::slotted(*) {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.contact-us__bottom {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-us__contact-group {
  position: relative;
  padding: 19px 53px 29px 15px;
}

.contact-us__contact-group::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 90%;
  height: 1px;
  background-color: #d8d8d8;
  margin-bottom: 20px;
}

.contact-us__contact-title {
  margin: 0;
  color: #18141E;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-us__contact-description {
  margin: 13px 0 19px 0;
  color: #18141E88;
  font-size: 16px;
  line-height: 20px;
}

.contact-us__contact-email {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #E6ECE9;
  color: #18141E;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
}

.contact-us__contact-email:hover {
  text-decoration: underline;
}

@media (max-width: 1090px) {
  .contact-us__top {
    grid-template-columns: 1fr;
  }

  .contact-us__left {
    max-width: 620px;
    padding: 0 15px;
  }

  .contact-us__bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1rem;
  }

  .contact-us__contact-group:nth-child(odd) {
    padding-left: 0;
  }

  .contact-us__contact-group:nth-child(even) {
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .contact-us__bottom {
    grid-template-columns: 1fr;
    row-gap: 0;
    margin-top: 2rem;
    padding: 0 15px;
  }

  .contact-us__right {
    padding: 87px 15px 31px 15px;
  }
}

/* Authored \n breaks are desktop-only; below the site's mobile breakpoint
   (navbar switch, 1280px) the text reflows naturally. */
@media (max-width: 1280px) {
  br.multiline-br {
    display: none;
  }
}

