.cta-section {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 120px 24px;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 179, 0, .26), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 5, .36), rgba(5, 5, 5, .92));
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 179, 0, .12) 1px, transparent 1px);
  background-size: 190px 100%;
  opacity: .28;
  mix-blend-mode: screen;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 18px;
  text-shadow: 0 0 44px rgba(255, 179, 0, .42), 0 24px 80px rgba(0, 0, 0, .9);
}

.cta-section__subtitle {
  margin: 0 auto 30px;
  max-width: 720px;
  color: rgba(245, 245, 245, .86);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}

.site-footer {
  position: relative;
  padding: 68px 0 28px;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 179, 0, .16), transparent 28%),
    linear-gradient(180deg, #050505, #080808);
  border-top: 1px solid rgba(255, 179, 0, .24);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 26px rgba(255, 179, 0, .7);
}

.site-footer__grid,
.site-footer__bottom {
  width: var(--shell);
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(300px, 1fr) auto;
  gap: 42px;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 18px;
}

.site-footer__brand img {
  filter: drop-shadow(0 0 20px rgba(255, 179, 0, .46));
}

.site-footer__brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(245, 245, 245, .72);
}

.site-footer__menu {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.site-footer__social {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer__social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 179, 0, .34);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(255, 179, 0, .06);
  box-shadow: inset 0 0 20px rgba(255, 179, 0, .04);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: 0 0 24px rgba(255, 179, 0, .36);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 179, 0, .16);
  color: rgba(245, 245, 245, .58);
  font-size: .86rem;
}
