/* ─── AV Footer ─── */
.av-site-footer {
	background: var(--av-navy);
	padding: 64px 20px 0;
}
.av-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: 40px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.av-footer-col h4 {
	color: #fff;
	font-family: var(--av-font);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-top: 0;
}

/* Logo col */
.av-f-logo a.av-fl-link {
	display: flex;
	max-width: 150px;
}
.av-f-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.av-f-mark {
	width: 46px; height: 46px;
	border-radius: 10px;
	flex-shrink: 0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.av-f-mark svg { width: 30px; height: 30px; }
.av-f-logo-img { height: 46px; width: auto; display: block; }
.av-f-tagline {
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 20px;
	color: rgba(255,255,255,.6);
}
.av-socials { display: flex; gap: 10px; margin-top: 20px;}
.av-social-btn {
	width: 36px; height: 36px;
	background: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--av-rust);
	text-decoration: none;
	transition: background .15s, color .15s;
}
.av-social-btn:hover { background: var(--av-rust); color: #fff; }
.av-social-btn svg, .av-social-btn i { width: 16px; height: 16px; font-size: 16px; line-height: 1; fill: currentcolor; }

/* Links */
.av-f-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	padding: 0; margin: 0;
}
.av-f-links a {
	font-size: 13.5px;
	color: rgba(255,255,255,.62);
	transition: color .15s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	line-height: 1.6;
}
.av-f-links a::before {
	content: "";
	width: 5px; height: 5px;
	border-radius: 50%;
	background: var(--av-rust);
	flex-shrink: 0;
}
.av-f-links a:hover { color: #fff; }

/* Contact */
.av-f-contact-item {
	display: flex;
	gap: 12px;
	margin-bottom: 13px;
	font-size: 13.5px;
	line-height: 1.5;
	align-items: flex-start;
	color: rgba(255,255,255,.62);
}
.av-f-contact-item svg,
.av-f-contact-item i {
	width: 15px; height: 15px;
	font-size: 15px; line-height: 1;
	flex-shrink: 0;
	color: var(--av-rust);
	margin-top: 3px;
	fill: currentColor;
}
.av-f-contact-item a {
	color: rgba(255,255,255,.85);
	transition: color .15s;
	text-decoration: none;
}
.av-f-contact-item a:hover { color: var(--av-rust); }

/* Bottom bar */
.av-footer-bottom {
	padding: 22px 0;
	text-align: center;
}
.av-footer-bottom p {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	line-height: 1.65;
}
.av-footer-bottom p + p { margin-top: 5px; }
.av-footer-bottom a {
	color: rgba(255,255,255,.55);
	text-decoration: none;
	transition: color .15s;
}
.av-footer-bottom a:hover { color: rgba(255,255,255,.85); }

@media (max-width: 880px) {
	.av-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
	.av-footer-grid { grid-template-columns: 1fr; }
}
