/* ============ Schwarzer Footer ============
   Gemeinsam genutzt von der Landing Page (index.html) UND der About-Seite
   (about.html). Lag bis v37 in landing.css — die kann die About-Seite aber
   nicht einbinden, weil sie `html, body { overflow: hidden }` setzt und die
   Seite damit unscrollbar machen würde. Deshalb hier ausgelagert statt
   kopiert: Eine Änderung wirkt auf beiden Seiten.

   ACHTUNG: `.ft-name` steht in Trovical — dort also keine Umlaute. */

.site-footer {
  position: relative;
  z-index: 2;
  background: #0e0e0e;
  color: #f2f2ee;
  border-radius: 28px 28px 0 0;
  padding: 64px 52px 24px;
  overflow: hidden;
}

.ft-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(50px, 9vh, 110px);
}

.ft-connect {
  font-size: 15px;
  line-height: 1.55;
  color: #c9c9c2;
}

.ft-links { display: flex; gap: 10px; }

.ft-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f2f2ee;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}

.ft-ico:hover {
  background: #f2f2ee;
  color: #111;
  transform: scale(1.08);
}

.ft-name {
  font-family: "Trovical", Georgia, serif;
  font-size: clamp(52px, 10.5vw, 168px);
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 34px;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #8a8a85;
}
/* Imprint · Privacy (seit v49): bewusst klein und grau, kein Menüpunkt (Nicklas
   will das Menü minimal halten; ein Link muss es aber sein, "leicht erkennbar") */
.ft-legal a { color: inherit; text-decoration: none; }
.ft-legal a:hover { color: #f2f2ee; }

@media (max-width: 820px) {
  .site-footer { padding: 48px 24px 20px; }
  .ft-top { flex-direction: column; align-items: flex-start; }
  .ft-name { font-size: clamp(40px, 11vw, 90px); }
}
