/* ── Footer block ──
   Light footer (cream surface) so the gold brand logo can render at its
   natural colour without a filter trick. Border-top separates from the
   final content section. */
.block-footer {
  background: var(--color-surface);
  color: var(--color-fg);
  border-top: 1px solid var(--color-border);
  padding: var(--space-section-y) var(--space-section-x);
}
.block-footer .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; align-items: start;
}
.block-footer .contact-logo { margin-bottom: 20px; }
.block-footer .contact-tagline {
  font-family: var(--font-body);
  font-size: 14px; color: var(--color-fg-muted); line-height: 1.6;
}
.block-footer .contact-col-title {
  font-family: var(--font-eyebrow);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-muted); margin-bottom: 16px;
}
.block-footer .contact-col a, .block-footer .contact-col p {
  display: block; font-size: 14px; color: var(--color-fg-muted);
  text-decoration: none; margin-bottom: 8px; line-height: 1.6;
  transition: color 0.2s;
}
.block-footer .contact-col a:hover { color: var(--color-accent); }

/* Quick-links list container + per-link row. The wrapper exists so the
   editor can attach the per-link toolbar in edit mode without
   disrupting the public layout. Each .contact-link sits as a single
   block; its inner <a> takes full width like before. */
.block-footer .contact-col-links { display: block; }
.block-footer .contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.block-footer .contact-link a {
  flex: 1;
  margin-bottom: 0;
  /* Keep the same colour rules as the surrounding .contact-col a; the
     descendant selector above already covers it. */
}
.block-footer .copyright {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 12px; color: var(--color-muted);
  display: flex; justify-content: space-between;
  font-family: var(--font-eyebrow); letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .block-footer .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .block-footer .copyright { flex-direction: column; gap: 8px; }
}
