/* Gemeinsame Fußleiste aller AKO-Seiten */
footer.site-footer {
  margin: 0;
  padding: 0;
  border-top: 4px solid #f5c518;
  background: #151515;
  color: #c9c9c9;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer__inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) minmax(150px, .85fr) minmax(210px, 1.1fr) minmax(170px, .9fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding: 2.25rem 0 1.8rem;
}

.site-footer__brand,
.site-footer__section {
  min-width: 0;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: .8rem;
  text-decoration: none;
}

.site-footer__logo svg {
  display: block;
  width: 110px;
  height: 65px;
}

.site-footer__company,
.site-footer__heading {
  margin: 0 0 .8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #f5c518;
}

.site-footer__company {
  font-size: .78rem;
  line-height: 1.35;
  letter-spacing: 1.5px;
}

.site-footer__heading {
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(245, 197, 24, .3);
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: 2.5px;
}

.site-footer__claim,
.site-footer__address,
.site-footer__bottom {
  font-family: 'Oswald', sans-serif;
}

.site-footer__claim {
  max-width: 310px;
  margin: 0;
  font-size: .78rem;
  line-height: 1.65;
  color: #929292;
}

.site-footer__address {
  margin: 0 0 .65rem;
  font-size: .78rem;
  font-style: normal;
  line-height: 1.65;
  color: #a9a9a9;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li {
  margin: 0 0 .42rem;
  padding: 0;
}

.site-footer__links a {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  line-height: 1.4;
  letter-spacing: .25px;
  color: #a9a9a9;
  text-decoration: none;
  transition: color .15s ease;
}

.site-footer__links a:hover {
  color: #f5c518;
}

.site-footer__links a:focus-visible,
.site-footer__logo:focus-visible,
.site-footer__emergency:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.site-footer__contact-links {
  margin-bottom: .85rem;
}

.site-footer__emergency {
  display: inline-flex;
  flex-direction: column;
  gap: .12rem;
  min-width: 180px;
  padding: .6rem .75rem;
  border: 2px solid #f5c518;
  background: #a92f24;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  line-height: 1.15;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.site-footer__emergency:hover {
  background: #f5c518;
  color: #151515;
}

.site-footer__emergency span {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer__emergency strong {
  font-size: 1.05rem;
  letter-spacing: 1.5px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .66rem;
  line-height: 1.5;
  letter-spacing: .6px;
  color: #6f6f6f;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    width: min(100% - 2rem, 520px);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.8rem 0 1.4rem;
    text-align: left;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: .3rem;
    text-align: left;
  }
}

/* Abschlussbalken nur unter Leistungen und Unternehmen */
.site-footer nav.site-footer__section {
  border-bottom: 3px solid #f5c518;
}