/* Shared footer: keep the club identity, contact, and navigation together. */
.site-footer { padding: 36px 4.2% 18px; }
.site-footer .footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: start;
  gap: 28px 48px;
}
.footer-identity {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  min-width: 0;
}
.site-footer .club-logo img { width: 64px; height: 64px; max-width: 100%; max-height: none; }
.footer-contact { min-width: 0; }
.site-footer .footer-contact .club-tagline {
  margin: 0;
  max-width: 30ch;
  font: 400 14px/1.6 var(--body);
  color: var(--muted);
}
.footer-contact > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.site-footer .footer-top nav { display: block; order: 0; min-width: 0; }
.site-footer .footer-top nav > .menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-top nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 16px;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .03em;
}
.site-footer .footer-bottom > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 10px;
}
@media (hover: hover) {
  .footer-contact > a:hover { color: var(--gold); }
}
@media (hover: none) {
  .site-footer .footer-top nav a:hover { color: inherit; }
}
@media screen and (max-width: 950px) {
  .site-footer .footer-top { grid-template-columns: minmax(0, 1fr); gap: 20px; }
}
@media screen and (max-width: 700px) {
  .site-footer { padding: 28px 22px 16px; }
  .site-footer .footer-top { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .footer-identity { grid-template-columns: 48px minmax(0, 1fr); gap: 16px; }
  .site-footer .club-logo img { width: 48px; height: 48px; }
  .site-footer .footer-contact .club-tagline { max-width: 28ch; font-size: 13px; }
  .site-footer .footer-top nav > .menu { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  .site-footer .footer-top nav a { border-bottom: 1px solid var(--line); }
  .site-footer .footer-bottom { margin-top: 16px; padding-top: 6px; border-top: 0; }
}
@media screen and (max-width: 360px) {
  .site-footer { padding-inline: 18px; }
  .footer-identity { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; }
  .site-footer .club-logo img { width: 44px; height: 44px; }
}
