/* Footer chrome + the site-wide pre-footer band. Enqueued globally. */

.strideuk-prefooter {
  background: var(--strideuk-brand);
  color: var(--strideuk-text-invert);
  padding-block: clamp(36px, 5vw, 64px);
}
.strideuk-prefooter__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.strideuk-prefooter h2 { margin: 0 0 .25em; }
.strideuk-prefooter p { margin: 0; opacity: .85; }
.strideuk-prefooter .strideuk-btn { background: var(--strideuk-accent); color: var(--strideuk-brand-dark); }

/* The old site's footer was the same teal as the header, not a darker shade. */
.strideuk-footer {
  background: var(--strideuk-brand);
  color: var(--strideuk-text-invert);
  padding-block: clamp(40px, 5vw, 72px) 0;
}
.strideuk-footer a { color: inherit; text-decoration: none; }
.strideuk-footer a:hover { color: var(--strideuk-accent); }

.strideuk-footer__inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding-bottom: 40px;
}
.strideuk-footer__brand { text-align: center; }
/* Ticket 72 — same 300x120 artwork as the header, so the same ceiling applies.
   At 78px tall it was 195px wide and a 2x screen had to stretch 300 real pixels
   over 390, which is why the footer mark read as soft. 60px is 150px wide —
   exactly 2x — and is still the largest thing in the footer column. */
.strideuk-footer__logo,
.strideuk-footer__brand img { max-height: 60px; width: auto; margin-inline: auto; }
.strideuk-footer__name { font-size: 1.2rem; font-weight: 700; }
.strideuk-footer__tagline { margin-top: 18px; opacity: .9; }

.strideuk-footer__menus { display: contents; }
.strideuk-footer__col-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--strideuk-text-invert);
  margin: 0 0 18px;
}
.strideuk-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.strideuk-social { display: flex; gap: 12px; margin-top: 20px; justify-content: center; }
.strideuk-social__link {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  transition: background .2s var(--strideuk-ease), border-color .2s var(--strideuk-ease);
}
.strideuk-social__link:hover { background: var(--strideuk-accent); border-color: transparent; }

.strideuk-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .85rem;
  opacity: .75;
}
.strideuk-footer__legal p { margin: 0; }
.strideuk-footer__credit a:hover { color: var(--strideuk-accent); }

@media (max-width: 980px) {
  .strideuk-footer__inner { grid-template-columns: 1fr 1fr; }
  .strideuk-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .strideuk-footer__inner { grid-template-columns: 1fr; text-align: center; }
  .strideuk-footer__legal { justify-content: center; text-align: center; }
}
