/* ─── AV Header ─── */
.av-site-header {
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(10px);  
	display: flex;
	flex-direction: column;
	position: relative;
}
.av-hdr-outer {
	padding: 10px 20px;
}
.av-hdr-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: var(--av-max);
	margin-inline: auto;
	width: 100%; 
}
.av-logo-wrap {
	display: flex;
	min-width: 309px;
}
.av-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	text-decoration: none;
}

.av-logo .av-logo-img {
	height: 80px;
	width: auto;
	display: block;
} 
/* ── Desktop nav ──────────────────────────────────────── */
.av-hdr-inner nav {
	flex: 1;
}
.av-hdr-nav {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: 1;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.av-hdr-nav > li {
	list-style: none;
	position: relative;
}
.av-hdr-nav > li > a,
.av-hdr-nav > li > .av-nav-svc-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--av-ink-2);
	white-space: nowrap;
	border: none;
	background: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	font-family: var(--av-font);
	border-radius: 8px;
	transition: color .15s, background .15s;
	text-decoration: none;
	position: relative;
	line-height: 1;
	box-shadow: none;
	outline: none;
}
.av-hdr-nav > li > a:hover,
.av-hdr-nav > li > .av-nav-svc-btn:hover {
	color: var(--av-navy);
	background: var(--av-chip);
	border-radius: 8px;
}
.av-nav-chevron {
	width: 11px;
	height: 11px;
	flex-shrink: 0;
	transition: transform .22s;
}
.av-nav-svc-li.open > .av-nav-svc-btn .av-nav-chevron { transform: rotate(180deg); }
.av-nav-svc-li.open > .av-nav-svc-btn { color: var(--av-navy); background: var(--av-chip); }

/* Dropdown panel */
.av-nav-dropdown {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	background: var(--av-paper);
	border-radius: var(--av-r-lg);
	box-shadow: var(--av-shadow-2);
	border: 1px solid var(--av-line);
	min-width: 750px;
	z-index: 1100; 
	transition: opacity .18s, transform .18s, visibility .18s;
}
.av-nav-svc-li:hover .av-nav-dropdown::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: -15px;
	height: 15px;
	z-index: 1;
}
.av-nav-svc-li:hover .av-nav-dropdown,
.av-nav-svc-li.open .av-nav-dropdown {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.av-nav-dd-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 14px;
	gap: 2px;
}
.av-nav-dd-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 13px;
	border-radius: 9px;
	color: var(--av-ink);
	text-decoration: none;
	transition: background .14s;
}
.av-nav-dd-item:hover { background: var(--av-bg); }
.av-nav-dd-icon {
	width: 36px;
	height: 36px;
	background: var(--av-chip);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--av-navy);
	flex-shrink: 0;
	transition: background .14s, color .14s;
}
.av-nav-dd-icon svg, .av-nav-dd-icon i { width: 18px; height: 18px; font-size: 18px; line-height: 1; fill: currentColor; }
.av-nav-dd-item:hover .av-nav-dd-icon { background: var(--av-rust); color: #fff; }
.av-nav-dd-text strong {
	display: block;
	font-family: var(--av-font);
	font-weight: 700;
	font-size: 13px;
	color: var(--av-navy);
	line-height: 1.25;
}
.av-nav-dd-text {
	display: flex;
	flex-direction: column;
	line-height: normal;
}
.av-nav-dd-text span { font-size: 11px; color: var(--av-ink-3); }
.av-nav-dd-footer {
	border-bottom-left-radius: var(--av-r-lg);
	border-bottom-right-radius: var(--av-r-lg);
	overflow: hidden;
	display: flex;
}
.av-nav-dd-footer a {
	background: var(--av-rust);
	color: #fff;
	font-family: 'Manrope';
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-decoration: none;
	width: 100%;
	padding: 14px;
}

@media (max-width: 1230px) {
	.av-logo-wrap { 
		min-width: unset;
	}

	.av-nav-dropdown {
		left: 0;
		transform: translateX(-10%) translateY(0);
	}

	.av-nav-svc-li:hover .av-nav-dropdown, .av-nav-svc-li.open .av-nav-dropdown { 
		transform: translateX(-10%) translateY(0);
	}
}

@media (max-width: 1024px) {
	.av-hdr-nav { display: none; }
}

/* ── Header actions ───────────────────────────────────── */
.av-hdr-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}
.av-hdr-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: normal;
	color: var(--av-navy);
	transition: color .15s;
	white-space: nowrap;
	text-decoration: none;
}
.av-hdr-phone .pi {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--av-rust-soft);
	color: var(--av-rust);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.av-hdr-phone .pi svg { width: 14px; height: 14px; }
.av-hdr-phone:hover { color: var(--av-rust); }

.av-mob-header-cta {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: var(--av-rust);
	color: #fff;
	border: 1px solid var(--av-rust);
	border-radius: var(--av-r);
	text-decoration: none;
	flex-shrink: 0;
	transition: background .2s, color .2s, border-color .2s;
}
.av-mob-call {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: var(--av-rust);
	color: #fff;
	border: 1px solid var(--av-rust);
	border-radius: var(--av-r);
	text-decoration: none;
	flex-shrink: 0;
	transition: background .2s, color .2s, border-color .2s;
}
.av-hdr-actions .av-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
}
.av-hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--av-navy);
	border-radius: 2px;
	transition: all .2s;
}

@media (max-width: 1024px) {
	.av-hdr-phone,
	.av-hdr-actions > .av-btn { display: none; }
	.av-mob-call,
	.av-mob-header-cta,
	.av-hdr-actions .av-hamburger { display: flex; }
}

/* ── Subbar ──────────────────────────────────────────── */
.av-hdr-subbar {
	background: var(--av-navy);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,255,255,.78);
	padding: 5px 20px;
	letter-spacing: 1px;
}
.av-hdr-subbar svg { width: 13px; height: 13px; }
@media (max-width: 1024px) {
	.av-hdr-subbar { display: none; }
}

/* ── Status badge ────────────────────────────────────── */
.av-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	border-radius: var(--av-r-pill);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
}
.av-status-badge .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}
.av-status-open  { background: rgba(30,138,74,.18);  color: #6fe09c; }
.av-status-closed{ background: rgba(220,38,38,.18); color: #ffa3a3; }

/* ── Mobile nav drawer ───────────────────────────────── */
.av-mob-nav {
	display: none;
	position: absolute;
	top: 85px;
	left: 0;
	right: 0;
	background: var(--av-paper);
	border-bottom: 1px solid var(--av-line);
	padding: 10px 20px 20px;
	z-index: 999;
	box-shadow: 0 14px 30px rgba(0,0,0,.12);
	overflow: auto;
	height: calc(100vh - 85px);
	overscroll-behavior-y: none; 
}
.av-mob-nav.open { display: block; }

.av-mob-nav-hours {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 0 20px;
	border-bottom: 1px solid var(--av-line-2);
	font-size: 14px;
	color: var(--av-ink-3);
	flex-wrap: wrap;
}
.av-mob-nav-hours svg { width: 14px; height: 14px; }
.av-mob-nav-hours .av-status-open  { background: rgba(30,138,74,.15);  color: #1e8a4a; }
.av-mob-nav-hours .av-status-closed{ background: rgba(220,38,38,.12); color: #dc2626; }

.av-mob-nav > a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid var(--av-line-2);
	font-weight: 600;
	color: var(--av-ink);
	font-size: 16px;
	text-decoration: none;
}

/* ── Mobile services sub-list ────────────────────────── */
.av-mob-nav .av-mob-svc-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 0;
	border: none;
	border-bottom: 1px solid var(--av-line-2);
	background: none;
	cursor: pointer;
	font-family: var(--av-font);
	font-size: 16px;
	font-weight: 600;
	color: var(--av-ink);
	text-align: start;
	border-radius: 0;
	line-height: normal;
}
.av-mob-svc-chev {
	width: 16px;
	height: 16px;
	color: var(--av-ink-3);
	transition: transform .2s;
}
.av-mob-svc-row[aria-expanded="true"] .av-mob-svc-chev { transform: rotate(180deg); }
.av-mob-svc-list { overflow: hidden; max-height: 0; transition: max-height .28s ease; }
.av-mob-svc-list.open { max-height: 600px; }
.av-mob-svc-list a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 0 11px 16px;
	font-size: 14px;
	color: var(--av-ink-2);
	border-bottom: 1px solid var(--av-line-2);
	font-weight: 500;
	text-decoration: none;
}
.av-mob-svc-list a::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--av-rust);
	flex-shrink: 0;
}

/* ── Mobile CTA ──────────────────────────────────────── */
.av-mob-nav-cta {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.av-mob-nav-cta .av-btn {
	width: 100%;
	justify-content: center;
	padding: 15px;
	font-size: 15px;
}

@media (max-width: 1024px) {
	.av-logo .av-logo-img {
		height: 65px;
	} 
}
