.bp-hero {
  background: var(--bp-yellow);
  border-bottom: 4px solid var(--bp-ink);
  position: relative;
  overflow: hidden;
}
.bp-hero__in {
  position: relative;
  z-index: 1;
  padding: 46px 0 0;
  text-align: center;
}
.bp-hero__kick {
  display: inline-block;
  background: var(--bp-red);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 50px;
  border: 2px solid var(--bp-ink);
  box-shadow: 3px 3px 0 var(--bp-ink);
  margin-bottom: 24px;
  rotate: -2deg;
}
.bp-hero h1 {
  font-size: clamp(40px, 7vw, 86px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--bp-ink);
  letter-spacing: -0.5px;
}
.bp-hero h1 .out {
  color: var(--bp-yellow);
  -webkit-text-stroke: 2.5px var(--bp-ink);
  text-stroke: 2.5px var(--bp-ink);
}
.bp-hero h1 .red {
  color: var(--bp-red);
}
.bp-hero__sub {
  font-size: 19px;
  font-weight: 600;
  max-width: 560px;
  margin: 24px auto 30px;
  line-height: 1.5;
  color: #3a2f22;
}
.bp-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.bp-hero__img {
  margin: 40px 0 0;
  display: block;
  width: 100%;
  line-height: 0;
  border-top: 4px solid var(--bp-ink);
}
.bp-hero__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 7;
}
@media (max-width: 760px) {
  .bp-hero__img img {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 480px) {
  .bp-hero__img img {
    aspect-ratio: 4 / 3;
  }
}
