/* =============================================
   FOOTER — Fixed bottom bar
   ============================================= */

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--footer-h);
  background-color: var(--brown);
  display: flex;
  align-items: center;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-footer__name {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--beige);
  opacity: 0.9;
}

.site-footer__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.site-footer__links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(204, 183, 152, 0.7);
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--beige);
}

.site-footer__copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(204, 183, 152, 0.5);
}

.site-footer__cert {
  height: 36px;
  width: auto;
  opacity: 0.85;
}

@media (max-width: 700px) {
  /* Footer not fixed on mobile — stays at bottom of content */
  .site-footer {
    position: static;
    height: auto;
    padding: 20px 0;
  }

  .site-footer__copy {
    display: none;
  }

  .site-footer__links {
    gap: 20px;
  }
}
