.hero-block {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-color-white);
  background: #1b1714;
  font-family: var(--hero-font-sans);
}

.hero-block__media,
.hero-block__overlay {
  position: absolute;
  inset: 0;
}

.hero-block__video,
.hero-block__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.02);
}

.hero-block__overlay {
  background:
    linear-gradient(180deg, rgba(21, 16, 13, 0.18) 0%, rgba(21, 16, 13, 0.52) 55%, rgba(21, 16, 13, 0.76) 100%);
}

.hero-block__content {
  position: absolute;
  z-index: 2;
  top: calc(26px + (96 - 26) * ((100vw - 320px) / (1920 - 320)));
  width: 100%;
  padding: 0 1.5rem 6rem;
}

.hero-block__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.hero-block__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--hero-color-border);
  border-radius: 999px;
  background: var(--hero-color-badge);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.hero-block__badge svg {
  fill: #fbbf24;
  color: #fbbf24;
}

.hero-block__eyebrow {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-block__title {
  margin: 0;
  color: var(--hero-color-white);
  font-family: var(--hero-font-serif);
  font-size: calc(48px + (96 - 48) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero-block__title-regular,
.hero-block__title-italic {
  display: block;
}

.hero-block__title-regular {
  font-style: normal;
}

.hero-block__title-italic {
  font-style: italic;
}

.hero-block__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-block__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.82;
  padding-top: 8em;
}

.hero-block__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 100%, rgba(255, 255, 255, 0.85) 0%);
}

.hero-block__scroll-label {
  color: #fff6;
  font-family: var(--hero-font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-block.is-overlay-light .hero-block__overlay {
  background:
    linear-gradient(180deg, rgba(33, 25, 20, 0.12) 0%, var(--hero-color-overlay-light) 100%);
}

.hero-block.is-overlay-medium .hero-block__overlay {
  background:
    linear-gradient(180deg, rgba(33, 25, 20, 0.16) 0%, var(--hero-color-overlay-medium) 100%);
}

.hero-block.is-overlay-strong .hero-block__overlay {
  background:
    linear-gradient(180deg, rgba(33, 25, 20, 0.2) 0%, var(--hero-color-overlay-strong) 100%);
}

@media screen and (max-width: 991px) {
  .hero-block__content {
    padding-top: 7rem;
    padding-bottom: 5.5rem;
  }

  .hero-block__inner {
    width: min(100%, 760px);
  }
}

@media screen and (max-width: 767px) {
  .hero-block {
    min-height: 100svh;
  }

  .hero-block__content {
    padding: 3.5rem 1.25rem 5rem;
  }

  .hero-block__badge {
    margin-bottom: 1.25rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.75rem;
  }

  .hero-block__eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.24em;
  }

  .hero-block__title {
    line-height: 0.96;
  }

  .hero-block__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-top: 1.75rem;
  }

  .hero-block .hero-block__actions .hero-block__button {
    width: 100%;
    min-width: 0;
  }

  .hero-block__scroll {
    bottom: 1.1rem;
  }

  .hero-block__scroll-line {
    height: 42px;
  }
}
