@charset "UTF-8";
/* Production hotfix: avoid encoding-sensitive glyphs that broke parsing */

/* Footer styles recopied to bypass broken block in main.css */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 0;
  background: var(--surface);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.site-footer .container { padding: 40px 20px 20px; }

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--primary);
  font-size: 20px;
  margin: 0 0 12px;
}

.footer-section h4 {
  color: var(--text);
  font-size: 16px;
  margin: 0 0 16px;
  font-weight: 600;
}

.footer-section p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.footer-contact,
.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-contact li,
.footer-links li { margin-bottom: 10px; }

.footer-contact a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-contact a:hover,
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }

.footer-bottom { padding-top: 20px; border-top: 1px solid var(--border); }

/* Footer icons using safe Unicode escapes */
.footer-contact a::before {
  content: "\2709 "; /* ✉ */
  margin-right: 8px;
}

.footer-contact a[href^="tel"]::before {
  content: "\260E "; /* ☎ */
  margin-right: 8px;
}

/* Remove browser bullets explicitly (in case earlier rules failed) */
.footer-links,
.footer-contact {
  list-style: none;
  padding-left: 0;
}
