/* --- Footer ------------------------------------------------------------- */

/* Light, not charcoal — the wireframe's footer is white with the pink lockup on
 * it, and a dark slab at the bottom of an otherwise airy page reads as a
 * different site. */
.footer {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: var(--space-12) 0 var(--space-8);
}
.footer a {
  color: var(--ink);
  text-decoration: none;
}
.footer a:hover {
  color: var(--pink-text);
  text-decoration: underline;
}
.footer-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .footer-grid {
    /* The lockup column is wider than the three link columns. */
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  }
}
.footer h3 {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
}
.footer li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.footer .icon {
  flex: none;
  margin-top: 3px;
  color: var(--pink-text);
}
.footer .wordmark img {
  height: 88px;
}

.social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
}
.social a:hover {
  background: var(--pink-text);
}
.colophon {
  border-top: 1px solid var(--line);
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  /* Copyright on the left, the owner's sign-in link on the right; wraps on
   * narrow screens instead of overflowing. */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}
/* The owner link stays as quiet as the copyright line — `.footer a` would
 * render it in full-strength ink, which reads as a customer-facing action. */
.colophon a {
  color: var(--ink-soft);
}
