/* shared dark footer */
.site-footer {
  background: var(--ink, #161310);
  color: var(--bg, #ece7df);
  padding: 18px 36px;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  font-family: 'Inter', system-ui, sans-serif;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.site-footer .brand-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(236,231,223,0.55);
}
.site-footer .socials-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(236,231,223,0.7);
}
.site-footer .socials-foot a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease;
  color: inherit;
}
.site-footer .socials-foot a:hover {
  color: var(--accent, #d8542a);
}
.site-footer .socials-foot svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}
.site-footer .cta-line {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  line-height: 1.1;
  color: var(--bg, #ece7df);
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}
.site-footer .cta-line .arr {
  display: inline-block;
  transition: transform .25s ease;
  color: var(--bg, #ece7df);
}
.site-footer .cta-link {
  color: var(--bg, #ece7df);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease;
}
.site-footer .cta-link:hover { color: var(--accent, #d8542a); }
.site-footer .cta-line:hover .arr { transform: translateX(6px); }

@media (max-width: 900px) {
  .site-footer { padding: 20px; }
  .site-footer .footer-inner { gap: 14px; }
  .site-footer .cta-line { font-size: 22px; }
}
