.site-footer {
  background: var(--footer-bg);
  color: white;
  padding: 48px 40px 28px;
  max-width: 100%;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.footer-about {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--brand); }

.footer-domains { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

.footer-engrave {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.engrave-link { display: flex; align-items: center; opacity: .5; transition: opacity .2s; }
.engrave-link:hover { opacity: 1; }
.engrave-logo {
  height: 11px;
  width: auto;
  filter: brightness(0) invert(1);
}
