.site-footer {
  background: linear-gradient(90deg, #3d5445 0%, #445b4b 100%);
  color: #ffffff;
  padding: 26px 32px;
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1.5fr 1fr 1fr;
  align-items: center;
  gap: 36px;
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer__logo img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
}

/* Kontakt */
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-icon {
  flex: 0 0 22px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 2px;
}

.footer-info-item p,
.footer-info-item a {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #ffffff;
  text-decoration: none;
}

.footer-info-item a:hover {
  opacity: 0.85;
}

/* Social */
.site-footer__social {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__social h3,
.site-footer__hours h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s ease;
}

.footer-social-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-social-links--icons a {
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}


/* Oeffnungszeiten */
.site-footer__hours {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__hours p {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #ffffff;
}

.site-footer__hours p:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 1100px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .site-footer__social,
  .site-footer__hours {
    padding-left: 0;
    border-left: none;
  }

  .site-footer__logo {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 24px 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__logo {
    justify-content: flex-start;
  }

  .site-footer__logo img {
    width: 90px;
    height: 90px;
  }

  .footer-info-item p,
  .footer-info-item a,
  .site-footer__hours p {
    font-size: 0.98rem;
  }

  .site-footer__social h3,
  .site-footer__hours h3 {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .footer-social-links a {
    width: 34px;
    height: 34px;
  }
}
