.site-footer {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 156px;
  margin: 0;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 30px;
  color: #8f866f;
  background: #050a08;
  border-top: 1px solid rgba(202, 169, 107, .18);
  font-family: "Noto Serif SC", serif;
  font-size: 11px;
}

.site-footer > * {
  box-sizing: border-box;
  width: 100%;
  min-height: 56px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-footer .site-footer__brand {
  color: inherit;
  text-decoration: none;
  justify-content: flex-start;
  text-align: left;
}

.site-footer .site-footer__logo {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.site-footer .site-footer__record {
  color: #caa96b;
  font-weight: 700;
  letter-spacing: .08em;
  justify-content: flex-end;
  text-align: right;
  cursor: default;
  user-select: text;
}

@media (max-width: 720px) {
  .site-footer {
    min-height: 0;
    padding: 28px 20px 96px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer > * {
    min-height: 50px;
  }

  .site-footer .site-footer__brand,
  .site-footer .site-footer__record {
    justify-content: center;
    text-align: center;
  }

  .site-footer .site-footer__logo {
    height: 40px;
  }
}
