.site-footer {
  --focus: var(--gold);
  background: var(--ink);
  color: var(--paper);
  padding: 72px var(--page-gutter) 20px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .65fr 1.4fr;
  gap: 7%;
  align-items: start;
}
.footer-brand .wordmark img { width: 154px; }
.footer-statement {
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -.025em;
  margin-top: 26px;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  min-width: 190px;
  gap: 32px;
  margin-top: 26px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: .8125rem;
  text-decoration: none;
}
.footer-contact svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.footer-contact:hover svg { transform: translate(3px, -3px); }
.site-footer .footer-nav { display: block; padding-top: 12px; min-width: 0; }
.footer-nav h2 {
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--gold);
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f226;
}
.footer-nav ul { margin: 14px 0 0; padding: 0; list-style: none; }
.footer-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  font-size: .8125rem;
  line-height: 1.6;
  color: #d2d5db;
  text-decoration: none;
  text-underline-offset: 5px;
  transition: color .2s var(--ease);
}
.footer-nav a:hover { color: var(--gold); text-decoration: underline; }
.footer-practice ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 24px; }
.footer-bottom {
  margin-top: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #f2f2f226;
  padding-top: 20px;
  color: #b8bfca;
  font-size: .75rem;
}
.back-top { display: inline-flex; align-items: center; gap: 16px; min-height: 44px; flex-shrink: 0; text-decoration: none; color: var(--paper); }
.back-top svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.back-top:hover { color: var(--gold); }
.back-top:hover svg { transform: translateY(-3px); }
@media (max-width: 1050px) {
  .site-footer { padding-top: 60px; }
  .footer-main { grid-template-columns: 1fr .8fr 1.1fr; gap: 6%; }
  .footer-practice ul { grid-template-columns: 1fr; }
  .footer-service { display: none; }
}
@media (max-width: 700px) {
  .site-footer { padding-top: 44px; }
  .footer-main { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; padding-bottom: 30px; border-bottom: 1px solid #f2f2f226; }
  .footer-brand .wordmark img { width: 144px; }
  .footer-statement { font-size: 1.625rem; margin-top: 20px; }
  .footer-contact { width: 100%; margin-top: 18px; }
  .site-footer .footer-nav { padding-top: 0; }
  .footer-nav h2 { min-height: 60px; padding-bottom: 16px; }
  .footer-nav a { font-size: .8125rem; overflow-wrap: anywhere; }
  .footer-bottom { margin-top: 32px; align-items: flex-start; flex-wrap: wrap; gap: 12px; padding-top: 18px; }
  .footer-bottom p { max-width: 27ch; line-height: 1.8; }
  .back-top { margin-left: auto; }
}
