/* Product enquiry — full-bleed quotation banner */

.home-promo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  background: #000 !important;
}

.home-promo__banner {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(560px, 68vh, 720px);
  overflow: hidden;
}

.home-promo__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 86%;
}

.home-promo__banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.42) 34%,
    rgba(0, 0, 0, 0.08) 58%,
    rgba(0, 0, 0, 0.18) 100%
  ) !important;
}

.home-promo__wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(var(--ayenyx-container, 1120px), calc(100% - (2 * var(--ayenyx-gutter))));
  margin: 0 auto;
  padding: 0;
  pointer-events: none;
}

.home-promo__copy {
  width: min(100%, 38rem);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  pointer-events: auto;
}

.home-promo__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--ayenyx-secondary, #fbaa25) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-promo__tag::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--ayenyx-secondary, #fbaa25);
  flex-shrink: 0;
}

.home-promo__title {
  margin: 0 0 1.25rem;
  max-width: 14ch;
  color: #fff !important;
    font-size: clamp(2.05rem, 3.8vw, 3.05rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.home-promo__text {
  margin: 0 0 1.85rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 17px;
  line-height: 1.7;
}

.home-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-promo__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.7rem !important;
  border-radius: 0 !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.home-promo__btn--primary {
  background: #c3002f !important;
  border: 1px solid #c3002f !important;
  color: #fff !important;
}

.home-promo__btn--primary:hover {
  background: #a60028 !important;
  border-color: #a60028 !important;
  color: #fff !important;
}

.home-promo__btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
}

.home-promo__btn--ghost:hover {
  background: #141414 !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}

.home-promo__phone {
  display: inline-flex;
  align-items: center;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.home-promo__phone:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .home-promo__banner {
    height: clamp(580px, 82vh, 760px);
  }

  .home-promo__banner img {
    object-position: 50% 28%;
  }

  .home-promo__banner-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.28) 38%,
      rgba(0, 0, 0, 0.86) 100%
    ) !important;
  }

  .home-promo__wrap {
    align-items: flex-end;
    width: 100%;
    padding: 0 var(--ayenyx-gutter, 1.25rem) 2.25rem;
  }

  .home-promo__copy {
    width: 100%;
  }

  .home-promo__title {
    max-width: none;
    font-size: clamp(1.85rem, 7vw, 2.55rem);
  }
}

@media (max-width: 575px) {
  .home-promo__banner {
    height: clamp(560px, 86vh, 680px);
  }

  .home-promo__wrap {
    padding: 0 var(--ayenyx-gutter, 1.25rem) 1.75rem;
  }

  .home-promo__text {
    font-size: 15px;
    margin-bottom: 1.45rem;
  }

  .home-promo__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-promo__btn {
    width: 100%;
  }
}
