.ll-hero {
  position: relative;
  overflow: hidden;
}

/* clickable layer for full-image link (avoids nested anchors) */
.ll-hero__imageLink {
  position: absolute;
  inset: 0;
  z-index: 2; /* below overlay, above image */
  display: block;
}

.ll-hero__picture {
  display: block;
  width: 100%;
}

.ll-hero__img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

/* Gradient overlay */
.ll-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0) 85%
  );
}

/* Overlay layout */
.ll-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-items: center;
  padding: clamp(18px, 4vw, 56px);
  pointer-events: none;
}

.ll-hero--left .ll-hero__overlay {
  justify-items: start;
  text-align: left;
}

.ll-hero--center .ll-hero__overlay {
  justify-items: center;
  text-align: center;
}

.ll-hero--right .ll-hero__overlay {
  justify-items: end;
  text-align: right;
}

/* “Precious” card */
.ll-hero__card {
  max-width: 640px;
  padding: clamp(14px, 3vw, 26px);
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: auto;
}

.ll-hero__title {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.ll-hero__subtitle {
  margin: 0 0 18px 0;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.4;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.ll-hero__btn {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 0;
  background: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.ll-hero__btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .ll-hero__card {
    animation: llHeroIn 0.7s ease both;
  }

  @keyframes llHeroIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* General small-screen typography */
@media (max-width: 768px) {
  .ll-hero__title {
    font-size: clamp(18px, 5vw, 25px);
    line-height: 1.05;
  }

  .ll-hero__subtitle {
    font-size: clamp(12px, 3.8vw, 14px);
  }

  .ll-hero__btn {
    padding: 8px 14px;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-width: 1px;
  }
}

/* Mobile portrait hero behavior */
@media (max-width: 767.98px) and (orientation: portrait) {
  .ll-hero::after {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.2) 30%,
      rgba(0, 0, 0, 0) 58%
    );
  }

  .ll-hero__overlay {
    align-items: end;
    justify-items: stretch;
    padding: 16px 14px 18px;
  }

  .ll-hero--left .ll-hero__overlay,
  .ll-hero--center .ll-hero__overlay,
  .ll-hero--right .ll-hero__overlay {
    justify-items: stretch;
    text-align: left;
  }

  .ll-hero__card {
    max-width: none;
    width: 100%;
    padding: 0;
  }

  .ll-hero__title {
    margin-bottom: 8px;
  }

  .ll-hero__subtitle {
    margin-bottom: 14px;
    max-width: 28rem;
  }

  .ll-hero__btn {
    align-self: flex-start;
  }
}