/* ─── AL Footer ─── */
.al-footer { background: var(--ink); color: #9a9aa4; padding-block: 78px 0; font-size: 15px; }
.al-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 56px; }
.al-footer__logo { background: #fff; border-radius: var(--r); padding: 10px 14px; display: inline-block; margin-bottom: 20px; }
.al-footer__logo img { width: 160px; height: 46px; }
.al-footer p { margin: 0 0 22px; line-height: 1.7; max-width: 320px; }
.al-footer h4 { color: #fff; font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 20px; }
.al-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.al-footer a { color: #c8c8d0; text-decoration: none; transition: color .16s ease, padding-left .16s ease; }
.al-footer ul a:hover { color: var(--red); padding-left: 5px; }
.al-footer__contact li { display: flex; align-items: flex-start; gap: 12px; line-height: 1.55; min-width: 0; }
.al-footer__contact svg { width: 16px; height: 16px; stroke: var(--gold); flex: none; margin-top: 4px; }
/* the email is one unbreakable token — let it break rather than overflow */
.al-footer__contact a, .al-footer__contact span { min-width: 0; overflow-wrap: anywhere; }
.al-footer__contact a { color: #fff; font-weight: 600; }
.al-footer__contact a:hover { padding-left: 0; color: var(--gold); }
.al-footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; }
.al-footer__bar nav { display: flex; gap: 22px; flex-wrap: wrap; }
/* was 980 — 4 columns overflowed at ~1024 */
@media (max-width: 1100px) { .al-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 44px; } }
@media (max-width: 720px)  { .al-footer__grid { gap: 34px; padding-bottom: 44px; } .al-footer { padding-block: 58px 0; } }
@media (max-width: 560px)  { .al-footer__grid { grid-template-columns: 1fr; } }
/* reserve the fixed call bar on the footer, not on body — body is white and the strip showed */
@media (max-width: 860px)  { .al-footer { padding-bottom: calc(58px + env(safe-area-inset-bottom)); } }

/* Only the two profiles the business actually has — see PROJECT.md */
.al-social { display: flex; gap: 10px; margin-top: 4px; }
.al-social a {
	width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
	background: rgba(255,255,255,.08); transition: background .16s ease, transform .16s ease;
}
.al-social a:hover { background: var(--red); transform: translateY(-2px); padding-left: 0; }
.al-social svg { width: 17px; height: 17px; fill: #fff; }
.al-social a:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
