﻿/* ===== Footer — sticky unten, scrollt natürlich hoch wenn CTA fertig ===== */
.footer{
  position:sticky;
  bottom:0;
  z-index:2;
  background:#235519;
  overflow:hidden;
  padding:96px 0 36px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:56px;margin-bottom:64px}
@media(max-width:760px){ .footer-grid{grid-template-columns:1fr 1fr;gap:40px} }
@media(max-width:480px){ .footer{padding:72px 0 28px} }
.footer-brand .brand-logo{margin-bottom:24px}
.footer-brand .brand-logo .lw{color:#f6f6f1}
.footer-brand p{color:#c7ccc2;font-size:15px;max-width:52ch;line-height:1.55}
.footer-col h4{font-size:13px;letter-spacing:.18em;text-transform:uppercase;color:#eef0ea;font-weight:700;margin-bottom:22px}
.footer-col ul{list-style:none;display:grid;gap:14px;font-size:15px;color:#c7ccc2}
.footer-col a{transition:color .3s var(--ease)}
.footer-col a:hover{color:var(--accent)}
.footer-contact{display:grid;gap:14px;font-size:15px;color:#c7ccc2;line-height:1.55}
.footer-contact p{margin:0}
.footer-contact-company{color:#eef0ea;font-weight:600}
.footer-contact-phone{display:flex;align-items:center;gap:10px}
.footer-contact-phone svg{width:16px;height:16px;flex-shrink:0;color:#aeb4a8}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);padding-top:28px;
  display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:14px;
  color:#aeb4a8;font-size:14px;
}
.footer-bottom-left{display:flex;flex-wrap:wrap;align-items:center;gap:8px 28px}
.footer-pexels{color:#aeb4a8}
.footer-pexels-link{color:inherit;text-decoration:underline;text-underline-offset:3px;transition:color .3s var(--ease)}
.footer-heart{color:#e53935}
.footer-bottom a:hover{color:var(--accent)}
.footer-credit-link{
  color:inherit;position:relative;padding-bottom:2px;
  transition:color .3s var(--ease);
}
.footer-credit-link:hover{color:var(--accent)}
.footer-credit-link::after{
  content:"";position:absolute;left:0;bottom:0;height:2px;width:100%;
  background:var(--accent);
  transform:scaleX(0);transform-origin:left center;
  transition:transform .45s var(--ease);
}
.footer-credit-link:hover::after{transform:scaleX(1)}

