.site-footer {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(242, 140, 24, .18), transparent 28%),
    linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  color: #fff;
  padding: 88px 0 28px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-brand h3 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  text-transform: uppercase;
}

.footer-kicker,
.footer-column-label {
  margin: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .58);
}

.footer-text,
.footer-newsletter p,
.footer-contact-text,
.newsletter-note {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.footer-text {
  max-width: 520px;
  margin: 0 0 24px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials a {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .24);
}

.footer-newsletter {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 28px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-newsletter h4 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.newsletter-form__row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.newsletter-form input {
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  color: #1a1a1a;
  background: #faf8f5;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .48);
}

.newsletter-form input:focus {
  border-color: rgba(242, 140, 24, .72);
  box-shadow: 0 0 0 4px rgba(242, 140, 24, .14);
}

.newsletter-form .btn {
  min-width: 160px;
}

.newsletter-note {
  margin: 12px 0 0;
  font-size: 13px;
}

.site-footer .newsletter-msg--success {
  background: rgba(16, 185, 129, .12);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, .25);
}

.site-footer .newsletter-msg--info {
  background: rgba(59, 130, 246, .1);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, .2);
}

.site-footer .newsletter-msg--error {
  background: rgba(239, 68, 68, .1);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, .2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .78);
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-contact-text {
  margin: 10px 0 0;
  max-width: 320px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .56);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .68);
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #fff;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 72px 0 24px;
  }

  .footer-newsletter {
    padding: 22px;
    border-radius: 22px;
  }

  .newsletter-form__row {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    gap: 14px;
    flex-wrap: wrap;
  }
}