/* ─── AV Reviews ─── */
.av-reviews {
	background: var(--av-paper);
	padding: 96px 20px;
}
.av-reviews-head {
	text-align: center;
	margin-bottom: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.av-reviews-head .av-eyebrow { justify-content: center; }
.av-reviews-rating {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 14px 22px;
	background: var(--av-bg);
	border-radius: var(--av-r-pill);
	border: 1px solid var(--av-line); 
}
.av-reviews-rating .big {
	font-family: var(--av-font-display);
	font-weight: 700;
	font-size: 26px;
	color: var(--av-navy);
	letter-spacing: -.02em;
}
.av-reviews-rating .stars {
	color: var(--av-gold);
	font-size: 17px;
	letter-spacing: 2px;
}
.av-reviews-rating .meta {
	font-size: 12.5px;
	color: var(--av-ink-3);
	line-height: 1.3;
}
.av-reviews-rating .meta strong {
	color: var(--av-ink);
	display: block;
	font-weight: 700;
}
.av-reviews-head h2 {
	font-family: var(--av-font-display);
	font-size: 42px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--av-navy);
	margin: 0 0 20px;
}
.av-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-bottom: 32px;
}
.av-rev-card {
	background: var(--av-paper);
	border: 1px solid var(--av-line);
	border-radius: var(--av-r-lg);
	padding: 26px;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s, border-color .2s;
}
.av-rev-card:hover {
	box-shadow: var(--av-shadow-1);
	border-color: var(--av-line-2);
}
.av-rev-quote {
	width: 40px; height: 40px;
	background: var(--av-rust-soft);
	border-radius: 8px;
	color: var(--av-rust);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.av-rev-quote svg { width: 14px; height: 14px; }
.av-rev-stars {
	color: var(--av-gold);
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 12px;
}
.av-rev-text {
	font-size: 15px;
	color: var(--av-ink-2);
	line-height: 1.65;
	margin-bottom: 22px;
	flex-grow: 1;
}
.av-rev-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid var(--av-line-2);
}
.av-rev-avatar {
	width: 38px; height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--av-font-display);
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	flex-shrink: 0;
	background: linear-gradient(135deg, #c2541f, #a3441a);
}
.av-rev-meta strong { font-size: 14px; font-weight: 700; color: var(--av-navy); display: block; line-height: 1.3; }
.av-rev-meta span  { font-size: 12px; color: var(--av-ink-3); display: block; }
.av-reviews-cta { text-align: center; }
.av-google-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border: 1.5px solid var(--av-line);
	border-radius: var(--av-r-pill);
	background: var(--av-paper);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--av-ink);
	text-decoration: none;
	transition: border-color .15s, transform .15s;
}
.av-google-cta:hover { border-color: var(--av-rust); transform: translateY(-1px); }
.av-google-cta svg { width: 16px; height: 16px; }

@media (min-width: 580px) and (max-width: 880px) {
	.av-reviews-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 579px) {
	.av-reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
