.site-footer {
  background-color: #f6f6f6;
  border-top: 4px solid #d9a78f;
  padding: 2.5rem 1rem;
  font-family: 'Georgia', serif;
  color: #333;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-text {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: #333;
}

.footer-lab-name {
  color: #4B3D63;
}

.footer-copy {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.8rem;
}

/* Desktop layout */
@media (min-width: 900px) {
  .footer-top {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
  }

  .footer-copy {
    margin-top: 0.6rem;
  }
}
