/* -----------------------------------------------------------
   Minimal footer (matches site color palette)
   ----------------------------------------------------------- */

.site-footer{
  margin-top: 0; /* no white gap above the footer */
  background: var(--hell, #F7E7C2);
  color: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.site-footer__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__left{
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__logo img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--weiß, #FFF7E5);
  padding: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.site-footer__name{
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.15;
  color: rgba(0,0,0,0.88);
}

.site-footer__small{
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(0,0,0,0.62);
}

.site-footer__right{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__links{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer__links a{
  color: rgba(0,0,0,0.78);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

.site-footer__links a:hover{
  color: var(--ramen, #8D7438);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__social{
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--weiß, #FFF7E5);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-footer__icon:hover{
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(0,0,0,0.10);
}

.site-footer__icon img{
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

.site-footer__bottom{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(0,0,0,0.62);
}

.site-footer__bottom p{
  margin: 0;
}

.site-footer__bottom a{
  color: rgba(0,0,0,0.62);
  text-decoration: none;
}

.site-footer__bottom a:hover{
  color: var(--ramen, #8D7438);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 560px){
  .site-footer__inner{
    justify-content: center;
  }
  .site-footer__right{
    justify-content: center;
  }
  .site-footer__bottom{
    justify-content: center;
  }
}
