.site-footer {
  padding: 42px 0 18px;
  color: var(--ink);
  background: #f5f7fa;
  border-top: 1px solid var(--line);
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.site-footer section {
  padding: 0;
}

.site-footer .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-brand-column,
.site-footer .footer-column {
  min-width: 0;
}

.site-footer .footer-logo {
  width: 206px;
  max-width: 100%;
  padding: 0;
  margin-top: -14px;
  margin-bottom: -6px;
  background: transparent;
}

.site-footer .footer-links-icon li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.site-footer .footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  flex: 0 0 auto;
  color: var(--red);
}

.site-footer .footer-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.site-footer .footer-icon img {
  width: 16px;
  height: 16px;
  max-width: 16px;
  display: block;
  object-fit: contain;
}

.site-footer .footer-contact-btn {
  margin-top: 16px;
  padding: 10px 18px;
  font-size: 13px;
}

.site-footer .footer-brand-copy {
  max-width: 230px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer .footer-hours {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer .footer-column h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer .footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #364152;
  font-size: 14px;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: var(--red);
  text-decoration: underline;
}

.site-footer .footer-brand-column .footer-socials {
  grid-column: auto;
  grid-row: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  margin-top: 16px;
}

.site-footer .social-link {
  width: 38px;
  height: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease;
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible {
  border-color: var(--red);
  background: #fff;
  transform: translateY(-2px);
  outline: 0;
}

.site-footer .social-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
}

.site-footer .social-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.site-footer .footer-map {
  grid-column: auto;
  grid-row: auto;
  justify-self: stretch;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.site-footer .footer-map iframe {
  width: 100%;
  height: 170px;
  display: block;
  border: 0;
}

.site-footer .footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer .footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer .footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer .footer-address .footer-icon {
  margin-top: 2px;
}

.site-footer .footer-bottom-address {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-footer .footer-bottom-links a:hover,
.site-footer .footer-bottom-links a:focus-visible {
  color: var(--red);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 46px;
  height: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(25, 34, 47, .22);
  line-height: 0;
  overflow: hidden;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  display: block;
}

.floating-scroll-top {
  bottom: 76px;
}

@media (max-width: 900px) {
  .site-footer .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-map iframe {
    height: 180px;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer .footer-bottom-address {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}
