/* ─── AL About template — only what page.css / about.css / why.css do not already cover ─── */

/* Story: prose left, photo + since-2012 stat right */
.al-story { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr); gap: 68px; align-items: start; }
.al-story > * { min-width: 0; }
.al-story__media { position: sticky; top: calc(var(--header-h) + 24px); }
.al-story__media .al-about__stat { right: 0; }

/* Fact strip — verified NAP only.
   Rows, not a 3-up grid: in the ~650px prose column the address wrapped to three lines and the
   phone to one, so the cards ended up 207/154/180px tall with a ragged bottom edge. */
.al-facts { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.al-facts > * { min-width: 0; }
.al-fact {
	background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-1);
	padding: 18px 22px; text-decoration: none;
	display: grid; grid-template-columns: 44px minmax(0,1fr) auto; align-items: center; gap: 18px;
	transition: transform .2s ease, box-shadow .2s ease;
}
a.al-fact:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
a.al-fact:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.al-fact i { width: 44px; height: 44px; border-radius: var(--r); background: var(--red); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(227,73,58,.26); }
.al-fact i svg { width: 20px; height: 20px; stroke: #fff; }
.al-fact b { font-family: var(--font-display); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); grid-column: 2; grid-row: 1; }
.al-fact span { font-size: 16.5px; color: var(--ink); font-weight: 600; overflow-wrap: anywhere; grid-column: 2; grid-row: 2; line-height: 1.4; }
.al-fact i { grid-column: 1; grid-row: 1 / 3; }
.al-fact::after {
	content: ""; grid-column: 3; grid-row: 1 / 3; width: 8px; height: 8px; flex: none;
	border-right: 2px solid var(--red); border-top: 2px solid var(--red);
	transform: rotate(45deg); opacity: .45; transition: transform .2s ease, opacity .2s ease;
}
a.al-fact:hover::after { opacity: 1; transform: rotate(45deg) translate(3px, -3px); }

/* .al-facts sits inside .al-prose, whose ul/li/svg rules would otherwise take it over.
   `.al-prose ul` (0,1,1) also beats a bare `.al-facts` (0,1,0), so the top margin must be set
   here or it computes to 0. */
.al-prose .al-facts { display: grid; gap: 12px; margin: 48px 0 0; }
.al-prose .al-facts li { display: block; }
.al-prose .al-facts .al-fact { width: 100%; }
.al-prose .al-facts .al-fact i svg { width: 20px; height: 20px; stroke: #fff; margin-top: 0; }

/* Closing conversion block — the single dark anchor on this page */
.al-close__in { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 56px; padding: 60px 56px 64px; align-items: center; }
.al-close__in > * { min-width: 0; }
.al-close h2 { color: #fff; font-size: clamp(30px, 3.6vw, 42px); margin: 0 0 16px; }
.al-close p { color: #8f8f99; font-size: 17px; margin: 0 0 28px; max-width: 460px; }
.al-close__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.al-close__actions .al-btn--white { box-shadow: 0 12px 30px rgba(0,0,0,.4); }
.al-close__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.al-close__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: #d6d6dd; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.al-close__list li:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.al-close__list svg { width: 19px; height: 19px; stroke: var(--red); stroke-width: 2.4; flex: none; margin-top: 3px; }

@media (max-width: 1080px) {
	.al-story { grid-template-columns: 1fr; gap: 52px; }
	.al-story__media { position: static; max-width: 620px; }
	.al-close__in { grid-template-columns: 1fr; gap: 34px; padding: 46px 30px 50px; }
}
@media (max-width: 720px) {
	.al-facts { margin-top: 34px; }
	.al-fact { padding: 16px 18px; gap: 14px; grid-template-columns: 40px minmax(0,1fr); }
	.al-fact i { width: 40px; height: 40px; }
	.al-fact::after { display: none; }
	.al-close__in { padding: 38px 22px 42px; }
}
