/* _site-footer.css — Site footer BEM */

.site-footer {
  background: var(--color-stone-800);
  color: var(--color-stone-400);
  padding: 3rem var(--pad-x-mobile);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3rem var(--pad-x-desktop);
  }
}

.site-footer__container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.site-footer__brand-label {
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.site-footer__brand-tagline {
  font-size: 0.75rem;
  color: var(--color-stone-400);
}

.site-footer__contact-block {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .site-footer__contact-block {
    text-align: right;
  }
}

.site-footer__email {
  color: var(--color-stone-400);
  transition: color 0.3s ease;
}

.site-footer__email:hover {
  color: #ffffff;
}

.site-footer__copyright {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
