/* ── Footer ── */
#footer {
  background: var(--dunkel);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo-wrap { margin-bottom: 1.25rem; }
.footer-logo-text .logo-name { font-size: 1.4rem; }
.footer-beschreibung {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--weiss);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--weiss);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before { content: '›'; color: var(--orange); }
.footer-links a:hover { color: var(--weiss); }

.footer-kontakt { list-style: none; }
.footer-kontakt li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-kontakt-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.footer-kontakt a { color: rgba(255,255,255,0.65); }
.footer-kontakt a:hover { color: var(--orange); }

.footer-notfall {
  background: rgba(255,102,0,0.12);
  border: 1px solid rgba(255,102,0,0.3);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
}
.footer-notfall p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.footer-notfall a {
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-rechtlich { display: flex; gap: 1.5rem; }
.footer-rechtlich a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer-rechtlich a:hover { color: var(--orange); }

.cookie-open-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-open-btn:hover { color: var(--orange); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
