/*
Theme Name: Main Street Plumbing
Theme URI: https://mainstreetplumbingri.com/
Author: Main Street Plumbing LLC
Description: A page-first black, white, charcoal, and green plumbing and heating theme for Main Street Plumbing LLC in Pawtucket, Rhode Island.
Version: 4.3.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: main-street-plumbing
*/

:root {
	--msp-forest: #090b0a;
	--msp-teal: #147a48;
	--msp-cream: #f2f3f2;
	--msp-warm-white: #ffffff;
	--msp-brass: #31c875;
	--msp-ink: #191c1a;
	--msp-sage: #e1e5e2;
	--msp-muted: #5f6662;
	--msp-border: rgba(9, 11, 10, 0.14);
	--msp-shadow: 0 18px 50px rgba(9, 11, 10, 0.14);
	--msp-radius: 18px;
	--msp-button-radius: 10px;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--msp-warm-white);
	color: var(--msp-ink);
	font-family: "DM Sans", "Avenir Next", Avenir, "Segoe UI", sans-serif;
	font-size: 18px;
	line-height: 1.65;
}

* {
	box-sizing: border-box;
}

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

a {
	color: inherit;
}

.msp-page {
	overflow: hidden;
}

.msp-wrap {
	margin: 0 auto;
	max-width: 1240px;
	padding-inline: 32px;
}

.msp-topbar {
	background: var(--msp-brass);
	color: var(--msp-forest);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.msp-topbar .msp-wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 42px;
}

.msp-topbar a {
	color: var(--msp-forest);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.msp-header {
	background: rgba(9, 11, 10, 0.96);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 12px 32px rgba(9, 11, 10, 0.13);
	position: sticky;
	top: 0;
	z-index: 10;
}

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

.msp-header-inner {
	align-items: center;
	display: grid;
	gap: 30px;
	grid-template-columns: auto 1fr auto;
	min-height: 108px;
}

.msp-brand {
	align-items: center;
	display: flex;
	gap: 14px;
	text-decoration: none;
}

.msp-brand img {
	border-radius: 50%;
	height: 74px;
	width: 74px;
}

.msp-brand-copy strong,
.msp-brand-copy span {
	display: block;
}

.msp-brand-copy strong {
	color: var(--msp-warm-white);
	font-size: 20px;
	letter-spacing: 0.02em;
	line-height: 1.1;
}

.msp-brand-copy span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin-top: 6px;
	text-transform: uppercase;
}

.msp-nav {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.msp-nav ul {
	align-items: center;
	display: flex;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.msp-nav a {
	color: var(--msp-warm-white);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.msp-nav a:hover,
.msp-nav a:focus-visible {
	color: var(--msp-brass);
	text-decoration: underline;
	text-decoration-color: var(--msp-brass);
	text-decoration-thickness: 2px;
	text-underline-offset: 8px;
}

.msp-mobile-menu {
	display: none;
	position: relative;
}

.msp-mobile-menu summary {
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 8px;
	color: var(--msp-warm-white);
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	list-style: none;
	padding: 10px 14px;
}

.msp-mobile-menu summary::-webkit-details-marker {
	display: none;
}

.msp-mobile-menu nav {
	background: var(--msp-forest);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	box-shadow: var(--msp-shadow);
	display: grid;
	min-width: 220px;
	padding: 12px;
	position: absolute;
	right: 0;
	top: calc(100% + 12px);
}

.msp-mobile-menu nav a {
	color: var(--msp-warm-white);
	font-size: 15px;
	font-weight: 700;
	padding: 10px;
	text-decoration: none;
}

.msp-mobile-menu nav a:hover,
.msp-mobile-menu nav a:focus-visible {
	background: rgba(49, 200, 117, 0.13);
	border-radius: 7px;
	color: var(--msp-brass);
}

.msp-btn {
	align-items: center;
	border: 2px solid var(--msp-forest);
	border-radius: var(--msp-button-radius);
	display: inline-flex;
	font-size: 16px;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	min-height: 56px;
	padding: 13px 24px;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.msp-btn:hover,
.msp-btn:focus-visible {
	transform: translateY(-2px);
}

.msp-btn-primary {
	background: var(--msp-brass);
	border-color: var(--msp-brass);
	color: var(--msp-forest);
}

.msp-btn-primary:hover,
.msp-btn-primary:focus-visible {
	background: #58dc92;
	border-color: #58dc92;
	color: var(--msp-forest);
}

.msp-btn-light {
	background: var(--msp-warm-white);
	color: var(--msp-forest);
}

.msp-hero {
	background: var(--msp-cream);
	position: relative;
}

.msp-hero::before {
	background-image: radial-gradient(rgba(49, 200, 117, 0.16) 0.8px, transparent 0.8px);
	background-size: 12px 12px;
	content: "";
	inset: 0;
	opacity: 0.5;
	pointer-events: none;
	position: absolute;
}

.msp-hero-grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	min-height: 660px;
	position: relative;
}

.msp-hero-copy {
	align-self: center;
	max-width: 610px;
	padding: 72px 52px 76px 0;
}

.msp-eyebrow {
	align-items: center;
	color: var(--msp-teal);
	display: flex;
	font-size: 14px;
	font-weight: 800;
	gap: 12px;
	letter-spacing: 0.14em;
	margin: 0 0 22px;
	text-transform: uppercase;
}

.msp-eyebrow::before {
	background: var(--msp-brass);
	content: "";
	height: 2px;
	width: 34px;
}

.msp-hero h1,
.msp-section-title {
	font-family: "Arial Rounded MT Bold", "Avenir Next", Avenir, sans-serif;
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.msp-hero h1 {
	font-size: clamp(48px, 5.2vw, 76px);
	margin: 0 0 25px;
}

.msp-hero-copy > p:not(.msp-eyebrow) {
	color: #3f514c;
	font-size: 20px;
	margin: 0;
	max-width: 560px;
}

.msp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 30px;
}

.msp-phone-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	margin-top: 32px;
}

.msp-phone-row a {
	color: var(--msp-forest);
	font-size: clamp(25px, 3vw, 36px);
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.msp-phone-row span {
	border-left: 1px solid var(--msp-border);
	color: var(--msp-muted);
	font-size: 14px;
	padding-left: 24px;
}

.msp-hero-photo {
	margin-right: calc((100vw - min(100vw, 1240px)) / -2);
	min-height: 660px;
	position: relative;
}

.msp-hero-photo img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.msp-hero-photo::after {
	background: linear-gradient(90deg, rgba(23, 63, 53, 0.12), transparent 35%);
	content: "";
	inset: 0;
	position: absolute;
}

.msp-photo-note {
	background: var(--msp-warm-white);
	border-left: 5px solid var(--msp-brass);
	border-radius: 14px;
	bottom: 34px;
	box-shadow: var(--msp-shadow);
	left: 32px;
	max-width: 320px;
	padding: 20px 24px;
	position: absolute;
	z-index: 2;
}

.msp-photo-note strong,
.msp-photo-note span {
	display: block;
}

.msp-photo-note strong {
	font-size: 17px;
}

.msp-photo-note span {
	color: var(--msp-muted);
	font-size: 14px;
	margin-top: 3px;
}

.msp-trustbar {
	background: var(--msp-sage);
	border-bottom: 1px solid var(--msp-border);
	border-top: 1px solid var(--msp-border);
}

.msp-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.msp-trust-item {
	border-right: 1px solid rgba(23, 63, 53, 0.13);
	padding: 24px 25px;
}

.msp-trust-item:last-child {
	border-right: 0;
}

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

.msp-trust-item strong {
	font-size: 16px;
}

.msp-trust-item span {
	color: var(--msp-muted);
	font-size: 13px;
	margin-top: 2px;
}

.msp-section {
	padding: 96px 0;
}

.msp-section-soft {
	background: #ecefed;
}

.msp-section-dark {
	background: #151817;
	color: var(--msp-warm-white);
}

.msp-section-heading {
	margin-bottom: 44px;
	max-width: 780px;
}

.msp-section-heading p {
	color: var(--msp-muted);
	font-size: 19px;
	margin: 18px 0 0;
}

.msp-section-dark .msp-section-heading p {
	color: rgba(255, 252, 246, 0.76);
}

.msp-section-title {
	font-size: clamp(38px, 4vw, 56px);
	margin: 0;
}

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

.msp-service-card {
	background: var(--msp-warm-white);
	border: 1px solid var(--msp-border);
	border-radius: var(--msp-radius);
	padding: 32px;
}

.msp-service-number {
	color: var(--msp-brass);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.msp-service-card h3 {
	font-size: 24px;
	line-height: 1.2;
	margin: 15px 0 12px;
}

.msp-service-card p {
	color: var(--msp-muted);
	font-size: 16px;
	margin: 0;
}

.msp-about-grid {
	align-items: center;
	display: grid;
	gap: 70px;
	grid-template-columns: 1fr 1fr;
}

.msp-about-image {
	border-radius: var(--msp-radius);
	box-shadow: var(--msp-shadow);
	overflow: hidden;
	position: relative;
}

.msp-about-image img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

.msp-about-copy h2 {
	margin-bottom: 24px;
}

.msp-about-copy p {
	color: #444a47;
}

.msp-checks {
	display: grid;
	gap: 13px;
	list-style: none;
	margin: 27px 0 0;
	padding: 0;
}

.msp-checks li {
	align-items: flex-start;
	display: flex;
	font-weight: 700;
	gap: 12px;
}

.msp-checks li::before {
	color: var(--msp-brass);
	content: "✓";
	font-size: 20px;
	font-weight: 900;
}

.msp-gallery {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(12, 1fr);
}

.msp-gallery figure {
	border-radius: 14px;
	grid-column: span 4;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.msp-gallery figure:first-child,
.msp-gallery figure:nth-child(5) {
	grid-column: span 8;
}

.msp-gallery img {
	aspect-ratio: 4 / 3;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
	width: 100%;
}

.msp-gallery figure:hover img {
	transform: scale(1.02);
}

.msp-gallery figcaption {
	background: linear-gradient(transparent, rgba(14, 39, 32, 0.86));
	bottom: 0;
	color: var(--msp-warm-white);
	font-size: 14px;
	font-weight: 700;
	left: 0;
	padding: 40px 18px 15px;
	position: absolute;
	right: 0;
}

.msp-contact-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: 1.15fr 0.85fr;
}

.msp-contact-main,
.msp-contact-card {
	border-radius: var(--msp-radius);
	padding: 42px;
}

.msp-contact-main {
	background: var(--msp-cream);
	color: var(--msp-ink);
}

.msp-contact-main h2 {
	margin-bottom: 18px;
}

.msp-contact-main p {
	color: var(--msp-muted);
}

.msp-contact-card {
	background: rgba(255, 252, 246, 0.08);
	border: 1px solid rgba(255, 252, 246, 0.18);
}

.msp-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.msp-contact-list li {
	border-bottom: 1px solid rgba(255, 252, 246, 0.16);
	padding: 15px 0;
}

.msp-contact-list li:last-child {
	border-bottom: 0;
}

.msp-contact-list strong,
.msp-contact-list span,
.msp-contact-list a {
	display: block;
}

.msp-contact-list strong {
	color: var(--msp-brass);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.msp-contact-list a,
.msp-contact-list span {
	color: var(--msp-warm-white);
	font-size: 17px;
	margin-top: 4px;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.msp-footer {
	background: #090b0a;
	color: rgba(255, 252, 246, 0.78);
	font-size: 14px;
	padding: 28px 0;
}

.msp-footer .msp-wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.msp-mobile-call {
	display: none;
}

.msp-page-hero {
	background: var(--msp-cream);
	border-bottom: 1px solid var(--msp-border);
	padding: 72px 0 58px;
}

.msp-page-hero h1 {
	font-size: clamp(42px, 5vw, 68px);
	letter-spacing: -0.045em;
	line-height: 1.06;
	margin: 0;
}

.msp-page-content {
	margin: 0 auto;
	max-width: 960px;
	padding: 76px 32px 100px;
}

.msp-page-content > * + * {
	margin-top: 24px;
}

.msp-integration {
	background: var(--msp-warm-white);
	border: 1px solid var(--msp-border);
	border-radius: var(--msp-radius);
	box-shadow: var(--msp-shadow);
	overflow: hidden;
	padding: 30px;
}

.msp-integration iframe {
	border: 0;
	max-width: 100%;
}

.msp-contact-panel {
	background: var(--msp-cream);
	border-left: 6px solid var(--msp-brass);
	border-radius: var(--msp-radius);
	margin-top: 30px;
	padding: 28px;
}

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

.msp-social-grid > div {
	min-width: 0;
}

.msp-social-grid h3 {
	font-size: 22px;
	margin: 0 0 18px;
}

/* Professional multi-section homepage */
.msp-floating-shell {
	position: sticky;
	top: 0;
	z-index: 80;
}

.admin-bar .msp-floating-shell {
	top: 32px;
}

.msp-pro-topbar .msp-wrap {
	gap: 28px;
}

.msp-pro-topbar {
	background: var(--msp-warm-white);
	border-bottom: 1px solid #dfe2e0;
	border-top: 2px solid var(--msp-forest);
	color: #747a77;
}

.msp-pro-topbar .msp-wrap {
	min-height: 40px;
}

.msp-top-address {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.msp-top-address::first-letter {
	color: var(--msp-brass);
}

.msp-top-social {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-left: auto;
}

.msp-top-social a {
	align-items: center;
	background: #f2f4f2;
	border: 1px solid #d6dbd7;
	border-radius: 50%;
	color: var(--msp-teal);
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	height: 30px;
	justify-content: center;
	text-decoration: none;
	width: 30px;
}

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

.msp-social-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.msp-social-links--compact {
	margin-left: auto;
}

.msp-social-links--compact .msp-social-link {
	align-items: center;
	background: #f2f4f2;
	border: 1px solid #d6dbd7;
	border-radius: 50%;
	color: var(--msp-teal);
	display: inline-flex;
	font-size: 10px;
	font-weight: 900;
	height: 30px;
	justify-content: center;
	letter-spacing: -0.03em;
	text-decoration: none;
	width: 30px;
}

.msp-social-links--compact .msp-social-link:hover,
.msp-social-links--compact .msp-social-link:focus-visible {
	background: var(--msp-brass);
	border-color: var(--msp-brass);
	color: var(--msp-forest);
}

.msp-social-links--full {
	justify-content: center;
	margin-top: 24px;
}

.msp-social-links--full .msp-social-link {
	background: var(--msp-forest);
	border: 1px solid var(--msp-forest);
	border-radius: 999px;
	color: var(--msp-warm-white);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	padding: 9px 16px;
	text-decoration: none;
}

.msp-social-links--full .msp-social-link:hover,
.msp-social-links--full .msp-social-link:focus-visible {
	background: var(--msp-brass);
	border-color: var(--msp-brass);
	color: var(--msp-forest);
}

.msp-pro-footer .msp-social-links--full {
	justify-content: flex-start;
	margin-top: 20px;
}

.msp-pro-footer .msp-social-links--full .msp-social-link {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.25);
	color: var(--msp-warm-white);
	margin: 0;
}

.msp-pro-footer .msp-social-links--full .msp-social-link:hover,
.msp-pro-footer .msp-social-links--full .msp-social-link:focus-visible {
	background: var(--msp-brass);
	border-color: var(--msp-brass);
	color: var(--msp-forest);
}

.msp-follow-strip {
	background: #eef2ef;
	border-bottom: 1px solid var(--msp-border);
	border-top: 1px solid var(--msp-border);
	padding: 38px 0;
}

.msp-follow-strip .msp-wrap {
	align-items: center;
	display: flex;
	gap: 40px;
	justify-content: space-between;
}

.msp-follow-strip span,
.msp-follow-strip strong {
	display: block;
}

.msp-follow-strip span {
	color: var(--msp-teal);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.msp-follow-strip strong {
	font-size: 20px;
	margin-top: 3px;
}

.msp-follow-strip .msp-social-links--full {
	flex-shrink: 0;
	margin-top: 0;
}

.msp-pro-header {
	backdrop-filter: blur(14px);
}

.msp-pro-header .msp-header-inner {
	min-height: 92px;
}

.msp-white-header {
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 4px solid var(--msp-brass);
	border-top: 0;
	box-shadow: 0 8px 28px rgba(9, 11, 10, 0.1);
	position: static;
}

.msp-white-header .msp-header-inner {
	grid-template-columns: minmax(360px, 1fr) auto auto;
	min-height: 100px;
}

.msp-white-header .msp-brand-copy strong {
	color: #22a941;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 500;
	letter-spacing: -0.025em;
	white-space: nowrap;
}

.msp-white-header .msp-brand-copy span {
	color: #7e8481;
	font-size: 12px;
	letter-spacing: 0.04em;
	margin-top: 7px;
	max-width: 390px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.msp-white-header .msp-brand img {
	height: 68px;
	width: 68px;
}

.msp-white-nav {
	align-items: center;
	gap: 6px;
}

.msp-white-nav ul {
	gap: 6px;
}

.msp-white-nav a {
	border-radius: 12px;
	color: #383d3a;
	font-size: 14px;
	letter-spacing: 0.04em;
	padding: 11px 14px;
	text-transform: uppercase;
}

.msp-white-nav a:hover,
.msp-white-nav a:focus-visible,
.msp-white-nav .current-menu-item > a,
.msp-white-nav a.is-current {
	background: rgba(49, 200, 117, 0.15);
	color: #159c37;
	text-decoration: none;
}

.msp-white-header .msp-mobile-menu summary {
	border-color: rgba(20, 122, 72, 0.4);
	color: var(--msp-teal);
}

.msp-white-header .msp-mobile-menu nav {
	background: var(--msp-warm-white);
	border-color: var(--msp-border);
}

.msp-white-header .msp-mobile-menu nav a {
	color: var(--msp-ink);
}

.msp-white-header .msp-mobile-menu nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.msp-header-cta {
	white-space: nowrap;
}

/* Finished interior business pages */
.msp-business-hero {
	background-color: #151817;
	background-position: center;
	background-size: cover;
	color: var(--msp-warm-white);
	padding: 104px 0 112px;
}

.msp-business-hero .msp-wrap {
	max-width: 1240px;
}

.msp-business-hero h1 {
	font-size: clamp(48px, 6vw, 76px);
	letter-spacing: -0.055em;
	line-height: 1.02;
	margin: 0;
	max-width: 850px;
}

.msp-business-hero > .msp-wrap > p:not(.msp-eyebrow) {
	color: rgba(255, 255, 255, 0.8);
	font-size: 20px;
	margin: 24px 0 0;
	max-width: 700px;
}

.msp-value-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 42px;
}

.msp-value-grid article,
.msp-feed-ready {
	background: var(--msp-warm-white);
	border: 1px solid var(--msp-border);
	border-radius: var(--msp-radius);
	box-shadow: 0 14px 36px rgba(9, 11, 10, 0.08);
	padding: 34px;
}

.msp-value-grid article > span {
	color: var(--msp-brass);
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.msp-value-grid h3 {
	font-size: 24px;
	margin: 12px 0 8px;
}

.msp-value-grid p,
.msp-feed-ready p {
	color: var(--msp-muted);
	margin: 0;
}

.msp-feed-ready {
	border-left: 6px solid var(--msp-brass);
	margin-top: 35px;
}

.msp-feed-ready strong {
	display: block;
	font-size: 22px;
	margin-bottom: 8px;
}

.msp-project-page-grid {
	margin-top: 44px;
}

.msp-contact-map {
	border-radius: 0;
	margin: 0;
}

.msp-contact-map iframe {
	display: block;
	height: 460px;
	width: 100%;
}

.msp-page-cta {
	background: #111412;
	color: var(--msp-warm-white);
	padding: 64px 0;
}

.msp-page-cta .msp-wrap {
	align-items: center;
	display: flex;
	gap: 50px;
	justify-content: space-between;
}

.msp-page-cta h2 {
	font-size: clamp(30px, 4vw, 48px);
	letter-spacing: -0.04em;
	line-height: 1.08;
	margin: 0;
	max-width: 750px;
}

.msp-page-cta .msp-actions {
	flex-shrink: 0;
	margin-top: 0;
}

@media (max-width: 900px) {
	.msp-value-grid {
		grid-template-columns: 1fr;
	}

	.msp-page-cta .msp-wrap {
		align-items: flex-start;
		flex-direction: column;
	}

	.msp-follow-strip .msp-wrap {
		align-items: flex-start;
		flex-direction: column;
	}

	.msp-follow-strip .msp-social-links--full {
		justify-content: flex-start;
	}
}

.msp-header-call {
	margin-left: auto;
	text-align: right;
}

.msp-header-call span,
.msp-header-call a {
	display: block;
}

.msp-header-call span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.msp-header-call a {
	color: var(--msp-warm-white);
	font-size: 21px;
	font-weight: 900;
	text-decoration: none;
}

.msp-nav-row {
	background: #151817;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.msp-nav-row > .msp-wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 52px;
}

.msp-nav-status {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 700;
}

.msp-nav-status::first-letter {
	color: var(--msp-brass);
}

.msp-pro-hero {
	background-color: #151817;
	background-position: center;
	background-size: cover;
	color: var(--msp-warm-white);
	min-height: 630px;
}

.msp-pro-hero-grid {
	align-items: center;
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(0, 1fr) 430px;
	min-height: 630px;
	padding-block: 74px 112px;
}

.msp-pro-hero-copy {
	max-width: 700px;
}

.msp-pro-hero .msp-eyebrow {
	color: var(--msp-brass);
}

.msp-pro-hero h1 {
	font-size: clamp(50px, 5.8vw, 78px);
	letter-spacing: -0.055em;
	line-height: 1.02;
	margin: 0 0 25px;
	max-width: 760px;
}

.msp-pro-hero-copy > p:not(.msp-eyebrow) {
	color: rgba(255, 255, 255, 0.78);
	font-size: 19px;
	line-height: 1.7;
	margin: 0;
	max-width: 650px;
}

.msp-btn-outline {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.75);
	color: var(--msp-warm-white);
}

.msp-btn-outline:hover,
.msp-btn-outline:focus-visible {
	background: var(--msp-warm-white);
	color: var(--msp-forest);
}

.msp-hero-proof {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin-top: 28px;
}

.msp-hero-proof strong {
	color: var(--msp-brass);
}

.msp-hero-proof span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
}

.msp-hero-contact-card {
	background: var(--msp-warm-white);
	border-radius: 16px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.33);
	color: var(--msp-ink);
	padding: 38px;
}

.msp-contact-kicker {
	color: var(--msp-teal);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.msp-hero-contact-card h2 {
	font-size: 31px;
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin: 10px 0 13px;
}

.msp-hero-contact-card > p {
	color: var(--msp-muted);
	font-size: 15px;
	margin: 0 0 24px;
}

.msp-shortcode-output {
	border-top: 1px solid var(--msp-border);
	padding-top: 22px;
}

.msp-shortcode-output a,
.msp-shortcode-output button,
.msp-shortcode-output input[type="button"],
.msp-shortcode-output input[type="submit"] {
	background: var(--msp-brass) !important;
	border: 0 !important;
	border-radius: 8px !important;
	color: var(--msp-forest) !important;
	cursor: pointer;
	display: block;
	font: inherit;
	font-weight: 900 !important;
	min-height: 52px;
	padding: 13px 20px !important;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.msp-contact-phone {
	color: var(--msp-teal);
	display: block;
	font-size: 14px;
	font-weight: 800;
	margin-top: 19px;
	text-align: center;
	text-underline-offset: 4px;
}

.msp-pro-trust {
	background: var(--msp-cream);
	padding-bottom: 40px;
}

.msp-trust-card {
	background: var(--msp-warm-white);
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(9, 11, 10, 0.11);
	margin-top: -64px;
	padding: 30px 36px;
	position: relative;
	z-index: 3;
}

.msp-trust-card h2 {
	font-size: clamp(27px, 3vw, 38px);
	letter-spacing: -0.04em;
	margin: 0 0 26px;
	text-align: center;
}

.msp-trust-card h2 span {
	color: var(--msp-teal);
}

.msp-trust-card-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

.msp-trust-card-grid > div {
	align-items: center;
	border-right: 1px solid var(--msp-border);
	display: flex;
	flex-direction: column;
	padding: 0 14px;
	text-align: center;
}

.msp-trust-card-grid > div:last-child {
	border-right: 0;
}

.msp-trust-icon {
	align-items: center;
	background: rgba(49, 200, 117, 0.14);
	border-radius: 50%;
	color: var(--msp-teal);
	display: inline-flex;
	font-size: 18px;
	font-weight: 900;
	height: 46px;
	justify-content: center;
	margin-bottom: 12px;
	width: 46px;
}

.msp-trust-card-grid strong,
.msp-trust-card-grid small {
	display: block;
}

.msp-trust-card-grid strong {
	font-size: 14px;
}

.msp-trust-card-grid small {
	color: var(--msp-muted);
	font-size: 12px;
	margin-top: 3px;
}

.msp-proof-strip {
	background: var(--msp-forest);
	color: var(--msp-warm-white);
}

.msp-proof-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.msp-proof-grid > div {
	border-right: 1px solid rgba(255, 255, 255, 0.11);
	padding: 34px 26px;
	text-align: center;
}

.msp-proof-grid > div:last-child {
	border-right: 0;
}

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

.msp-proof-grid strong {
	color: var(--msp-brass);
	font-size: 36px;
	line-height: 1;
}

.msp-proof-grid span {
	color: rgba(255, 255, 255, 0.64);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-top: 9px;
	text-transform: uppercase;
}

.msp-pro-about {
	background: var(--msp-warm-white);
}

.msp-layered-image {
	overflow: visible;
}

.msp-layered-image::before {
	background: var(--msp-brass);
	border-radius: var(--msp-radius);
	content: "";
	inset: 26px -18px -18px 26px;
	position: absolute;
	z-index: -1;
}

.msp-image-badge {
	background: var(--msp-forest);
	border: 5px solid var(--msp-warm-white);
	border-radius: 14px;
	bottom: -24px;
	color: var(--msp-warm-white);
	padding: 20px 24px;
	position: absolute;
	right: -24px;
}

.msp-image-badge strong,
.msp-image-badge span {
	display: block;
}

.msp-image-badge strong {
	color: var(--msp-brass);
	font-size: 22px;
}

.msp-image-badge span {
	font-size: 12px;
}

.msp-checks-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 30px;
}

.msp-centered-heading {
	margin: 0 auto 48px;
	max-width: 820px;
	text-align: center;
}

.msp-centered-heading .msp-eyebrow {
	justify-content: center;
}

.msp-centered-heading p:not(.msp-eyebrow) {
	color: var(--msp-muted);
	margin: 18px auto 0;
	max-width: 720px;
}

.msp-pro-services .msp-service-card {
	box-shadow: 0 12px 30px rgba(9, 11, 10, 0.06);
	min-height: 285px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.msp-pro-services .msp-service-card:hover {
	border-color: rgba(49, 200, 117, 0.75);
	box-shadow: 0 18px 42px rgba(9, 11, 10, 0.1);
	transform: translateY(-4px);
}

.msp-service-icon {
	align-items: center;
	background: rgba(49, 200, 117, 0.13);
	border-radius: 10px;
	color: var(--msp-teal);
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.msp-service-card a {
	color: var(--msp-teal);
	display: inline-block;
	font-size: 14px;
	font-weight: 900;
	margin-top: 22px;
	text-decoration: none;
}

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

.msp-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
}

.msp-process-grid::before {
	background: var(--msp-border);
	content: "";
	height: 1px;
	left: 12.5%;
	position: absolute;
	right: 12.5%;
	top: 35px;
}

.msp-process-grid > div {
	padding: 0 24px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.msp-process-grid span {
	align-items: center;
	background: var(--msp-warm-white);
	border: 2px solid var(--msp-brass);
	border-radius: 50%;
	color: var(--msp-teal);
	display: inline-flex;
	font-size: 17px;
	font-weight: 900;
	height: 70px;
	justify-content: center;
	width: 70px;
}

.msp-process-grid h3 {
	font-size: 19px;
	margin: 18px 0 9px;
}

.msp-process-grid p {
	color: var(--msp-muted);
	font-size: 14px;
	margin: 0;
}

.msp-pro-projects {
	background: var(--msp-cream);
}

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

.msp-reviews-output {
	border-top: 5px solid var(--msp-brass);
	padding: 38px;
}

.msp-project-grid {
	display: grid;
	gap: 18px;
	grid-auto-rows: 245px;
	grid-template-columns: repeat(3, 1fr);
}

.msp-project-grid figure {
	border-radius: 13px;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.msp-project-grid .msp-project-large {
	grid-row: span 2;
}

.msp-project-grid img {
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
	width: 100%;
}

.msp-project-grid figure:hover img {
	transform: scale(1.035);
}

.msp-project-grid figcaption {
	background: linear-gradient(transparent, rgba(5, 7, 6, 0.93));
	bottom: 0;
	color: var(--msp-warm-white);
	left: 0;
	padding: 54px 20px 18px;
	position: absolute;
	right: 0;
}

.msp-project-grid figcaption span,
.msp-project-grid figcaption strong {
	display: block;
}

.msp-project-grid figcaption span {
	color: var(--msp-brass);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.msp-project-grid figcaption strong {
	font-size: 17px;
	margin-top: 4px;
}

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

.msp-faq-grid {
	align-items: start;
	display: grid;
	gap: 70px;
	grid-template-columns: 0.72fr 1.28fr;
}

.msp-faq-grid > div:first-child > p:not(.msp-eyebrow) {
	color: var(--msp-muted);
	margin: 22px 0 28px;
}

.msp-faq-list {
	display: grid;
	gap: 12px;
}

.msp-faq-list details {
	background: var(--msp-warm-white);
	border: 1px solid rgba(20, 122, 72, 0.4);
	border-radius: 10px;
	padding: 0 20px;
}

.msp-faq-list summary {
	cursor: pointer;
	font-size: 16px;
	font-weight: 800;
	list-style: none;
	padding: 18px 36px 18px 0;
	position: relative;
}

.msp-faq-list summary::after {
	align-items: center;
	background: rgba(49, 200, 117, 0.15);
	border-radius: 50%;
	color: var(--msp-teal);
	content: "+";
	display: flex;
	height: 25px;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 16px;
	width: 25px;
}

.msp-faq-list details[open] summary::after {
	content: "−";
}

.msp-faq-list p {
	color: var(--msp-muted);
	font-size: 14px;
	margin: 0;
	padding: 0 34px 18px 0;
}

.msp-pro-contact .msp-contact-main {
	border-top: 6px solid var(--msp-brass);
}

.msp-contact-form {
	box-shadow: none;
	margin-top: 28px;
}

.msp-contact-form input,
.msp-contact-form textarea,
.msp-contact-form select {
	background: var(--msp-warm-white);
	border: 1px solid #cfd5d1;
	border-radius: 7px;
	font: inherit;
	max-width: 100%;
	padding: 12px;
	width: 100%;
}

.msp-contact-form input[type="submit"] {
	background: var(--msp-brass);
	border: 0;
	border-radius: var(--msp-button-radius);
	color: var(--msp-forest);
	cursor: pointer;
	font-weight: 900;
	min-height: 50px;
	padding: 13px 22px;
	width: auto;
}

.msp-emergency-cta {
	background: var(--msp-forest);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--msp-warm-white);
}

.msp-emergency-cta .msp-wrap {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr auto auto;
	min-height: 138px;
}

.msp-emergency-cta h2 {
	font-size: clamp(28px, 3vw, 42px);
	letter-spacing: -0.04em;
	margin: 0;
}

.msp-emergency-cta h2 span {
	color: var(--msp-brass);
}

.msp-emergency-cta > .msp-wrap > a:not(.msp-btn) {
	color: var(--msp-warm-white);
	font-size: 22px;
	font-weight: 900;
	text-decoration: none;
}

.msp-pro-footer {
	background: #090b0a;
	color: rgba(255, 255, 255, 0.66);
	padding: 72px 0 26px;
}

.msp-footer-grid {
	display: grid;
	gap: 44px;
	grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
}

.msp-footer-grid h3,
.msp-footer-grid h4 {
	color: var(--msp-warm-white);
	margin: 0 0 18px;
}

.msp-footer-grid h3 {
	font-size: 20px;
}

.msp-footer-grid h4 {
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.msp-footer-grid a,
.msp-footer-grid p {
	color: rgba(255, 255, 255, 0.65);
	display: block;
	font-size: 14px;
	margin: 0 0 9px;
	text-decoration: none;
}

.msp-footer-grid a:hover,
.msp-footer-grid a:focus-visible {
	color: var(--msp-brass);
}

.msp-footer-brand img {
	border-radius: 50%;
	height: 76px;
	margin-bottom: 18px;
	width: 76px;
}

.msp-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	margin-top: 48px;
	padding-top: 24px;
}

.msp-inner-hero {
	background:
		linear-gradient(90deg, rgba(5, 7, 6, 0.86), rgba(5, 7, 6, 0.56)),
		url("assets/images/heating-system.jpg") center 48% / cover;
	color: var(--msp-warm-white);
	padding: 82px 32px;
	text-align: center;
}

.msp-inner-hero h1 {
	font-size: clamp(44px, 5vw, 68px);
	letter-spacing: -0.05em;
	line-height: 1.04;
	margin: 8px auto 0;
	max-width: 1000px;
}

.msp-inner-kicker {
	color: var(--msp-brass);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
	margin: 0;
	text-transform: uppercase;
}

.msp-inner-section {
	padding: 88px 32px;
}

.msp-inner-contact-grid {
	align-items: start;
	display: grid;
	gap: 70px;
	grid-template-columns: 0.8fr 1.2fr;
}

.msp-inner-contact-copy > p:not(.msp-eyebrow) {
	color: var(--msp-muted);
	font-size: 18px;
}

.msp-inner-contact-actions {
	display: grid;
	gap: 24px;
}

.msp-inner-contact-actions .msp-hero-contact-card {
	box-shadow: var(--msp-shadow);
}

.msp-contact-list-light {
	margin-top: 28px;
}

.msp-contact-list-light li {
	border-bottom-color: var(--msp-border);
}

.msp-contact-list-light a,
.msp-contact-list-light span {
	color: var(--msp-ink);
}

.msp-map-card {
	border: 6px solid rgba(49, 200, 117, 0.24);
	border-radius: 15px;
	box-shadow: var(--msp-shadow);
	margin-top: 66px;
	overflow: hidden;
}

.msp-map-card iframe {
	border: 0;
	display: block;
	height: 400px;
	width: 100%;
}

.msp-service-layout {
	align-items: flex-start !important;
	gap: 64px !important;
}

.msp-service-featured-image {
	border-radius: 16px;
	box-shadow: var(--msp-shadow);
	overflow: hidden;
}

.msp-service-layout .wp-block-post-content {
	color: #424844;
	font-size: 18px;
}

.msp-service-layout .wp-block-post-content h2,
.msp-service-layout .wp-block-post-content h3 {
	color: var(--msp-ink);
	letter-spacing: -0.035em;
}

.msp-service-sidebar {
	background: var(--msp-forest);
	border-top: 6px solid var(--msp-brass);
	border-radius: 14px;
	box-shadow: var(--msp-shadow);
	color: var(--msp-warm-white);
	padding: 30px;
	position: sticky;
	top: 180px;
}

.msp-service-sidebar h3 {
	font-size: 27px;
	margin: 0 0 12px;
}

.msp-service-sidebar p,
.msp-service-sidebar span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
}

.msp-service-sidebar .msp-btn {
	margin: 12px 0 22px;
	width: 100%;
}

.msp-service-sidebar .msp-shortcode-output {
	border-top-color: rgba(255, 255, 255, 0.15);
}

.msp-service-sidebar hr {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin: 26px 0;
}

.msp-service-sidebar strong,
.msp-service-sidebar span {
	display: block;
}

@media (max-width: 980px) {
	.msp-nav {
		display: none;
	}

	.msp-mobile-menu {
		display: block;
	}

	.msp-header-inner {
		grid-template-columns: 1fr auto auto;
	}

	.msp-hero-grid,
	.msp-about-grid,
	.msp-contact-grid {
		grid-template-columns: 1fr;
	}

	.msp-hero-copy {
		max-width: 760px;
		padding-right: 0;
	}

	.msp-hero-photo {
		margin-right: 0;
		min-height: 500px;
	}

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

	.msp-gallery figure,
	.msp-gallery figure:first-child,
	.msp-gallery figure:nth-child(5) {
		grid-column: span 6;
	}

	.msp-pro-hero-grid {
		gap: 42px;
		grid-template-columns: 1fr;
		padding-block: 70px 112px;
	}

	.msp-hero-contact-card {
		max-width: 620px;
	}

	.msp-trust-card-grid {
		gap: 24px 0;
		grid-template-columns: repeat(3, 1fr);
	}

	.msp-trust-card-grid > div:nth-child(3) {
		border-right: 0;
	}

	.msp-process-grid {
		gap: 36px 0;
		grid-template-columns: repeat(2, 1fr);
	}

	.msp-process-grid::before {
		display: none;
	}

	.msp-faq-grid {
		gap: 45px;
		grid-template-columns: 1fr;
	}

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

	.msp-white-header .msp-header-inner {
		grid-template-columns: 1fr auto auto;
	}

	.msp-inner-contact-grid {
		gap: 42px;
		grid-template-columns: 1fr;
	}

	.msp-service-sidebar {
		position: static;
	}
}

@media (max-width: 640px) {
	.admin-bar .msp-header {
		top: 46px;
	}

	.admin-bar .msp-floating-shell {
		top: 46px;
	}

	body {
		font-size: 16px;
		padding-bottom: 70px;
	}

	.msp-wrap {
		padding-inline: 20px;
	}

	.msp-topbar .msp-wrap {
		justify-content: center;
		text-align: center;
	}

	.msp-topbar span:last-child {
		display: none;
	}

	.msp-header-inner {
		min-height: 88px;
	}

	.msp-brand img {
		height: 58px;
		width: 58px;
	}

	.msp-brand-copy strong {
		font-size: 17px;
	}

	.msp-brand-copy span {
		font-size: 10px;
	}

	.msp-header .msp-btn {
		display: none;
	}

	.msp-hero-copy {
		padding: 58px 0;
	}

	.msp-hero-copy > p:not(.msp-eyebrow) {
		font-size: 18px;
	}

	.msp-actions .msp-btn {
		width: 100%;
	}

	.msp-phone-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.msp-phone-row span {
		border-left: 0;
		padding-left: 0;
	}

	.msp-hero-photo {
		min-height: 410px;
	}

	.msp-photo-note {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.msp-trust-grid,
	.msp-services {
		grid-template-columns: 1fr;
	}

	.msp-trust-item {
		border-bottom: 1px solid rgba(23, 63, 53, 0.13);
		border-right: 0;
	}

	.msp-section {
		padding: 70px 0;
	}

	.msp-service-card,
	.msp-contact-main,
	.msp-contact-card {
		padding: 28px;
	}

	.msp-gallery figure,
	.msp-gallery figure:first-child,
	.msp-gallery figure:nth-child(5) {
		grid-column: span 12;
	}

	.msp-footer .msp-wrap {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.msp-mobile-call {
		align-items: center;
		background: var(--msp-brass);
		bottom: 0;
		color: var(--msp-forest);
		display: flex;
		font-size: 16px;
		font-weight: 900;
		height: 70px;
		justify-content: center;
		left: 0;
		position: fixed;
		right: 0;
		text-decoration: none;
		z-index: 100;
	}

	.msp-page-content {
		padding: 56px 20px 80px;
	}

	.msp-social-grid {
		grid-template-columns: 1fr;
	}

	.msp-pro-topbar .msp-wrap {
		display: flex;
		padding-block: 7px;
	}

	.msp-pro-topbar .msp-wrap span {
		display: flex;
	}

	.msp-top-address {
		font-size: 10px;
	}

	.msp-pro-header .msp-header-inner {
		grid-template-columns: 1fr auto;
	}

	.msp-white-header .msp-brand-copy strong {
		font-size: 19px;
	}

	.msp-white-header .msp-brand-copy span {
		display: none;
	}

	.msp-white-header .msp-brand img {
		height: 54px;
		width: 54px;
	}

	.msp-top-social {
		gap: 6px;
	}

	.msp-top-social a {
		height: 26px;
		width: 26px;
	}

	.msp-social-links--compact {
		gap: 5px;
	}

	.msp-social-links--compact .msp-social-link {
		height: 26px;
		width: 26px;
	}

	.msp-header-call {
		display: none;
	}

	.msp-nav-row > .msp-wrap {
		justify-content: flex-end;
		min-height: 48px;
	}

	.msp-nav-status {
		display: none;
	}

	.msp-pro-hero {
		background-position: 58% center;
	}

	.msp-pro-hero-grid {
		padding-block: 58px 100px;
	}

	.msp-pro-hero h1 {
		font-size: 46px;
	}

	.msp-hero-contact-card {
		padding: 28px 22px;
	}

	.msp-trust-card {
		padding: 26px 20px;
	}

	.msp-trust-card-grid {
		grid-template-columns: 1fr;
	}

	.msp-trust-card-grid > div,
	.msp-trust-card-grid > div:nth-child(3) {
		border-bottom: 1px solid var(--msp-border);
		border-right: 0;
		padding: 16px 0;
	}

	.msp-trust-card-grid > div:last-child {
		border-bottom: 0;
	}

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

	.msp-proof-grid > div:nth-child(2) {
		border-right: 0;
	}

	.msp-proof-grid > div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.11);
	}

	.msp-image-badge {
		bottom: -18px;
		right: 12px;
	}

	.msp-checks-grid,
	.msp-process-grid {
		grid-template-columns: 1fr;
	}

	.msp-process-grid > div {
		padding: 0 8px;
	}

	.msp-project-grid {
		grid-auto-rows: 250px;
		grid-template-columns: 1fr;
	}

	.msp-project-grid .msp-project-large {
		grid-row: auto;
	}

	.msp-emergency-cta .msp-wrap {
		align-items: flex-start;
		grid-template-columns: 1fr;
		padding-block: 38px;
	}

	.msp-footer-grid {
		grid-template-columns: 1fr;
	}

	.msp-footer-bottom {
		flex-direction: column;
		gap: 8px;
	}

	.msp-inner-hero {
		padding: 62px 20px;
	}

	.msp-inner-section {
		padding: 66px 20px;
	}

	.msp-service-layout {
		gap: 38px !important;
	}
}

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

	* {
		transition: none !important;
	}
}

/* Version 3 native Gutenberg layouts. */
.msp-native-header-shell {
	position: sticky !important;
	top: 0;
	z-index: 1000;
}

.admin-bar .msp-native-header-shell {
	top: 32px;
}

.msp-native-topbar-inner {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	margin-inline: auto !important;
	max-width: 1180px !important;
	min-height: 38px;
	padding-inline: 20px;
	width: 100%;
}

.msp-native-topbar-inner p {
	margin: 0;
}

.msp-native-topbar-inner .msp-top-hours {
	justify-self: center;
	text-align: center;
}

.msp-native-topbar-inner .msp-native-social-links {
	justify-self: end;
	margin: 0;
}

.msp-native-header-inner {
	margin-inline: auto !important;
	max-width: 1180px !important;
	gap: 28px;
	min-height: 104px;
	padding: 12px 20px;
	width: 100%;
}

.msp-native-brand {
	flex: 0 1 430px;
	gap: 16px;
}

.msp-native-logo,
.msp-native-logo img {
	border-radius: 50%;
	margin: 0;
}

.msp-native-site-name {
	color: var(--msp-teal);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 2.4vw, 35px);
	font-weight: 400;
	line-height: 1.05;
	margin: 0;
	white-space: nowrap;
}

.msp-native-site-name a {
	text-decoration: none;
}

.msp-native-tagline {
	color: #777e7a;
	font-size: 12px;
	letter-spacing: 0.055em;
	margin: 7px 0 0;
	text-transform: uppercase;
}

.msp-native-navigation {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.msp-native-navigation .wp-block-navigation-item__content {
	border-radius: 9px;
	padding: 9px 8px;
	text-decoration: none;
}

.msp-native-navigation .wp-block-navigation-item__content:hover,
.msp-native-navigation .wp-block-navigation-item__content:focus-visible {
	background: #e2f4e5;
	color: var(--msp-teal);
}

.msp-native-header-cta {
	flex: 0 0 auto;
}

.msp-native-header-cta .wp-block-button__link,
.msp-btn-primary .wp-block-button__link {
	background: var(--msp-brass);
	border: 0;
	border-radius: var(--msp-button-radius);
	color: #07100b;
	font-weight: 800;
	padding: 14px 21px;
}

.msp-native-hero .wp-block-cover__inner-container,
.msp-native-page-hero .wp-block-cover__inner-container {
	margin-inline: auto;
	max-width: 1180px;
	padding: 70px 24px;
	width: 100%;
}

.msp-native-hero-grid {
	gap: 70px;
	margin: 0;
}

.msp-native-hero-title {
	font-size: clamp(44px, 5.5vw, 76px);
	letter-spacing: -0.055em;
	line-height: 0.98;
	margin-block: 16px 22px;
	max-width: 760px;
}

.msp-native-hero .msp-eyebrow,
.msp-native-page-hero .msp-eyebrow {
	color: var(--msp-brass);
}

.msp-native-hero .is-style-outline .wp-block-button__link,
.msp-section-dark .is-style-outline .wp-block-button__link {
	border-color: #fff;
	color: #fff;
}

.msp-native-contact-card,
.msp-native-form-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
	color: var(--msp-ink);
	padding: 34px !important;
}

.msp-native-contact-card h2 {
	font-size: clamp(30px, 3vw, 42px);
	margin-block: 8px 14px;
}

.msp-native-contact-card p {
	color: var(--msp-muted);
}

.msp-native-contact-card .msp-contact-kicker {
	color: var(--msp-teal);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.msp-native-trust {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--msp-shadow);
	margin: -40px auto 0 !important;
	max-width: 1100px !important;
	padding: 26px 32px;
	position: relative;
	width: calc(100% - 48px);
	z-index: 5;
}

.msp-native-trust > * {
	margin-inline: auto !important;
	max-width: 100% !important;
	width: 100%;
}

.msp-native-five-columns {
	gap: 12px;
}

.msp-native-five-columns h3 {
	color: var(--msp-teal);
	font-size: 15px;
	margin-bottom: 4px;
}

.msp-native-five-columns p {
	color: var(--msp-muted);
	font-size: 12px;
	margin-top: 0;
}

.msp-proof-strip > .wp-block-columns {
	margin: 0;
	padding: 36px 20px;
}

.msp-proof-strip .wp-block-column {
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.msp-proof-strip .wp-block-column:last-child {
	border-right: 0;
}

.msp-proof-strip h2 {
	color: var(--msp-brass);
	font-size: 34px;
	margin: 0;
}

.msp-proof-strip p {
	color: #c3cac6;
	font-size: 12px;
	letter-spacing: 0.08em;
	margin: 3px 0 0;
	text-transform: uppercase;
}

.msp-native-section {
	padding: 78px 24px;
}

.msp-native-section > .wp-block-columns,
.msp-native-section > .wp-block-gallery,
.msp-native-section > .msp-native-shortcode-area {
	margin-inline: auto !important;
	max-width: 1180px !important;
	width: 100%;
}

.msp-native-section > .wp-block-details {
	margin-inline: auto !important;
	max-width: 1040px !important;
	width: 100%;
}

.msp-native-section > h2,
.msp-native-section > p {
	margin-inline: auto;
	max-width: 850px;
}

.msp-native-feature-image img {
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	box-shadow: 18px 18px 0 var(--msp-brass);
	object-fit: cover;
	width: 100%;
}

.msp-native-card-row {
	align-items: stretch !important;
	display: grid !important;
	gap: 24px !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 24px;
}

.msp-native-card-row .msp-service-card {
	height: 100%;
	margin: 0;
	width: 100%;
}

.msp-native-process {
	margin-top: 42px;
}

.msp-native-process h3 {
	color: var(--msp-teal);
	font-size: 18px;
}

.msp-native-process p {
	color: var(--msp-muted);
	font-size: 14px;
}

.msp-native-gallery {
	margin-top: 34px;
}

.msp-native-gallery .wp-block-image img {
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	object-fit: cover;
}

.msp-native-gallery figcaption {
	background: rgba(5, 7, 6, 0.78) !important;
	border-radius: 0 0 12px 12px;
	color: #fff !important;
	font-weight: 700;
	padding: 10px !important;
}

.msp-native-shortcode-area {
	background: #fff;
	border: 1px dashed rgba(20, 122, 72, 0.48);
	border-radius: 14px;
	box-shadow: 0 10px 28px rgba(9, 11, 10, 0.07);
	margin-top: 22px;
	min-height: 90px;
	padding: 24px;
}

.msp-native-form-card .wp-block-shortcode {
	background: #f5f7f5;
	border: 2px dashed var(--msp-teal);
	border-radius: 9px;
	min-height: 74px;
	padding: 18px;
}

.msp-native-form-card .msp-contact-form {
	margin-top: 22px;
}

.msp-contact-form .msp-form-intro {
	background: #eef7f1;
	border-left: 4px solid var(--msp-teal);
	border-radius: 6px;
	color: var(--msp-ink);
	padding: 14px 16px;
}

.msp-contact-form .msp-form-grid {
	display: grid;
	gap: 10px 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.msp-contact-form .msp-form-field-full {
	grid-column: 1 / -1;
}

.msp-contact-form label,
.msp-contact-form legend {
	color: var(--msp-ink);
	font-size: 14px;
	font-weight: 800;
}

.msp-contact-form fieldset {
	border: 1px solid #cfd5d1;
	border-radius: 8px;
	margin: 0 0 12px;
	padding: 14px 16px 8px;
}

.msp-contact-form .wpcf7-list-item {
	display: inline-block;
	margin: 8px 16px 8px 0;
}

.msp-contact-form input[type="checkbox"],
.msp-contact-form input[type="radio"] {
	margin-right: 5px;
	padding: 0;
	width: auto;
}

.msp-contact-form .msp-upload-panel {
	background: #f5f7f5;
	border: 1px solid #cfd5d1;
	border-radius: 9px;
	padding: 16px 18px 6px;
}

.msp-contact-form .msp-upload-panel p {
	margin-block: 0 12px;
}

.msp-contact-form .msp-consent {
	font-size: 13px;
	line-height: 1.5;
}

.msp-contact-form .msp-form-note {
	color: var(--msp-muted);
	font-size: 12px;
	line-height: 1.5;
}

@media (max-width: 680px) {
	.msp-contact-form .msp-form-grid {
		grid-template-columns: 1fr;
	}

	.msp-contact-form .msp-form-field-full {
		grid-column: auto;
	}
}

.msp-native-section .wp-block-details {
	border: 1px solid rgba(20, 122, 72, 0.35);
	border-radius: 9px;
	margin-bottom: 12px;
	padding: 16px 20px;
}

.msp-native-section .wp-block-details summary {
	cursor: pointer;
	font-weight: 800;
}

/* Version 4.3 FAQ: editorial copy beside green-lined accordion cards. */
.msp-native-faq-section {
	background: #f2f3f2;
}

.msp-native-faq-section > .msp-native-faq-grid {
	align-items: start !important;
	display: grid !important;
	gap: clamp(42px, 6vw, 76px) !important;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
	margin-inline: auto !important;
	max-width: 1180px !important;
	width: 100%;
}

.msp-native-faq-grid > .wp-block-column {
	margin: 0;
	width: auto;
}

.msp-native-faq-copy h2 {
	font-size: clamp(38px, 3.6vw, 48px);
	letter-spacing: -0.055em;
	line-height: 0.98;
	margin: 0 0 22px;
	max-width: 430px;
}

.msp-native-faq-copy mark {
	color: #22aa43 !important;
}

.msp-native-faq-copy > p:not(.msp-eyebrow) {
	color: var(--msp-muted);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 26px;
	max-width: 430px;
}

.msp-native-faq-copy .wp-block-buttons {
	display: flex;
}

.msp-native-faq-copy .wp-block-button {
	display: inline-block;
	flex: 0 0 auto;
	width: auto;
}

.msp-native-faq-copy .wp-block-button__link {
	display: inline-block;
	text-decoration: none;
}

.msp-native-faq-list {
	display: grid;
	gap: 12px;
}

.msp-native-faq-section .msp-native-faq-list .wp-block-details {
	background: #fff;
	border: 1px solid #59c97f;
	border-radius: 10px;
	box-shadow: none;
	margin: 0;
	overflow: clip;
	padding: 0 20px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.msp-native-faq-section .msp-native-faq-list .wp-block-details[open] {
	border-color: #22aa43;
	box-shadow: 0 12px 28px rgba(20, 122, 72, 0.08);
}

.msp-native-faq-section .msp-native-faq-list summary {
	cursor: pointer;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
	list-style: none;
	padding: 18px 46px 18px 0;
	position: relative;
}

.msp-native-faq-section .msp-native-faq-list summary::-webkit-details-marker {
	display: none;
}

.msp-native-faq-section .msp-native-faq-list summary::after {
	align-items: center;
	background: #e5f7eb;
	border-radius: 50%;
	color: #22aa43;
	content: "+";
	display: flex;
	font-size: 16px;
	font-weight: 900;
	height: 26px;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 15px;
	width: 26px;
}

.msp-native-faq-section .msp-native-faq-list details[open] summary::after {
	background: #22aa43;
	color: #fff;
	content: "−";
}

.msp-native-faq-section .msp-native-faq-list details > p {
	border-top: 1px solid rgba(34, 170, 67, 0.22);
	color: var(--msp-muted);
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
	padding: 16px 46px 19px 0;
}

/* Keep every green contact and quote control on the same rounded system. */
.msp-btn-primary,
.msp-btn-primary .wp-block-button__link,
.msp-native-header-cta .wp-block-button__link,
.msp-contact-form input[type="submit"],
.msp-contact-form button[type="submit"],
.msp-shortcode-output button,
.msp-shortcode-output input[type="button"],
.msp-shortcode-output input[type="submit"],
.wpcf7-form .wpcf7-submit {
	border-radius: var(--msp-button-radius) !important;
}

.msp-native-page-hero h1 {
	font-size: clamp(44px, 5vw, 68px);
	letter-spacing: -0.045em;
	line-height: 1;
	margin-block: 12px 18px;
}

.msp-native-map {
	padding: 35px 24px 80px;
}

.msp-native-map iframe {
	border: 0;
	border-radius: 16px;
	height: 420px;
	width: 100%;
}

.msp-native-emergency {
	padding: 34px 24px;
}

.msp-native-emergency > .wp-block-group {
	gap: 24px;
}

.msp-native-emergency h2,
.msp-native-emergency h3 {
	margin: 0;
}

.msp-native-footer {
	padding: 58px 24px 28px;
}

.msp-native-footer > *,
.msp-native-emergency > * {
	margin-inline: auto !important;
	max-width: 1180px !important;
	width: 100%;
}

.msp-native-footer .msp-footer-grid {
	display: flex;
}

.msp-native-footer .msp-footer-brand {
	display: block;
}

.msp-native-footer .msp-footer-brand img {
	border-radius: 50%;
}

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

.msp-native-footer li {
	margin-bottom: 7px;
}

.msp-native-footer .msp-footer-bottom {
	padding: 0;
}

.msp-native-footer .msp-footer-bottom p {
	margin: 0;
}

@media (max-width: 1000px) {
	.msp-native-topbar-inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.msp-native-topbar-inner .msp-top-hours {
		display: none;
	}

	.msp-native-header-inner {
		flex-wrap: wrap;
	}

	.msp-native-brand {
		flex: 1 1 420px;
	}

	.msp-native-navigation {
		order: 3;
	}

	.msp-native-hero-grid {
		gap: 35px;
	}

	.msp-native-hero-grid > .wp-block-column {
		flex-basis: 100% !important;
	}

	.msp-native-hero-grid {
		flex-wrap: wrap !important;
	}

	.msp-native-five-columns {
		flex-wrap: wrap !important;
	}

	.msp-native-five-columns > .wp-block-column {
		flex-basis: 30% !important;
	}

	.msp-native-card-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.msp-native-faq-section > .msp-native-faq-grid {
		gap: 38px !important;
		grid-template-columns: 1fr;
	}

	.msp-native-faq-copy h2,
	.msp-native-faq-copy > p:not(.msp-eyebrow) {
		max-width: 700px;
	}
}

@media (max-width: 782px) {
	.admin-bar .msp-native-header-shell {
		top: 46px;
	}

	.msp-native-topbar-inner {
		display: flex !important;
		justify-content: center !important;
	}

	.msp-native-topbar-inner .wp-block-social-links {
		display: none;
	}

	.msp-native-site-name {
		font-size: 24px;
		white-space: normal;
	}

	.msp-native-tagline {
		display: none;
	}

	.msp-native-header-cta {
		display: none;
	}

	.msp-native-navigation {
		margin-left: auto;
		order: initial;
	}

	.msp-native-hero .wp-block-cover__inner-container,
	.msp-native-page-hero .wp-block-cover__inner-container {
		padding-block: 58px;
	}

	.msp-native-hero-title {
		font-size: 44px;
	}

	.msp-native-contact-card,
	.msp-native-form-card {
		padding: 26px !important;
	}

	.msp-native-trust {
		border-radius: 0;
		margin-top: 0;
	}

	.msp-native-five-columns > .wp-block-column {
		flex-basis: 100% !important;
	}

	.msp-proof-strip .wp-block-column {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		border-right: 0;
		padding-block: 14px;
	}

	.msp-native-section {
		padding: 58px 20px;
	}

	.msp-native-card-row {
		grid-template-columns: 1fr;
	}

	.msp-native-faq-copy h2 {
		font-size: clamp(36px, 10.5vw, 46px);
	}

	.msp-native-faq-section .msp-native-faq-list .wp-block-details {
		padding-inline: 17px;
	}

	.msp-native-faq-section .msp-native-faq-list summary {
		font-size: 14px;
		padding-right: 38px;
	}

	.msp-native-faq-section .msp-native-faq-list details > p {
		padding-right: 0;
	}

	.msp-native-footer .msp-footer-grid {
		display: block;
	}

	.msp-native-footer .wp-block-column {
		margin-bottom: 34px;
	}
}

/* Version 4 classic shell.
 * Page content remains Gutenberg-editable, while PHP templates guarantee that
 * the public header, menu, and footer cannot be replaced by stale FSE records.
 */
body.msp-classic-theme {
	overflow-x: clip;
}

.msp-classic-theme .msp-floating-shell {
	background: #fff;
	box-shadow: 0 8px 28px rgba(9, 11, 10, 0.1);
	position: sticky !important;
	top: 0;
	z-index: 9999;
}

.admin-bar.msp-classic-theme .msp-floating-shell {
	top: 32px;
}

.msp-classic-theme .msp-pro-topbar .msp-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	min-height: 40px;
	width: 100%;
}

.msp-classic-theme .msp-top-hours {
	font-size: 12px;
	font-weight: 700;
	justify-self: center;
	margin: 0;
	text-transform: uppercase;
}

.msp-classic-theme .msp-pro-topbar .msp-social-links {
	justify-self: end;
	margin-left: 0;
}

.msp-classic-theme .msp-white-header {
	border-bottom: 4px solid var(--msp-brass);
	box-shadow: none;
}

.msp-classic-theme .msp-white-header .msp-header-inner {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(280px, 1fr) auto auto auto;
	min-height: 102px;
	padding-block: 10px;
}

.msp-classic-theme .msp-brand {
	min-width: 0;
}

.msp-classic-theme .msp-white-header .msp-brand-copy strong {
	color: #22a941;
}

.msp-classic-theme .msp-white-header .msp-brand-copy span {
	color: #737a76;
}

.msp-classic-theme .msp-white-header .msp-header-call span {
	color: #737a76;
}

.msp-classic-theme .msp-white-header .msp-header-call a {
	color: var(--msp-ink);
}

.msp-classic-theme .msp-white-nav .msp-menu {
	gap: 4px;
}

.msp-classic-theme .msp-white-nav a {
	padding-inline: 10px;
}

.msp-classic-theme .msp-header-cta {
	min-height: 48px;
	padding: 10px 17px;
}

.msp-classic-content {
	margin: 0;
	max-width: none;
	overflow: clip;
	width: 100%;
}

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

.msp-classic-content > *:last-child {
	margin-bottom: 0;
}

.msp-classic-theme .alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.msp-classic-theme .alignwide {
	margin-left: auto;
	margin-right: auto;
	max-width: 1280px;
	width: calc(100% - 48px);
}

.msp-classic-theme .msp-native-trust {
	left: auto;
	right: auto;
}

.msp-classic-theme .msp-native-section > .wp-block-columns,
.msp-classic-theme .msp-native-section > .wp-block-gallery,
.msp-classic-theme .msp-native-section > .msp-native-shortcode-area {
	max-width: 1180px !important;
}

.msp-classic-theme .msp-service-card {
	border: 1px solid rgba(9, 11, 10, 0.08);
	box-shadow: 0 12px 30px rgba(9, 11, 10, 0.07);
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.msp-classic-theme .msp-service-card:hover {
	box-shadow: 0 20px 40px rgba(9, 11, 10, 0.12);
	transform: translateY(-4px);
}

.msp-classic-theme .msp-native-gallery {
	gap: 18px;
}

.msp-classic-theme .msp-native-gallery .wp-block-image {
	overflow: hidden;
}

.msp-classic-theme .msp-basic-page {
	margin: 0 auto;
	max-width: 1180px;
	min-height: 55vh;
	padding: 80px 24px;
}

.msp-classic-theme .msp-basic-page-title {
	font-size: clamp(42px, 5vw, 68px);
	letter-spacing: -0.05em;
	line-height: 1.04;
	margin: 0 0 34px;
}

.msp-classic-theme .msp-footer-grid {
	align-items: start;
}

.msp-classic-theme .msp-footer-contact a,
.msp-classic-theme .msp-footer-contact p {
	display: block;
}

.msp-classic-theme .msp-mobile-call {
	display: none;
}

@media (max-width: 1120px) {
	.msp-classic-theme .msp-white-header .msp-header-inner {
		grid-template-columns: minmax(260px, 1fr) auto auto;
	}

	.msp-classic-theme .msp-header-call {
		display: none;
	}
}

@media (max-width: 980px) {
	.msp-classic-theme .msp-pro-topbar .msp-wrap {
		grid-template-columns: 1fr auto;
	}

	.msp-classic-theme .msp-top-hours {
		display: none;
	}

	.msp-classic-theme .msp-white-header .msp-header-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}
}

@media (max-width: 640px) {
	.admin-bar.msp-classic-theme .msp-floating-shell {
		top: 46px;
	}

	.msp-classic-theme .msp-pro-topbar .msp-wrap {
		display: flex;
		justify-content: space-between;
		text-align: left;
	}

	.msp-classic-theme .msp-top-address {
		max-width: 230px;
	}

	.msp-classic-theme .msp-white-header .msp-header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.msp-classic-theme .msp-header-cta {
		display: none;
	}

	.msp-classic-theme .msp-brand-copy strong {
		font-size: 18px;
	}

	.msp-classic-theme .msp-social-links--compact .msp-social-link {
		height: 25px;
		width: 25px;
	}

	.msp-classic-theme .msp-mobile-call {
		display: flex;
	}
}

/* Version 4.1 navigation and header refinements. */
.msp-classic-theme [id] {
	scroll-margin-top: 164px;
}

.msp-classic-theme .msp-pro-topbar .msp-top-actions {
	align-items: center;
	display: flex;
	gap: 15px;
	justify-self: end;
}

.msp-classic-theme .msp-top-phone {
	color: #353a37;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.msp-classic-theme .msp-top-phone:hover,
.msp-classic-theme .msp-top-phone:focus-visible {
	color: #159c37;
}

.msp-classic-theme .msp-social-link .fa-brands {
	font-size: 15px;
	line-height: 1;
}

.msp-classic-theme .msp-social-links--full .msp-social-link {
	align-items: center;
	border-radius: 50%;
	height: 40px;
	justify-content: center;
	padding: 0;
	width: 40px;
}

.msp-classic-theme .msp-pro-header .msp-header-inner {
	gap: 16px;
	grid-template-columns: minmax(330px, 380px) minmax(0, 1fr) auto;
	max-width: 1500px;
}

.msp-classic-theme .msp-brand {
	gap: 12px;
	max-width: 380px;
	overflow: hidden;
}

.msp-classic-theme .msp-brand img {
	flex: 0 0 60px;
	height: 60px;
	width: 60px;
}

.msp-classic-theme .msp-brand-copy {
	min-width: 0;
}

.msp-classic-theme .msp-white-header .msp-brand-copy strong {
	font-size: clamp(22px, 1.9vw, 26px);
	line-height: 1.12;
	white-space: normal;
}

.msp-classic-theme .msp-white-header .msp-brand-copy span {
	font-size: 10px;
	letter-spacing: 0.035em;
	margin-top: 5px;
	max-width: 290px;
}

.msp-classic-theme .msp-white-nav {
	justify-content: flex-end;
	min-width: 0;
}

.msp-classic-theme .msp-white-nav .msp-menu {
	flex-wrap: nowrap;
	gap: 1px;
}

.msp-classic-theme .msp-white-nav a {
	font-size: 12px;
	letter-spacing: 0.025em;
	padding: 10px 8px;
	white-space: nowrap;
}

.msp-classic-theme .msp-header-cta {
	font-size: 14px;
	min-height: 46px;
	padding: 9px 14px;
}

@media (max-width: 1180px) {
	.msp-classic-theme .msp-nav {
		display: none;
	}

	.msp-classic-theme .msp-mobile-menu {
		display: block;
	}

	.msp-classic-theme .msp-pro-header .msp-header-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}
}

@media (max-width: 720px) {
	.msp-classic-theme .msp-top-phone {
		display: none;
	}

	.msp-classic-theme .msp-pro-header .msp-header-inner {
		min-height: 86px;
	}

	.msp-classic-theme .msp-brand {
		max-width: none;
	}
}

@media (max-width: 640px) {
	.msp-classic-theme .msp-top-address {
		font-size: 9px;
		line-height: 1.25;
		max-width: 170px;
	}

	.msp-classic-theme .msp-brand img {
		flex-basis: 52px;
		height: 52px;
		width: 52px;
	}

	.msp-classic-theme .msp-white-header .msp-brand-copy strong {
		font-size: 17px;
	}
}
