.banner-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.35;
}

.banner-scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.55) 0%, rgba(20, 18, 15, 0.25) 50%, rgba(20, 18, 15, 0.65) 100%);
}

.banner-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.banner-cap {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.banner-title {
  font-family: var(--serif);
  font-size: calc(34px + 1.2vw);
  font-weight: 500;
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto 18px;
  color: #fff;
}

.banner-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin: 0 auto 38px;
}

.banner-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-ctas > * {
  margin: 0 8px 12px;
}