/* Shared with apps/website site footer (globals.css). Used by static brochure HTML.
   Lock 16px so rem sizes match the homepage (brochure body is 17px). */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(13, 43, 69, 0.03));
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: var(--foreground);
}

.site-footer .footer-inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 3.5rem 1.25rem 2.5rem;
}

.site-footer .footer-columns {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 850;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--foreground);
}

.site-footer .brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  object-fit: contain;
  background: transparent;
}

.site-footer .footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 22rem;
  margin: 0;
}

.site-footer .footer-col h4 {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.site-footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer .footer-col a {
  color: var(--foreground-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: inherit;
  transition: color 0.18s ease;
}

.site-footer .footer-col a:hover {
  color: var(--accent-deep);
}

.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.site-footer .footer-bottom a {
  text-decoration: none;
  color: var(--muted-strong);
  font-weight: 400;
}

.site-footer .footer-bottom a:hover {
  color: var(--foreground);
}

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

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

@media print {
  .site-header,
  .site-footer {
    display: none;
  }
}
