.site-footer {
  background: var(--color-primary);
  color: var(--color-sand);
  padding: 46px 0 28px;
}

.site-footer a {
  color: inherit;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(234, 225, 208, 0.16);
}

.footer-newsletter span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-newsletter h2 {
  margin: 0;
  color: var(--color-sand);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-newsletter__form {
  display: flex;
  gap: 10px;
  width: min(100%, 430px);
}

.footer-newsletter__form input {
  min-width: 0;
  flex: 1;
  height: 44px;
  border: 1px solid rgba(234, 225, 208, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-sand);
  padding: 0 14px;
}

.footer-newsletter__form input::placeholder {
  color: rgba(234, 225, 208, 0.58);
}

.footer-newsletter__form button {
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0 20px;
  font-weight: 700;
}

.footer-main {
  padding: 34px 0;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--color-gold);
  line-height: 0.95;
}

.footer-brand strong,
.footer-brand span {
  font-size: 24px;
  letter-spacing: 0;
}

.footer-main p {
  max-width: 280px;
  margin: 16px 0 18px;
  color: rgba(234, 225, 208, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(234, 225, 208, 0.2);
  border-radius: 50%;
  color: var(--color-sand);
  font-size: 12px;
  font-weight: 700;
}

.footer-main h3 {
  margin: 0 0 14px;
  color: var(--color-sand);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-main ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li,
.footer-main a {
  color: rgba(234, 225, 208, 0.72);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(234, 225, 208, 0.16);
  color: rgba(234, 225, 208, 0.62);
  font-size: 12px;
}

@media (max-width: 720px) {
  .footer-newsletter,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-newsletter__form {
    flex-direction: column;
  }

  .footer-newsletter__form button {
    width: 100%;
  }
}
