.site-footer {
  background: var(--nx);
  padding: 2.5rem 0 1.2rem;
  color: rgba(255, 255, 255, .3);
  font-size: .8rem;
}

/* ── Logo / Marke ── */

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.footer-brand:hover {
  opacity: 0.98;
}

.footer-brand:focus-visible {
  outline: 2px solid var(--og);
  outline-offset: 4px;
}

.footer-brand-text {
  font-weight: 700;
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.footer-brand:hover .footer-brand-text {
  color: rgba(255, 255, 255, 0.95);
}

/* ── Description ── */

.footer-desc {
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ── Social ── */

.footer-social {
  margin-bottom: 1.5rem;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .82rem;
}

.footer-social-list li {
  display: inline-flex;
  align-items: center;
}

.footer-social-list li:not(:last-child)::after {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  margin-left: .75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
}

.footer-social-list a {
  color: rgba(255, 255, 255, .42);
  text-decoration: none;
  padding: .2rem 0;
  transition: color .2s;
}

.footer-social-list a:hover {
  color: var(--og);
}

/* ── Link grid ── */

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 1rem;
  font-size: .82rem;
}

.footer-col-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .5rem;
}

.footer-links a {
  display: block;
  padding: .15rem 0;
}

/* ── Bottom bar ── */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, .22);
}

/* ── Credit ── */

.footer-credit {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .68rem;
  color: rgba(255, 255, 255, .22);
  text-align: center;
}

.footer-credit a {
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
}

.footer-credit a:hover {
  color: rgba(255, 255, 255, .55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
