body > .site-footer {
  min-height: 0;
  margin-top: 0;
  border-top: 1px solid var(--site-soft);
  background: var(--site-white);
  color: var(--site-ink);
  font-family: var(--font-secondary);
}
body > .site-footer > .site-footer__inner {
  max-width: 1216px;
  margin-inline: auto;
  padding: 64px 48px 24px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}
.site-footer .footer-brand-link {
  display: inline-block;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -.07em;
}
.site-footer .footer-brand-dot { color: var(--site-yellow); }
.site-footer__brand p {
  max-width: 270px;
  margin-top: 20px;
  color: var(--site-muted);
  font-size: .86rem;
  line-height: 1.7;
}
.site-footer__trail { width: 190px; height: 44px; margin-top: 24px; color: var(--site-muted); }
.site-footer h2 {
  margin: 7px 0 14px;
  font-family: var(--font-secondary);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.5;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer .footer-link {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 999px;
  box-sizing: border-box;
  align-items: center;
  gap: 8px;
  color: var(--site-muted);
  font-size: .86rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}
.site-footer .engraving-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform 180ms ease; }
.site-footer__navigation .footer-link { width: 100%; justify-content: space-between; }
.site-footer__navigation .engraving-icon { width: 16px; opacity: .5; }
.site-footer .footer-link:hover,
.site-footer .footer-link:focus-visible { color: var(--site-ink); background: var(--site-soft); box-shadow: none; text-decoration: none; }
.site-footer .footer-link:hover .engraving-icon { transform: translateX(3px); }
.site-footer a:focus-visible { outline: 2px solid var(--site-ink); outline-offset: 4px; border-radius: 999px; }
.site-footer__colophon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--site-soft);
  color: var(--site-muted);
  font-family: var(--font-mono);
  font-size: .65rem;
}
@media (max-width: 767px) {
  body > .site-footer > .site-footer__inner { padding: 40px 24px 24px; }
  .site-footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 28px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer .footer-brand-link { font-size: 3.25rem; }
  .site-footer__brand p { max-width: 350px; margin-top: 14px; }
  .site-footer__trail { width: 150px; height: 34px; margin-top: 18px; }
  .site-footer .footer-link { min-height: 44px; font-size: .8rem; }
  .site-footer__colophon { margin-top: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer .engraving-icon, .site-footer .footer-link { transition: none; }
}
