.gp-hero {
  position: relative;
  width: 100%;
  height: var(--gp-hero-height, 75vh);
  min-height: 320px;
  max-height: 900px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 0 0 12px 12px;
}

.gp-hero__media {
  position: absolute;
  inset: 0;
}

.gp-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 45, 25, 0.35) 0%,
    rgba(20, 45, 25, 0.55) 55%,
    rgba(15, 35, 20, 0.75) 100%
  );
  pointer-events: none;
}

.gp-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.gp-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.gp-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  max-width: 36rem;
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.gp-hero__cta {
  font-size: 1.05rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.gp-hero__skip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.gp-hero__skip:hover {
  background: rgba(0, 0, 0, 0.55);
}

.gp-hero.is-hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .gp-hero {
    min-height: 280px;
    border-radius: 0;
  }

  .gp-hero__content {
    align-items: center;
    text-align: center;
  }
}
