:root {
  --footer-pink: #f892c1;
  --footer-caramel: #eeb07d;
  --footer-plum: #513647;
}

html body .site-footer {
  display: block;
  width: 100%;
  min-height: 112px;
  margin-top: auto;
  padding: 30px clamp(20px, 4vw, 48px);
  border: 0;
  border-top: 1px solid rgba(81, 54, 71, 0.18);
  position: relative;
  z-index: 1;
  background: linear-gradient(110deg, var(--footer-pink) 0%, #f7a6b7 48%, var(--footer-caramel) 100%);
  box-shadow: none;
}

html body .site-footer .footer-inner {
  width: min(1180px, 100%);
  min-height: 52px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

html body .site-footer .footer-left {
  display: flex;
  align-items: center;
  min-width: 0;
  color: var(--footer-plum);
}

html body .site-footer .footer-left > span {
  display: none;
}

html body .site-footer .footer-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(190px, 48vw);
  object-fit: contain;
  opacity: 1;
  filter: none;
}

html body .site-footer .footer-right {
  color: var(--footer-plum);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: right;
  opacity: 1;
}

@media (max-width: 620px) {
  html body .site-footer {
    min-height: 96px;
    padding: 25px 20px;
  }

  html body .site-footer .footer-inner {
    min-height: 44px;
    justify-content: center;
  }

  html body .site-footer .footer-logo {
    height: 38px;
    max-width: 160px;
  }

  html body .site-footer .footer-right {
    display: none;
  }
}
