/* ─── AL Location template ───────────────────────────────────────────────
   Only genuinely new components live here. The page otherwise runs on
   page.css (.al-phero__grid, .al-body/.al-aside/.al-panel, .al-prose,
   .al-grid-4, .al-tilecard), areas.css (.al-areas__chips), faq.css (.al-q)
   and contact.css (.al-combo — the single dark anchor).
   ──────────────────────────────────────────────────────────────────────── */

/* Town pin above the H1 */
.al-loc-pin {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--font-display); font-size: 12.5px; font-weight: 800;
	letter-spacing: .16em; text-transform: uppercase; color: var(--red);
	margin: 0 0 14px;
}
.al-loc-pin svg { width: 15px; height: 15px; stroke: var(--red); stroke-width: 2.2; flex: none; }

/* Small fact strip under the hero copy — no claims, just what the page states */
.al-loc-facts { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.al-loc-facts li {
	display: inline-flex; align-items: center; gap: 9px; min-width: 0;
	font-size: 14.5px; color: var(--ink-2);
	background: var(--bone); border: 1px solid var(--line);
	border-radius: var(--r-pill); padding: 9px 16px;
}
.al-loc-facts svg { width: 15px; height: 15px; stroke: var(--red); stroke-width: 2.2; flex: none; }

/* ── Address card in the sticky aside ── */
.al-loc-addr { display: grid; gap: 14px; margin: 0 0 22px; }
.al-loc-addr__row { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); min-width: 0; }
.al-loc-addr__row svg { width: 18px; height: 18px; stroke: var(--red); stroke-width: 2.2; flex: none; margin-top: 4px; }
.al-loc-addr__row a { color: var(--ink); font-weight: 700; text-decoration: none; word-break: break-word; }
.al-loc-addr__row a:hover { color: var(--red); }
.al-loc-addr__row b { display: block; font-family: var(--font-display); color: var(--ink); }

/* ── Service directory, grouped by division ── */
.al-svcdir { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.al-svcdir > * { min-width: 0; }
.al-svcgrp {
	background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-1);
	padding: 26px 24px 28px; min-width: 0;
}
.al-svcgrp h3 { font-size: 18px; margin: 0 0 4px; }
.al-svcgrp h3 a { text-decoration: none; }
.al-svcgrp h3 a:hover { color: var(--red); }
.al-svcgrp__note { font-size: 13.5px; color: var(--ink-3); margin: 0 0 16px; }
.al-svcgrp ul { list-style: none; margin: 0; padding: 0; }
.al-svcgrp li + li { border-top: 1px solid var(--line-2); }
.al-svcgrp a {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 11px 0; font-size: 15px; color: var(--ink-2); text-decoration: none;
	transition: color .16s ease;
}
.al-svcgrp li svg { width: 14px; height: 14px; stroke: var(--red); flex: none; opacity: 0; transform: translateX(-6px); transition: opacity .16s ease, transform .16s ease; }
.al-svcgrp li a:hover { color: var(--red); }
.al-svcgrp li a:hover svg { opacity: 1; transform: none; }

/* ── Town-scoped FAQ, single column ── */
.al-loc-faq { max-width: 860px; margin-inline: auto; }

/* ── Focus rings for everything new that is clickable ── */
.al-loc-addr__row a:focus-visible,
.al-svcgrp a:focus-visible,
.al-areas__chips a:focus-visible,
.al-q summary:focus-visible {
	outline: 3px solid var(--red); outline-offset: 3px; border-radius: var(--r);
}

/* ── Responsive — breakpoints match page.css ── */
@media (max-width: 1080px) {
	.al-svcdir { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.al-loc-facts li { font-size: 14px; }
}
@media (max-width: 720px) {
	.al-svcdir { grid-template-columns: 1fr; }
	.al-svcgrp { padding: 22px 20px 24px; }
}
