/* footer */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4.75rem var(--gutter) 2.875rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 2.75rem;
}
.footer__wordmark {
  font-family: "Marcellus", serif;
  font-size: 1.625rem;
  color: var(--cream);
}
.footer__tag {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--footer-tag);
  margin-top: 0.875rem;
  max-width: 17.5rem;
}
.footer__col {
  font-size: 0.875rem;
  line-height: 2.1;
  color: var(--footer-col);
}
.footer__col a {
  color: inherit;
}
.footer__col a:hover {
  color: var(--gold-light);
}
.footer__label {
  font-family: "DM Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--footer-label);
  margin-bottom: 0.75rem;
}
.footer__social {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-col);
  transition: color 0.2s ease;
}
.footer__social-link:hover {
  color: var(--gold-light);
}
.footer__social-link svg {
  display: block;
}
.footer__copy {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--footer-rule);
  font-family: "DM Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--footer-label);
}

