/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  --footer-social-size: 2.4rem;
  color: var(--color-cream);
  background-color: var(--color-charcoal);
  padding: 0 0 var(--safe-area-bottom);
  border-top: 1px solid rgba(248, 242, 234, 0.12);
}


.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--font-berthold-baskerville);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-footer__bar .site-footer__social {
  flex-wrap: nowrap;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--footer-social-size);
  height: var(--footer-social-size);
  border: 1px solid rgba(248, 242, 234, 0.35);
  border-radius: 999px;
  position: relative;
  color: rgba(248, 242, 234, 0.85);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: var(--color-copper);
  border-color: rgba(197, 148, 96, 0.6);
  background-color: rgba(197, 148, 96, 0.12);
}

.site-footer__social svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}


.site-footer__nav {
  width: 100%;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  font-family: var(--font-berthold-baskerville);
  font-size: 0.9rem;
}

.site-footer__menu a {
  position: relative;
  color: rgba(248, 242, 234, 0.85);
}

.site-footer__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__menu a:hover::after,
.site-footer__menu a:focus-visible::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.site-footer a:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 4px;
}

.site-footer__bar {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-copper);
}

.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-berthold-baskerville);
  font-size: 0.9rem;
  color: rgba(248, 242, 234, 0.7);
  padding: 0 calc(var(--content-gutter) + var(--safe-area-right)) 0 calc(var(--content-gutter) + var(--safe-area-left));
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__bar-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  min-height: var(--footer-social-size);
}


@media (max-width: 1200px) {
  .site-footer {
    --footer-social-size: 2.75rem;
  }

  .site-footer__bar {
    padding: var(--space-6) 0;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__legal,
  .site-footer__bar-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-footer__menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .site-footer__rights {
    display: block;
  }

  .site-footer__social a {
    border-width: 1.5px;
    touch-action: manipulation;
  }
}
