/*
 * sodnamis — footer.css
 * Author: sodnamis.lt
 */
.site-footer { background: hsl(var(--muted)); color: hsl(var(--muted-foreground)); }
.site-footer__grid {
  display: grid; gap: 2.5rem; padding-block: 4rem 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.site-footer__brand .brand__mark--footer { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: hsl(var(--primary)); }
.site-footer__company { margin-top: 1rem; line-height: 1.7; }
.site-footer__company strong { color: hsl(var(--foreground)); }
.site-footer__company a, .site-footer__list a { color: hsl(var(--muted-foreground)); }
.site-footer__company a:hover, .site-footer__list a:hover { color: hsl(var(--primary)); }
.site-footer__hours { margin-top: 0.5rem; font-size: 0.875rem; }
.site-footer__social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.site-footer__social .icon-btn { border: 1px solid hsl(var(--border)); color: hsl(var(--muted-foreground)); }
.site-footer__social .icon-btn:hover { background: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary)); }

.site-footer__title { font-size: 0.95rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin-bottom: 0.6rem; }

.site-footer__bottom { border-top: 1px solid hsl(var(--border)); }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.25rem; font-size: 0.8125rem; flex-wrap: wrap; }
.back-to-top {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: hsl(var(--primary)); color: #fff; border: none; cursor: pointer;
  padding: 0.5rem 1rem; border-radius: 9999px; font-weight: 600; font-size: 0.8125rem;
  opacity: 0.6; transition: opacity 0.2s ease, transform 0.2s ease;
}
.back-to-top:hover { opacity: 1; transform: translateY(-2px); }
.back-to-top.is-visible { opacity: 1; }
