/* Layout-Sicherung (Footer nicht abschneiden) */
html, body { height: 100%; }
.page { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }

/* Footer Container */
.site-footer{
  background: linear-gradient(180deg, rgba(10,14,26,0.9), rgba(6,9,18,0.96));
  color:#e6e9ef;
  border-top:1px solid rgba(140,155,255,0.22);
  box-shadow:0 -10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.footer-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:28px 22px 20px;
}

/* Grid-Aufteilung */
.footer-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:20px;
}

/* Spalten */
.footer-col{ min-width:0; }
.footer-title{
  margin:0 0 10px 0;
  font-size:14px;
  letter-spacing:.3px;
  color:#cfd6ff;
  font-weight:700;
  text-transform:uppercase;
}

.footer-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}
.footer-list a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#c8cff5;
  font-size:14px;
  padding:6px 8px;
  border:1px solid rgba(140,155,255,0.16);
  border-radius:10px;
  background: linear-gradient(180deg, rgba(16,20,36,0.55), rgba(12,16,28,0.55));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.footer-list a::before{
  content:"";
  inline-size:6px; block-size:6px;
  border-radius:50%;
  background: #8aa0ff;
  box-shadow:0 0 10px rgba(120,130,255,.6);
  opacity:.7;
}
.footer-list a:hover,
.footer-list a:focus{
  color:#f2f4ff;
  border-color: rgba(160,175,255,.6);
  transform: translateY(-1px);
  box-shadow:0 10px 22px rgba(80,110,220,.25);
  outline: none;
}

/* Brand / Kontakt */
.footer-brand .brand-line{
  display:flex; align-items:center; gap:10px;
  padding:6px 8px;
  border:1px solid rgba(140,155,255,0.16);
  border-radius:12px;
  background: linear-gradient(180deg, rgba(20,24,44,0.5), rgba(12,16,28,0.5));
}
.brand-mark{
  inline-size:36px; block-size:36px;
  display:grid; place-items:center;
  border-radius:12px;
  border:1px solid rgba(150,165,255,0.35);
  background: radial-gradient(100% 100% at 50% 0%, rgba(160,172,255,0.18), rgba(120,132,255,0.08));
  color:#cfd6ff;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-name{ font-size:14px; letter-spacing:.2px; }
.brand-sub{ font-size:12px; color:#aeb6cc; }

.footer-contact{
  margin:10px 0 0 0;
  font-style: normal;
  line-height:1.6;
}
.footer-contact a{
  color:#cfd6ff; text-decoration:none; font-size:14px;
  border-bottom:1px dashed rgba(160,175,255,.3);
  transition: color .2s ease, border-color .2s ease;
}
.footer-contact a:hover{ color:#ffffff; border-color: rgba(160,175,255,.7); }

/* Meta-Zeile unten */
.footer-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  padding-top:12px;
  border-top:1px dashed rgba(140,155,255,0.18);
  color:#aeb6cc;
  font-size:13px;
}
.brand-inline{
  padding:2px 6px;
  border-radius:8px;
  border:1px solid rgba(150,165,255,.28);
  background: linear-gradient(180deg, rgba(18,24,42,.6), rgba(14,18,32,.6));
}

/* Subtile Linie & Glow */
.site-footer::before{
  content:"";
  position:absolute; left:0; right:0; top:-1px; height:1px;
  background: linear-gradient(90deg, rgba(170,180,255,0), rgba(170,180,255,.5), rgba(170,180,255,0));
  pointer-events:none;
}
.site-footer::after{
  content:"";
  position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(900px 70px at 50% -40px, rgba(120,130,255,.12), transparent 60%);
}

/* Fokus-Style für Tastatur */
.footer-list a:focus-visible{
  outline:2px solid rgba(160,175,255,.8);
  outline-offset:2px;
}

/* Responsiveness */
@media (max-width: 1024px){
  .footer-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 780px){
  .footer-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-meta{ flex-direction:column; align-items:flex-start; gap:6px; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-wrap{ padding:24px 16px 16px; }
}

/* Kleinigkeiten */
.footer-list li{ min-width:0; }
.footer-list a:active{ transform: translateY(0); }
