/* Video replaces slick slider — matches project-banner image sizing */
.project-banner-video {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.project-banner-video__media {
  display: block;
  width: 120%;
  margin-left: -10%;
  height: auto;
  min-height: 220px;
  max-height: 70vw;
  object-fit: cover;
}
@media (min-width: 992px) {
  .project-banner-video__media {
    height: 420px;
    max-height: none;
  }
}
@media (max-width: 786px) {
  .project-banner-video__media {
    width: 100%;
    margin-left: 0;
  }
}

/* AJAX form feedback (send-lead.js / app.js) */
.js-reg-feedback {
  width: 100%;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
}
.reg-feedback--ok {
  background: rgba(62, 207, 190, 0.2);
  border: 1px solid rgba(62, 207, 190, 0.45);
  color: #1a5c54;
}
.reg-feedback--warn {
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: #5c4a1a;
}
.reg-feedback--err {
  background: rgba(216, 97, 60, 0.12);
  border: 1px solid rgba(216, 97, 60, 0.35);
  color: #7a2a18;
}

/* Duplicate lead form at bottom of page (same copy as banner / lightbox) */
.bottom-page-contact {
  padding: 2.5rem 0 3rem;
  background-color: #eef2ef;
}
.bottom-page-contact .headline {
  text-align: center;
  margin-bottom: 1.5rem;
}
.bottom-page-contact .headline::after,
.bottom-page-contact .headline::before {
  left: 50%;
  transform: translateX(-50%);
}
.bottom-page-contact .contact-form-page {
  max-width: 520px;
  margin: 0 auto;
}

#page-contact {
  scroll-margin-top: 1.25rem;
}
