/*
Theme Name: Autolane QT Child Theme
Theme URI: https://mytruckrepair.shop
Description: Custom conversion-focused child theme for My Truck Repair Shop.
Author: AGB Group Inc
Template: autolane-qt
Version: 1.3.6
Text Domain: mytruckrepair
*/

:root {
	--mtr-graphite: #101820;
	--mtr-graphite-soft: #1b2732;
	--mtr-off-white: #f5f7f9;
	--mtr-white: #ffffff;
	--mtr-steel: #d9dee3;
	--mtr-steel-dark: #7d8993;
	--mtr-blue: #0067b1;
	--mtr-blue-dark: #004e88;
	--mtr-red: #d71920;
	--mtr-red-dark: #b30f15;
	--mtr-ink: #1f2c37;
	--mtr-muted: #5c6873;
	--mtr-border: rgba(16, 24, 32, 0.14);
	--mtr-shadow: 0 20px 50px rgba(16, 24, 32, 0.12);
	--mtr-container: 1180px;
	--mtr-radius: 6px;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--mtr-white);
	color: var(--mtr-ink);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.mtr-menu-open {
	overflow: hidden;
}

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

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

a {
	color: var(--mtr-blue);
	text-decoration: none;
}

a:hover {
	color: var(--mtr-blue-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	color: var(--mtr-graphite);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(3.25rem, 6.4vw, 6.2rem);
}

h2 {
	font-size: clamp(2.35rem, 4vw, 4.1rem);
}

h3 {
	font-size: clamp(1.55rem, 2.2vw, 2rem);
}

p {
	margin: 0 0 1.35em;
}

address {
	font-style: normal;
}

button,
input,
textarea,
select {
	font: inherit;
}

::selection {
	background: var(--mtr-blue);
	color: var(--mtr-white);
}

.mtr-site-shell {
	min-height: 100vh;
	overflow: clip;
}

.mtr-container {
	width: min(calc(100% - 40px), var(--mtr-container));
	margin-inline: auto;
}

.mtr-main {
	display: block;
}

.mtr-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100000;
	padding: 12px 18px;
	background: var(--mtr-white);
	color: var(--mtr-graphite);
	transform: translateY(-160%);
}

.mtr-skip-link:focus {
	transform: translateY(0);
}

.mtr-eyebrow {
	margin: 0 0 16px;
	color: var(--mtr-blue);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.mtr-section {
	padding: 100px 0;
}

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

.mtr-section-heading {
	max-width: 760px;
	margin: 0 auto 52px;
	text-align: center;
}

.mtr-section-heading p:last-child {
	color: var(--mtr-muted);
	font-size: 1.08rem;
}

.mtr-section-heading--left {
	margin-inline: 0;
	text-align: left;
}

.mtr-section-heading--with-action {
	display: flex;
	max-width: none;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	text-align: left;
}

.mtr-section-heading--with-action > div {
	max-width: 760px;
}

.mtr-button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.mtr-btn {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 13px 25px;
	border: 2px solid transparent;
	border-radius: 3px;
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.03em;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mtr-btn:hover {
	transform: translateY(-2px);
}

.mtr-btn--small {
	min-height: 46px;
	padding: 11px 18px;
	font-size: 0.95rem;
}

.mtr-btn--primary {
	background: var(--mtr-red);
	color: var(--mtr-white);
}

.mtr-btn--primary:hover {
	background: var(--mtr-red-dark);
	color: var(--mtr-white);
}

.mtr-btn--dark {
	background: var(--mtr-graphite);
	color: var(--mtr-white);
}

.mtr-btn--dark:hover {
	background: var(--mtr-blue);
	color: var(--mtr-white);
}

.mtr-btn--light {
	background: var(--mtr-white);
	color: var(--mtr-graphite);
}

.mtr-btn--light:hover {
	background: var(--mtr-red);
	color: var(--mtr-white);
}

.mtr-btn--outline-light {
	border-color: rgba(255, 255, 255, 0.72);
	color: var(--mtr-white);
}

.mtr-btn--outline-light:hover {
	border-color: var(--mtr-white);
	background: var(--mtr-white);
	color: var(--mtr-graphite);
}

.mtr-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mtr-blue);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.mtr-text-link::after {
	content: "→";
	transition: transform 180ms ease;
}

.mtr-text-link:hover::after {
	transform: translateX(4px);
}

.mtr-topbar {
	background: var(--mtr-graphite);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.77rem;
}

.mtr-topbar__inner {
	display: flex;
	min-height: 36px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.mtr-topbar p {
	margin: 0;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.mtr-topbar__contact {
	display: flex;
	align-items: center;
	gap: 22px;
}

.mtr-topbar a {
	color: var(--mtr-white);
}

.mtr-topbar__phone {
	font-weight: 800;
	letter-spacing: 0.04em;
}

.mtr-header {
	position: relative;
	z-index: 1000;
	box-shadow: 0 4px 18px rgba(16, 24, 32, 0.08);
}

.mtr-nav-wrap {
	background: rgba(255, 255, 255, 0.98);
}

.mtr-nav-row {
	display: flex;
	min-height: 82px;
	align-items: center;
	gap: 32px;
}

.mtr-wordmark {
	display: inline-flex;
	min-width: 210px;
	flex-wrap: wrap;
	align-items: baseline;
	color: var(--mtr-graphite);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.02em;
}

.mtr-wordmark:hover {
	color: var(--mtr-graphite);
}

.mtr-wordmark__accent {
	color: var(--mtr-red);
}

.mtr-wordmark small {
	font-size: 0.72rem;
	letter-spacing: 0.03em;
}

.mtr-wordmark em {
	display: block;
	width: 100%;
	margin-top: 7px;
	color: var(--mtr-steel-dark);
	font-family: "Inter", Arial, sans-serif;
	font-size: 0.6rem;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mtr-primary-nav {
	margin-left: auto;
}

.mtr-menu {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 26px;
	list-style: none;
}

.mtr-menu > li {
	margin: 0;
}

.mtr-menu > li > a {
	position: relative;
	display: block;
	padding: 29px 0;
	color: var(--mtr-graphite);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.mtr-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 22px;
	left: 0;
	height: 2px;
	background: var(--mtr-red);
	content: "";
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.mtr-menu > li > a:hover::after,
.mtr-menu > .current-menu-item > a::after,
.mtr-menu > .current_page_item > a::after {
	transform: scaleX(1);
}

.mtr-header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.mtr-phone-link {
	display: flex;
	flex-direction: column;
	color: var(--mtr-graphite);
	line-height: 1.1;
}

.mtr-phone-link span {
	color: var(--mtr-steel-dark);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.mtr-phone-link strong {
	margin-top: 4px;
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.13rem;
}

.mtr-menu-toggle {
	display: none;
	width: 46px;
	height: 44px;
	padding: 11px;
	border: 0;
	background: var(--mtr-graphite);
	cursor: pointer;
}

.mtr-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--mtr-white);
}

.mtr-hero {
	position: relative;
	display: flex;
	min-height: 690px;
	align-items: center;
	background: var(--mtr-graphite);
	color: var(--mtr-white);
	isolation: isolate;
}

.mtr-hero__media,
.mtr-hero__media img,
.mtr-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.mtr-hero__media {
	z-index: -3;
}

.mtr-hero__media img {
	object-fit: cover;
	object-position: center;
}

.mtr-hero__overlay {
	z-index: -2;
	background: linear-gradient(90deg, rgba(9, 15, 21, 0.96) 0%, rgba(9, 15, 21, 0.86) 36%, rgba(9, 15, 21, 0.34) 62%, rgba(9, 15, 21, 0.12) 100%), linear-gradient(0deg, rgba(9, 15, 21, 0.52), transparent 55%);
}

.mtr-hero__content {
	padding-top: 86px;
	padding-bottom: 86px;
}

.mtr-hero__content > * {
	max-width: 710px;
}

.mtr-hero .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-hero h1 {
	max-width: 820px;
	margin-bottom: 24px;
	color: var(--mtr-white);
	font-size: clamp(3.4rem, 6.5vw, 6.35rem);
}

.mtr-hero__lead {
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1.05rem, 1.6vw, 1.23rem);
}

.mtr-hero__content .mtr-button-row {
	margin-top: 34px;
}

.mtr-hero__note {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.88rem;
}

.mtr-trust-strip {
	border-bottom: 1px solid var(--mtr-border);
	background: var(--mtr-white);
}

.mtr-trust-strip .mtr-container {
	display: grid;
	min-height: 82px;
	grid-template-columns: 1.3fr repeat(4, 1fr);
	align-items: center;
	text-align: center;
}

.mtr-trust-strip span {
	color: var(--mtr-steel-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: left;
	text-transform: uppercase;
}

.mtr-trust-strip strong {
	padding: 10px 16px;
	border-left: 1px solid var(--mtr-border);
	color: var(--mtr-graphite);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.25rem;
}

.mtr-card-grid {
	display: grid;
	gap: 24px;
}

.mtr-card-grid--four {
	grid-template-columns: repeat(4, 1fr);
}

.mtr-service-card {
	position: relative;
	min-height: 335px;
	padding: 34px 30px;
	border: 1px solid var(--mtr-border);
	border-top: 4px solid var(--mtr-blue);
	background: var(--mtr-white);
	box-shadow: 0 12px 34px rgba(16, 24, 32, 0.06);
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.mtr-service-card:hover {
	box-shadow: var(--mtr-shadow);
	transform: translateY(-5px);
}

.mtr-card-number {
	display: block;
	margin-bottom: 54px;
	color: var(--mtr-steel-dark);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.mtr-service-card h3 {
	min-height: 2.1em;
}

.mtr-service-card p {
	color: var(--mtr-muted);
	font-size: 0.94rem;
}

.mtr-service-card--blue {
	border-color: var(--mtr-blue);
	background: var(--mtr-blue);
}

.mtr-service-card--blue h3,
.mtr-service-card--blue .mtr-card-number,
.mtr-service-card--blue .mtr-text-link {
	color: var(--mtr-white);
}

.mtr-service-card--blue p {
	color: rgba(255, 255, 255, 0.78);
}

.mtr-root-cause {
	position: relative;
	background: var(--mtr-off-white);
}

.mtr-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 84px;
}

.mtr-split--content {
	align-items: start;
}

.mtr-large-copy,
.mtr-prose--large {
	color: var(--mtr-muted);
	font-size: 1.12rem;
}

.mtr-root-cause .mtr-btn {
	margin-top: 14px;
}

.mtr-process-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--mtr-border);
	list-style: none;
	counter-reset: mtr-process;
}

.mtr-process-list li {
	position: relative;
	display: grid;
	padding: 23px 0 23px 68px;
	border-bottom: 1px solid var(--mtr-border);
	counter-increment: mtr-process;
}

.mtr-process-list li::before {
	position: absolute;
	top: 24px;
	left: 0;
	color: var(--mtr-blue);
	content: "0" counter(mtr-process);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
}

.mtr-process-list strong {
	color: var(--mtr-graphite);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.4rem;
}

.mtr-process-list span {
	color: var(--mtr-muted);
	font-size: 0.92rem;
}

.mtr-why {
	background: var(--mtr-graphite);
	color: var(--mtr-white);
}

.mtr-why h2 {
	color: var(--mtr-white);
}

.mtr-why .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-feature-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mtr-feature-row > div {
	padding: 34px 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.mtr-feature-row > div:first-child {
	border-left: 0;
}

.mtr-feature-row strong,
.mtr-feature-row span {
	display: block;
}

.mtr-feature-row strong {
	margin-bottom: 12px;
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.35rem;
}

.mtr-feature-row span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.88rem;
}

.mtr-latest-work {
	background: var(--mtr-white);
}

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

.mtr-job-card {
	margin: 0;
	border: 1px solid var(--mtr-border);
	background: var(--mtr-white);
	box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
	overflow: hidden;
}

.mtr-job-card__image {
	display: block;
	height: 238px;
	background: var(--mtr-graphite-soft);
	overflow: hidden;
}

.mtr-job-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 320ms ease;
}

.mtr-job-card:hover .mtr-job-card__image img {
	transform: scale(1.035);
}

.mtr-job-card__placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.12);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 5rem;
	font-weight: 700;
}

.mtr-job-card__body {
	padding: 28px;
}

.mtr-job-card__meta {
	display: flex;
	margin-bottom: 14px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--mtr-steel-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mtr-job-card__meta span {
	color: var(--mtr-blue);
}

.mtr-job-card h2 {
	font-size: 1.75rem;
}

.mtr-job-card h2 a {
	color: var(--mtr-graphite);
}

.mtr-job-card__truck {
	margin-bottom: 12px;
	color: var(--mtr-muted);
	font-weight: 600;
}

.mtr-job-card__excerpt {
	color: var(--mtr-muted);
	font-size: 0.92rem;
}

.mtr-job-card__excerpt p {
	margin-bottom: 18px;
}

.mtr-empty-state {
	padding: 46px;
	border: 1px dashed rgba(0, 103, 177, 0.42);
	background: rgba(0, 103, 177, 0.04);
	text-align: center;
}

.mtr-empty-state h2,
.mtr-empty-state h3 {
	margin-bottom: 10px;
}

.mtr-empty-state p {
	max-width: 660px;
	margin: 0 auto;
	color: var(--mtr-muted);
}

.mtr-empty-state--wide {
	padding: 80px 40px;
}

.mtr-apu {
	background: var(--mtr-blue);
	color: var(--mtr-white);
}

.mtr-apu__inner {
	display: grid;
	grid-template-columns: 230px 1fr;
	align-items: center;
	gap: 70px;
}

.mtr-apu__badge {
	display: flex;
	width: 220px;
	height: 220px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.94);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 4.4rem;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.mtr-apu h2,
.mtr-apu .mtr-eyebrow {
	color: var(--mtr-white);
}

.mtr-apu p:not(.mtr-eyebrow) {
	max-width: 820px;
	color: rgba(255, 255, 255, 0.78);
}

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

.mtr-reviews-pending,
.mtr-form-pending {
	padding: 36px;
	border: 1px solid var(--mtr-border);
	background: var(--mtr-white);
	text-align: center;
}

.mtr-reviews-pending p,
.mtr-form-pending p {
	color: var(--mtr-muted);
}

.mtr-home-contact,
.mtr-contact-page {
	background: var(--mtr-white);
}

.mtr-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	align-items: start;
	gap: 80px;
}

.mtr-contact-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.mtr-contact-links > a:not(.mtr-text-link) {
	color: var(--mtr-graphite);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
}

.mtr-form-card {
	padding: 42px;
	border-top: 4px solid var(--mtr-blue);
	background: var(--mtr-off-white);
	box-shadow: var(--mtr-shadow);
}

.mtr-form-card > h2 {
	font-size: 2.2rem;
}

.mtr-form-card .ff-el-group {
	margin-bottom: 18px;
}

.mtr-form-card .ff-el-input--label label {
	color: var(--mtr-graphite);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mtr-form-card .ff-el-form-control {
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid #c8d0d7;
	border-radius: 2px;
	background: var(--mtr-white);
	box-shadow: none;
}

.mtr-form-card textarea.ff-el-form-control {
	min-height: 130px;
}

.mtr-form-card .ff-el-form-control:focus {
	border-color: var(--mtr-blue);
	box-shadow: 0 0 0 3px rgba(0, 103, 177, 0.12);
}

.mtr-form-card .ff-btn-submit {
	min-height: 52px;
	padding: 13px 24px;
	border: 0;
	border-radius: 3px;
	background: var(--mtr-red);
	color: var(--mtr-white);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mtr-form-card .ff-btn-submit:hover {
	background: var(--mtr-red-dark);
}

.mtr-page-hero {
	position: relative;
	padding: 110px 0;
	background: linear-gradient(115deg, var(--mtr-graphite) 0%, #142839 66%, var(--mtr-blue-dark) 100%);
	color: var(--mtr-white);
	overflow: hidden;
}

.mtr-page-hero::before {
	position: absolute;
	top: -20%;
	right: 11%;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
}

.mtr-page-hero--compact {
	padding: 82px 0;
}

.mtr-page-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 820px) 1fr;
	align-items: center;
	gap: 60px;
}

.mtr-page-hero h1 {
	margin-bottom: 22px;
	color: var(--mtr-white);
	font-size: clamp(3.2rem, 5.8vw, 5.6rem);
}

.mtr-page-hero p:not(.mtr-eyebrow) {
	max-width: 740px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.1rem;
}

.mtr-page-hero .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-page-hero__mark {
	color: rgba(255, 255, 255, 0.1);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: clamp(5rem, 10vw, 9rem);
	font-weight: 700;
	line-height: 0.8;
	text-align: right;
}

.mtr-prose {
	color: var(--mtr-muted);
}

.mtr-prose h2,
.mtr-prose h3 {
	margin-top: 1.5em;
}

.mtr-prose a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mtr-prose ul,
.mtr-prose ol {
	padding-left: 1.35em;
}

.mtr-method-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.mtr-method-grid article {
	padding: 32px;
	border-top: 4px solid var(--mtr-blue);
	background: var(--mtr-white);
	box-shadow: 0 12px 32px rgba(16, 24, 32, 0.06);
}

.mtr-method-grid article > span {
	display: block;
	margin-bottom: 48px;
	color: var(--mtr-blue);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-weight: 700;
}

.mtr-method-grid article p {
	margin: 0;
	color: var(--mtr-muted);
	font-size: 0.9rem;
}

.mtr-dark-panel {
	background: var(--mtr-graphite);
	color: rgba(255, 255, 255, 0.75);
}

.mtr-dark-panel h2 {
	color: var(--mtr-white);
}

.mtr-dark-panel .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-brand-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid rgba(255, 255, 255, 0.17);
	border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.mtr-brand-grid span {
	padding: 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.17);
	border-bottom: 1px solid rgba(255, 255, 255, 0.17);
	color: var(--mtr-white);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}

.mtr-service-detail {
	padding: 86px 0;
	border-top: 1px solid var(--mtr-border);
	background: var(--mtr-white);
	scroll-margin-top: 40px;
}

.mtr-service-detail--steel {
	background: var(--mtr-off-white);
}

.mtr-service-detail--blue {
	background: var(--mtr-blue);
	color: var(--mtr-white);
}

.mtr-service-detail__grid {
	display: grid;
	grid-template-columns: 90px minmax(0, 1.05fr) minmax(320px, 0.95fr);
	align-items: start;
	gap: 54px;
}

.mtr-service-detail__number {
	color: var(--mtr-steel-dark);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1;
}

.mtr-service-detail h2 {
	font-size: clamp(2.7rem, 4.5vw, 4.35rem);
}

.mtr-service-detail p:not(.mtr-eyebrow) {
	color: var(--mtr-muted);
}

.mtr-service-note {
	padding: 14px 18px;
	border-left: 4px solid var(--mtr-blue);
	background: var(--mtr-white);
	font-size: 0.88rem;
}

.mtr-check-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--mtr-border);
	list-style: none;
}

.mtr-check-list li {
	position: relative;
	padding: 15px 0 15px 28px;
	border-bottom: 1px solid var(--mtr-border);
	font-weight: 600;
}

.mtr-check-list li::before {
	position: absolute;
	top: 14px;
	left: 0;
	color: var(--mtr-blue);
	content: "✓";
	font-weight: 700;
}

.mtr-service-detail--blue h2,
.mtr-service-detail--blue .mtr-eyebrow,
.mtr-service-detail--blue .mtr-service-detail__number {
	color: var(--mtr-white);
}

.mtr-service-detail--blue p:not(.mtr-eyebrow) {
	color: rgba(255, 255, 255, 0.76);
}

.mtr-service-detail--blue .mtr-check-list {
	border-color: rgba(255, 255, 255, 0.25);
}

.mtr-service-detail--blue .mtr-check-list li {
	border-color: rgba(255, 255, 255, 0.25);
}

.mtr-service-detail--blue .mtr-check-list li::before {
	color: var(--mtr-white);
}

.mtr-cta-band {
	padding: 72px 0;
	background: var(--mtr-graphite);
	color: var(--mtr-white);
}

.mtr-cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.mtr-cta-band h2 {
	max-width: 800px;
	margin: 0;
	color: var(--mtr-white);
}

.mtr-cta-band .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-reviews-page {
	max-width: 980px;
}

.mtr-center-action {
	margin-top: 34px;
	text-align: center;
}

.mtr-contact-cards {
	display: grid;
	margin-top: 32px;
	border-top: 1px solid var(--mtr-border);
}

.mtr-contact-cards > a,
.mtr-contact-cards > div {
	display: flex;
	padding: 18px 0;
	border-bottom: 1px solid var(--mtr-border);
	flex-direction: column;
	align-items: flex-start;
}

.mtr-contact-cards span {
	color: var(--mtr-steel-dark);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mtr-contact-cards strong {
	color: var(--mtr-graphite);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.3rem;
}

.mtr-contact-cards .mtr-text-link {
	margin-top: 6px;
}

.mtr-policy {
	max-width: 820px;
}

.mtr-policy > p:first-child {
	font-size: 1.12rem;
}

.mtr-policy h2 {
	padding-top: 18px;
	font-size: 2.25rem;
}

.mtr-pagination {
	margin-top: 52px;
}

.mtr-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.mtr-pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	padding: 0 13px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--mtr-border);
	color: var(--mtr-graphite);
	font-weight: 700;
}

.mtr-pagination .page-numbers.current,
.mtr-pagination a.page-numbers:hover {
	border-color: var(--mtr-blue);
	background: var(--mtr-blue);
	color: var(--mtr-white);
}

.mtr-job-single__hero {
	position: relative;
	padding: 100px 0;
	background: var(--mtr-graphite);
	color: var(--mtr-white);
	isolation: isolate;
	overflow: hidden;
}

.mtr-job-single__hero.has-image {
	min-height: 620px;
	display: flex;
	align-items: end;
}

.mtr-job-single__background,
.mtr-job-single__background img,
.mtr-job-single__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.mtr-job-single__background {
	z-index: -3;
}

.mtr-job-single__background img {
	object-fit: cover;
}

.mtr-job-single__overlay {
	z-index: -2;
	background: linear-gradient(90deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.42)), linear-gradient(0deg, rgba(16, 24, 32, 0.9), transparent 70%);
}

.mtr-back-link {
	display: inline-block;
	margin-bottom: 52px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.mtr-back-link:hover {
	color: var(--mtr-white);
}

.mtr-job-single__heading h1 {
	max-width: 900px;
	color: var(--mtr-white);
}

.mtr-job-single__heading .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-job-single__summary {
	display: flex;
	margin-top: 34px;
	gap: 50px;
}

.mtr-job-single__summary span {
	display: flex;
	flex-direction: column;
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
}

.mtr-job-single__summary small {
	margin-bottom: 4px;
	color: rgba(255, 255, 255, 0.58);
	font-family: "Inter", Arial, sans-serif;
	font-size: 0.6rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mtr-job-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
	gap: 80px;
}

.mtr-job-lead {
	margin-bottom: 42px;
	color: var(--mtr-graphite);
	font-size: 1.22rem;
	font-weight: 600;
}

.mtr-job-detail {
	margin-top: 28px;
	padding: 28px 30px;
	border-left: 4px solid var(--mtr-blue);
	background: var(--mtr-off-white);
}

.mtr-job-detail h2 {
	font-size: 1.8rem;
}

.mtr-job-detail p {
	margin: 0;
	color: var(--mtr-muted);
}

.mtr-job-detail--result {
	border-left-color: #2c8b57;
}

.mtr-job-facts {
	position: sticky;
	top: 24px;
	padding: 30px;
	border-top: 4px solid var(--mtr-blue);
	background: var(--mtr-graphite);
	color: var(--mtr-white);
}

.mtr-job-facts h2 {
	color: var(--mtr-white);
	font-size: 2rem;
}

.mtr-job-facts > div {
	display: flex;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	flex-direction: column;
}

.mtr-job-facts span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.mtr-job-facts strong {
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.2rem;
}

.mtr-job-gallery {
	margin-top: 92px;
}

.mtr-job-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.mtr-job-gallery figure {
	margin: 0;
	background: var(--mtr-off-white);
}

.mtr-job-gallery img {
	width: 100%;
	height: 430px;
	object-fit: cover;
}

.mtr-footer {
	background: #0a1117;
	color: rgba(255, 255, 255, 0.64);
}

.mtr-footer__grid {
	display: grid;
	padding-top: 74px;
	padding-bottom: 68px;
	grid-template-columns: 1.35fr 1fr 0.8fr 1.1fr;
	gap: 58px;
}

.mtr-wordmark--footer {
	color: var(--mtr-white);
}

.mtr-wordmark--footer:hover {
	color: var(--mtr-white);
}

.mtr-footer__brand p {
	margin-top: 24px;
	font-size: 0.88rem;
}

.mtr-footer h2 {
	margin-bottom: 22px;
	color: var(--mtr-white);
	font-size: 1.35rem;
}

.mtr-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mtr-footer li {
	margin-bottom: 9px;
}

.mtr-footer a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.86rem;
}

.mtr-footer a:hover {
	color: var(--mtr-white);
}

.mtr-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.mtr-footer__contact h2 {
	margin-bottom: 14px;
}

.mtr-footer__contact address {
	font-size: 0.86rem;
}

.mtr-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.mtr-footer__bottom .mtr-container {
	display: flex;
	min-height: 62px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.mtr-footer__bottom p {
	margin: 0;
	font-size: 0.76rem;
}

.mtr-mobile-actions {
	display: none;
}

.mtr-admin-gallery-field .mtr-gallery-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mtr-admin-gallery-field .mtr-gallery-preview img {
	width: 90px;
	height: 70px;
	object-fit: cover;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid #72bcec;
	outline-offset: 3px;
}

@media (min-width: 1025px) {
	.mtr-header {
		position: sticky;
		top: 0;
	}

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

@media (max-width: 1160px) {
	.mtr-nav-row {
		gap: 20px;
	}

	.mtr-menu {
		gap: 17px;
	}

	.mtr-header-actions .mtr-phone-link {
		display: none;
	}

	.mtr-card-grid--four,
	.mtr-method-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mtr-service-card h3 {
		min-height: auto;
	}

	.mtr-footer__grid {
		grid-template-columns: 1.3fr 1fr 1fr;
	}

	.mtr-footer__brand {
		grid-column: 1 / -1;
		max-width: 560px;
	}
}

@media (max-width: 1380px) {
	.mtr-nav-row {
		gap: 20px;
	}

	.mtr-menu {
		gap: 20px;
	}

	.mtr-header-actions .mtr-phone-link {
		display: none;
	}
}

@media (max-width: 920px) {
	.mtr-section {
		padding: 78px 0;
	}

	.mtr-topbar__contact span {
		display: none;
	}

	.mtr-nav-row {
		min-height: 72px;
	}

	.mtr-menu-toggle {
		display: block;
		order: 3;
		margin-left: auto;
	}

	.mtr-header-actions {
		order: 2;
		margin-left: auto;
	}

	.mtr-menu-toggle + .mtr-primary-nav,
	.mtr-primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		padding: 18px 20px 26px;
		border-top: 1px solid var(--mtr-border);
		background: var(--mtr-white);
		box-shadow: 0 20px 30px rgba(16, 24, 32, 0.16);
	}

	.mtr-primary-nav.is-open {
		display: block;
	}

	.mtr-menu {
		display: block;
	}

	.mtr-menu > li > a {
		padding: 12px 0;
		border-bottom: 1px solid var(--mtr-border);
	}

	.mtr-menu > li > a::after {
		display: none;
	}

	.mtr-hero {
		min-height: 650px;
	}

	.mtr-split,
	.mtr-contact-layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.mtr-feature-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.mtr-feature-row > div:nth-child(3) {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

	.mtr-feature-row > div:nth-child(4) {
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

	.mtr-jobs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mtr-apu__inner {
		grid-template-columns: 150px 1fr;
		gap: 45px;
	}

	.mtr-apu__badge {
		width: 150px;
		height: 150px;
		font-size: 3.3rem;
	}

	.mtr-page-hero__inner {
		grid-template-columns: 1fr;
	}

	.mtr-page-hero__mark {
		display: none;
	}

	.mtr-service-detail__grid {
		grid-template-columns: 70px 1fr;
		gap: 38px;
	}

	.mtr-service-detail__grid .mtr-check-list {
		grid-column: 2;
	}

	.mtr-job-single__layout {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.mtr-job-facts {
		position: static;
	}
}

@media (max-width: 767px) {
	body {
		padding-bottom: 64px;
	}

	.mtr-container {
		width: min(calc(100% - 32px), var(--mtr-container));
	}

	h1 {
		font-size: clamp(2.75rem, 13vw, 4.2rem);
	}

	h2 {
		font-size: clamp(2.15rem, 10vw, 3.2rem);
	}

	.mtr-section {
		padding: 64px 0;
	}

	.mtr-section-heading {
		margin-bottom: 36px;
	}

	.mtr-section-heading--with-action,
	.mtr-cta-band__inner {
		display: block;
	}

	.mtr-section-heading--with-action > .mtr-text-link,
	.mtr-cta-band__inner > .mtr-btn,
	.mtr-cta-band__inner > .mtr-button-row {
		margin-top: 24px;
	}

	.mtr-topbar {
		display: none;
	}

	.mtr-nav-row {
		min-height: 68px;
	}

	.mtr-wordmark {
		min-width: 0;
		font-size: 1.42rem;
	}

	.mtr-wordmark em {
		display: none;
	}

	.mtr-header-actions {
		display: none;
	}

	.mtr-hero {
		min-height: 690px;
		align-items: end;
	}

	.mtr-hero__media img {
		object-position: center 38%;
	}

	.mtr-hero__overlay {
		background: linear-gradient(0deg, rgba(9, 15, 21, 0.98) 0%, rgba(9, 15, 21, 0.84) 47%, rgba(9, 15, 21, 0.2) 100%);
	}

	.mtr-hero__content {
		padding-top: 230px;
		padding-bottom: 48px;
	}

	.mtr-hero h1 {
		font-size: clamp(2.8rem, 12vw, 4.1rem);
	}

	.mtr-hero__lead {
		font-size: 0.98rem;
		line-height: 1.55;
	}

	.mtr-hero__note {
		display: none;
	}

	.mtr-button-row .mtr-btn {
		width: 100%;
	}

	.mtr-trust-strip .mtr-container {
		grid-template-columns: repeat(2, 1fr);
		padding: 18px 0;
	}

	.mtr-trust-strip span {
		grid-column: 1 / -1;
		padding-bottom: 8px;
		text-align: center;
	}

	.mtr-trust-strip strong {
		padding: 8px;
		border: 0;
		font-size: 1rem;
	}

	.mtr-card-grid--four,
	.mtr-method-grid,
	.mtr-jobs-grid,
	.mtr-feature-row,
	.mtr-job-gallery__grid {
		grid-template-columns: 1fr;
	}

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

	.mtr-card-number {
		margin-bottom: 34px;
	}

	.mtr-feature-row > div,
	.mtr-feature-row > div:nth-child(3),
	.mtr-feature-row > div:nth-child(4) {
		padding: 25px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
		border-left: 0;
	}

	.mtr-feature-row > div:first-child {
		border-top: 0;
	}

	.mtr-apu__inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.mtr-apu__badge {
		width: 112px;
		height: 112px;
		font-size: 2.7rem;
	}

	.mtr-form-card {
		padding: 28px 22px;
	}

	.mtr-page-hero,
	.mtr-page-hero--compact {
		padding: 72px 0;
	}

	.mtr-page-hero h1 {
		font-size: clamp(2.8rem, 12vw, 4.15rem);
	}

	.mtr-page-hero p:not(.mtr-eyebrow) {
		font-size: 1rem;
	}

	.mtr-method-grid article > span {
		margin-bottom: 28px;
	}

	.mtr-brand-grid {
		grid-template-columns: 1fr;
	}

	.mtr-service-detail {
		padding: 64px 0;
	}

	.mtr-service-detail__grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.mtr-service-detail__grid .mtr-check-list {
		grid-column: auto;
	}

	.mtr-service-detail__number {
		font-size: 2.4rem;
	}

	.mtr-cta-band {
		padding: 56px 0;
	}

	.mtr-job-card__image {
		height: 220px;
	}

	.mtr-job-single__hero,
	.mtr-job-single__hero.has-image {
		min-height: 530px;
		padding: 68px 0;
	}

	.mtr-back-link {
		margin-bottom: 38px;
	}

	.mtr-job-single__summary {
		flex-direction: column;
		gap: 15px;
	}

	.mtr-job-detail {
		padding: 24px 20px;
	}

	.mtr-job-gallery {
		margin-top: 64px;
	}

	.mtr-job-gallery img {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.mtr-footer__grid {
		padding-top: 56px;
		padding-bottom: 48px;
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.mtr-footer__brand {
		grid-column: auto;
	}

	.mtr-footer__bottom .mtr-container {
		padding: 16px 0;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 4px;
	}

	.mtr-mobile-actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1100;
		display: grid;
		min-height: 64px;
		grid-template-columns: 1fr;
		box-shadow: 0 -4px 18px rgba(16, 24, 32, 0.2);
	}

	.mtr-has-phone .mtr-mobile-actions {
		grid-template-columns: 0.85fr 1.15fr;
	}

	.mtr-mobile-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--mtr-white);
		font-family: "Barlow Condensed", Arial, sans-serif;
		font-size: 1.02rem;
		font-weight: 700;
		letter-spacing: 0.03em;
		text-transform: uppercase;
	}

	.mtr-mobile-actions__call {
		background: var(--mtr-blue);
	}

	.mtr-mobile-actions__schedule {
		background: var(--mtr-red);
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/*
 * Autolane prints legacy typography choices in a late inline stylesheet.
 * Keep the project to the two approved families throughout the custom shell.
 */
.mtr-site-shell,
.mtr-site-shell p,
.mtr-site-shell li,
.mtr-site-shell address,
.mtr-site-shell input,
.mtr-site-shell textarea,
.mtr-site-shell select,
.mtr-site-shell button {
	font-family: "Inter", Arial, sans-serif !important;
}

.mtr-site-shell h1,
.mtr-site-shell h2,
.mtr-site-shell h3,
.mtr-site-shell h4,
.mtr-site-shell h5,
.mtr-site-shell h6,
.mtr-site-shell .mtr-wordmark,
.mtr-site-shell .mtr-eyebrow,
.mtr-site-shell .mtr-btn,
.mtr-site-shell .mtr-menu > li > a,
.mtr-site-shell .mtr-text-link,
.mtr-site-shell .mtr-card-number,
.mtr-site-shell .mtr-service-detail__number,
.mtr-site-shell .mtr-page-hero__mark,
.mtr-site-shell .mtr-mobile-actions a {
	font-family: "Barlow Condensed", Arial, sans-serif !important;
}

/*
 * 1.3 immersive visual system.
 * Every generated image is presentation-only. Completed Jobs keep their own
 * featured images and never inherit a decorative image as customer evidence.
 */
.mtr-page-hero {
	position: relative;
	display: flex;
	min-height: 540px;
	padding: 112px 0;
	align-items: center;
	background-color: var(--mtr-graphite);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	isolation: isolate;
}

.mtr-page-hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
	background: linear-gradient(90deg, rgba(7, 13, 19, 0.98) 0%, rgba(7, 13, 19, 0.93) 38%, rgba(7, 13, 19, 0.62) 62%, rgba(7, 13, 19, 0.16) 100%), linear-gradient(0deg, rgba(7, 13, 19, 0.54), transparent 56%);
	content: "";
}

.mtr-page-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--mtr-red) 0 18%, var(--mtr-blue) 18% 100%);
	content: "";
}

.mtr-page-hero--compact {
	min-height: 470px;
	padding: 94px 0;
}

.mtr-page-hero__inner {
	z-index: 1;
	display: block;
}

.mtr-page-hero__inner > div {
	max-width: 820px;
}

.mtr-page-hero h1 {
	text-wrap: balance;
}

.mtr-page-hero--about {
	background-image: url("assets/images/page-hero-about.webp");
}

.mtr-page-hero--services {
	background-image: url("assets/images/page-hero-services.webp");
}

.mtr-page-hero--work {
	background-image: url("assets/images/page-hero-our-work.webp");
}

.mtr-page-hero--reviews {
	background-image: url("assets/images/page-hero-reviews.webp");
}

.mtr-page-hero--contact {
	min-height: 620px;
	background-image: url("assets/images/page-hero-contact.webp");
}

.mtr-page-hero--contact .mtr-button-row {
	margin-top: 30px;
}

.mtr-trust-strip {
	border: 0;
	background: var(--mtr-graphite);
}

.mtr-trust-strip .mtr-container {
	min-height: 172px;
	grid-template-columns: 190px repeat(4, minmax(0, 1fr));
	align-items: stretch;
}

.mtr-trust-strip .mtr-trust-label {
	display: flex;
	padding: 24px;
	align-items: center;
	color: rgba(255, 255, 255, 0.7);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 0.84rem;
	letter-spacing: 0.14em;
	text-align: left;
}

.mtr-trust-strip .mtr-trust-brand {
	position: relative;
	display: flex;
	min-height: 172px;
	padding: 24px 20px;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	align-items: flex-end;
	justify-content: flex-start;
	background-image: linear-gradient(0deg, rgba(5, 10, 15, 0.96) 0%, rgba(5, 10, 15, 0.52) 48%, rgba(5, 10, 15, 0.1) 100%), url("assets/images/brand-platforms.webp");
	background-repeat: no-repeat;
	background-size: 100% 100%, 400% auto;
	color: var(--mtr-white);
	font-size: 1.42rem;
	letter-spacing: 0.01em;
	text-align: left;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
	transition: filter 180ms ease, transform 180ms ease;
}

.mtr-trust-strip .mtr-trust-brand:hover {
	filter: brightness(1.12);
	transform: translateY(-3px);
}

.mtr-trust-brand--freightliner {
	background-position: center, 0% 56%;
}

.mtr-trust-brand--volvo {
	background-position: center, 33.333% 56%;
}

.mtr-trust-brand--peterbilt {
	background-position: center, 66.667% 56%;
}

.mtr-trust-brand--kenworth {
	background-position: center, 100% 56%;
}

.mtr-services-overview {
	background: linear-gradient(180deg, var(--mtr-white) 0%, var(--mtr-off-white) 100%);
}

.mtr-service-card {
	position: relative;
	min-height: 410px;
	padding: 32px 28px;
	border-color: rgba(255, 255, 255, 0.18);
	border-top-color: var(--mtr-red);
	background-color: var(--mtr-graphite);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 18px 44px rgba(16, 24, 32, 0.18);
	color: var(--mtr-white);
	isolation: isolate;
	overflow: hidden;
}

.mtr-service-card::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 13, 19, 0.28) 0%, rgba(7, 13, 19, 0.74) 48%, rgba(7, 13, 19, 0.98) 100%);
	content: "";
}

.mtr-service-card > * {
	position: relative;
	z-index: 1;
}

.mtr-service-card--software {
	background-image: url("assets/images/service-software.webp");
	background-position: 64% center;
}

.mtr-service-card--emissions {
	background-image: url("assets/images/service-aftertreatment.webp");
}

.mtr-service-card--electrical {
	background-image: url("assets/images/service-electrical.webp");
}

.mtr-service-card--apu {
	background-image: url("assets/images/service-apu.webp");
}

.mtr-service-card .mtr-card-number {
	margin-bottom: 118px;
	color: rgba(255, 255, 255, 0.72);
}

.mtr-service-card h3,
.mtr-service-card--blue h3,
.mtr-service-card .mtr-text-link,
.mtr-service-card--blue .mtr-text-link {
	color: var(--mtr-white);
}

.mtr-service-card p,
.mtr-service-card--blue p {
	color: rgba(255, 255, 255, 0.78);
}

.mtr-why {
	background: linear-gradient(90deg, rgba(7, 13, 19, 0.98) 0%, rgba(7, 13, 19, 0.94) 52%, rgba(7, 13, 19, 0.76) 100%), url("assets/images/page-hero-about.webp") right center / cover no-repeat;
}

.mtr-latest-work {
	background: linear-gradient(90deg, rgba(7, 13, 19, 0.96), rgba(7, 13, 19, 0.84)), url("assets/images/page-hero-our-work.webp") center / cover no-repeat;
	color: var(--mtr-white);
}

.mtr-latest-work .mtr-section-heading h2,
.mtr-latest-work .mtr-section-heading .mtr-text-link {
	color: var(--mtr-white);
}

.mtr-latest-work .mtr-section-heading p:last-child {
	color: rgba(255, 255, 255, 0.72);
}

.mtr-latest-work .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-apu {
	background: linear-gradient(90deg, rgba(0, 78, 136, 0.96) 0%, rgba(0, 103, 177, 0.88) 46%, rgba(0, 55, 95, 0.78) 100%), url("assets/images/service-apu.webp") center / cover no-repeat;
}

.mtr-apu__badge {
	background: rgba(7, 13, 19, 0.28);
	backdrop-filter: blur(4px);
}

.mtr-reviews-section {
	background: linear-gradient(90deg, rgba(7, 13, 19, 0.96) 0%, rgba(7, 13, 19, 0.83) 62%, rgba(7, 13, 19, 0.56) 100%), url("assets/images/page-hero-reviews.webp") center / cover no-repeat;
	color: var(--mtr-white);
}

.mtr-reviews-section h2 {
	color: var(--mtr-white);
}

.mtr-reviews-section .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-home-reviews-live .ti-widget {
	max-width: none !important;
	background: transparent !important;
}

.mtr-home-reviews-live .ti-widget-container {
	max-width: none !important;
	padding: 0 !important;
}

.mtr-home-reviews-live .ti-reviews-container-wrapper {
	display: grid !important;
	width: auto !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 20px !important;
	transform: none !important;
	transition: none !important;
}

.mtr-home-reviews-live .ti-review-item {
	display: block !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	flex: none !important;
}

.mtr-home-reviews-live .ti-review-item:nth-child(n + 4),
.mtr-home-reviews-live .ti-controls,
.mtr-home-reviews-live .ti-read-more {
	display: none !important;
}

.mtr-home-reviews-live .ti-review-content {
	display: -webkit-box !important;
	overflow: hidden !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 7 !important;
}

.mtr-reviews-section .mtr-center-action {
	margin-top: 28px;
}

.mtr-home-contact {
	background: linear-gradient(90deg, rgba(7, 13, 19, 0.97) 0%, rgba(7, 13, 19, 0.9) 42%, rgba(7, 13, 19, 0.64) 72%, rgba(7, 13, 19, 0.45) 100%), url("assets/images/page-hero-contact.webp") center / cover no-repeat;
	color: var(--mtr-white);
}

.mtr-home-contact h2 {
	color: var(--mtr-white);
}

.mtr-home-contact .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-home-contact .mtr-contact-layout > div:first-child > p:not(.mtr-eyebrow) {
	color: rgba(255, 255, 255, 0.76);
}

.mtr-home-contact .mtr-contact-links > a:not(.mtr-text-link),
.mtr-home-contact .mtr-contact-links address {
	color: var(--mtr-white);
}

.mtr-home-contact .mtr-form-card {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.mtr-home-contact .mtr-form-card,
.mtr-home-contact .mtr-form-card h2,
.mtr-home-contact .mtr-form-card p,
.mtr-home-contact .mtr-form-card label {
	color: var(--mtr-graphite);
}

.mtr-dark-panel {
	background: linear-gradient(90deg, rgba(7, 13, 19, 0.97) 0%, rgba(7, 13, 19, 0.88) 100%), url("assets/images/brand-platforms.webp") center / cover no-repeat;
}

.mtr-service-detail {
	position: relative;
	background-color: var(--mtr-white);
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.97) 44%, rgba(255, 255, 255, 0.88) 64%, rgba(255, 255, 255, 0.62) 100%), var(--mtr-service-image);
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, 58% auto;
	overflow: hidden;
}

.mtr-service-detail--steel {
	background-color: var(--mtr-off-white);
	background-image: linear-gradient(90deg, rgba(245, 247, 249, 1) 0%, rgba(245, 247, 249, 0.97) 44%, rgba(245, 247, 249, 0.88) 64%, rgba(245, 247, 249, 0.64) 100%), var(--mtr-service-image);
}

.mtr-service-detail--software {
	--mtr-service-image: url("assets/images/service-software.webp");
}

.mtr-service-detail--emissions {
	--mtr-service-image: url("assets/images/service-aftertreatment.webp");
}

.mtr-service-detail--electrical {
	--mtr-service-image: url("assets/images/service-electrical.webp");
}

.mtr-service-detail--apu {
	--mtr-service-image: url("assets/images/service-apu.webp");
}

.mtr-service-detail .mtr-check-list {
	padding: 24px 28px;
	border: 1px solid rgba(16, 24, 32, 0.14);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 20px 50px rgba(16, 24, 32, 0.12);
	backdrop-filter: blur(8px);
}

.mtr-service-detail--blue {
	background-color: var(--mtr-blue-dark);
	background-image: linear-gradient(90deg, rgba(0, 62, 108, 0.99) 0%, rgba(0, 78, 136, 0.95) 46%, rgba(0, 78, 136, 0.76) 70%, rgba(0, 43, 74, 0.55) 100%), var(--mtr-service-image);
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, 58% auto;
}

.mtr-service-detail--blue .mtr-check-list {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(0, 48, 84, 0.82);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.mtr-cta-band {
	background: linear-gradient(90deg, rgba(7, 13, 19, 0.98) 0%, rgba(7, 13, 19, 0.84) 100%), url("assets/images/page-hero-contact.webp") center 62% / cover no-repeat;
}

.mtr-page-hero--work + .mtr-section,
.mtr-page-hero--reviews + .mtr-section,
.mtr-contact-page {
	background: var(--mtr-off-white);
}

.mtr-contact-page {
	position: relative;
}

.mtr-contact-page::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 42%;
	height: 4px;
	background: var(--mtr-red);
	content: "";
}

.mtr-contact-cards > a,
.mtr-contact-cards > div {
	padding: 20px 18px;
	border: 1px solid var(--mtr-border);
	border-top: 0;
	background: var(--mtr-white);
}

.mtr-contact-cards > :first-child {
	border-top: 1px solid var(--mtr-border);
}

.mtr-contact-page .mtr-form-card {
	box-shadow: 0 24px 62px rgba(16, 24, 32, 0.14);
}

.mtr-location {
	padding: 100px 0;
	background: linear-gradient(90deg, rgba(7, 13, 19, 0.98), rgba(7, 13, 19, 0.84)), url("assets/images/page-hero-contact.webp") center / cover no-repeat;
	color: var(--mtr-white);
}

.mtr-location__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	align-items: center;
	gap: 64px;
}

.mtr-location h2 {
	color: var(--mtr-white);
}

.mtr-location .mtr-eyebrow {
	color: #71b9ec;
}

.mtr-location address {
	margin: 0 0 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.12rem;
}

.mtr-map-frame {
	min-height: 470px;
	border: 8px solid rgba(255, 255, 255, 0.12);
	background: var(--mtr-graphite-soft);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
	overflow: hidden;
}

.mtr-map-frame iframe {
	display: block;
	width: 100%;
	height: 470px;
	border: 0;
}

@media (max-width: 1160px) {
	.mtr-trust-strip .mtr-container {
		grid-template-columns: 150px repeat(4, minmax(0, 1fr));
	}

	.mtr-trust-strip .mtr-trust-label,
	.mtr-trust-strip .mtr-trust-brand {
		padding: 20px 16px;
	}
}

@media (max-width: 920px) {
	.mtr-home-reviews-live .ti-reviews-container-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.mtr-home-reviews-live .ti-review-item:nth-child(n + 3) {
		display: none !important;
	}

	.mtr-page-hero,
	.mtr-page-hero--compact,
	.mtr-page-hero--contact {
		min-height: 520px;
	}

	.mtr-trust-strip .mtr-container {
		grid-template-columns: repeat(2, 1fr);
		padding: 0;
	}

	.mtr-trust-strip .mtr-trust-label {
		grid-column: 1 / -1;
		min-height: 68px;
		justify-content: center;
		text-align: center;
	}

	.mtr-trust-strip .mtr-trust-brand {
		min-height: 150px;
	}

	.mtr-trust-strip .mtr-trust-brand:nth-of-type(odd) {
		border-left: 0;
	}

	.mtr-service-detail {
		background-size: cover, 82% auto;
	}

	.mtr-location__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.mtr-home-reviews-live .ti-reviews-container-wrapper {
		grid-template-columns: 1fr !important;
	}

	.mtr-home-reviews-live .ti-review-item:nth-child(n + 2) {
		display: none !important;
	}

	.mtr-page-hero,
	.mtr-page-hero--compact,
	.mtr-page-hero--contact {
		min-height: 610px;
		padding: 230px 0 64px;
		align-items: flex-end;
		background-position: center;
	}

	.mtr-page-hero::before {
		background: linear-gradient(0deg, rgba(7, 13, 19, 0.99) 0%, rgba(7, 13, 19, 0.92) 48%, rgba(7, 13, 19, 0.2) 100%);
	}

	.mtr-page-hero--about {
		background-image: url("assets/images/page-hero-about-mobile.webp");
	}

	.mtr-page-hero--services {
		background-image: url("assets/images/page-hero-services-mobile.webp");
	}

	.mtr-page-hero--work {
		background-image: url("assets/images/page-hero-our-work-mobile.webp");
	}

	.mtr-page-hero--reviews {
		background-image: url("assets/images/page-hero-reviews-mobile.webp");
	}

	.mtr-page-hero--contact {
		background-image: url("assets/images/page-hero-contact-mobile.webp");
	}

	.mtr-page-hero--contact .mtr-button-row {
		margin-top: 24px;
	}

	.mtr-trust-strip .mtr-container {
		width: 100%;
	}

	.mtr-trust-strip .mtr-trust-brand {
		min-height: 132px;
		padding: 18px 16px;
		background-size: 100% 100%, 420% auto;
		font-size: 1.18rem;
	}

	.mtr-service-card {
		min-height: 370px;
	}

	.mtr-service-card .mtr-card-number {
		margin-bottom: 108px;
	}

	.mtr-latest-work,
	.mtr-reviews-section,
	.mtr-home-contact,
	.mtr-why,
	.mtr-cta-band,
	.mtr-location {
		background-position: 68% center;
	}

	.mtr-service-detail,
	.mtr-service-detail--steel,
	.mtr-service-detail--blue {
		background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.97) 68%, rgba(255, 255, 255, 0.68) 100%), var(--mtr-service-image);
		background-position: center, center top;
		background-size: cover, auto 64%;
	}

	.mtr-service-detail--blue {
		background-image: linear-gradient(0deg, rgba(0, 78, 136, 1) 0%, rgba(0, 78, 136, 0.95) 68%, rgba(0, 43, 74, 0.68) 100%), var(--mtr-service-image);
	}

	.mtr-service-detail .mtr-check-list {
		padding: 20px;
	}

	.mtr-location {
		padding: 64px 0;
	}

	.mtr-map-frame,
	.mtr-map-frame iframe {
		min-height: 380px;
		height: 380px;
	}
}


/* Desktop header line-wrap fix — 2026-08-04 */
.mtr-menu > li > a,
.mtr-header-actions .mtr-btn,
.mtr-topbar__contact,
.mtr-topbar__contact > * {
	white-space: nowrap;
}

/* The phone is already in the top contact bar; keep it out of the main desktop row. */
.mtr-header-actions .mtr-phone-link {
	display: none;
}

/* Schedule Diagnostics CTA contrast fix — 2026-08-21 */
.mtr-header-actions .mtr-btn--primary,
.mtr-header-actions .mtr-btn--primary:link,
.mtr-header-actions .mtr-btn--primary:visited,
.mtr-hero__content .mtr-btn--primary,
.mtr-hero__content .mtr-btn--primary:link,
.mtr-hero__content .mtr-btn--primary:visited {
	background: var(--mtr-red) !important;
	border-color: var(--mtr-red) !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	opacity: 1 !important;
	visibility: visible !important;
	text-decoration: none !important;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mtr-header-actions .mtr-btn--primary:hover,
.mtr-header-actions .mtr-btn--primary:focus-visible,
.mtr-hero__content .mtr-btn--primary:hover,
.mtr-hero__content .mtr-btn--primary:focus-visible {
	background: var(--mtr-graphite) !important;
	border-color: var(--mtr-red) !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	box-shadow: 0 9px 24px rgba(215, 25, 32, 0.35);
	transform: translateY(-2px);
}

.mtr-header-actions .mtr-btn--primary:active,
.mtr-hero__content .mtr-btn--primary:active {
	background: #0f6d3f !important;
	border-color: #0f6d3f !important;
}
