/*
Theme Name: Locksmith Service
Theme URI:
Author: Local Service Theme
Author URI:
Description: A reusable, responsive WordPress theme for local service businesses with editable branding, content, media, menus, and conversion-focused sections.
	Version: 1.5.0
Requires at least: 6.1
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, custom-menu, featured-images, full-width-template, responsive-layout, accessibility-ready, translation-ready
Text Domain: medicare-leads-hub
*/

:root {
	--mlh-primary: #0B3B66;
	--mlh-primary-dark: #062A4A;
	--mlh-gold: #F5B400;
	--mlh-gold-dark: #C98900;
	--mlh-accent: #F3F7FA;
	--mlh-text: #344B61;
	--mlh-heading: #062A4A;
	--mlh-header-bg: #ffffff;
	--mlh-border: #D8E3EC;
	--mlh-body-font: "Plus Jakarta Sans", Arial, sans-serif;
	--mlh-heading-font: "Plus Jakarta Sans", Arial, sans-serif;
	--mlh-body-size: 16px;
	--mlh-heading-size: 42px;
	--mlh-radius: 12px;
	--mlh-content-width: 1280px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #ffffff;
	color: var(--mlh-text);
	font-family: var(--mlh-body-font);
	font-size: var(--mlh-body-size);
	line-height: 1.6;
}

a {
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--mlh-heading);
	font-family: var(--mlh-heading-font);
	line-height: 1.15;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: #ffffff;
	clip: auto !important;
	clip-path: none;
	display: block;
	height: auto;
	left: 6px;
	margin: 0;
	padding: 12px 16px;
	top: 6px;
	width: auto;
	z-index: 100000;
}

.site-announcement {
	align-items: center;
	background: var(--mlh-accent);
	border-bottom: 1px solid rgba(11, 59, 102, 0.1);
	color: var(--mlh-heading);
	display: flex;
	font-size: 12px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.01em;
	min-height: 34px;
	padding: 7px 16px;
	text-align: center;
}

.site-announcement__inner {
	align-items: center;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
	max-width: var(--mlh-content-width);
	width: 100%;
}

.site-announcement__icon {
	align-items: center;
	display: inline-flex;
	flex: 0 0 18px;
	height: 26px;
	justify-content: center;
	width: 18px;
}

.site-announcement__icon-image {
	display: block;
	height: 26px;
	object-fit: contain;
	width: 18px;
}

.site-header-stack {
	position: relative;
	z-index: 1000;
}

.site-header {
	background: var(--mlh-header-bg);
	border-bottom: 1px solid var(--mlh-border);
	position: relative;
	z-index: 1000;
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 28px;
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	min-height: 76px;
	padding: 10px 24px;
	width: 100%;
}

.site-branding {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	min-width: 0;
	order: 1;
}

.site-branding a {
	align-items: center;
	display: inline-flex;
	text-decoration: none;
}

.site-branding .custom-logo-link {
	max-width: var(--mlh-logo-width, 190px);
}

.site-branding .custom-logo {
	display: block;
	height: auto;
	max-height: 62px;
	max-width: 100%;
	width: auto;
}

.site-title {
	color: var(--mlh-heading);
	font-family: var(--mlh-heading-font);
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.site-navigation {
	margin-left: auto;
	order: 2;
}

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

.site-navigation li {
	position: relative;
}

.site-navigation a {
	align-items: center;
	border-radius: 8px;
	background: transparent;
	color: var(--mlh-header-text, var(--mlh-text));
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 6px;
	padding: 10px 12px;
	text-decoration: none;
	transition: color 160ms ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation .current-menu-item > a,
.site-navigation .current-menu-ancestor > a {
	background: transparent;
	color: var(--mlh-primary-dark);
	outline: none;
}

.site-navigation .menu-item-has-children > a::after {
	border-bottom: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	content: "";
	display: inline-block;
	height: 6px;
	margin-top: -4px;
	transform: rotate(45deg);
	width: 6px;
}

.site-navigation .sub-menu {
	background: #ffffff;
	border: 1px solid var(--mlh-border);
	border-radius: var(--mlh-radius);
	box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
	display: block;
	left: 0;
	top: calc(100% + 8px);
	min-width: 220px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateY(-5px);
	transition: opacity 160ms ease, transform 160ms ease;
	visibility: hidden;
	width: max-content;
	z-index: 20;
}

.site-navigation .sub-menu a {
	display: flex;
	font-size: 13px;
	width: 100%;
}

.site-navigation .menu-item-has-children:hover > .sub-menu,
.site-navigation .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.site-header__actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 14px;
	margin-left: auto;
	order: 3;
}

.pro-call-button {
	align-items: center;
	background: linear-gradient(135deg, #ffffff 0%, var(--mlh-accent) 100%);
	border: 2px solid rgba(11, 59, 102, 0.35);
	border-radius: 14px;
	box-shadow: 0 6px 16px rgba(4, 18, 13, 0.12);
	color: var(--mlh-heading);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	line-height: 1;
	min-height: 52px;
	padding: 0 18px 0 12px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.pro-call-button:hover,
.pro-call-button:focus-visible {
	border-color: var(--mlh-primary);
	box-shadow: 0 10px 22px rgba(11, 59, 102, 0.2);
	color: var(--mlh-heading);
	outline: none;
	transform: translateY(-1px);
}

.pro-call-button__icon {
	align-self: center;
	color: var(--mlh-primary-dark);
	display: block;
	fill: none;
	flex: 0 0 42px;
	height: 31px;
	margin-top: 2px;
	overflow: visible;
	width: 42px;
}

.pro-call-button__handset {
	animation: mlh-pro-phone-shake 2.4s ease-in-out infinite;
	transform-box: fill-box;
	transform-origin: center;
}

.pro-call-button__wave {
	fill: none;
	opacity: 0;
	stroke: currentColor;
	stroke-dasharray: 28;
	stroke-dashoffset: 28;
	stroke-linecap: round;
	stroke-width: 3;
}

.pro-call-button__wave--inner {
	animation: mlh-pro-phone-wave-inner 1.9s ease-out infinite;
}

.pro-call-button__wave--outer {
	animation: mlh-pro-phone-wave-outer 1.9s ease-out infinite;
}

.pro-call-button:hover .pro-call-button__handset,
.pro-call-button:focus-visible .pro-call-button__handset,
.pro-call-button:hover .pro-call-button__wave,
.pro-call-button:focus-visible .pro-call-button__wave {
	animation-duration: 1s;
}

@keyframes mlh-pro-phone-shake {
	0%, 18%, 100% {
		transform: rotate(0deg);
	}
	4% {
		transform: rotate(-14deg);
	}
	8% {
		transform: rotate(12deg);
	}
	12% {
		transform: rotate(-9deg);
	}
	16% {
		transform: rotate(5deg);
	}
}

@keyframes mlh-pro-phone-wave-inner {
	0%, 24%, 100% {
		opacity: 0;
		stroke-dashoffset: 28;
	}
	35%, 68% {
		opacity: 1;
		stroke-dashoffset: 0;
	}
	80% {
		opacity: 0.2;
		stroke-dashoffset: 0;
	}
}

@keyframes mlh-pro-phone-wave-outer {
	0%, 36%, 100% {
		opacity: 0;
		stroke-dashoffset: 28;
	}
	47%, 73% {
		opacity: 0.95;
		stroke-dashoffset: 0;
	}
	85% {
		opacity: 0.15;
		stroke-dashoffset: 0;
	}
}

.header-cta {
	align-items: center;
	background: var(--mlh-gold);
	border: 1px solid var(--mlh-gold);
	border-radius: var(--mlh-radius);
	box-shadow: 0 4px 10px rgba(11, 59, 102, 0.18);
	color: var(--mlh-heading);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	min-height: 44px;
	padding: 10px 20px;
	text-decoration: none;
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
	background: var(--mlh-gold-dark);
	box-shadow: 0 7px 14px rgba(11, 59, 102, 0.24);
	color: var(--mlh-heading);
	transform: translateY(-1px);
}

@media (min-width: 981px) {
	.site-header__actions .pro-call-button,
	.site-header__actions .header-cta {
		flex: 0 0 195px;
		height: 52px;
	}
}

.menu-toggle {
	align-items: center;
	background: transparent;
	border: 1px solid var(--mlh-border);
	border-radius: 9px;
	color: var(--mlh-heading);
	display: none;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.menu-toggle svg {
	height: 21px;
	width: 21px;
}

.menu-toggle__close {
	display: none;
}

.site-header.menu-open .menu-toggle__open {
	display: none;
}

.site-header.menu-open .menu-toggle__close {
	display: block;
}

.hero-section {
	background: #0A2F52;
	color: #ffffff;
	min-height: 680px;
	overflow: hidden;
	position: relative;
}

.hero-section__media,
.hero-section__overlay {
	inset: 0;
	position: absolute;
}

.hero-section__media {
	background: #0A2F52;
}

.hero-section__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.hero-section__overlay {
	background: rgba(7, 28, 47, var(--mlh-hero-overlay, 0.48));
	z-index: 1;
}

.hero-section__inner {
	align-items: center;
	display: flex;
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	min-height: 680px;
	padding: 72px 24px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.hero-section__card {
	backdrop-filter: blur(5px);
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: calc(var(--mlh-radius) + 6px);
	box-shadow: 0 22px 60px rgba(4, 18, 13, 0.28);
	color: var(--mlh-text);
	max-width: var(--mlh-hero-card-width, 660px);
	padding: 46px 48px 44px;
	width: 100%;
}

.hero-section__card h1 {
	color: var(--mlh-heading);
	font-size: clamp(34px, 4vw, 54px);
	letter-spacing: -0.045em;
	line-height: 1.08;
	margin: 0 0 22px;
}

.hero-section__intro,
.hero-section__supporting {
	color: #475569;
	font-size: 16px;
	line-height: 1.75;
	margin: 0;
}

.hero-section__supporting {
	margin-top: 16px;
}

.hero-section__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.hero-button {
	align-items: center;
	border-radius: var(--mlh-radius);
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

@media (min-width: 981px) {
	.hero-section__actions .hero-button {
		flex: 0 0 220px;
		height: 52px;
		padding: 0 18px;
	}
}

.hero-button:hover,
.hero-button:focus-visible {
	transform: translateY(-1px);
}

.hero-button--primary {
	background: var(--mlh-gold);
	box-shadow: 0 5px 13px rgba(11, 59, 102, 0.22);
	color: var(--mlh-heading);
}

.hero-button--primary:hover,
.hero-button--primary:focus-visible {
	background: var(--mlh-gold-dark);
	box-shadow: 0 8px 18px rgba(11, 59, 102, 0.28);
	color: var(--mlh-heading);
}

.hero-button--phone {
	background: rgba(239, 250, 245, 0.92);
	border: 2px solid var(--mlh-primary);
	color: var(--mlh-primary-dark);
	justify-content: center;
}

.hero-button--phone:hover,
.hero-button--phone:focus-visible {
	background: #ffffff;
	color: var(--mlh-primary-dark);
}

.hero-button__icon {
	align-self: center;
	color: currentColor;
	display: block;
	fill: none;
	flex: 0 0 42px;
	height: 31px;
	margin-top: 2px;
	overflow: visible;
	width: 42px;
}

.pro-call-button > span,
.hero-button--phone > span {
	align-items: center;
	display: inline-flex;
	line-height: 1;
}

.hero-button--phone:hover .pro-call-button__handset,
.hero-button--phone:focus-visible .pro-call-button__handset,
.hero-button--phone:hover .pro-call-button__wave,
.hero-button--phone:focus-visible .pro-call-button__wave {
	animation-duration: 1s;
}

.why-section {
	background: var(--mlh-why-background, #ffffff);
	padding: 56px 24px 48px;
}

.why-section__inner {
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	width: 100%;
}

.why-section__heading {
	margin: 0 auto 32px;
	max-width: 980px;
	text-align: center;
}

.why-section__eyebrow {
	align-items: center;
	color: var(--mlh-primary-dark);
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	gap: 20px;
	letter-spacing: 0.18em;
	line-height: 1;
	margin-bottom: 0;
	text-transform: uppercase;
}

.why-section__eyebrow-line {
	background: #8FAEC8;
	display: inline-block;
	height: 2px;
	width: 74px;
}

.why-section__eyebrow h2 {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: 1;
	margin: 0;
	white-space: nowrap;
}

.why-section__rule,
.why-card__rule {
	background: var(--mlh-primary);
	border-radius: 999px;
	display: block;
}

.why-section__rule {
	height: 6px;
	margin: 28px auto 22px;
	width: 88px;
}

.why-section__heading > p {
	color: #51657A;
	font-size: clamp(16px, 1.8vw, 21px);
	line-height: 1.65;
	margin: 0 auto;
	max-width: 900px;
}

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

.why-card {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(218, 231, 240, 0.8);
	border-radius: calc(var(--mlh-radius) + 10px);
	box-shadow: 0 14px 34px rgba(30, 71, 108, 0.1);
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 22px 18px 24px;
	text-align: center;
}

.why-card__icon-wrap {
	align-items: center;
	background: #EAF2F8;
	border-radius: 44% 56% 53% 47% / 50% 45% 55% 50%;
	display: flex;
	height: clamp(68px, 9vw, 104px);
	justify-content: center;
	margin: 0;
	width: clamp(84px, 12vw, 126px);
}

.why-card__icon {
	display: block;
	height: auto;
	max-width: 58px;
	object-fit: contain;
	width: 58%;
}

.why-card h3 {
	color: var(--mlh-heading);
	font-size: clamp(23px, 2.2vw, 29px);
	letter-spacing: -0.035em;
	line-height: 1.12;
	margin: 0;
	max-width: 290px;
}

.why-card__rule {
	height: 5px;
	margin: 20px auto 22px;
	width: 54px;
}

.why-card p {
	color: #51657A;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	max-width: 300px;
}

.process-section {
	background: #ffffff;
	padding: 56px 24px 72px;
}

.process-section__inner {
	align-items: center;
	display: grid;
	gap: 72px;
	grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	width: 100%;
}

.process-section__content h2 {
	color: var(--mlh-heading);
	font-size: clamp(32px, 3.5vw, 48px);
	letter-spacing: -0.045em;
	line-height: 1.08;
	margin: 0;
	max-width: 600px;
	text-transform: uppercase;
}

.process-steps {
	list-style: none;
	margin: 44px 0 0;
	padding: 0;
	position: relative;
}

.process-steps::before {
	background: #D8E3EC;
	bottom: 26px;
	content: "";
	left: 20px;
	position: absolute;
	top: 26px;
	width: 2px;
}

.process-step {
	display: grid;
	gap: 18px;
	grid-template-columns: 42px minmax(0, 1fr);
	padding-bottom: 36px;
	position: relative;
}

.process-step:last-child {
	padding-bottom: 0;
}

.process-step__number {
	align-items: center;
	background: var(--mlh-primary);
	border: 3px solid #ffffff;
	border-radius: 999px;
	box-shadow: 0 0 0 1px rgba(11, 59, 102, 0.12), 0 6px 14px rgba(11, 59, 102, 0.2);
	color: #ffffff;
	display: flex;
	font-size: 15px;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	position: relative;
	width: 42px;
	z-index: 1;
}

.process-step__body h3 {
	color: var(--mlh-heading);
	font-size: clamp(18px, 2vw, 25px);
	letter-spacing: -0.025em;
	line-height: 1.2;
	margin: 5px 0 9px;
}

.process-step__phone {
	color: var(--mlh-primary);
	white-space: nowrap;
}

.process-step__body p {
	color: #475569;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	max-width: 560px;
}

.process-section__aside {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 560px;
}

.process-single-image {
	align-items: flex-end;
	display: flex;
	justify-content: center;
	width: 100%;
}

.process-single-image__image {
	display: block;
	filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.16));
	height: auto;
	max-height: 620px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.about-section {
	background: #ffffff;
	padding: 48px 24px 64px;
}

.about-section__inner {
	align-items: center;
	display: grid;
	gap: clamp(56px, 8vw, 118px);
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	width: 100%;
}

.about-section__visual h2 {
	color: var(--mlh-heading);
	font-size: clamp(32px, 3.8vw, 54px);
	letter-spacing: -0.05em;
	line-height: 1.1;
	margin: 0;
	max-width: 470px;
}

.about-section__rule {
	background: var(--mlh-primary);
	border-radius: 999px;
	display: block;
	height: 6px;
	margin: 24px 0 30px;
	width: 74px;
}

.about-section__copy {
	max-width: 640px;
}

.about-section__copy p {
	color: #475569;
	font-size: clamp(15px, 1.35vw, 18px);
	line-height: 1.62;
	margin: 0 0 24px;
}

.about-section__copy p:last-child {
	margin-bottom: 0;
}

.services-section {
	background: #ffffff;
	overflow: hidden;
	padding: 0 24px 88px;
	position: relative;
}

.services-section__background {
	background: var(--mlh-services-background, var(--mlh-accent));
	height: var(--mlh-services-color-stop, 680px);
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.services-section::before,
.services-section::after {
	border: 1px solid rgba(11, 59, 102, 0.1);
	border-radius: 999px;
	content: "";
	height: 360px;
	pointer-events: none;
	position: absolute;
	width: 360px;
}

.services-section::before {
	left: -220px;
	top: 190px;
}

.services-section::after {
	bottom: -250px;
	right: -210px;
}

.services-section__inner {
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	position: relative;
	width: 100%;
	z-index: 1;
}

.services-section__heading-band {
	background: transparent;
	margin: 0 -24px 48px;
	padding: 72px 24px 0;
	position: relative;
	z-index: 1;
}

.services-section__heading {
	margin: 0 auto;
	max-width: 780px;
	padding-bottom: 48px;
	text-align: center;
}

.services-section__heading h2 {
	color: var(--mlh-heading);
	font-size: clamp(34px, 5vw, 62px);
	letter-spacing: -0.055em;
	line-height: 1.04;
	margin: 20px 0 18px;
}

.services-section__heading h2 span {
	color: var(--mlh-primary);
}

.services-section__heading > p {
	color: #475569;
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.65;
	margin: 0 auto;
	max-width: 700px;
}

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

.service-card {
	background: #ffffff;
	border: 1px solid rgba(11, 59, 102, 0.12);
	border-radius: var(--mlh-radius);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card:hover {
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
	transform: translateY(-5px);
}

.specialty-service-card {
	align-items: start;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	column-gap: 17px;
	min-height: 0;
	padding: 0;
}

.specialty-service-card:hover {
	box-shadow: none;
	transform: none;
}

.specialty-service-card__body {
	padding: 0;
}

.specialty-service-card__marker {
	background: var(--mlh-primary-dark);
	border-radius: 50%;
	display: block;
	height: 38px;
	width: 38px;
}

.specialty-service-card h3 {
	color: var(--mlh-heading);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.35;
	margin: 4px 0 12px;
}

.specialty-service-card p {
	color: #617181;
	font-size: 14px;
	line-height: 1.72;
	margin: 0;
}

.services-section--specialty {
	background: var(--mlh-services-background, #ffffff);
	padding: 37px 24px 64px;
}

.services-section--specialty::before,
.services-section--specialty::after,
.services-section--specialty .services-section__background,
.services-section--specialty .services-section__heading-band {
	display: none;
}

.services-section--specialty .services-section__inner {
	max-width: 1230px;
}

.specialty-section__heading {
	margin: 0 0 99px;
	padding: 0;
	text-align: center;
}

.specialty-section__heading h2 {
	color: var(--mlh-heading);
	font-size: clamp(28px, 2.55vw, 35px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.2;
	margin: 0;
}

.specialty-services-grid {
	column-gap: 82px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 76px;
}

@media (max-width: 980px) {
	.specialty-services-grid {
		column-gap: 44px;
		row-gap: 64px;
	}

	.specialty-service-card {
		min-height: 0;
	}
}

@media (max-width: 700px) {
	.services-section--specialty {
		padding: 47px 18px 28px;
	}

	.specialty-section__heading {
		margin-bottom: 58px;
	}

	.specialty-section__heading h2 {
		font-size: clamp(27px, 8vw, 34px);
	}

	.specialty-services-grid {
		column-gap: 0;
		grid-template-columns: 1fr;
		row-gap: 48px;
	}

	.specialty-service-card {
		column-gap: 12px;
		grid-template-columns: 30px minmax(0, 1fr);
		min-height: 0;
	}

	.specialty-service-card__marker {
		height: 30px;
		width: 30px;
	}

	.specialty-service-card h3 {
		font-size: 15px;
		margin: 2px 0 8px;
	}

	.specialty-service-card p {
		font-size: 13px;
		line-height: 1.65;
	}
}

.service-card__media {
	aspect-ratio: 16 / 10;
	background: #EDF3F7;
	overflow: hidden;
}

.service-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
	width: 100%;
}

.service-card:hover .service-card__media img {
	transform: scale(1.04);
}

.service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 25px 25px 23px;
}

.service-card__kicker {
	color: var(--mlh-primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.17em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.service-card h3 {
	color: var(--mlh-heading);
	font-size: clamp(20px, 2vw, 25px);
	letter-spacing: -0.04em;
	line-height: 1.15;
	margin: 0 0 12px;
}

.service-card p {
	color: #475569;
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 21px;
}

.service-card__link {
	align-items: center;
	color: var(--mlh-primary-dark);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 8px;
	letter-spacing: 0.05em;
	margin-top: auto;
	text-decoration: none;
	text-transform: uppercase;
}

.service-card__link::after {
	content: "→";
	font-size: 19px;
	line-height: 0;
	transition: transform 0.2s ease;
}

.service-card__link:hover::after,
.service-card__link:focus-visible::after {
	transform: translateX(4px);
}

.site-footer {
	background: var(--mlh-footer-surface, #ffffff);
	color: var(--mlh-text);
	text-align: left;
}

.site-footer__cta {
	background:
		radial-gradient(circle at 10% 120%, rgba(245, 180, 0, 0.16), transparent 32%),
		radial-gradient(circle at 92% 0%, rgba(11, 59, 102, 0.24), transparent 30%),
		var(--mlh-footer-cta-background, #062A4A);
	color: #ffffff;
	padding-top: 56px;
	position: relative;
	overflow: hidden;
}

.site-footer__cta::before,
.site-footer__cta::after {
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	content: "";
	height: 280px;
	position: absolute;
	width: 480px;
}

.site-footer__cta::before {
	left: -220px;
	top: -208px;
}

.site-footer__cta::after {
	right: -250px;
	top: 78px;
}

.site-footer__cta-inner,
.site-footer__inner,
.site-footer__bottom-inner {
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	width: 100%;
}

.site-footer__cta-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	min-height: 270px;
	padding: 42px 24px 58px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.site-footer__cta-copy {
	max-width: 900px;
}

.site-footer__cta h2 {
	color: #ffffff;
	font-size: clamp(30px, 4vw, 42px);
	letter-spacing: -0.05em;
	line-height: 1.06;
	margin: 0 0 14px;
}

.site-footer__cta p {
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 auto;
	max-width: 640px;
}

.site-footer__call-button {
	margin-top: 2px;
}

.mobile-action-bar {
	display: none;
}

@media (max-width: 767px) {
	body {
		padding-bottom: calc(49px + env(safe-area-inset-bottom));
	}

	.mobile-action-bar {
		align-items: stretch;
		background: var(--mlh-mobile-action-background, var(--mlh-primary-dark));
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		bottom: 0;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		left: 0;
		padding-bottom: env(safe-area-inset-bottom);
		position: fixed;
		right: 0;
		z-index: 1000;
	}

	.mobile-action-bar__button {
		align-items: center;
		color: var(--mlh-mobile-action-text, #ffffff);
		display: inline-flex;
		flex-direction: column;
		font-size: 9px;
		font-weight: 800;
		gap: 1px;
		justify-content: center;
		letter-spacing: 0.06em;
		min-height: 43px;
		padding: 3px 6px;
		text-decoration: none;
		text-transform: uppercase;
		transform: translateY(0);
		transition: background-color 160ms ease, transform 160ms ease;
		will-change: transform;
		animation: mlh-mobile-action-pulse 3.6s ease-in-out infinite;
	}

	.mobile-action-bar__button--quote {
		animation-delay: 1.4s;
	}

	.mobile-action-bar__button:hover,
	.mobile-action-bar__button:focus-visible {
		background: rgba(255, 255, 255, 0.08);
		transform: translateY(-1px);
	}

	.mobile-action-bar__button:active {
		transform: translateY(0) scale(0.97);
	}

	.mobile-action-bar__button + .mobile-action-bar__button {
		border-left: 1px solid rgba(255, 255, 255, 0.2);
	}

	.mobile-action-bar__button--quote {
		background: transparent;
		color: var(--mlh-mobile-action-text, #ffffff);
	}

	.mobile-action-bar__icon {
		display: block;
		height: 17px;
		width: 17px;
		transform-origin: center;
		will-change: transform;
		animation: mlh-mobile-action-heartbeat 2.2s ease-in-out infinite;
	}

	.mobile-action-bar__button--quote .mobile-action-bar__icon {
		animation-delay: 1.1s;
	}
}

@keyframes mlh-mobile-action-pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(245, 180, 0, 0);
	}

	50% {
		box-shadow: 0 0 0 4px rgba(245, 180, 0, 0.14);
	}
}

@keyframes mlh-mobile-action-heartbeat {
	0%, 66%, 100% {
		transform: scale(1);
	}

	70% {
		transform: scale(1.18);
	}

	74% {
		transform: scale(0.98);
	}

	78% {
		transform: scale(1.12);
	}

	84% {
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.mobile-action-bar__button,
	.mobile-action-bar__icon {
		animation: none;
		transition: none;
	}
}

.site-footer__cta-button {
	align-items: center;
	background: var(--mlh-gold);
	border: 1px solid var(--mlh-gold);
	border-radius: 999px;
	box-shadow: 0 14px 28px rgba(11, 59, 102, 0.24);
	color: var(--mlh-heading);
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 15px;
	font-weight: 800;
	gap: 16px;
	justify-content: center;
	min-width: 178px;
	padding: 15px 20px;
	text-decoration: none;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-footer__cta-button:hover,
.site-footer__cta-button:focus-visible {
	background: var(--mlh-gold-dark);
	box-shadow: 0 18px 34px rgba(11, 59, 102, 0.3);
	color: var(--mlh-heading);
	transform: translateY(-2px);
}

.site-footer__cta-arrow {
	font-size: 21px;
	line-height: 1;
}

.site-footer__main {
	background: var(--mlh-footer-surface, #ffffff);
}

.site-footer__inner {
	align-items: center;
	display: flex;
	gap: 48px;
	justify-content: space-between;
	min-height: 286px;
	padding: 58px 24px 52px;
}

.site-footer__contact {
	min-width: 0;
}

.site-footer__eyebrow {
	color: var(--mlh-primary-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.15em;
	margin: 0 0 22px;
	text-transform: uppercase;
}

.site-footer__detail {
	align-items: center;
	color: var(--mlh-text);
	display: flex;
	font-size: 15px;
	gap: 12px;
	line-height: 1.5;
	margin: 0 0 12px;
	text-decoration: none;
}

a.site-footer__detail:hover,
a.site-footer__detail:focus-visible {
	color: var(--mlh-primary-dark);
}

.site-footer__detail-icon {
	align-items: center;
	background: var(--mlh-accent);
	border-radius: 50%;
	color: var(--mlh-primary-dark);
	display: inline-flex;
	flex: 0 0 32px;
	height: 32px;
	justify-content: center;
	width: 32px;
}

.site-footer__detail-icon svg {
	height: 16px;
	width: 16px;
}

.site-footer__brand {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	max-width: 310px;
	min-width: 230px;
}

.site-footer__logo {
	max-width: 260px;
	width: 100%;
}

.site-footer__logo .custom-logo-link {
	display: block;
	margin-left: auto;
	max-width: 100%;
}

.site-footer__logo .custom-logo {
	display: block;
	height: auto;
	max-height: 140px;
	max-width: 100%;
	width: auto;
}

.site-footer__fallback-logo {
	color: var(--mlh-heading);
	display: block;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.04em;
	text-decoration: none;
}

.site-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.site-footer__social-link {
	align-items: center;
	background: var(--mlh-accent);
	border-radius: 50%;
	color: var(--mlh-primary-dark);
	display: inline-flex;
	height: 36px;
	justify-content: center;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
	width: 36px;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	background: var(--mlh-primary);
	color: #ffffff;
	transform: translateY(-2px);
}

.site-footer__social-link svg {
	fill: currentColor;
	height: 17px;
	width: 17px;
}

.site-footer__social-link--instagram svg {
	fill: none;
}

.site-footer__bottom {
	background: var(--mlh-footer-surface, #ffffff);
	border-top: 1px solid rgba(11, 59, 102, 0.14);
}

.site-footer__bottom-inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	min-height: 74px;
	padding: 18px 24px;
}

.site-footer__bottom small {
	color: #607080;
	font-size: 12px;
	line-height: 1.5;
}

.site-footer__nav,
.site-footer__menu {
	margin: 0;
	padding: 0;
}

.site-footer__menu {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	list-style: none;
}

.site-footer__menu a {
	color: var(--mlh-heading);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
	color: var(--mlh-primary-dark);
}

@media (max-width: 980px) {
	.site-header__inner {
		gap: 16px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.pro-call-button {
		font-size: 0;
		gap: 0;
		min-height: 46px;
		padding: 0 10px;
	}

	.site-footer__call-button {
		font-size: 14px;
		gap: 9px;
		padding: 0 18px 0 12px;
	}

	.site-footer__call-button > span {
		display: inline-flex;
	}

	.pro-call-button__icon {
		flex-basis: 42px;
		height: 31px;
		width: 42px;
	}

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

@media (max-width: 760px) {
	.why-section {
		padding: 36px 18px 28px;
	}

	.why-section__heading {
		margin-bottom: 24px;
	}

	.why-section__eyebrow {
		font-size: 11px;
		gap: 10px;
		letter-spacing: 0.14em;
		margin-bottom: 0;
	}

	.why-section__eyebrow-line {
		width: 34px;
	}

	.why-section__rule {
		margin: 22px auto 18px;
	}

	.why-section__heading > p {
		font-size: 15px;
		line-height: 1.55;
	}

	.why-section__grid {
		gap: 8px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.why-card {
		min-height: 0;
		padding: 12px 4px 16px;
	}

	.why-card__icon-wrap {
		height: clamp(36px, 15vw, 54px);
		max-width: 68px;
		width: 100%;
	}

	.why-card__icon {
		max-width: 31px;
		width: 58%;
	}

	.why-card h3 {
		font-size: clamp(12px, 3.5vw, 18px);
		line-height: 1.15;
		max-width: 100%;
	}

	.why-card__rule {
		height: 3px;
		margin: 8px auto 9px;
		width: 32px;
	}

	.why-card p {
		font-size: clamp(10px, 2.8vw, 14px);
		line-height: 1.45;
		max-width: 100%;
	}

	.process-section {
		padding: 24px 18px 0;
	}

	.process-section__inner {
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.process-section__content h2 {
		font-size: clamp(27px, 8vw, 42px);
	}

	.process-steps {
		margin-top: 32px;
	}

	.process-steps::before {
		bottom: 22px;
		left: 16px;
		top: 22px;
	}

	.process-step {
		gap: 10px;
		grid-template-columns: 34px minmax(0, 1fr);
		padding-bottom: 28px;
	}

	.process-step__number {
		border-width: 2px;
		font-size: 12px;
		height: 34px;
		width: 34px;
	}

	.process-step__body h3 {
		font-size: clamp(15px, 3.7vw, 20px);
		line-height: 1.2;
		margin: 4px 0 7px;
	}

	.process-step__phone {
		margin-left: 3px;
	}

	.process-step__body p {
		font-size: clamp(12px, 3vw, 15px);
		line-height: 1.5;
	}

	.process-section__aside {
		min-height: 0;
	}

	.process-single-image {
		min-height: 0;
	}

	.process-single-image__image {
		max-height: 500px;
	}

	.about-section {
		padding: 28px 18px 22px;
	}

	.about-section__inner {
		gap: 44px;
		grid-template-columns: 1fr;
	}

	.about-section__visual h2 {
		font-size: clamp(28px, 8vw, 42px);
		max-width: 560px;
	}

	.about-section__rule {
		height: 5px;
		margin: 18px 0 24px;
		width: 64px;
	}

	.about-section__copy p {
		font-size: 15px;
		line-height: 1.58;
		margin-bottom: 20px;
	}

	.services-section {
		padding: 0 18px 64px;
	}

	.services-section__heading-band {
		margin: 0 -18px 34px;
		padding: 52px 18px 0;
	}

	.services-section__heading {
		padding-bottom: 34px;
	}

	.services-section__heading h2 {
		font-size: clamp(32px, 10vw, 46px);
	}

	.services-section__heading > p {
		font-size: 15px;
		line-height: 1.55;
	}

	.services-grid {
		gap: 16px;
		grid-template-columns: 1fr;
	}

	.service-card__body {
		padding: 22px 20px 20px;
	}

	.hero-section,
	.hero-section__inner {
		min-height: 620px;
	}

	.hero-section__inner {
		padding: 84px 18px 48px;
	}

	.hero-section__card {
		padding: 30px 24px 28px;
	}

	.hero-section__card h1 {
		font-size: clamp(31px, 8vw, 42px);
		margin-bottom: 18px;
	}

	.hero-section__intro,
	.hero-section__supporting {
		font-size: 14px;
		line-height: 1.65;
	}

	.hero-section__actions {
		align-items: stretch;
		flex-direction: column;
		margin-top: 24px;
	}

	.hero-button {
		width: 100%;
	}

	.site-header__inner {
		flex-wrap: wrap;
		min-height: 66px;
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.site-branding {
		flex: 1 1 auto;
	}

	.site-branding .custom-logo-link {
		max-width: min(var(--mlh-logo-width, 190px), 58vw);
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-header__actions {
		gap: 0;
		margin-left: auto;
	}

	.site-header__actions .pro-call-button,
	.site-header__actions .header-cta {
		display: none;
	}

	.header-cta {
		font-size: 12px;
		min-height: 40px;
		padding: 8px 12px;
	}

	.site-navigation {
		background: var(--mlh-header-bg);
		border-top: 1px solid transparent;
		display: block;
		flex: none;
		left: 0;
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		padding: 0 18px;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 100%;
		transform: translateY(-8px);
		transition: border-color 180ms ease, max-height 260ms ease, opacity 180ms ease, padding 260ms ease, transform 260ms ease, visibility 260ms ease;
		visibility: hidden;
		width: 100%;
		order: 4;
	}

	.site-header__actions {
		order: 2;
	}

	.site-header.menu-open .site-navigation {
		border-top-color: var(--mlh-border);
		box-shadow: 0 14px 25px rgba(15, 23, 42, 0.08);
		max-height: 420px;
		opacity: 1;
		padding: 8px 18px 14px;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.site-navigation ul {
		margin: 0 auto;
		max-width: var(--mlh-content-width);
	}

	.site-navigation ul {
		align-items: stretch;
		flex-direction: column;
		gap: 2px;
	}

	.site-navigation a {
		justify-content: space-between;
		padding: 12px 10px;
		width: 100%;
	}

	.site-navigation .sub-menu {
		border: 0;
		box-shadow: none;
		display: none;
		left: auto;
		top: auto;
		margin: 0 0 4px 12px;
		opacity: 1;
		padding: 0;
		pointer-events: auto;
		position: static;
		transform: none;
		visibility: visible;
		width: auto;
	}

	.site-navigation .menu-item-has-children:focus-within > .sub-menu,
	.site-navigation .menu-item-has-children:hover > .sub-menu {
		display: block;
	}

	.site-announcement {
		font-size: 11px;
		min-height: 34px;
		padding: 5px 12px;
	}

	.site-announcement__inner {
		gap: 6px;
	}

	.site-announcement__icon {
		flex-basis: 16px;
		height: 22px;
		width: 16px;
	}

	.site-announcement__icon-image {
		height: 22px;
		width: 16px;
	}

	.site-header__inner {
		min-height: 56px;
		padding-bottom: 6px;
		padding-top: 6px;
	}

	.site-header-stack.is-sticky {
		position: sticky;
		top: 0;
	}

	.site-header-stack.is-sticky > .site-header.is-sticky {
		position: relative;
		top: auto;
	}

	.site-branding .custom-logo-link {
		max-width: min(var(--mlh-logo-width, 190px), 54vw);
	}

	.site-branding .custom-logo {
		max-height: 48px;
	}

	.menu-toggle {
		height: 38px;
		width: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.pro-call-button__handset,
	.pro-call-button__wave {
		animation: none;
	}

	.pro-call-button__wave {
		opacity: 0.85;
		stroke-dashoffset: 0;
	}
}

.locksmith-process-info-section {
	background: #ffffff;
	padding: 48px 24px 88px;
}

.locksmith-process-info-section__inner {
	align-items: start;
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
	margin: 0 auto;
	max-width: var(--mlh-content-width);
}

.locksmith-process-info-section__visual {
	align-items: flex-end;
	display: flex;
	justify-content: center;
	min-height: 760px;
	overflow: hidden;
	padding: 0 26px;
}

.locksmith-process-info-section__image {
	display: block;
	height: auto;
	max-height: 760px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.locksmith-process-info-section__panel {
	background: var(--mlh-locksmith-process-background, #F3F7FA);
	border: 1px solid rgba(6, 42, 74, 0.14);
	border-radius: 4px;
	padding: 42px 46px 40px;
}

.locksmith-process-info-section__eyebrow {
	align-items: center;
	color: var(--mlh-primary-dark);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.locksmith-process-info-section__eyebrow-line {
	background: var(--mlh-gold);
	display: block;
	height: 2px;
	width: 48px;
}

.locksmith-process-info-section__content {
	margin-top: 24px;
}

.locksmith-process-info-block {
	margin-top: 28px;
}

.locksmith-process-info-block:first-child {
	margin-top: 0;
}

.locksmith-process-info-block h2,
.locksmith-process-info-block h3 {
	color: var(--mlh-heading);
	letter-spacing: -0.035em;
	line-height: 1.18;
	margin: 0 0 10px;
}

.locksmith-process-info-block h2 {
	font-size: clamp(27px, 3vw, 40px);
}

.locksmith-process-info-block h3 {
	font-size: clamp(19px, 2vw, 26px);
}

.locksmith-process-info-block p {
	color: var(--mlh-text);
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.locksmith-process-info-block ul {
	color: var(--mlh-text);
	font-size: 14px;
	line-height: 1.6;
	margin: 12px 0 0;
	padding-left: 20px;
}

.locksmith-process-info-block li + li {
	margin-top: 4px;
}

.locksmith-process-info-block--rich > div > h3 {
	margin-top: 28px;
}

@media (max-width: 980px) {
	.locksmith-process-info-section {
		padding: 72px 18px 84px;
	}

	.locksmith-process-info-section__inner {
		grid-template-columns: 1fr;
	}

	.locksmith-process-info-section__visual {
		min-height: 500px;
		padding: 0 24px 8px;
	}

	.locksmith-process-info-section__image {
		max-height: 520px;
	}

	.locksmith-process-info-section__panel {
		padding: 38px 34px 34px;
	}
}

@media (max-width: 600px) {
	.locksmith-process-info-section {
		padding: 28px 18px 60px;
	}

	.locksmith-process-info-section__visual {
		min-height: 390px;
		padding: 0 8px;
	}

	.locksmith-process-info-section__image {
		max-height: 420px;
	}

	.locksmith-process-info-section__panel {
		padding: 30px 22px 28px;
	}

	.locksmith-process-info-section__eyebrow {
		font-size: 10px;
		gap: 10px;
	}

	.locksmith-process-info-section__eyebrow-line {
		width: 30px;
	}

	.locksmith-process-info-block h2 {
		font-size: clamp(26px, 9vw, 36px);
	}
}

.locksmith-faq-section {
	background: var(--mlh-faq-background, #ffffff);
	padding: 96px 24px;
}

.locksmith-faq-section__inner {
	align-items: stretch;
	display: grid;
	gap: 0;
	grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
	margin: 0 auto;
	max-width: var(--mlh-content-width);
}

.locksmith-faq-section__visual {
	align-items: flex-end;
	display: flex;
	justify-content: center;
	min-height: 720px;
	overflow: hidden;
	padding: 0 34px;
}

.locksmith-faq-section__image {
	display: block;
	height: 100%;
	max-height: 720px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.locksmith-faq-section__panel {
	background: var(--mlh-accent);
	border: 1px solid rgba(11, 59, 102, 0.12);
	border-radius: calc(var(--mlh-radius) + 8px);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
	padding: 56px 58px 42px;
}

.locksmith-faq-section__eyebrow {
	align-items: center;
	color: var(--mlh-primary-dark);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.locksmith-faq-section__eyebrow-line {
	background: var(--mlh-primary);
	display: block;
	height: 2px;
	width: 48px;
}

.locksmith-faq-section__panel h2 {
	color: var(--mlh-heading);
	font-size: clamp(36px, 4.2vw, 58px);
	letter-spacing: -0.055em;
	line-height: 1.02;
	margin: 22px 0 18px;
	max-width: 720px;
}

.locksmith-faq-section__intro {
	color: #506276;
	font-size: 17px;
	line-height: 1.6;
	margin: 0 0 24px;
	max-width: 650px;
}

.locksmith-faq-list {
	margin-top: 8px;
}

.locksmith-faq-item {
	align-items: start;
	border-bottom: 1px solid rgba(11, 59, 102, 0.14);
	display: grid;
	gap: 18px;
	grid-template-columns: 64px minmax(0, 1fr) 18px;
	padding: 26px 0;
}

.locksmith-faq-item:first-child {
	padding-top: 18px;
}

.locksmith-faq-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.locksmith-faq-item__icon {
	align-items: center;
	background: #EAF1F6;
	border-radius: 50%;
	color: var(--mlh-primary-dark);
	display: inline-flex;
	height: 58px;
	justify-content: center;
	width: 58px;
}

.locksmith-faq-item__icon .specialty-service-card__icon-svg {
	height: 29px;
	width: 29px;
}

.locksmith-faq-item__copy h3 {
	color: var(--mlh-heading);
	font-size: clamp(18px, 2vw, 24px);
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin: 2px 0 9px;
}

.locksmith-faq-item__copy p {
	color: #506276;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.locksmith-faq-item__arrow {
	border-bottom: 2px solid var(--mlh-primary-dark);
	border-right: 2px solid var(--mlh-primary-dark);
	display: block;
	height: 10px;
	margin-top: 12px;
	transform: rotate(45deg);
	width: 10px;
}

@media (max-width: 980px) {
	.locksmith-faq-section {
		padding: 72px 18px;
	}

	.locksmith-faq-section__inner {
		grid-template-columns: 1fr;
	}

	.locksmith-faq-section__visual {
		min-height: 480px;
		padding: 0 24px 28px;
	}

	.locksmith-faq-section__image {
		max-height: 480px;
	}

	.locksmith-faq-section__panel {
		padding: 42px 34px 30px;
	}
}

@media (max-width: 600px) {
	.locksmith-faq-section__visual {
		min-height: 390px;
	}

	.locksmith-faq-section__image {
		max-height: 390px;
	}

	.locksmith-faq-section__panel {
		border-radius: var(--mlh-radius);
		padding: 34px 22px 24px;
	}

	.locksmith-faq-section__eyebrow {
		font-size: 10px;
		gap: 10px;
	}

	.locksmith-faq-section__eyebrow-line {
		width: 30px;
	}

	.locksmith-faq-section__panel h2 {
		font-size: clamp(32px, 11vw, 46px);
	}

	.locksmith-faq-item {
		gap: 13px;
		grid-template-columns: 48px minmax(0, 1fr) 12px;
		padding: 22px 0;
	}

	.locksmith-faq-item__icon {
		height: 46px;
		width: 46px;
	}

	.locksmith-faq-item__icon .specialty-service-card__icon-svg {
		height: 23px;
		width: 23px;
	}

	.locksmith-faq-item__copy h3 {
		font-size: 18px;
	}

	.locksmith-faq-item__copy p {
		font-size: 14px;
	}
}

.booking-faq-section {
	background: var(--mlh-booking-faq-background, #ffffff);
	padding: 48px 24px 112px;
}

.booking-faq-section__inner {
	margin: 0 auto;
	max-width: 1180px;
}

.booking-faq-section__heading {
	margin: 0 auto 42px;
	max-width: 900px;
	text-align: center;
}

.booking-faq-section__eyebrow {
	color: var(--mlh-primary-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.22em;
	line-height: 1;
	text-transform: uppercase;
}

.booking-faq-section__heading h2 {
	color: var(--mlh-heading);
	font-size: clamp(40px, 5.2vw, 68px);
	letter-spacing: -0.06em;
	line-height: 1.02;
	margin: 18px auto 20px;
	max-width: 900px;
}

.booking-faq-section__heading p {
	color: #64748b;
	font-size: clamp(16px, 1.8vw, 20px);
	line-height: 1.55;
	margin: 0 auto;
}

.booking-faq-list {
	background: #ffffff;
	border: 1px solid rgba(11, 59, 102, 0.1);
	border-radius: calc(var(--mlh-radius) + 4px);
	box-shadow: 0 22px 48px rgba(17, 24, 39, 0.08);
	overflow: hidden;
}

.booking-faq-item {
	margin: 0;
}

.booking-faq-item + .booking-faq-item {
	border-top: 1px solid #D8E3EC;
}

.booking-faq-item__trigger {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--mlh-heading);
	cursor: pointer;
	display: flex;
	font-family: inherit;
	font-size: 16px;
	font-weight: 800;
	gap: 24px;
	justify-content: space-between;
	min-height: 68px;
	padding: 20px 24px;
	text-align: left;
	width: 100%;
}

.booking-faq-item__icon {
	color: var(--mlh-primary);
	flex: 0 0 auto;
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
}

.booking-faq-item__trigger:focus-visible {
	background: #F3F7FA;
	outline: 3px solid rgba(11, 59, 102, 0.24);
	outline-offset: -3px;
}

.booking-faq-item__answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition: grid-template-rows 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-faq-item__answer-inner {
	min-height: 0;
	opacity: 0;
	padding: 0 24px;
	transform: translateY(-8px);
	transition: opacity 0.28s ease, padding 0.46s cubic-bezier(0.22, 1, 0.36, 1), transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-faq-item.is-open .booking-faq-item__answer {
	grid-template-rows: 1fr;
}

.booking-faq-item.is-open .booking-faq-item__answer-inner {
	opacity: 1;
	padding-bottom: 22px;
	transform: translateY(0);
}

.booking-faq-item__answer p {
	color: #506276;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	max-width: 1040px;
}

@media (max-width: 600px) {
	.booking-faq-section {
		padding: 32px 18px 36px;
	}

	.booking-faq-section__heading {
		margin-bottom: 30px;
	}

	.booking-faq-section__eyebrow {
		font-size: 10px;
	}

	.booking-faq-section__heading h2 {
		font-size: clamp(36px, 11vw, 52px);
		margin-top: 16px;
	}

	.booking-faq-item__trigger {
		font-size: 14px;
		min-height: 62px;
		padding: 18px;
	}

	.booking-faq-item__answer-inner {
		padding-left: 18px;
		padding-right: 18px;
	}

	.booking-faq-item.is-open .booking-faq-item__answer-inner {
		padding-bottom: 20px;
	}
}

.locksmith-testimonials-section {
	background: var(--mlh-testimonials-background, #ffffff);
	padding: 96px 24px 48px;
}

.locksmith-testimonials-section__inner {
	margin: 0 auto;
	max-width: var(--mlh-content-width);
}

.locksmith-testimonials-section__heading {
	margin: 0 auto 42px;
	max-width: 920px;
	text-align: center;
}

.locksmith-testimonials-section__eyebrow {
	align-items: center;
	color: var(--mlh-primary-dark);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 16px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.locksmith-testimonials-section__eyebrow-line {
	background: var(--mlh-primary);
	display: block;
	height: 2px;
	opacity: 0.7;
	width: 44px;
}

.locksmith-testimonials-section__heading h2 {
	color: var(--mlh-heading);
	font-size: clamp(36px, 5vw, 62px);
	letter-spacing: -0.055em;
	line-height: 1.06;
	margin: 20px auto 0;
	max-width: 840px;
}

.locksmith-testimonials-widget {
	margin: 0 auto;
	max-width: 1180px;
}

.locksmith-testimonials-slider {
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 46px 36px;
	position: relative;
}

.locksmith-testimonials-slider__viewport {
	overflow: hidden;
}

.locksmith-testimonials-fallback.locksmith-testimonials-slider__track {
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
	grid-template-columns: none;
	max-width: none;
	transition: transform 420ms ease;
	will-change: transform;
}

.locksmith-testimonials-slider__track .locksmith-testimonials-fallback__card {
	box-sizing: border-box;
	flex: 0 0 calc((100% - 48px) / 3);
	min-width: 0;
}

.locksmith-testimonials-slider__arrow {
	align-items: center;
	background: var(--mlh-primary);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 5px 14px rgba( 11, 59, 102, 0.16 );
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 30px;
	height: 40px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	position: absolute;
	top: calc(50% - 22px);
	transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
	width: 40px;
	z-index: 2;
}

.locksmith-testimonials-slider__arrow:hover,
.locksmith-testimonials-slider__arrow:focus-visible {
	background: var(--mlh-primary-dark);
	transform: scale(1.05);
}

.locksmith-testimonials-slider__arrow:disabled {
	cursor: default;
	opacity: 0.42;
	transform: none;
}

.locksmith-testimonials-slider__arrow--prev {
	left: 0;
}

.locksmith-testimonials-slider__arrow--next {
	right: 0;
}

.locksmith-testimonials-slider__dots {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	left: 0;
	margin-top: 18px;
	right: 0;
}

.locksmith-testimonials-slider__dot {
	background: #c6ccd2;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	height: 8px;
	padding: 0;
	transition: background 180ms ease, transform 180ms ease;
	width: 8px;
}

.locksmith-testimonials-slider__dot:hover,
.locksmith-testimonials-slider__dot:focus-visible,
.locksmith-testimonials-slider__dot.is-active {
	background: var(--mlh-primary);
	transform: scale(1.2);
}

.locksmith-testimonials-widget .rw-widget,
.locksmith-testimonials-widget .rw-widget .rw-root {
	background: transparent !important;
	font-family: var(--mlh-body-font) !important;
}

.locksmith-testimonials-widget .rw-widget .rw-carousel {
	padding-bottom: 8px;
}

.locksmith-testimonials-widget .rw-widget .rw-google {
	border: 1px solid rgba(11, 59, 102, 0.1) !important;
	box-shadow: 0 4px 12px rgba(17, 24, 39, 0.04) !important;
	min-height: 190px;
}

.locksmith-testimonials-widget .rw-widget .rw-google .rw-name,
.locksmith-testimonials-widget .rw-widget .rw-google .rw-review {
	color: var(--mlh-heading) !important;
}

.locksmith-testimonials-widget .rw-widget .rw-google .rw-date {
	color: #64748b !important;
}

.locksmith-testimonials-widget .rw-widget .rw-carousel-btn {
	background: var(--mlh-primary) !important;
	box-shadow: 0 3px 8px rgba(11, 59, 102, 0.1) !important;
}

.locksmith-testimonials-widget .rw-widget .rw-carousel-btn:hover,
.locksmith-testimonials-widget .rw-widget .rw-carousel-btn:focus-visible {
	background: var(--mlh-primary-dark) !important;
}

.locksmith-testimonials-widget .rw-widget .rw-dot.is-active {
	background: var(--mlh-primary) !important;
}

.locksmith-testimonials-fallback {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	margin: 0 auto;
	max-width: 1180px;
}

.locksmith-testimonials-fallback__card {
	background: #ffffff;
	border: 1px solid rgba( 11, 59, 102, 0.12 );
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba( 17, 24, 39, 0.04 );
	min-height: 190px;
	padding: 16px;
}

.locksmith-testimonials-fallback__person {
	align-items: center;
	display: flex;
	gap: 10px;
}

.locksmith-testimonials-fallback__avatar {
	align-items: center;
	background: #15965d;
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	flex: 0 0 40px;
	font-size: 18px;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.locksmith-testimonials-fallback__avatar--orange {
	background: #ff7a16;
}

.locksmith-testimonials-fallback__avatar--purple {
	background: #7046c5;
}

.locksmith-testimonials-fallback__verified {
	align-items: center;
	background: #4285f4;
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	font-size: 11px;
	height: 16px;
	justify-content: center;
	width: 16px;
}

.locksmith-testimonials-fallback__meta {
	color: #64748b;
	font-size: 12px;
	margin: 3px 0 10px 50px;
}

.locksmith-testimonials-fallback__stars {
	color: #f8b400;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1;
}

.locksmith-testimonials-fallback__card p {
	color: var(--mlh-heading);
	font-size: 15px;
	line-height: 1.55;
	margin: 12px 0 0;
}

@media (max-width: 600px) {
	.locksmith-testimonials-section {
		padding: 72px 18px 16px;
	}

	.locksmith-testimonials-section__heading {
		margin-bottom: 30px;
	}

	.locksmith-testimonials-section__eyebrow {
		font-size: 10px;
		gap: 10px;
	}

	.locksmith-testimonials-section__eyebrow-line {
		width: 30px;
	}

	.locksmith-testimonials-section__heading h2 {
		font-size: clamp(32px, 10vw, 48px);
	}

	.locksmith-testimonials-fallback {
		grid-template-columns: 1fr;
	}

	.locksmith-testimonials-slider {
		padding: 0 36px 30px;
	}

	.locksmith-testimonials-slider__track {
		gap: 16px;
	}

	.locksmith-testimonials-slider__track .locksmith-testimonials-fallback__card {
		flex-basis: 100%;
	}

	.locksmith-testimonials-slider__arrow {
		font-size: 24px;
		height: 34px;
		top: calc(50% - 20px);
		width: 34px;
	}
}

@media (min-width: 601px) and (max-width: 1024px) {
	.locksmith-testimonials-slider__track .locksmith-testimonials-fallback__card {
		flex-basis: calc((100% - 24px) / 2);
	}
}

.locksmith-pricing-section {
	background: var(--mlh-pricing-background, var(--mlh-accent));
	overflow: hidden;
	padding: 96px 24px 104px;
	position: relative;
}

.locksmith-pricing-section__inner {
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	position: relative;
	z-index: 1;
}

.locksmith-pricing-section__decor {
	border: 1px solid rgba(11, 59, 102, 0.1);
	border-radius: 50%;
	height: 330px;
	pointer-events: none;
	position: absolute;
	width: 330px;
}

.locksmith-pricing-section__decor--top {
	left: -220px;
	top: -188px;
}

.locksmith-pricing-section__decor--bottom {
	bottom: -230px;
	right: -210px;
}

.locksmith-pricing-section__content {
	align-items: start;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
}

.locksmith-pricing-section__copy {
	padding-top: 12px;
}

.locksmith-pricing-section__copy h3 {
	color: var(--mlh-heading);
	font-size: clamp(28px, 3vw, 39px);
	letter-spacing: -0.045em;
	line-height: 1.1;
	margin: 0 0 22px;
}

.locksmith-pricing-section__copy p {
	color: #506276;
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 22px;
}

.locksmith-pricing-section__copy h4 {
	color: var(--mlh-heading);
	font-size: 20px;
	line-height: 1.25;
	margin: 28px 0 10px;
}

.locksmith-pricing-section__copy ul {
	color: #506276;
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 22px;
	padding-left: 20px;
}

.locksmith-pricing-section__copy li + li {
	margin-top: 4px;
}

.locksmith-pricing-table-wrap {
	background: #ffffff;
	border: 1px solid rgba(11, 59, 102, 0.14);
	border-radius: calc(var(--mlh-radius) + 4px);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
	overflow: hidden;
}

.locksmith-pricing-table {
	border-collapse: collapse;
	min-width: 620px;
	width: 100%;
}

.locksmith-pricing-table th,
.locksmith-pricing-table td {
	border: 0;
	color: var(--mlh-heading);
	font-size: 14px;
	line-height: 1.35;
	padding: 17px 20px;
	text-align: left;
}

.locksmith-pricing-table thead th {
	background: var(--mlh-primary);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.01em;
	padding-bottom: 19px;
	padding-top: 19px;
}

.locksmith-pricing-table thead th + th,
.locksmith-pricing-table tbody td + td {
	border-left: 1px solid rgba(11, 59, 102, 0.1);
	text-align: center;
}

.locksmith-pricing-table tbody tr:nth-child(even) {
	background: #F3F7FA;
}

.locksmith-pricing-table tbody th {
	font-weight: 700;
}

@media (max-width: 980px) {
	.locksmith-pricing-section {
		padding: 72px 18px 82px;
	}

	.locksmith-pricing-section__content {
		gap: 34px;
		grid-template-columns: 1fr;
	}

	.locksmith-pricing-section__copy {
		max-width: 680px;
		padding-top: 0;
	}

	.locksmith-pricing-table-wrap {
		overflow-x: auto;
	}
}

@media (max-width: 600px) {
	.locksmith-pricing-section__copy h3 {
		font-size: 30px;
	}

	.locksmith-pricing-table th,
	.locksmith-pricing-table td {
		padding: 15px 16px;
	}
}

@media (max-width: 760px) {
	.site-footer__cta {
		padding-top: 28px;
	}

	.site-footer__cta-inner,
	.site-footer__inner,
	.site-footer__bottom-inner {
		padding-left: 18px;
		padding-right: 18px;
	}

	.site-footer__cta-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 26px;
		min-height: 0;
		padding-bottom: 46px;
		padding-top: 46px;
	}

	.site-footer__cta h2 {
		font-size: clamp(30px, 8vw, 42px);
	}

	.site-footer__cta-button {
		width: 100%;
	}

	.site-footer__call-button {
		width: min(100%, 260px);
	}

	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 38px;
		min-height: 0;
		padding-bottom: 42px;
		padding-top: 20px;
	}

	/* Keep the transition into the footer compact on every mobile template. */
	main.site-main > section:last-child {
		padding-bottom: 28px;
	}

	.site-footer__brand {
		align-items: flex-start;
		max-width: 190px;
		min-width: 0;
		width: 100%;
	}

	.site-footer__logo {
		max-width: 190px;
	}

	.site-footer__logo .custom-logo-link {
		margin-left: 0;
	}

	.site-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		padding-bottom: 22px;
		padding-top: 22px;
	}
}

@media (max-width: 420px) {
	.site-footer__detail {
		align-items: flex-start;
		font-size: 14px;
	}

	.site-footer__detail-icon {
		margin-top: 1px;
	}

	.site-footer__menu {
		gap: 8px 16px;
	}
}

/* What To Expect process section */
.expectations-section {
	background-color: var(--mlh-expectations-background, #062a4a);
	background-image: var(--mlh-expectations-image, none);
	background-position: center;
	background-size: cover;
	color: #fff;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(66px, 8vw, 112px) 24px;
	position: relative;
}

.expectations-section__overlay {
	background: linear-gradient(115deg, rgba(6, 42, 74, var(--mlh-expectations-overlay, .76)), rgba(6, 42, 74, calc(var(--mlh-expectations-overlay, .76) + .08)));
	inset: 0;
	position: absolute;
	z-index: -1;
}

.expectations-section__inner {
	margin: 0 auto;
	max-width: 1180px;
	position: relative;
}

.expectations-section__heading {
	margin: 0 auto clamp(34px, 5vw, 58px);
	max-width: 940px;
	text-align: center;
}

.expectations-section__heading h2 {
	color: #fff;
	font-size: clamp(34px, 5vw, 62px);
	letter-spacing: -.045em;
	line-height: 1.05;
	margin: 0 auto;
	max-width: 940px;
}

.expectations-grid {
	display: grid;
	gap: 20px 26px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1120px;
}

.expectations-card {
	border: 1px solid rgba(255, 255, 255, .16);
	box-shadow: 0 14px 30px rgba(0, 20, 42, .22);
	min-height: 148px;
	padding: clamp(23px, 3vw, 32px);
}

.expectations-card--navy {
	background: rgba(11, 59, 102, .96);
}

.expectations-card--gold {
	background: rgba(245, 180, 0, .96);
	color: #062a4a;
}

.expectations-card h3 {
	color: inherit;
	font-size: clamp(20px, 2vw, 27px);
	letter-spacing: -.025em;
	line-height: 1.15;
	margin: 0 0 16px;
}

.expectations-card p {
	color: inherit;
	font-size: clamp(15px, 1.35vw, 17px);
	line-height: 1.55;
	margin: 0;
	max-width: 510px;
}

@media (max-width: 760px) {
	.expectations-section {
		padding-left: 18px;
		padding-right: 18px;
	}

	.expectations-section__heading h2 {
		font-size: clamp(32px, 10vw, 48px);
	}

	.expectations-grid {
		gap: 16px;
		grid-template-columns: 1fr;
	}

	.expectations-card {
		min-height: 0;
		padding: 24px 22px;
	}
}

.about-page {
	background: #ffffff;
}

.about-page__inner {
	margin: 0 auto;
	max-width: var(--mlh-content-width);
	width: 100%;
}

.about-page__hero {
	align-items: center;
	background-color: var(--mlh-primary-dark);
	background-image: linear-gradient(rgba(6, 42, 74, var(--mlh-about-page-hero-overlay, 0.68)), rgba(6, 42, 74, var(--mlh-about-page-hero-overlay, 0.68))), var(--mlh-about-page-hero-image);
	background-position: center;
	background-size: cover;
	color: #ffffff;
	display: flex;
	min-height: 390px;
	text-align: center;
}

.about-page__hero-inner {
	margin: 0 auto;
	max-width: 1000px;
	padding: 96px 24px;
	width: 100%;
}

.about-page__hero h1 {
	color: #ffffff;
	font-size: clamp(38px, 5vw, 64px);
	letter-spacing: -0.045em;
	line-height: 1.06;
	margin: 0 auto 22px;
	max-width: 960px;
}

.about-page__hero p {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(16px, 1.8vw, 21px);
	line-height: 1.6;
	margin: 0 auto;
	max-width: 940px;
}

.about-page__values {
	background: #ffffff;
	padding: 42px 24px 72px;
}

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

.about-page__value-card {
	align-items: center;
	background: #ffffff;
	border: 2px solid var(--mlh-primary);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	min-height: 285px;
	padding: 42px 22px 32px;
	text-align: center;
}

.about-page__value-card + .about-page__value-card {
	margin-left: -2px;
}

.about-page__value-icon-wrap {
	align-items: center;
	background: var(--mlh-primary);
	border-radius: 22px;
	color: var(--mlh-gold);
	display: flex;
	height: 78px;
	justify-content: center;
	margin-bottom: 22px;
	width: 78px;
}

.about-page__value-icon {
	display: block;
	height: 42px;
	width: 42px;
}

.about-page__value-card h3 {
	color: var(--mlh-heading);
	font-size: clamp(20px, 2vw, 27px);
	letter-spacing: -0.035em;
	line-height: 1.15;
	margin: 0 0 14px;
}

.about-page__value-card p {
	color: var(--mlh-text);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	max-width: 240px;
}

.about-page__mission-vision {
	background: #ffffff;
	padding: 4px 24px 96px;
}

.about-page__mission-grid {
	display: grid;
	gap: clamp(42px, 8vw, 120px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-page__mission-column h2 {
	color: var(--mlh-heading);
	font-size: clamp(28px, 3vw, 42px);
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin: 0;
}

.about-page__accent-rule {
	background: var(--mlh-gold);
	display: block;
	height: 4px;
	margin: 24px 0 38px;
	width: 72px;
}

.about-page__mission-column p {
	color: var(--mlh-text);
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	max-width: 560px;
}

@media (max-width: 980px) {
	.about-page__value-card {
		padding-left: 16px;
		padding-right: 16px;
	}

	.about-page__value-card h3 {
		font-size: 21px;
	}
}

@media (max-width: 760px) {
	.about-page__hero {
		min-height: 330px;
	}

	.about-page__hero-inner {
		padding: 72px 18px;
	}

	.about-page__hero h1 {
		font-size: clamp(32px, 9vw, 48px);
		margin-bottom: 16px;
	}

	.about-page__hero p {
		font-size: 15px;
		line-height: 1.55;
	}

	.about-page__values {
		padding: 28px 18px 52px;
	}

	.about-page__values-grid {
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-page__value-card {
		border-width: 1px;
		border-radius: 8px;
		min-height: 245px;
		padding: 24px 10px 22px;
	}

	.about-page__value-card + .about-page__value-card {
		margin-left: 0;
	}

	.about-page__value-icon-wrap {
		border-radius: 18px;
		height: 62px;
		margin-bottom: 15px;
		width: 62px;
	}

	.about-page__value-icon {
		height: 34px;
		width: 34px;
	}

	.about-page__value-card h3 {
		font-size: clamp(17px, 4.6vw, 22px);
		margin-bottom: 10px;
	}

	.about-page__value-card p {
		font-size: 13px;
		line-height: 1.45;
	}

	.about-page__mission-vision {
		padding: 0 18px 68px;
	}

	.about-page__mission-grid {
		gap: 42px;
		grid-template-columns: 1fr;
	}

	.about-page__mission-column h2 {
		font-size: clamp(30px, 8vw, 42px);
	}

	.about-page__accent-rule {
		margin: 18px 0 24px;
	}

	.about-page__mission-column p {
		font-size: 15px;
		line-height: 1.6;
	}
}

@media (max-width: 420px) {
	.about-page__values-grid {
		grid-template-columns: 1fr;
	}

	.about-page__value-card {
		min-height: 0;
	}
}

.contact-page {
	background: #ffffff;
}

.contact-page__map {
	background: var(--mlh-accent);
	height: clamp(320px, 39vw, 520px);
	overflow: hidden;
	position: relative;
}

.contact-page__map iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.contact-page__map-card {
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 10px 24px rgba(6, 42, 74, 0.16);
	display: flex;
	flex-direction: column;
	gap: 5px;
	left: clamp(18px, 3vw, 48px);
	max-width: 310px;
	padding: 20px 22px;
	position: absolute;
	top: clamp(18px, 3vw, 42px);
}

.contact-page__map-card strong {
	color: var(--mlh-heading);
	font-size: 17px;
	line-height: 1.3;
}

.contact-page__map-card span {
	color: var(--mlh-text);
	font-size: 13px;
}

.contact-page__map-card a {
	color: var(--mlh-primary);
	font-size: 13px;
	font-weight: 800;
	margin-top: 6px;
	text-decoration: none;
}

.contact-page__map-card a:hover,
.contact-page__map-card a:focus-visible {
	color: var(--mlh-gold-dark);
	text-decoration: underline;
}

.contact-page__main {
	background: #ffffff;
	padding: 82px 24px 100px;
}

.contact-page__inner {
	align-items: start;
	display: grid;
	gap: clamp(56px, 8vw, 110px);
	grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
	margin: 0 auto;
	max-width: var(--mlh-content-width);
}

.contact-page__copy h1 {
	color: var(--mlh-heading);
	font-size: clamp(36px, 4.2vw, 58px);
	letter-spacing: -0.05em;
	line-height: 1.08;
	margin: 0;
	max-width: 520px;
}

.contact-page__accent-rule {
	background: var(--mlh-gold);
	display: block;
	height: 4px;
	margin: 28px 0 30px;
	width: 68px;
}

.contact-page__copy > p {
	color: var(--mlh-text);
	font-size: 17px;
	line-height: 1.7;
	margin: 0;
	max-width: 500px;
}

.contact-page__details {
	display: grid;
	gap: 14px;
	margin-top: 34px;
}

.contact-page__detail {
	align-items: center;
	color: var(--mlh-text);
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	text-decoration: none;
}

.contact-page__detail:hover,
.contact-page__detail:focus-visible {
	color: var(--mlh-primary);
}

.contact-page__detail-icon {
	align-items: center;
	background: var(--mlh-accent);
	border-radius: 999px;
	color: var(--mlh-primary);
	display: inline-flex;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.contact-page__detail-icon svg {
	height: 17px;
	width: 17px;
}

.contact-page__form-panel {
	min-width: 0;
}

.contact-page__form-panel h2 {
	color: var(--mlh-heading);
	font-size: clamp(24px, 2.7vw, 34px);
	letter-spacing: -0.04em;
	line-height: 1.15;
	margin: 0 0 28px;
}

.contact-page__form,
.contact-page__cf7 .wpcf7-form {
	display: grid;
	gap: 22px;
}

.contact-page__cf7 .wpcf7-form > p,
.contact-page__cf7 .contact-page__form-grid > p {
	display: contents;
	margin: 0;
}

.contact-page__cf7 .wpcf7-form br {
	display: none;
}

.contact-page__form-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr);
}

.contact-page__form label,
.contact-page__cf7 label {
	color: var(--mlh-heading);
	display: grid;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
}

.contact-page__form input,
.contact-page__form textarea,
.contact-page__cf7 input:not([type="submit"]),
.contact-page__cf7 textarea,
.contact-page__cf7 select {
	background: #ffffff;
	border: 1px solid var(--mlh-border);
	border-radius: 2px;
	box-sizing: border-box;
	color: var(--mlh-heading);
	font: inherit;
	font-size: 15px;
	min-height: 52px;
	padding: 13px 14px;
	width: 100%;
}

.contact-page__form textarea,
.contact-page__cf7 textarea {
	height: 142px;
	min-height: 142px;
	resize: vertical;
}

.contact-page__form input:focus,
.contact-page__form textarea:focus,
.contact-page__cf7 input:not([type="submit"]):focus,
.contact-page__cf7 textarea:focus,
.contact-page__cf7 select:focus {
	border-color: var(--mlh-gold);
	box-shadow: 0 0 0 3px rgba(245, 180, 0, 0.16);
	outline: none;
}

.contact-page__form button,
.contact-page__cf7 input[type="submit"] {
	background: var(--mlh-gold);
	border: 1px solid var(--mlh-gold);
	border-radius: 999px;
	color: var(--mlh-heading);
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	justify-self: start;
	min-height: 52px;
	padding: 12px 34px;
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-page__form button:hover,
.contact-page__form button:focus-visible,
.contact-page__cf7 input[type="submit"]:hover,
.contact-page__cf7 input[type="submit"]:focus-visible {
	background: var(--mlh-gold-dark);
	box-shadow: 0 10px 22px rgba(6, 42, 74, 0.18);
	transform: translateY(-1px);
}

.contact-page__notice {
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 22px;
	padding: 12px 14px;
}

.contact-page__notice--success {
	background: #e8f6ef;
	color: #14633d;
}

.contact-page__notice--error {
	background: #fff1f0;
	color: #9b2c2c;
}

.contact-page__cf7 .wpcf7-not-valid-tip {
	color: #9b2c2c;
	font-size: 12px;
	margin-top: 4px;
}

.contact-page__cf7 .wpcf7-response-output {
	border-radius: 6px;
	font-size: 14px;
	margin: 0;
	padding: 12px 14px;
}

@media (max-width: 760px) {
	.contact-page__map {
		height: 330px;
	}

	.contact-page__map-card {
		left: 14px;
		max-width: 250px;
		padding: 15px 16px;
		top: 14px;
	}

	.contact-page__map-card strong {
		font-size: 15px;
	}

	.contact-page__main {
		padding: 56px 18px 72px;
	}

	.contact-page__inner {
		gap: 44px;
		grid-template-columns: 1fr;
	}

	.contact-page__copy h1 {
		font-size: clamp(32px, 9vw, 48px);
	}

	.contact-page__copy > p {
		font-size: 15px;
		line-height: 1.6;
	}

	.contact-page__form-grid {
		gap: 18px;
		grid-template-columns: 1fr;
	}

	.contact-page__form,
	.contact-page__cf7 .wpcf7-form {
		gap: 18px;
	}
}
