/* ─── AL Contact template — additions only ───
   Everything dark on this page belongs to .al-combo (contact.css), which is the single
   dark anchor. Nothing here introduces a second one, and red is used only on call links. */

/* ── Details strip ── */
.al-cd { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.al-cd > * { min-width: 0; }
.al-cd__card {
	display: flex; flex-direction: column; gap: 12px;
	background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-1);
	padding: 26px 24px 28px; text-decoration: none; color: inherit;
	transition: transform .22s ease, box-shadow .22s ease;
}
a.al-cd__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
a.al-cd__card:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.al-cd__card i {
	width: 44px; height: 44px; border-radius: var(--r); flex: none;
	background: var(--bone); border: 1px solid var(--line);
	display: grid; place-items: center;
}
.al-cd__card i svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; }
.al-cd__k {
	font-family: var(--font-display); font-size: 12px; font-weight: 800;
	letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
}
.al-cd__v {
	font-family: var(--font-display); font-size: 19px; font-weight: 800;
	color: var(--ink); letter-spacing: -.02em; line-height: 1.25; overflow-wrap: anywhere;
}
.al-cd__note { font-size: 14.5px; color: var(--ink-3); margin: 0; }
.al-cd__more {
	margin-top: auto; padding-top: 6px;
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--red);
}
.al-cd__more svg { width: 15px; height: 15px; stroke: currentColor; fill: none; transition: transform .18s ease; }
a.al-cd__card:hover .al-cd__more svg { transform: translateX(4px); }
/* Phone card is the one place red carries a fill — it is a call. */
.al-cd__card--call i { background: var(--red); border-color: var(--red); box-shadow: 0 8px 20px rgba(227,73,58,.28); }
.al-cd__card--call i svg { stroke: #fff; }
.al-cd__card--call .al-cd__v { color: var(--red); }

/* ── Plain-language emergency note ── */
.al-note {
	display: flex; gap: 18px; align-items: flex-start;
	background: var(--red-soft); border-radius: var(--r-lg);
	padding: 26px 30px; margin-top: 28px;
}
/* 4px border-left against a 1px border on a 24px radius draws a tapered wedge at both corners */
.al-note > svg {
	width: 40px; height: 40px; flex: none; padding: 8px; border-radius: 50%;
	background: var(--red); stroke: #fff; fill: none;
}
.al-note p { margin: 0; font-size: 16px; color: var(--ink-2); max-width: 92ch; }
.al-note p + p { margin-top: 8px; }
.al-note b { color: var(--ink); }
.al-note a { color: var(--red); font-weight: 700; text-underline-offset: 3px; }

/* ── Longer booking form — contact.css styles all three control types ── */
.al-form__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.al-form__pair > * { min-width: 0; }
.al-form textarea { resize: vertical; min-height: 104px; }
.al-form input:focus-visible, .al-form select:focus-visible,
.al-form textarea:focus-visible, .al-form button:focus-visible {
	outline: 3px solid rgba(255,255,255,.75); outline-offset: 2px;
}
.al-form small.al-form__hint {
	margin-top: -10px; margin-bottom: 18px; font-size: 13px; color: #8f8f99; text-align: left;
}

/* Two stacked halves inside the dark block read better than one tall column */
/* contact.css targets `.al-combo > * > div > p`; this page nests one level deeper. */
.al-combo__side { display: grid; gap: 26px; align-content: start; }
.al-combo__side > div > p { color: #8f8f99; font-size: 17px; margin: 0 0 28px; max-width: 440px; }
.al-combo__hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.al-combo__hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; color: #8f8f99; border-bottom: 1px solid rgba(255,255,255,.10); padding-bottom: 9px; }
.al-combo__hours li b { color: #fff; font-family: var(--font-display); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 1080px) { .al-cd { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .al-note { padding: 20px 20px; } }
@media (max-width: 720px)  {
	.al-cd { grid-template-columns: 1fr; }
	.al-form__pair { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px)  { .al-note { padding: 20px 18px; gap: 14px; } }
