/* Footer — .site-footer */

@layer components {
  .site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 var(--space-lg);
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .site-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition);
  }
  .site-footer a:hover {
    color: var(--color-bg);
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
  }
  .footer__contact-row {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__address {
    opacity: 0.5;
    font-size: 0.8125rem;
  }
  .footer__divider {
    width: 3rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    margin: var(--space-xs) 0;
  }
  .footer__copyright {
    opacity: 0.4;
    font-size: 0.75rem;
  }
}
