@charset "utf-8";

body {
  background: #050505;
  color: #ece8df;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: #050505;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .58s cubic-bezier(.65, 0, .35, 1);
}

body.is-page-ready .page-transition {
  opacity: 0;
  pointer-events: none;
}

body.is-page-leaving .page-transition {
  opacity: 1;
  pointer-events: auto;
}

main,
#wrapper,
#container_wr,
#container {
  width: 100%;
  min-height: 100%;
}

.section {
  position: relative;
}

.theme-dark {
  background: #050505;
  color: #ece8df;
}

.theme-light {
  background: #ece8df;
  color: #050505;
}

.site-footer {
  position: relative;
  z-index: 2;
  background: #050505;
  color: #ece8df;
  border-top: 1px solid rgba(236, 232, 223, .12);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0 30px;
}

.site-footer__brand img {
  display: block;
  width: auto;
  height: 26px;
  max-width: 180px;
  object-fit: contain;
}

.site-footer__brand p {
  width: min(100%, 380px);
  margin: 22px 0 0;
  color: rgba(236, 232, 223, .58);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer a {
  color: rgba(236, 232, 223, .76);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .22s ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__copy {
  margin: 4px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(236, 232, 223, .08);
  color: rgba(236, 232, 223, .34);
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .site-footer__inner {
    width: min(100% - 36px, 680px);
    gap: 28px;
  }

  .site-footer__copy {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    transition-duration: .01ms;
  }
}
