.site-footer {
  background: var(--color-dark);
  color: #cfcfcf;
  padding: clamp(48px, 8vw, 96px) 0 var(--sp-32);
  font-size: var(--fs-14);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: clamp(24px, 5vw, 64px);
  padding-bottom: var(--sp-48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__col h4 {
  color: #fff;
  font-size: var(--fs-14);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--sp-16);
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.site-footer__col a {
  color: #cfcfcf;
  transition: color 0.25s var(--ease);
}
.site-footer__col a:hover {
  color: #fff;
}

.site-footer__brand p {
  color: #a8a8a8;
  line-height: 1.7;
  max-width: 280px;
}

.site-footer__logo {
  width: 64px;
  margin-bottom: var(--sp-16);
  filter: brightness(0) invert(1);
}

.site-footer__news p {
  color: #a8a8a8;
  margin-bottom: var(--sp-16);
  line-height: 1.6;
}

.newsletter {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.newsletter:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  color: #fff;
  font-size: var(--fs-14);
}
.newsletter input::placeholder {
  color: #6b6b6b;
}
.newsletter button {
  width: 44px;
  background: var(--color-orange);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background-color 0.25s var(--ease);
}
.newsletter button:hover {
  background: var(--color-orange-deep);
}
.newsletter button svg {
  width: 18px;
  height: 18px;
}

.newsletter__msg {
  min-height: 18px;
  font-size: var(--fs-12);
  margin-top: var(--sp-8) !important;
  color: var(--color-teal) !important;
}

.site-footer__bar {
  padding-top: var(--sp-32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-16);
}

.site-footer__copy {
  color: #6b6b6b;
  font-size: var(--fs-12);
  letter-spacing: 0.08em;
}

.site-footer__social {
  display: flex;
  gap: var(--sp-16);
}
.site-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.site-footer__social a:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}
.site-footer__social img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.site-footer__pay img {
  height: 28px;
  width: auto;
}

@media (max-width: 1023px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand,
  .site-footer__news {
    grid-column: span 2;
  }
}

@media (max-width: 639px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__brand,
  .site-footer__news {
    grid-column: auto;
  }
  .site-footer__brand p,
  .site-footer__news p {
    max-width: none;
    margin-inline: auto;
  }
  .site-footer__logo {
    margin-inline: auto;
  }
  .site-footer__bar {
    justify-content: center;
    text-align: center;
  }
  .site-footer__social {
    justify-content: center;
  }
}
