/*
Theme Name: Finsbury Park Locksmith
Theme URI: https://finsburyparklocksmith.com
Author: Finsbury Park Locksmith
Description: Custom local locksmith theme for Finsbury Park Locksmith.
Version: 1.5.7
Requires at least: 5.8
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: finsbury-park-locksmith
*/

:root {
	--ink: #111315;
	--panel: #1b1f23;
	--soft-panel: #252a2f;
	--paper: #f4f1ec;
	--white: #ffffff;
	--muted: #626a72;
	--line: #dde2e6;
	--red: #c4241c;
	--red-dark: #9d1c16;
	--gold: #d6a322;
	--green: #2f6b4f;
	--shadow: 0 20px 54px rgba(17, 19, 21, .16);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.55;
}

body.admin-bar .site-header {
	top: 32px;
}

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

a {
	color: inherit;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 12px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--white);
	color: var(--ink);
}

.skip-link:focus {
	left: 12px;
}

.site-alert {
	background: var(--ink);
	color: var(--white);
	font-size: 14px;
}

.site-alert__inner,
.site-header__inner,
.section__inner,
.site-footer__inner,
.hero__content,
.page-hero__content {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.site-alert__inner {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 9px 0;
}

.site-alert a {
	color: var(--white);
	text-decoration-thickness: 2px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(244, 241, 236, .96);
	border-bottom: 1px solid rgba(17, 19, 21, .08);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	min-height: 78px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	text-decoration: none;
}

.brand__mark {
	display: grid;
	place-items: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	overflow: hidden;
	border: 1px solid rgba(17, 19, 21, .12);
	border-radius: 6px;
	background: var(--white);
}

.brand__mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.brand__name {
	display: block;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0;
}

.brand__tagline {
	display: block;
	margin-top: 3px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--white);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	font-weight: 800;
}

.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	text-decoration: none;
}

.menu-item--dropdown {
	position: relative;
}

.dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.dropdown-toggle:after {
	content: "";
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	z-index: 80;
	display: grid;
	min-width: 280px;
	gap: 2px;
	margin: 0;
	padding: 10px;
	list-style: none;
	border: 1px solid rgba(17, 19, 21, .12);
	border-radius: 8px;
	background: var(--white);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dropdown-menu a {
	display: block;
	padding: 11px 12px;
	border-radius: 6px;
	color: var(--ink);
	font-weight: 800;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
	background: #f1f3f4;
}

.menu-item--dropdown:hover .dropdown-menu,
.menu-item--dropdown:focus-within .dropdown-menu,
.menu-item--dropdown.is-open .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 0;
	border-radius: 6px;
	background: var(--red);
	color: var(--white);
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.button:hover,
.button:focus {
	background: var(--red-dark);
}

.button--dark {
	background: var(--ink);
	color: var(--white);
}

.button--light {
	background: var(--white);
	color: var(--ink);
}

.button--outline {
	border: 1px solid rgba(255, 255, 255, .55);
	background: rgba(255, 255, 255, .05);
	color: var(--white);
}

.button--ghost {
	border: 1px solid rgba(17, 19, 21, .18);
	background: var(--white);
	color: var(--ink);
}

.button--whatsapp {
	background: var(--green);
	color: var(--white);
}

.button--whatsapp:hover,
.button--whatsapp:focus {
	background: #255a41;
}

.hero,
.page-hero {
	position: relative;
	min-height: 650px;
	color: var(--white);
	background: var(--ink);
	isolation: isolate;
	overflow: hidden;
}

.hero__image,
.page-hero__image {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__image img,
.page-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero:after,
.page-hero:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(17, 19, 21, .92), rgba(17, 19, 21, .72) 42%, rgba(17, 19, 21, .2)),
		linear-gradient(0deg, rgba(17, 19, 21, .55), rgba(17, 19, 21, 0) 42%);
}

.hero__content,
.page-hero__content {
	padding: 78px 0 54px;
}

.eyebrow,
.section__kicker {
	margin: 0 0 10px;
	color: var(--red);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section--dark .section__kicker {
	color: var(--gold);
}

.hero h1,
.page-hero h1 {
	max-width: 720px;
	margin: 0;
	font-size: 64px;
	line-height: .98;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
	max-width: 620px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .9);
	font-size: 21px;
}

.hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.hero__badges span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 6px;
	background: rgba(255, 255, 255, .09);
	color: var(--white);
	font-size: 14px;
	font-weight: 900;
}

.hero__actions,
.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.trust-strip {
	background: var(--ink);
	color: var(--white);
}

.trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, .14);
}

.trust-strip__inner div {
	padding: 18px;
	background: #202326;
}

.trust-strip__inner strong,
.trust-strip__inner span {
	display: block;
}

.trust-strip__inner strong {
	font-size: 19px;
}

.trust-strip__inner span {
	margin-top: 2px;
	color: rgba(255, 255, 255, .72);
}

.section {
	padding: 78px 0;
}

.section--white {
	background: var(--white);
}

.section--dark {
	background: var(--ink);
	color: var(--white);
}

.section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 26px;
	margin-bottom: 34px;
}

.section h2,
.page-body h2 {
	max-width: 780px;
	margin: 0;
	font-size: 42px;
	line-height: 1.05;
	letter-spacing: 0;
}

.section__intro {
	max-width: 590px;
	margin: 0;
	color: var(--muted);
}

.section--dark .section__intro {
	color: rgba(255, 255, 255, .74);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.service-card {
	min-height: 246px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
}

.service-card--link {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card--link:hover,
.service-card--link:focus {
	transform: translateY(-3px);
	border-color: rgba(196, 36, 28, .45);
	box-shadow: 0 16px 40px rgba(17, 19, 21, .12);
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 22px;
	border-radius: 6px;
	background: var(--ink);
	color: var(--white);
	font-weight: 900;
}

.service-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.18;
}

.service-card p {
	margin: 0;
	color: var(--muted);
}

.card-link {
	display: inline-block;
	margin-top: 18px;
	color: var(--red);
	font-weight: 900;
}

.photo-story {
	background: #e8ebe9;
}

.photo-story__grid,
.split,
.proof-feature,
.area-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
	gap: 52px;
	align-items: center;
}

.photo-stack {
	display: grid;
	grid-template-columns: 1fr .82fr;
	gap: 12px;
	align-items: end;
}

.photo-stack img,
.split__image img,
.area-feature__image img,
.proof-feature__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.photo-stack img,
.split__image,
.area-feature__image,
.proof-feature__image {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.photo-stack img:last-child {
	margin-bottom: 42px;
}

.customer-needs {
	background: #ece9e3;
}

.need-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.need-grid div {
	min-height: 150px;
	padding: 20px;
	border: 1px solid rgba(17, 19, 21, .12);
	border-radius: 8px;
	background: var(--white);
}

.need-grid strong,
.need-grid span {
	display: block;
}

.need-grid strong {
	font-size: 19px;
	line-height: 1.2;
}

.need-grid span {
	margin-top: 8px;
	color: var(--muted);
}

.review-feature {
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	gap: 18px;
	align-items: stretch;
}

.rating-panel,
.review-card {
	border-radius: 8px;
	background: var(--white);
	color: var(--ink);
}

.rating-panel {
	display: grid;
	align-content: center;
	padding: 38px;
	border-left: 6px solid var(--red);
}

.google-label {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 14px;
	padding: 7px 10px;
	border-radius: 6px;
	background: #f1f3f4;
	color: #202124;
	font-size: 14px;
	font-weight: 900;
}

.rating-panel__score {
	margin: 0;
	font-size: 86px;
	line-height: .9;
	font-weight: 900;
}

.rating-panel__stars {
	color: var(--gold);
	font-size: 24px;
	letter-spacing: 0;
}

.rating-panel p {
	margin: 14px 0 0;
	color: var(--muted);
}

.review-source {
	display: inline-flex;
	width: fit-content;
	margin-top: 18px;
	color: var(--red-dark);
	font-weight: 900;
	text-decoration: none;
}

.review-source:hover,
.review-source:focus {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

.review-grid {
	display: grid;
	gap: 14px;
}

.review-card {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .08);
}

.review-card blockquote {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
}

.review-card cite {
	display: block;
	margin-top: 12px;
	color: var(--muted);
	font-style: normal;
	font-weight: 800;
}

.review-grid--animated .review-card {
	animation: reviewLift .7s ease both;
}

.review-grid--animated .review-card:nth-child(2) {
	animation-delay: .12s;
}

.review-grid--animated .review-card:nth-child(3) {
	animation-delay: .24s;
}

@keyframes reviewLift {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.check-list {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 30px;
}

.check-list li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 14px;
	height: 14px;
	background: var(--red);
	clip-path: polygon(14% 44%, 0 58%, 38% 100%, 100% 16%, 84% 0, 36% 64%);
}

.quote-band {
	background: var(--red);
	color: var(--white);
}

.quote-band .section__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.contact-options {
	background: #e8ebe9;
}

.contact-options__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
	gap: 28px;
	align-items: center;
}

.contact-options__grid--form {
	grid-template-columns: minmax(280px, .72fr) minmax(340px, 1fr);
	align-items: start;
}

.contact-copy {
	max-width: 620px;
}

.contact-actions {
	display: grid;
	gap: 12px;
}

.mini-checks {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.mini-checks li {
	position: relative;
	padding-left: 26px;
	color: #363c42;
	font-weight: 750;
}

.mini-checks li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--red);
}

.lead-form-card,
.embedded-form {
	padding: 24px;
	border: 1px solid rgba(17, 19, 21, .12);
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 18px 48px rgba(17, 19, 21, .1);
}

.lead-form {
	display: grid;
	gap: 16px;
}

.lead-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.lead-form label {
	display: grid;
	gap: 7px;
	color: #30363b;
	font-size: 14px;
	font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	width: 100%;
	min-height: 46px;
	padding: 12px 13px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fbfbfa;
	color: var(--ink);
	font: inherit;
	font-weight: 650;
}

.lead-form textarea {
	resize: vertical;
	min-height: 110px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
	outline: 3px solid rgba(196, 36, 28, .18);
	border-color: rgba(196, 36, 28, .55);
	background: var(--white);
}

.lead-form__full {
	grid-column: 1 / -1;
}

.lead-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.lead-form__note {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.side-card--lead {
	padding: 18px;
}

.side-card--lead .embedded-form {
	padding: 0;
	border: 0;
	box-shadow: none;
}

.side-card--lead .lead-form__grid {
	grid-template-columns: 1fr;
}

.side-card--lead .lead-form__actions {
	display: grid;
}

.areas {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 28px;
}

.area-pill {
	padding: 13px 14px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 6px;
	background: rgba(255, 255, 255, .06);
	font-weight: 800;
}

.areas--links .area-pill {
	display: block;
	color: var(--white);
	text-decoration: none;
}

.areas--links .area-pill:hover,
.areas--links .area-pill:focus {
	background: rgba(255, 255, 255, .14);
	border-color: rgba(255, 255, 255, .36);
}

.faq {
	display: grid;
	gap: 12px;
}

.faq details {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
}

.faq summary {
	cursor: pointer;
	padding: 18px 20px;
	font-weight: 900;
}

.faq p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--muted);
}

.terms-section {
	background: #ece9e3;
	padding-top: 0;
}

.terms-card {
	max-width: 940px;
	padding: 34px;
	border: 1px solid rgba(17, 19, 21, .14);
	border-left: 6px solid var(--red);
	border-radius: 8px;
	background: var(--white);
}

.terms-card h2 {
	font-size: 30px;
}

.terms-card p {
	margin: 14px 0 0;
	color: var(--muted);
}

.page-hero {
	min-height: 470px;
}

.page-hero h1 {
	font-size: 54px;
}

.page-body {
	background: var(--paper);
}

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 28px;
	align-items: start;
}

.content-panel,
.side-card {
	border: 1px solid rgba(17, 19, 21, .1);
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 16px 40px rgba(17, 19, 21, .06);
}

.content-panel {
	padding: 38px;
}

.content-panel > *:first-child {
	margin-top: 0;
}

.content-panel h2,
.content-panel h3,
.content-panel h4 {
	margin: 30px 0 12px;
	line-height: 1.12;
	letter-spacing: 0;
}

.content-panel h2 {
	font-size: 34px;
}

.content-panel h3 {
	font-size: 25px;
}

.content-panel p,
.content-panel li {
	color: #343a40;
}

.content-panel a {
	color: var(--red-dark);
	font-weight: 800;
}

.content-panel ul,
.content-panel ol {
	padding-left: 22px;
}

.content-panel img {
	border-radius: 8px;
}

.page-sidebar {
	display: grid;
	gap: 14px;
	position: sticky;
	top: 104px;
}

.side-card {
	padding: 22px;
}

.side-card h2 {
	font-size: 26px;
}

.side-card p {
	color: var(--muted);
}

.side-card .button + .button {
	margin-top: 10px;
}

.quick-list {
	display: grid;
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.quick-list a {
	display: block;
	padding: 11px 12px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #f7f8f8;
	font-weight: 800;
	text-decoration: none;
}

.quick-list a:hover,
.quick-list a:focus {
	border-color: rgba(196, 36, 28, .45);
	background: #fff7f6;
}

.page-proof .split__image img {
	aspect-ratio: 4 / 3;
}

.site-footer {
	background: var(--panel);
	color: var(--white);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr;
	gap: 26px;
	padding: 44px 0;
}

.site-footer a {
	color: inherit;
}

.site-footer p {
	color: rgba(255, 255, 255, .72);
}

.footer-list {
	display: grid;
	gap: 8px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, .76);
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 16px 0;
	color: rgba(255, 255, 255, .62);
	font-size: 14px;
}

.mobile-call {
	display: none;
}

.live-chat-button {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 50;
	display: grid;
	gap: 1px;
	padding: 12px 15px;
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 8px;
	background: #128c4a;
	color: var(--white);
	box-shadow: 0 18px 42px rgba(18, 140, 74, .3);
	text-decoration: none;
}

.live-chat-button span {
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	opacity: .86;
}

.live-chat-button strong {
	font-size: 16px;
	line-height: 1.05;
}

.live-chat-button:hover,
.live-chat-button:focus {
	background: #0f7f42;
	color: var(--white);
}

.comments-area,
#comments,
.comment-respond,
.wp-block-comments,
.wp-block-post-comments,
.wp-block-comments-query-loop {
	display: none !important;
}

.has-reveal .reveal-item {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .5s ease, transform .5s ease;
}

.has-reveal .reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*:before,
	*:after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

@media (max-width: 980px) {
	.hero,
	.page-hero {
		min-height: 560px;
	}

	.hero h1 {
		font-size: 50px;
	}

	.page-hero h1 {
		font-size: 44px;
	}

	.service-grid,
	.need-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.review-feature,
	.photo-story__grid,
	.split,
	.area-feature,
	.page-layout,
	.contact-options__grid,
	.contact-options__grid--form {
		grid-template-columns: 1fr;
	}

	.page-sidebar {
		position: static;
	}

	.areas {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 880px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.site-alert__inner {
		display: block;
	}

	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100% + 10px);
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		border: 1px solid rgba(17, 19, 21, .1);
		border-radius: 8px;
		background: var(--white);
		box-shadow: var(--shadow);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav__menu {
		display: grid;
		gap: 0;
	}

	.site-nav__menu li {
		list-style: none;
	}

	.site-nav a {
		display: block;
		padding: 13px;
	}

	.dropdown-toggle {
		width: 100%;
		justify-content: space-between;
		padding: 13px;
	}

	.dropdown-menu {
		position: static;
		display: none;
		min-width: 0;
		margin: 0 0 4px;
		padding: 4px;
		border: 0;
		border-radius: 6px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: #f7f5f1;
	}

	.menu-item--dropdown:hover .dropdown-menu,
	.menu-item--dropdown:focus-within .dropdown-menu {
		display: none;
	}

	.menu-item--dropdown.is-open .dropdown-menu {
		display: grid;
	}

	.dropdown-menu a {
		padding: 12px 14px;
	}

	.trust-strip__inner,
	.service-grid,
	.need-grid,
	.site-footer__inner,
	.quote-band .section__inner {
		grid-template-columns: 1fr;
	}

	.section__header,
	.quote-band .section__inner {
		display: block;
	}

	.section__intro {
		margin-top: 12px;
	}

	.mobile-call {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: 12px;
		z-index: 60;
		display: flex;
		min-height: 54px;
		box-shadow: 0 12px 32px rgba(17, 19, 21, .28);
	}

	.live-chat-button {
		right: 12px;
		bottom: 72px;
		padding: 10px 13px;
	}

	body {
		padding-bottom: 128px;
	}
}

@media (max-width: 640px) {
	.site-header__inner,
	.hero__content,
	.page-hero__content,
	.section__inner,
	.site-footer__inner,
	.site-alert__inner {
		width: min(100% - 24px, 1180px);
	}

	.brand__tagline {
		display: none;
	}

	.brand__name {
		font-size: 13px;
	}

	.hero,
	.page-hero {
		min-height: auto;
	}

	.hero:after,
	.page-hero:after {
		background: linear-gradient(0deg, rgba(17, 19, 21, .9), rgba(17, 19, 21, .52));
	}

	.hero__content,
	.page-hero__content {
		padding: 92px 0 42px;
	}

	.hero h1,
	.page-hero h1 {
		font-size: 36px;
		line-height: 1.02;
	}

	.hero p:not(.eyebrow),
	.page-hero p:not(.eyebrow) {
		font-size: 18px;
	}

	.hero__actions,
	.section-actions {
		display: grid;
	}

	.button {
		width: 100%;
	}

	.section {
		padding: 58px 0;
	}

	.section h2,
	.page-body h2 {
		font-size: 31px;
	}

	.photo-stack {
		grid-template-columns: 1fr;
	}

	.photo-stack img:last-child {
		margin-bottom: 0;
	}

	.areas {
		grid-template-columns: 1fr;
	}

	.lead-form__grid {
		grid-template-columns: 1fr;
	}

	.lead-form__actions {
		display: grid;
	}

	.rating-panel,
	.content-panel,
	.side-card,
	.terms-card {
		padding: 24px;
	}

	.rating-panel__score {
		font-size: 68px;
	}
}
