* {
  padding: 0;
  margin: 0;
}

#site-main:nth-child(1) {
  margin: 0;
}

.section {
  margin: 80px 0;
}

.section--hero {
  position: relative;
  overflow: hidden;
  min-height: 801px;
  display: grid;
  align-items: center;
  padding-block: clamp(4rem, 9vw, 8rem);
  background:
    linear-gradient(90deg, rgba(22, 22, 22, 0.92), rgba(22, 22, 22, 0.58)),
    var(--blaze-color-black);
  color: var(--blaze-color-white);
  padding-top: 170px;
  padding-bottom: 130px;
}

.section--hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.9) 38%,
      rgba(0, 0, 0, 0.32) 72%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    radial-gradient(
      circle at 74% 30%,
      rgba(254, 190, 16, 0.18),
      transparent 26%
    );
}

.section--hero > .container {
  position: relative;
  z-index: 2;
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
}

.hero__content {
  max-width: 650px;
}

.hero__eyebrow,
.section-header__eyebrow {
  margin: 0 0 24px;
  color: var(--blaze-color-black);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-header__title,
.archive-header__title,
.entry-title {
  font-family: var(--blaze-font-body);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
  text-transform: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__video {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  color: var(--blaze-color-primary);
  font-weight: 800;
  text-decoration: none;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.hero__eyebrow {
  display: none;
}

.hero__title {
  max-width: 15ch;
  font-family: var(--blaze-font-body);
  font-weight: 700;
  line-height: 56px;
  text-transform: none;
  font-size: 48px;
}

.hero__subtitle {
  max-width: 650px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.hero__actions {
  gap: 1rem;
  margin-top: 2.1rem;
}

.hero__video {
  display: none;
}

@media (max-width: 480px) {
  .section {
    margin-top: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
  }
  .section--hero {
    min-height: 0;
    padding-top: 99px;
    padding-bottom: 19px;
  }
  .section--about {
    padding: 32px 0 16px 0;
  }
  .hero__title {
    font-size: 18px;
    line-height: 22px;
  }

  .hero__subtitle {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 18px;
  }

  .hero__actions {
    margin-top: 10px;
    gap: 10px;
  }
  .hero__background {
    object-position: 75% center;
  }
  .section-header__title {
    font-size: 20px;
    font-weight: 600;
  }
}
