.acb-ft {
	--acb-navy: #223E5A;
	--acb-blue: #4A90D2;
	--acb-yellow: #FFCD47;
	--acb-yellow-hover: #FFDD7E;
	--acb-strip-bg: #F2F7FC;
	--acb-chev-bg: #EAF3FB;
	--acb-heading: #1E293B;
	--acb-link: #475569;
	--acb-body: #64748B;
	--acb-kicker: #94A3B8;
	--acb-strip-kicker: #7D99B3;
	--acb-border: #E6EDF3;
	--acb-pill-border: #D3DDE6;
	--acb-on-navy: #8FB1D1;
	--acb-email-hover: #BCD9F2;
	--acb-text: #334155;
}

/*
 * ACB Footer — design 2b (desktop) / 3a (mobile)
 * Everything is scoped under .acb-ft and sets explicit values, so Astra and
 * Elementor global styles can't bleed in.
 */

.acb-ft,
.acb-ft *,
.acb-ft *::before,
.acb-ft *::after {
	box-sizing: border-box;
}

.acb-ft {
	background: #ffffff;
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	color: var(--acb-text,#334155);
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
}

.acb-ft a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.acb-ft a:hover,
.acb-ft a:focus {
	text-decoration: none;
}

.acb-ft ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.acb-ft li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.acb-ft p {
	margin: 0;
}

.acb-ft img {
	max-width: 100%;
	height: auto;
	display: block;
}

.acb-ft svg {
	display: block;
	flex-shrink: 0;
}

.acb-ft :focus-visible {
	outline: 2px solid var(--acb-blue,#4A90D2);
	outline-offset: 3px;
	border-radius: 3px;
}

/* ---------- Family strip ---------- */

.acb-ft__family {
	background: var(--acb-strip-bg,#F2F7FC);
	padding: 28px 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 56px;
	flex-wrap: wrap;
}

.acb-ft__kicker {
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: .16em;
	color: var(--acb-strip-kicker,#7D99B3);
	text-transform: uppercase;
}

.acb-ft__family-logos {
	display: flex;
	align-items: center;
	gap: 56px;
	flex-wrap: wrap;
}

.acb-ft__family-logo {
	display: flex;
	align-items: center;
	transition: opacity .2s ease;
}

.acb-ft__family-logo:hover,
.acb-ft__family-logo:focus {
	opacity: .72;
}

.acb-ft__family-logos img {
	height: 42px;
	width: auto;
}

/* ---------- Main ---------- */

.acb-ft__main {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 72px;
	padding: 52px 72px 44px;
	max-width: 1440px;
	margin: 0 auto;
}

.acb-ft__brand {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* The link is the flex item now, so alignment belongs on it, not the image. */
.acb-ft__brand-logo-link {
	display: block;
	align-self: flex-start;
	transition: opacity .2s ease;
}

.acb-ft__brand-logo-link:hover,
.acb-ft__brand-logo-link:focus {
	opacity: .72;
}

.acb-ft__brand-logo {
	width: 160px;
	height: auto;
}

.acb-ft__bio {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--acb-body,#64748B);
}

/* ---------- Social ---------- */

.acb-ft__social {
	display: flex;
	gap: 8px;
}

.acb-ft__social a {
	width: 34px;
	height: 34px;
	background: var(--acb-navy,#223E5A);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.acb-ft__social a:hover,
.acb-ft__social a:focus {
	background: var(--acb-blue,#4A90D2);
	color: #ffffff;
}

.acb-ft__social--mobile {
	display: none;
}

/* ---------- Right column ---------- */

.acb-ft__right {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.acb-ft__menus {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	order: 1;
}

.acb-ft__col {
	display: flex;
	flex-direction: column;
}

/* On desktop the accordion header is just a kicker: no button chrome, not clickable. */
.acb-ft .acb-ft__col-head {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	text-align: left;
	font: inherit;
	color: inherit;
	cursor: default;
	pointer-events: none;
	min-height: 0;
	text-transform: none;
	letter-spacing: normal;
}

.acb-ft .acb-ft__col-head:hover,
.acb-ft .acb-ft__col-head:focus {
	background: none;
	box-shadow: none;
	color: inherit;
}

.acb-ft__col-title {
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: .14em;
	color: var(--acb-kicker,#94A3B8);
	text-transform: uppercase;
	display: block;
	margin-bottom: 12px;
}

.acb-ft__chev {
	display: none;
}

.acb-ft__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.acb-ft__links a {
	color: var(--acb-link,#475569);
	font-size: 14px;
	font-weight: 400;
	display: inline-block;
}

.acb-ft__links a:hover,
.acb-ft__links a:focus {
	color: var(--acb-blue,#4A90D2);
}

/* ---------- Contact box ---------- */

.acb-ft__contact {
	background: var(--acb-navy,#223E5A);
	border-radius: 14px;
	padding: 24px 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	order: 2;
}

.acb-ft__contact-intro {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.acb-ft__contact-title {
	font-size: 15.5px;
	font-weight: 700;
	color: #ffffff;
}

.acb-ft__contact-hours {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .65);
}

.acb-ft__phone,
.acb-ft__email {
	display: flex;
	align-items: center;
	gap: 11px;
}

/* These need the extra .acb-ft prefix: the `.acb-ft a { color: inherit }`
   reset above is more specific than a lone class and would otherwise win. */
.acb-ft .acb-ft__phone {
	color: var(--acb-yellow,#FFCD47);
}

.acb-ft .acb-ft__phone:hover,
.acb-ft .acb-ft__phone:focus {
	color: var(--acb-yellow-hover,#FFDD7E);
}

.acb-ft .acb-ft__email {
	color: #ffffff;
}

.acb-ft .acb-ft__email:hover,
.acb-ft .acb-ft__email:focus {
	color: var(--acb-email-hover,#BCD9F2);
}

.acb-ft__phone-icon,
.acb-ft__email-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.acb-ft__phone-icon {
	background: var(--acb-yellow,#FFCD47);
}

.acb-ft__email-icon {
	background: rgba(255, 255, 255, .08);
	border: 1.5px solid rgba(255, 255, 255, .4);
}

.acb-ft__contact-stack {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.acb-ft__contact-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .1em;
	color: var(--acb-on-navy,#8FB1D1);
	text-transform: uppercase;
}

.acb-ft__phone-number {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
}

.acb-ft__email-address {
	font-size: 14px;
	font-weight: 500;
	overflow-wrap: anywhere;
}

/* ---------- Locations ---------- */

.acb-ft__locations {
	border-top: 1px solid var(--acb-border,#E6EDF3);
	padding: 20px 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
}

.acb-ft__locations-title {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--acb-heading,#1E293B);
}

.acb-ft__pills {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.acb-ft .acb-ft__pill {
	border: 1.5px solid var(--acb-pill-border,#D3DDE6);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 13px;
	color: var(--acb-link,#475569);
}

.acb-ft .acb-ft__pill:hover,
.acb-ft .acb-ft__pill:focus {
	border-color: var(--acb-blue,#4A90D2);
	color: var(--acb-blue,#4A90D2);
}

.acb-ft__more {
	font-size: 13px;
	color: var(--acb-kicker,#94A3B8);
	align-self: center;
	font-style: italic;
}

/* ---------- Legal ---------- */

.acb-ft__legal {
	border-top: 1px solid var(--acb-border,#E6EDF3);
	padding: 18px 72px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.acb-ft__fca {
	font-size: 11.5px;
	line-height: 1.65;
	color: var(--acb-kicker,#94A3B8);
	max-width: 1100px;
}

.acb-ft__fca a {
	color: var(--acb-blue,#4A90D2);
}

.acb-ft__fca a:hover,
.acb-ft__fca a:focus {
	color: var(--acb-navy,#223E5A);
}

.acb-ft__bottom {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: var(--acb-body,#64748B);
}

.acb-ft__bottom a {
	color: var(--acb-body,#64748B);
}

.acb-ft__bottom a:hover,
.acb-ft__bottom a:focus {
	color: var(--acb-blue,#4A90D2);
}

/* ================= Mobile / tablet (design 3a) ================= */

@media (max-width: 1199px) {

	.acb-ft__family {
		flex-direction: column;
		padding: 22px 24px;
		gap: 16px;
	}

	.acb-ft__kicker {
		font-size: 11px;
		text-align: center;
	}

	.acb-ft__family-logos {
		gap: 24px;
		justify-content: center;
	}

	.acb-ft__family-logos img {
		height: 30px;
	}

	.acb-ft__main {
		display: flex;
		flex-direction: column;
		gap: 24px;
		padding: 32px 24px 28px;
	}

	.acb-ft__brand-logo-link {
		align-self: center;
	}

	.acb-ft__brand-logo {
		width: 150px;
	}

	.acb-ft__bio {
		font-size: 14px;
	}

	.acb-ft__social--desktop {
		display: none;
	}

	.acb-ft__social--mobile {
		display: flex;
		gap: 10px;
		justify-content: center;
		order: 2;
	}

	.acb-ft__social a {
		width: 40px;
		height: 40px;
	}

	/* Mobile stack order: contact box, socials, then the accordion menus. */
	.acb-ft__contact {
		order: 1;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 22px;
	}

	.acb-ft__menus {
		order: 3;
		display: flex;
		flex-direction: column;
		gap: 0;
		border-top: 1px solid var(--acb-border,#E6EDF3);
	}

	.acb-ft__phone-icon,
	.acb-ft__email-icon {
		width: 44px;
		height: 44px;
	}

	.acb-ft__email-address {
		font-size: 13.5px;
	}

	.acb-ft__col {
		border-bottom: 1px solid var(--acb-border,#E6EDF3);
	}

	/* Accordion header becomes a real, tappable control. */
	.acb-ft .acb-ft__col-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		min-height: 58px;
		cursor: pointer;
		pointer-events: auto;
	}

	.acb-ft__col-title {
		font-size: 15px;
		font-weight: 700;
		letter-spacing: .08em;
		color: var(--acb-navy,#223E5A);
		margin-bottom: 0;
	}

	.acb-ft__chev {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: var(--acb-chev-bg,#EAF3FB);
		flex-shrink: 0;
		transition: transform .25s ease;
	}

	.acb-ft__col-head[aria-expanded="true"] .acb-ft__chev {
		transform: rotate(180deg);
	}

	.acb-ft__panel {
		padding-bottom: 12px;
	}

	.acb-ft__links {
		gap: 0;
	}

	.acb-ft__links a {
		font-size: 15px;
		padding: 9px 0;
	}

	/* Collapse only once JS is present, so no-JS users still see every link. */
	.acb-ft--js .acb-ft__col-head[aria-expanded="false"] + .acb-ft__panel {
		display: none;
	}

	.acb-ft__locations {
		flex-direction: column;
		padding: 20px 24px;
		gap: 14px;
	}

	.acb-ft__locations-title {
		font-size: 14px;
		text-align: center;
	}

	.acb-ft__pills {
		gap: 8px;
		justify-content: center;
	}

	.acb-ft .acb-ft__pill {
		padding: 6px 14px;
		font-size: 12.5px;
	}

	.acb-ft__more {
		font-size: 12.5px;
	}

	.acb-ft__legal {
		padding: 18px 24px 24px;
		gap: 12px;
	}

	.acb-ft__fca {
		font-size: 11px;
	}

	.acb-ft__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.acb-ft * {
		transition: none !important;
	}
}

/* SVG strokes: presentation attributes in the markup lose to these rules,
   so icon colours follow the palette settings too. */
.acb-ft__chev svg { stroke: var(--acb-blue, #4A90D2); }
.acb-ft__phone-icon svg { stroke: var(--acb-navy, #223E5A); }
.acb-ft__locations-title svg { stroke: var(--acb-blue, #4A90D2); }
