/* ==================================================================
   Site footer — dark panel: brand + Address / Contact / Opening Times,
   then a divider and bottom bar. Matches the supplied design.
   ================================================================== */
.site-footer {
  background: var(--color-ink);
  color: var(--color-body-dark);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: 64px 56px;
}

.footer-col__heading {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 22px;
}

/* ---------- Brand ---------- */
.footer-logo { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.footer-logo__mark { width: 46px; height: 46px; flex: none; }
.footer-logo__text { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-logo__name { height: 17px; width: auto; }
.footer-logo__sub { height: 7px; width: auto; }
.footer-brand__text {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-body-dark);
  max-width: 300px;
}

/* ---------- Info blocks ---------- */
.footer-block { margin: 0 0 20px; font-size: 14px; line-height: 23px; }
.footer-block:last-child { margin-bottom: 0; }
.footer-block strong {
  display: block;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}
.footer-block span { color: var(--color-body-dark); }

/* phone links + yellow icon */
.footer-tel { display: inline-flex; align-items: center; gap: 9px; color: var(--color-body-dark); transition: color 0.2s var(--ease); }
.footer-tel:hover { color: var(--color-white); }
.footer-ico {
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: none;
  background: var(--color-yellow);
}
.footer-ico--phone {
  -webkit-mask: url("../icons/contact-phone.svg") center / contain no-repeat;
  mask: url("../icons/contact-phone.svg") center / contain no-repeat;
}

/* ---------- Bottom bar ---------- */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__copy { margin: 0; }

.footer-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links__list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s var(--ease);
}
.footer-links__list a:hover { color: var(--color-white); }

@media (min-width: 600px) {
  .site-footer__top { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer__top { grid-template-columns: 1.6fr 1.1fr 1.1fr 1.1fr; gap: 48px; }
  .site-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
