/* ── Footer block ── */
.block-footer {
  background: var(--color-dark-bg);
  color: var(--color-on-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  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 img {
  height: 40px; filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.block-footer .contact-tagline {
  font-size: 14px; color: rgba(255,255,255,0.55); 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: rgba(255,255,255,0.55); margin-bottom: 16px;
}
.block-footer .contact-col a, .block-footer .contact-col p {
  display: block; font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 8px; line-height: 1.6;
  transition: color 0.2s;
}
.block-footer .contact-col a:hover { color: var(--color-on-dark); }

/* 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 rgba(255,255,255,0.1);
  font-size: 12px; color: rgba(255,255,255,0.3);
  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; }
}
