/* ── Footer block ── */
.block-footer {
  background: var(--color-dark-bg);
  color: var(--color-on-dark);
  border-top: 1px solid color-mix(in srgb, var(--color-on-dark) 10%, transparent);
  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: color-mix(in srgb, var(--color-on-dark) 58%, transparent); 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: color-mix(in srgb, var(--color-on-dark) 58%, transparent); margin-bottom: 16px;
}
.block-footer .contact-col a, .block-footer .contact-col p {
  display: block; font-size: 14px; color: color-mix(in srgb, var(--color-on-dark) 62%, transparent);
  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 color-mix(in srgb, var(--color-on-dark) 12%, transparent);
  font-size: 12px; color: color-mix(in srgb, var(--color-on-dark) 34%, transparent);
  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; }
}

/* The closing CTA band and this footer share --color-dark-bg, so
   without a separator they read as one unbroken slab of near-black
   (design system §8). A hairline in the paper token divides them
   without introducing a second ground. */
.block-footer { border-top: 1px solid color-mix(in srgb, var(--color-on-dark) 16%, transparent); }
.block-footer .contact-col-title { font-size: 12px; }
