.site-footer {
  position: relative;
  z-index: 1;

  width: 95%;
  max-width: 900px;
  margin: 0 auto;

  padding: 4rem 0 6rem 0;
}

.footer-bubble {
  width: 100%;

  /* exakt gleiche Rundung wie Navbar */
  border-radius: 9999px;

  padding: 2rem 2.5rem;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

/* Text */
.footer-text {
  margin: 0;

  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;

  color: rgba(15, 23, 42, 0.55);
  line-height: 1.8;
}

/* Accent Name */
.footer-accent {
  color: var(--primary);
  filter: drop-shadow(0 0 12px rgba(255, 26, 26, 0.25));
}

/* Links */
.footer-link {
  color: rgba(15, 23, 42, 0.72);
  text-decoration: none;
  transition: color 0.25s ease, filter 0.25s ease;
}

.footer-link:hover {
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(255, 26, 26, 0.3));
}

.footer-sep {
  margin: 0 0.6rem;
  opacity: 0.45;
}

/* Mobile */
@media (max-width: 640px) {
  .footer-bubble {
    padding: 1.6rem 1.8rem;
  }

  .footer-text {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
  }
}