/* Contact strip — full-width contactFormBg; form overlaid on the right */
.cu-form-strip {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: none;
  width: 100%;
  max-width: 100%;
  --cu-strip-bg-shift-x: 1.25%;
}
 
.cu-form-strip__media {
  margin: 0;
  padding: 0;
  width: 100%;
}
 
.cu-form-strip__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}
 
/* Scroll parallax on banner art (desktop only; mobile uses static image) */
.cu-form-strip--parallax .cu-form-strip__media {
  overflow: hidden;
}
 
.cu-form-strip--parallax .cu-form-strip__img {
  width: 106%;
  max-width: none;
  will-change: transform;
  transform: translate3d(var(--cu-strip-bg-shift-x, 0), 0, 0) scale(1.06);
}
 
@media (prefers-reduced-motion: reduce) {
  .cu-form-strip--parallax .cu-form-strip__img {
    transform: translate3d(var(--cu-strip-bg-shift-x, 0), 0, 0);
    will-change: auto;
  }
}
 
.cu-form-strip__form-wrap {
  position: absolute;
  line-height: normal;
  top: 10%;
  right: clamp(0.75rem, 2.8%, 2rem);
  bottom: 10%;
  left: 58%;
  width: auto;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(0.5rem, 1.2vw, 1rem);
  box-sizing: border-box;
}
 
.cu-form-strip__form {
  width: 100%;
  max-width: min(22rem, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
 
.cu-form-strip__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
 
.cu-form-strip__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
 
.cu-form-strip__input,
.cu-form-strip__textarea {
  font-family: "Elms Sans", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: #2d6a64;
  background-color: #faf5f0;
  border: 1px solid rgba(45, 106, 100, 0.22);
  border-radius: 10px;
  padding: 0.8rem 1.05rem;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
}
 
.cu-form-strip__input::placeholder,
.cu-form-strip__textarea::placeholder {
  color: #2d6a64;
  opacity: 0.88;
}
 
.cu-form-strip__input:focus,
.cu-form-strip__textarea:focus {
  outline: none;
  border-color: #2d6a64;
  box-shadow: 0 0 0 2px rgba(45, 106, 100, 0.18);
}
 
.cu-form-strip__textarea {
  resize: vertical;
  min-height: 7rem;
}
 
.cu-form-strip__actions {
  margin-top: 0.15rem;
}
 
.cu-form-strip__submit {
  font-family: "Elms Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2d6a64;
  background-color: #faf5f0;
  border: 1px solid rgba(45, 106, 100, 0.28);
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
 
.cu-form-strip__submit:hover,
.cu-form-strip__submit:focus-visible {
  background-color: #ffffff;
  opacity: 0.96;
}
 
/* Tablet: form below banner image */
@media (max-width: 900px) {
  .cu-form-strip {
    line-height: normal;
    --cu-strip-bg-shift-x: 0;
  }
 
  .cu-form-strip--parallax .cu-form-strip__img {
    width: 100%;
    transform: translate3d(0, 0, 0) !important;
    will-change: auto;
  }
 
  .cu-form-strip__form-wrap {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: clamp(1.25rem, 4vw, 2rem);
    background-color: #d4a373;
  }
 
  .cu-form-strip__form {
    max-width: 28rem;
    margin: 0 auto;
  }
 
  .cu-form-strip__textarea {
    min-height: 6rem;
  }
}
 
/* Small phones */
@media (max-width: 480px) {
  .cu-form-strip__form-wrap {
    padding: clamp(1rem, 4vw, 1.35rem);
  }
 
  .cu-form-strip__form {
    max-width: 100%;
    gap: 0.7rem;
  }
 
  .cu-form-strip__input,
  .cu-form-strip__textarea {
    font-size: 1rem;
    padding: 0.75rem 0.95rem;
  }
 
  .cu-form-strip__textarea {
    min-height: 5.5rem;
  }
 
  .cu-form-strip__submit {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}