.hero-section {
  background: rgba(255, 255, 255, 0.8);
}

.hero-section__bg,
.hero-fade {
  position: absolute;
  inset: 0;
}

.hero-section__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.68;
  filter: saturate(0.95) contrast(1.04);
}

.hero-fade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.54) 68%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.72fr);
  gap: var(--section-gap);
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: clamp(0.85rem, 2cqh, 1.25rem);
  max-width: 42rem;
}

.hero-title {
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.35);
}

.hero-title__line {
  display: block;
}

.hero-title__line--accent {
  color: var(--color-orange);
}

.hero-description {
  max-width: 37rem;
  color: rgba(17, 17, 17, 0.76);
  font-size: clamp(1rem, min(1.65cqw, 2.2cqh), 1.16rem);
}

.hero-video-card {
  display: grid;
  grid-template-rows: auto auto;
  align-self: center;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
}

.hero-video-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
}

.hero-video-card__caption {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-video-card__caption strong {
  color: var(--color-orange);
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(14rem, 1fr);
    align-content: stretch;
  }

  .hero-copy {
    max-width: 46rem;
  }

  .hero-video-card {
    grid-template-rows: minmax(0, 1fr) auto;
    align-self: stretch;
    width: min(100%, 42rem);
  }

  .hero-video-card__media {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  .hero-fade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 62%, rgba(255, 255, 255, 0.62) 100%);
  }

  .hero-section__bg {
    object-position: center;
    opacity: 0.48;
  }

  .hero-video-card {
    width: 100%;
  }

  .hero-video-card__media {
    height: 100%;
    aspect-ratio: auto;
  }

  .hero-video-card__caption {
    padding: 0.65rem 0.75rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 420px) {
  .hero-video-card__caption {
    display: none;
  }
}
