/*
Theme Name: ABM Classic 2026
Theme URI: https://abmcol.com
Author: Automated Business Machines
Description: Hand-coded clone of the abmcol.com design. Same look, a fraction of the weight: no page builder, self-hosted fonts, inline SVG icons, server-rendered templates.
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: abmclassic
*/

/* ============================================================
   1. TOKENS — from reports/clone-specs/_tokens.md (live kit)
   ============================================================ */
:root {
	/* Brand palette (live Elementor kit) */
	--red: #EE3A43;          /* decorative fills, icons, borders, large type bg */
	--red-band: #E02832;     /* red bg that carries small/body text (AA nudge, visually identical) */
	--red-text: #D92832;     /* small red text links on white/pink (AA nudge) */
	--maroon: #69131B;
	--heading: #333333;
	--body: #636363;
	--white: #FFFFFF;
	--red-muted: #C74A56;
	--gray-light: #CBCBCB;
	--pink: #FCDDE0;
	--navy: #030B1A;         /* footer flat equivalent (image + 51% black overlay) */
	--header-bg: #F2F2F2;
	--tint: #F4F8FB;         /* light circuit-board section tone */

	/* Type */
	--f-head: "Josefin Sans", sans-serif;
	--f-body: "Lato", sans-serif;

	/* Layout */
	--wrap: 1140px;
	--sect-lg: clamp(5rem, 10vw, 9.375rem);   /* 150px */
	--sect-md: clamp(3.25rem, 6vw, 5rem);     /* 80px  */
	--sect-sm: clamp(2.25rem, 4vw, 3.125rem); /* 50px  */
	--band: clamp(1.875rem, 3vw, 2.5rem);     /* 30-40px */

	/* Effects */
	--r-pill: 50px;
	--r-card: 30px;
	--r-sm: 15px;
	--r-drop: 20px;
	--sh-btn: 0 5px 15px rgba(0, 0, 0, .15);
	--sh-card: 5px 5px 24px rgba(86, 85, 85, .12);
	--sh-card-l: -10px 5px 18px rgba(86, 85, 85, .12);
	--sh-card-r: 10px 5px 24px rgba(86, 85, 85, .12);
}

/* ============================================================
   2. RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	margin: 0;
	font-family: var(--f-body);
	font-size: 1.125rem;             /* 18px */
	line-height: 1.5556;             /* 28px */
	color: var(--body);
	background: var(--white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: inline-block; }
figure { margin: 0; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Self-hosted fonts (variable Josefin covers 300–700) */
@font-face {
	font-family: "Josefin Sans";
	src: url("assets/fonts/JosefinSans-var.woff2") format("woff2-variations");
	font-weight: 100 700;
	font-display: swap;
}
@font-face {
	font-family: "Lato";
	src: url("assets/fonts/Lato-400.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: "Lato";
	src: url("assets/fonts/Lato-700.woff2") format("woff2");
	font-weight: 700;
	font-display: swap;
}

/* Heading scale — live kit: 60/40/32/28/26/24 desktop, stepping down */
h1, h2, h3, h4, h5, h6 { font-family: var(--f-head); margin: 0 0 .5em; }
h1 { font-size: clamp(1.875rem, 4.2vw, 3.75rem); line-height: 1.17; font-weight: 700; text-transform: uppercase; color: var(--heading); }
h2 { font-size: clamp(1.5625rem, 2.8vw, 2.5rem); line-height: 1.2; font-weight: 600; text-transform: capitalize; color: var(--heading); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.15; font-weight: 600; text-transform: capitalize; color: var(--heading); }
h4 { font-size: clamp(1.375rem, 2vw, 1.75rem); line-height: 1.1; font-weight: 600; text-transform: capitalize; color: var(--heading); }
h5 { font-size: clamp(1.25rem, 1.8vw, 1.625rem); line-height: 1.1; font-weight: 300; text-transform: capitalize; color: var(--heading); }
h6 { font-size: clamp(1.125rem, 1.7vw, 1.5rem); line-height: 1.1; font-weight: 600; text-transform: capitalize; color: var(--red-text); }

a { color: var(--maroon); text-decoration: none; transition: color .3s; }
a:hover { color: var(--red-text); }

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

/* Focus visibility (a11y) */
:focus-visible { outline: 2px solid var(--maroon); outline-offset: 2px; }
.on-red :focus-visible, .topbar :focus-visible, .site-footer :focus-visible { outline-color: var(--white); }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 10000;
	background: var(--maroon); color: var(--white); padding: .6em 1.2em;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ============================================================
   3. LAYOUT PRIMITIVES
   ============================================================ */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.sect { padding-block: var(--sect-md); }
.sect--lg { padding-block: var(--sect-lg); }
.sect--sm { padding-block: var(--sect-sm); }
.band { padding-block: var(--band); }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
	.grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
	.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.center { text-align: center; }

/* Sections on red bands: white type */
.on-red { background: var(--red-band); color: var(--white); }
.on-red h1, .on-red h2, .on-red h3, .on-red h4, .on-red h5, .on-red h6, .on-red p { color: var(--white); }
.on-red a { color: var(--white); }

/* ============================================================
   4. BUTTONS — 4 live variants, pill radius, invert hovers
   ============================================================ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--f-body); font-size: 1.0625rem; font-weight: 700; line-height: 1.06;
	text-transform: capitalize; text-decoration: none; cursor: pointer;
	padding: 16px 30px; border-radius: var(--r-pill);
	border: 1px solid transparent; box-shadow: var(--sh-btn);
	transition: background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.btn:hover { box-shadow: 0 4px 15px rgba(0, 0, 0, 0); }
@media (max-width: 1024px) { .btn { font-size: 1rem; padding: 15px 25px; } }
@media (max-width: 767px) { .btn { font-size: .875rem; padding: 10px 15px; } }

/* kit default (forms/submit) — maroon */
.btn--maroon { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.btn--maroon:hover { background: var(--white); color: var(--maroon); }

/* primary red (header CTA, page CTAs) */
.btn--red { background: var(--red-band); color: var(--white); border-color: var(--red-band); }
.btn--red:hover { background: var(--white); color: var(--maroon); border-color: var(--maroon); }

/* white on red bands */
.btn--white { background: var(--white); color: var(--maroon); border-color: var(--white); }
.btn--white:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* outline/ghost on red bands */
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); box-shadow: none; }
.btn--ghost:hover { background: var(--white); color: var(--maroon); }

/* stripped text link (READ MORE) */
.link-more {
	display: inline-flex; align-items: center; gap: .45em;
	font-family: var(--f-body); font-weight: 700; font-size: 1rem;
	text-transform: uppercase; letter-spacing: .02em; color: var(--red-text);
}
.link-more:hover { color: var(--maroon); }
.on-red .link-more, .on-red .link-more:hover { color: var(--white); }

/* ============================================================
   5. TOPBAR — red strip, boxed, Lato 15px white
   ============================================================ */
.topbar { background: var(--red-band); font-size: .9375rem; line-height: 1.86; color: var(--white); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-block: 10px 15px; }
.topbar ul { display: flex; align-items: center; list-style: none; }
.topbar a { color: var(--white); display: inline-flex; align-items: center; gap: .45em; transition: opacity .3s; }
.topbar a:hover { opacity: .85; color: var(--white); }
.topbar .tb-info li { padding-right: 14px; margin-right: 14px; border-right: 1px solid var(--white); }
.topbar .tb-info li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.topbar .tb-links { gap: 14px; }
.topbar svg { width: 16px; height: 16px; flex: none; fill: currentColor; }
@media (max-width: 1024px) { .topbar .tb-info { display: none; } .topbar .wrap { justify-content: flex-end; } }
@media (max-width: 767px) { .topbar { display: none; } }

/* ============================================================
   6. HEADER / NAV — #F2F2F2 bar, not sticky, burger ≤991px
   ============================================================ */
.site-header { background: var(--header-bg); position: relative; z-index: 100; }
.site-header .wrap { display: flex; align-items: center; gap: 20px; padding-block: 20px; }
.brand { flex: none; display: block; max-width: 270px; }
.brand img { display: block; width: 100%; height: auto; }

.nav { flex: 1; }
.nav > ul { display: flex; justify-content: flex-end; align-items: center; list-style: none; }
.nav a {
	display: block; padding: 8px 15px;
	font-size: 1.125rem; line-height: 1.5556; color: var(--body);
}
.nav a:hover { color: var(--red-muted); }
.nav .current-menu-item > a, .nav .current-menu-ancestor > a { color: var(--maroon); }

/* dropdown */
.nav li { position: relative; }
.nav .has-sub > a::after { content: " +"; font-weight: 400; }
.sub-toggle { display: none; }
.subnav {
	position: absolute; top: calc(100% + 8px); left: 0; z-index: 110;
	min-width: 300px; background: var(--white); border-radius: var(--r-drop);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .15); list-style: none;
	padding-block: 10px; opacity: 0; visibility: hidden; translate: 0 8px;
	transition: opacity .25s, translate .25s, visibility .25s;
}
.nav li:hover > .subnav, .nav li:focus-within > .subnav { opacity: 1; visibility: visible; translate: 0 0; }
.subnav a { padding: 7px 20px; font-size: 1.0625rem; }
.subnav a:hover { color: var(--red-muted); }
.subnav .current-menu-item > a { background: var(--red-muted); color: var(--white); }

.header-cta { flex: none; }

/* burger + off-canvas (≤991px, slides from left like live) */
.nav-burger {
	display: none; flex: none; background: transparent; border: 0; cursor: pointer;
	padding: 10px 12px; border-radius: 10px;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
	display: block; width: 25px; height: 3px; border-radius: 2px;
	background: var(--red-muted); position: relative; transition: transform .3s, opacity .3s;
}
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; }
.nav-burger span::before { top: -8px; }
.nav-burger span::after { top: 8px; }
body.nav-open .nav-burger span { background: transparent; }
body.nav-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 991px) {
	.site-header .wrap { justify-content: space-between; }
	.header-cta { display: none; }
	.nav-burger { display: block; }
	.nav {
		position: fixed; inset: 0 auto 0 0; width: 300px; max-width: 85vw; z-index: 1000;
		background: var(--white); padding: 24px 0; overflow-y: auto;
		translate: -100% 0; transition: translate .5s ease; box-shadow: 0 0 40px rgba(0,0,0,.25);
	}
	body.nav-open .nav { translate: 0 0; }
	.nav > ul { flex-direction: column; align-items: stretch; }
	.nav a { padding: 12px 30px; border-top: 1px solid rgba(0, 0, 0, .06); }
	.nav > ul > li:first-child > a { border-top: 0; }
	.nav .has-sub > a::after { content: ""; }
	.sub-toggle {
		display: block; position: absolute; top: 0; right: 0; width: 52px; height: 52px;
		background: transparent; border: 0; cursor: pointer; color: var(--body); font-size: 22px;
	}
	.subnav {
		position: static; min-width: 0; box-shadow: none; border-radius: 0; padding: 0;
		opacity: 1; visibility: hidden; translate: none; display: none; background: transparent;
	}
	.nav li.open > .subnav { display: block; visibility: visible; }
	.subnav a { padding-left: 40px; }
	body.nav-open::after {
		content: ""; position: fixed; inset: 0; z-index: 900; background: rgba(0, 0, 0, .8);
	}
	body.nav-open { overflow: hidden; }
}
@media (max-width: 767px) { .brand { max-width: 200px; } }

/* ============================================================
   7. FOOTER — navy circuit bg + red bottom bar
   ============================================================ */
.site-footer { position: relative; isolation: isolate; background: var(--navy); color: var(--gray-light); }
.site-footer::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: url("../../uploads/2025/06/footer-bg-2-1.jpg") center / cover no-repeat;
	opacity: .49;
}
.site-footer a { color: var(--gray-light); }
.site-footer a:hover { color: var(--white); }
.footer-cols {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
	padding-block: 50px 44px; align-items: start;
}
.footer-cols h2 { font-size: 1.5rem; color: var(--white); margin-bottom: .9em; }
.footer-badge img { width: 100%; height: auto; }
.footer-badge--bbb img { max-width: 151px; }
.footer-badge--oss img { max-width: 183px; }
.footer-links { list-style: none; }
.footer-links li { padding-block: 10px; border-bottom: 1px solid rgba(221, 221, 221, .15); }
.footer-links li:last-child { border-bottom: 0; }
.footer-schedule { display: flex; justify-content: space-between; gap: 12px; max-width: 260px; }
.footer-addr { display: block; font-size: 1rem; margin-top: .9em; }

.footer-bottom { background: var(--red-band); color: var(--white); font-size: 1rem; }
.footer-bottom .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 12px; flex-wrap: wrap; }
.footer-bottom a { color: var(--white); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; color: var(--white); }
.footer-social { display: flex; gap: 8px; list-style: none; }
.footer-social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px; border-radius: 50%; background: var(--white);
	transition: transform .3s;
}
.footer-social a:hover { transform: scale(1.08); }
.footer-social svg { width: 15px; height: 15px; fill: var(--red); }

@media (max-width: 1024px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
	.footer-cols { grid-template-columns: 1fr; text-align: center; }
	.footer-badge--bbb img, .footer-badge--oss img { max-width: 150px; }
	.footer-badge img { width: auto; margin-inline: auto; }
	.footer-schedule { margin-inline: auto; }
	.footer-bottom .wrap { justify-content: center; text-align: center; }
}

/* ============================================================
   8. CORE COMPONENTS (shared by page sections)
   ============================================================ */
/* White info card — dominant 30px radius */
.card {
	background: var(--white); border-radius: var(--r-card);
	box-shadow: var(--sh-card); padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* Icon boxes on red band (service tiles) */
.icon-box { border-radius: var(--r-card); padding: clamp(1.4rem, 2.5vw, 2rem); border: 1px solid rgba(255, 255, 255, .55); }
.icon-box h3 { color: var(--white); }
.icon-box p { color: var(--white); }

/* Stats / counter band */
.stats-band { background: var(--white); border-radius: var(--r-card); box-shadow: var(--sh-card); }
.stats-band .stat { text-align: center; padding: clamp(1.2rem, 2.5vw, 2rem) 1rem; }
.stats-band .stat b {
	display: block; font-family: var(--f-head); font-weight: 700;
	font-size: clamp(2rem, 3.4vw, 3rem); color: var(--red-text); line-height: 1.05;
}
.stats-band .stat span { display: block; margin-top: .35em; color: var(--body); }

/* FAQ accordion — square corners, pink closed / red open */
.faq details { border: 1px solid var(--red); background: var(--white); margin-bottom: 10px; }
.faq summary {
	list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
	background: var(--pink); color: var(--maroon);
	font-family: var(--f-body); font-weight: 700; font-size: 1.125rem;
	padding: 16px 22px; transition: background .3s, color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq-x { flex: none; width: 14px; height: 14px; position: relative; }
.faq summary .faq-x::before, .faq summary .faq-x::after {
	content: ""; position: absolute; inset: 50% auto auto 0; width: 100%; height: 2px;
	background: currentColor; translate: 0 -50%; transition: rotate .3s;
}
.faq summary .faq-x::after { rotate: 90deg; }
.faq details[open] summary { background: var(--red-band); color: var(--white); }
.faq details[open] summary .faq-x::after { rotate: 0deg; }
.faq details > div { padding: 18px 22px; }

/* ============================================================
   9. REVEAL ANIMATIONS — animate.css-alike, IO-gated (main.js .rv)
   ============================================================ */
.rv { opacity: 1; }
html.rv-armed .rv { opacity: 0; }
html.rv-armed .rv.is-in { animation: rvFadeInUp .7s ease both; }
html.rv-armed .rv-l.is-in { animation-name: rvSlideInLeft; }
html.rv-armed .rv-r.is-in { animation-name: rvSlideInRight; }
html.rv-armed .rv-z.is-in { animation-name: rvZoomIn; }
html.rv-armed .rv-d1.is-in { animation-delay: .12s; }
html.rv-armed .rv-d2.is-in { animation-delay: .24s; }
html.rv-armed .rv-d3.is-in { animation-delay: .36s; }
@keyframes rvFadeInUp { from { opacity: 0; transform: translate3d(0, 36px, 0); } to { opacity: 1; transform: none; } }
@keyframes rvSlideInLeft { from { opacity: 0; transform: translate3d(-46px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes rvSlideInRight { from { opacity: 0; transform: translate3d(46px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes rvZoomIn { from { opacity: 0; transform: scale3d(.85, .85, 1); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	html.rv-armed .rv { opacity: 1 !important; animation: none !important; }
}

/* ============================================================
   10. PROSE (legal pages, blog posts)
   ============================================================ */
.prose h2, .prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: 1em; }
.prose li { margin-bottom: .4em; }
.prose img { border-radius: var(--r-sm); }
.prose a { text-decoration: underline; }

/* ============================================================
   11. HOMEPAGE SECTIONS (clone-specs/home.md S1–S14)
   ============================================================ */
/* Shared band header: eyebrow + H2 left with 3px rule, note right */
.eyebrow { font-family: var(--f-head); font-weight: 300; font-size: clamp(1.25rem, 1.8vw, 1.625rem); line-height: 1; text-transform: capitalize; color: var(--red-text); margin: 0 0 15px; }
.eyebrow--white { color: var(--white); }
.band-head { display: grid; grid-template-columns: 1fr 1fr; align-items: center; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.band-head-l { border-right: 3px solid var(--white); padding-right: 10px; }
.band-head-l h2 { margin-bottom: 0; }
.band-head-r { padding: 0 50px; }
.band-head--red-rule .band-head-l { border-right-color: var(--red); }
@media (max-width: 767px) {
	.band-head { grid-template-columns: 1fr; gap: 1rem; }
	.band-head-l { border-right: 0; }
	.band-head-r { padding: 0; }
}

/* --- S1 Hero --- */
.hero {
	position: relative; isolation: isolate; min-height: 681px;
	display: flex; align-items: center;
	background: var(--red-band) url("../../uploads/2025/06/bg_shape_img.png") center / cover no-repeat;
	padding-block: clamp(2.5rem, 5vw, 4rem);
}
.hero-overlay {
	position: absolute; inset: 0; z-index: -1;
	background: url("../../uploads/2025/06/officer_using_tablet_screen.webp") center / cover no-repeat;
	opacity: .2; mix-blend-mode: screen;
}
@media (min-width: 1025px) {
	.hero { background-attachment: fixed, scroll; }
	.hero-overlay { background-attachment: fixed; }
}
.hero-grid { display: grid; grid-template-columns: 56fr 44fr; gap: 30px; align-items: center; width: 100%; }
.hero-copy h1 { color: var(--white); font-size: clamp(1.5625rem, 2.8vw, 2.5rem); line-height: 1.2; font-weight: 600; text-transform: capitalize; margin-bottom: 15px; }
.hero-copy p { color: var(--white); margin-bottom: 25px; }
.hero-form iframe { width: 100%; min-height: 420px; border: 0; border-radius: var(--r-sm); }
@media (max-width: 1024px) { .hero { min-height: 550px; } .hero-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .hero { min-height: 400px; } .hero-grid { grid-template-columns: 1fr; } }

/* --- S2 tri-card strip --- */
.tri-strip { position: relative; z-index: 2; margin-top: -69px; }
.tri-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }
.tri-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 30px; border-radius: var(--r-sm); }
.tri-card h3, .tri-card h4 { margin: 0; font-size: clamp(1.125rem, 1.7vw, 1.5rem); line-height: 1.1; }
.tri-card--red { background: var(--red-band); border: 10px solid var(--white); box-shadow: var(--sh-card); }
.tri-card--red h4 { color: var(--white); }
/* Call Now + Quote Now glued into one white unit: thin red divider, rounded top-right + bottom-left */
.tri-duo {
	display: grid; grid-template-columns: 1fr 1fr;
	background: var(--white); border-radius: 0 var(--r-sm) 0 var(--r-sm);
	box-shadow: var(--sh-card-r); overflow: hidden;
}
.tri-card--white { background: transparent; border-radius: 0; }
.tri-card--left { border-right: 1px solid var(--red); }
.tri-card--left .tri-icon { color: var(--maroon); flex: none; }
.tri-card--left h3 a { color: var(--maroon); }
.tri-card--right h4 { color: var(--red-text); margin: 0; }
.tri-arrow { color: var(--white); flex: none; transition: transform .3s; }
.tri-arrow--red { color: var(--red-text); }
.tri-arrow:hover { transform: translateX(6px); }
@media (max-width: 767px) { .tri-strip { display: none; } }

/* --- S3 About --- */
.about-home {
	background: url("../../uploads/2025/06/ab-bg-2-1.jpg") center / cover no-repeat;
	margin-top: -51px; padding: 100px 0 60px;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-media { position: relative; }
.about-photo-1, .about-photo-2 { border: 8px solid var(--white); border-radius: var(--r-card); box-shadow: var(--sh-btn); }
.about-photo-1 { width: 75%; display: block; }
.about-photo-2 { width: 60%; display: block; margin: -110px 0 0 auto; }
.about-counter {
	position: absolute; right: 0; bottom: 130px;
	background: var(--red-band); color: var(--white);
	padding: 20px; border-radius: var(--r-sm); box-shadow: var(--sh-btn);
	max-width: 240px;
}
.about-counter-label { display: block; font-family: var(--f-head); font-weight: 600; font-size: clamp(1.25rem, 1.9vw, 1.625rem); line-height: 1.25; }
.about-feature { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.about-feature img { flex: none; width: 85px; height: 85px; }
.about-feature h5 { font-weight: 600; font-size: 1.5rem; margin-bottom: .2em; }
.about-feature p { margin: 0; }
.about-copy > .rv > p { margin-bottom: 1em; }
.about-copy h2 { margin-bottom: 10px; }
.about-copy > div { margin-bottom: 35px; }
@media (max-width: 1024px) {
	.about-grid { grid-template-columns: 1fr; }
	.about-counter { bottom: 40px; }
}
@media (max-width: 767px) {
	.about-home { margin-top: 0; padding: 60px 0 40px; }
	.about-photo-2 { margin-top: -60px; }
	.about-counter { position: static; margin-top: 20px; }
}

/* --- S4 Why us image boxes --- */
.why-us { padding: 70px 0 150px; }
.why-title { max-width: 34ch; margin-inline: auto; }
.why-grid { margin-top: 40px; }
.imagebox { position: relative; border-radius: var(--r-card); overflow: hidden; border: 8px solid var(--white); box-shadow: var(--sh-btn); }
.imagebox-media img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.imagebox-rest {
	position: absolute; inset: auto 0 0 0; padding: 24px;
	background: linear-gradient(transparent, rgba(0, 0, 0, .55));
	display: flex; align-items: center; gap: 14px; transition: opacity .35s;
}
.imagebox-rest .imagebox-icon, .imagebox-hover .imagebox-icon { color: var(--white); flex: none; }
.imagebox-rest h4, .imagebox-hover h4 { margin: 0; }
.imagebox-rest h4 a, .imagebox-hover h4 a { color: var(--white); }
.imagebox-hover {
	position: absolute; inset: 0; background: rgba(105, 19, 27, .59);
	display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px;
	padding: clamp(1.5rem, 3vw, 3rem);
	opacity: 0; translate: 0 24px; transition: opacity .35s, translate .35s;
}
.imagebox-hover p { color: var(--white); margin: 0; }
.imagebox-btn { display: inline-flex; align-items: center; gap: .45em; color: var(--white); font-weight: 700; text-transform: capitalize; }
.imagebox-btn:hover { color: var(--white); transform: scale(.96); }
.imagebox:hover .imagebox-hover, .imagebox:focus-within .imagebox-hover { opacity: 1; translate: 0 0; }
.imagebox:hover .imagebox-rest, .imagebox:focus-within .imagebox-rest { opacity: 0; }
@media (max-width: 767px) { .why-us { padding: 40px 0 80px; } }

/* --- S5 Services red band --- */
.svc-band { padding: var(--sect-lg) 0; }
.svc-cards { row-gap: 30px; }
.svc-card {
	border: 2px solid rgba(255, 255, 255, .64); border-radius: var(--r-card);
	padding: 30px; transition: border-color .3s;
}
.svc-card:hover { border-color: var(--white); }
.svc-card img { width: clamp(60px, 6vw, 92px); height: auto; }
.svc-card h4 { color: var(--white); font-size: clamp(1.375rem, 2vw, 1.75rem); margin: 40px 0 30px; }
.svc-card p { padding-bottom: 15px; }
.svc-more { font-weight: 700; text-transform: capitalize; display: inline-block; transition: transform .3s; }
.svc-more:hover { transform: scale(.95); }

/* --- S6 stats overlap card --- */
.stats-wrap { position: relative; z-index: 1; margin-top: -100px; }
.stats-band { padding: 30px 0; gap: 0; }
.stats-band .stat img { width: clamp(48px, 5vw, 91px); height: auto; margin-bottom: .4em; }
.stats-band .stat b { font-weight: 600; font-size: clamp(1.875rem, 2.8vw, 2.5rem); color: var(--heading); }
@media (max-width: 767px) { .stats-wrap { margin-top: -60px; } .stats-band { grid-template-columns: repeat(2, 1fr); } }

/* --- S7 blog cards --- */
.blog-home { padding: var(--sect-lg) 0; }
.blog-head-note { color: var(--heading); }
.blog-card { border: 1px solid rgba(203, 203, 203, .33); border-radius: var(--r-sm); padding-bottom: 24px; text-align: center; }
.blog-thumb { display: block; position: relative; }
.blog-thumb img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--r-sm) var(--r-sm) 0 0; }
.blog-date {
	position: absolute; left: -10px; bottom: 14px;
	background: var(--red-band); color: var(--white);
	font-family: var(--f-head); text-transform: uppercase; font-size: .8rem; line-height: 1;
	padding: 8px 12px; border-radius: 0 6px 6px 0;
}
.blog-date strong { display: block; font-size: 1.3rem; }
.blog-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 18px; font-size: 1rem; color: var(--heading); margin: 18px 12px 8px; }
.blog-meta a { color: var(--heading); }
.blog-meta a:hover { color: var(--red-text); }
.blog-meta svg { vertical-align: -2px; color: var(--red-text); }
.blog-title { font-size: 1.375rem; line-height: 1.4; margin: 0 16px 14px; }
.blog-title a { color: var(--heading); }
.blog-title a:hover { color: var(--red-text); }

/* --- S8/S9 testimonials + reviews overlap --- */
.testi-band { padding: 100px 0 167px; }
.testi-head { border-right: 3px solid var(--white); max-width: 70%; padding-right: 10px; }
.testi-title { font-size: clamp(1.875rem, 4.2vw, 3.75rem); line-height: 1.17; font-weight: 700; text-transform: uppercase; margin: 0; }
.reviews-wrap { margin-top: -130px; margin-bottom: 46px; }
.lc_reviews_widget { min-width: 100%; width: 100%; min-height: 360px; border: 0; }
@media (max-width: 767px) {
	.testi-band { padding: 60px 0 120px; }
	.testi-head { border-right: 0; border-bottom: 2px solid var(--white); max-width: none; padding: 0 0 20px; }
}

/* --- S10 CTA band --- */
.cta-band { padding: 150px 0 235px; }
.cta-copy { max-width: 62ch; margin-inline: auto; }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; margin-top: 2rem; }
.cta-row-l { border-right: 3px solid var(--white); padding-right: 30px; text-align: right; }
.cta-row-r { padding-left: 30px; }
.cta-phone { display: inline-flex; align-items: center; gap: .6em; font-size: 1.125rem; }
.cta-phone svg { flex: none; }
@media (max-width: 767px) {
	.cta-band { padding: 80px 0 160px; }
	.cta-row { grid-template-columns: 1fr; gap: 1.2rem; }
	.cta-row-l { border-right: 0; padding: 0; text-align: center; }
	.cta-row-r { padding: 0; text-align: center; }
}

/* --- S11 office + form overlap card --- */
.office-wrap { position: relative; z-index: 1; margin-top: -115px; }
.office-card {
	background: var(--white); border-radius: var(--r-card); box-shadow: var(--sh-btn);
	padding: clamp(2rem, 5vw, 4.7rem);
}
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.office-info h2 { margin-bottom: 20px; }
.office-row { display: flex; align-items: center; gap: 18px; margin-bottom: 25px; }
.office-row img { width: 50px; height: 50px; flex: none; }
.office-row h4 { font-size: 1.25rem; margin: 0 0 .15em; }
.office-row p { margin: 0; }
.office-loc { padding: 15px 10px; }
.office-loc--bordered { border-top: 1px solid rgba(0, 0, 0, .12); border-bottom: 1px solid rgba(0, 0, 0, .12); }
.office-loc--boxed { border: 1px solid rgba(0, 0, 0, .12); }
.office-loc h6 { color: var(--heading); margin-bottom: .6em; }
.office-pairs { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; }
.office-pair { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; }
.office-pair img { width: 45px; height: 45px; flex: none; }
.office-form iframe { min-height: 575px; }
@media (max-width: 1024px) {
	.office-grid { grid-template-columns: 1fr; }
	.office-form { padding-top: 20px; }
}
@media (max-width: 767px) { .office-pairs { grid-template-columns: 1fr; } }

/* --- S12 FAQ --- */
.faq-home { padding: var(--sect-lg) 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.faq-intro { padding-right: 20px; }
.faq-intro p { padding-right: 50px; }
.faq-intro img { border-radius: var(--r-sm); margin-top: 20px; }
@media (max-width: 1024px) { .faq-grid { grid-template-columns: 1fr; } .faq-intro { padding-right: 0; } .faq-intro p { padding-right: 0; } }

/* --- S13 brand partners banner --- */
.brands-card {
	position: relative; isolation: isolate; overflow: hidden;
	border: 2px solid var(--white); border-radius: var(--r-card); box-shadow: var(--sh-btn);
	padding: 40px 20px 50px; text-align: center;
}
.brands-card::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: url("../../uploads/2025/06/photo-1454165804606-c3d57bc86b40.avif") center / cover no-repeat;
}
.brands-card::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: var(--red-band); opacity: .88;
}
.brands-card h2 { color: var(--white); margin: 20px 0 10px; }
.brands-row { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 20px; padding: 30px 0 20px; }
.brands-row img { width: 70%; height: auto; opacity: .9; transition: opacity .3s; }
.brands-row a:hover img { opacity: 1; }
@media (max-width: 767px) { .brands-row { grid-template-columns: repeat(2, 1fr); } }

.pre-footer-gap { height: 58px; }

/* ============================================================
   12. INTERIOR PAGE UTILITIES
   ============================================================ */
.wrap--narrow { max-width: 820px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.page-hero { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--red-band) url("../../uploads/2025/06/bg_shape_img.png") center / cover no-repeat; }
.page-hero h1 { margin: 0; font-size: clamp(1.875rem, 3.4vw, 3rem); }
.post-hero-meta { margin: .6em 0 0; }
.post-hero-meta a { text-decoration: underline; }
.post-feature { border-radius: var(--r-sm); margin-bottom: 1.4em; }
.pagination-nav { margin-top: 2.5rem; text-align: center; }
.pagination-nav .nav-links { display: inline-flex; gap: .5rem; flex-wrap: wrap; }
.pagination-nav .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 .6em; border-radius: 50%;
	border: 1px solid var(--gray-light); color: var(--body);
}
.pagination-nav .page-numbers.current { background: var(--red-band); border-color: var(--red-band); color: var(--white); }
.pagination-nav a.page-numbers:hover { border-color: var(--maroon); color: var(--maroon); }
.catalog-full { min-height: 60vh; }

/* ============================================================
   13. NATIVE FORMS (engine: inc/forms.php + main.js multi-step)
   Ported from the abm2026 form system, skinned to the live look.
   ============================================================ */
:root { --err: #C62828; --ok: #2E7D32; --line-soft: #DEDEDE; }

/* .btn--press = engine submit/next buttons → live kit default (maroon pill) */
.btn--press { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.btn--press:hover { background: var(--white); color: var(--maroon); }
/* ghost inside a white form card = maroon outline (not white-on-white) */
.form-shell .btn--ghost { color: var(--maroon); border-color: var(--maroon); }
.form-shell .btn--ghost:hover { background: var(--maroon); color: var(--white); }

.form-shell {
	background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-sm);
	box-shadow: var(--sh-btn);
	padding: clamp(1.4rem, 3vw, 2.2rem);
}
.form-head { border-bottom: 1px dashed var(--line-soft); padding-bottom: 1rem; margin-bottom: 1.3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-head h2, .form-head h3 { margin: 0; font-size: 1.35rem; color: var(--heading); }
.fsteps-nav { display: flex; gap: .5rem; }
.fsteps-nav i { width: 34px; height: 6px; border-radius: 3px; background: var(--line-soft); transition: background-color .25s; }
.fsteps-nav i.on { background: var(--red); }
.fgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.2rem; }
@media (max-width: 640px) { .fgrid { grid-template-columns: 1fr; } }
.f-field { display: grid; gap: .35rem; }
.f-field--full { grid-column: 1 / -1; }
.f-field label {
	font-family: var(--f-body); font-weight: 700; font-size: .8rem;
	letter-spacing: .1em; text-transform: uppercase; color: var(--heading);
}
.f-field label .req { color: var(--red-text); }
.f-field input, .f-field select, .f-field textarea {
	font: inherit; color: var(--heading);
	background: #FAFAFA;
	border: 1.5px solid var(--line-soft);
	border-radius: 8px;
	padding: .7rem .9rem;
	width: 100%;
	transition: border-color .15s, box-shadow .15s, background-color .15s;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
	outline: none; border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(238, 58, 67, .16);
	background: var(--white);
}
.f-field .f-err { font-size: .82rem; color: var(--err); display: none; }
.f-field.has-err input, .f-field.has-err select, .f-field.has-err textarea { border-color: var(--err); }
.f-field.has-err .f-err { display: block; }
.f-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
@media (max-width: 640px) { .f-choices { grid-template-columns: 1fr; } }
.f-choice { position: relative; display: flex; }
.f-choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.f-choice span {
	display: flex; align-items: center; gap: .55em;
	width: 100%; min-height: 3.2em;
	border: 1.5px solid var(--line-soft); border-radius: 8px;
	padding: .6rem .85rem;
	font-family: var(--f-head); font-weight: 600; font-size: .95rem; line-height: 1.2;
	color: var(--heading);
	transition: border-color .15s, background-color .15s, color .15s;
}
.f-choice span svg { flex: none; color: var(--red-text); }
.f-choice input:checked + span { border-color: var(--red); background: var(--pink); color: var(--maroon); }
.f-choice input:focus-visible + span { outline: 3px solid var(--red); outline-offset: 2px; }
.f-consent { display: flex; gap: .65em; align-items: flex-start; margin-top: 1.2rem; font-size: .84rem; color: var(--body); line-height: 1.5; cursor: pointer; }
.f-consent input { margin-top: .2em; width: 18px; height: 18px; flex: none; accent-color: var(--red); cursor: pointer; }
.f-consent a { color: var(--red-text); text-decoration: underline; }
.f-consent.has-err { color: var(--err); }
.f-consent.has-err input { outline: 2px solid var(--err); outline-offset: 2px; }
.f-subhead { grid-column: 1 / -1; margin: .6rem 0 -.2rem; font-family: var(--f-head); font-weight: 700; font-size: 1.05rem; color: var(--heading); }
.f-subhead:first-child { margin-top: 0; }
.f-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.4rem; flex-wrap: wrap; }
.f-note { font-size: .85rem; color: var(--body); margin: 0; }
.fstep[hidden] { display: none; }
.hp-wrap { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-ok { text-align: center; padding: 2.2rem 1rem; }
.form-ok .ok-badge {
	width: 74px; height: 74px; margin: 0 auto 1.2rem; border-radius: 50%;
	background: #E7F4ED; color: var(--ok); display: grid; place-items: center;
}
.form-ok h3 { font-size: 1.5rem; }
.form-ok p { color: var(--body); max-width: 46ch; margin-inline: auto; }

/* Hero + office-card form placements */
.hero-form .form-shell { padding: clamp(1.2rem, 2.4vw, 1.8rem); }
.hero-form .form-head h2, .hero-form .form-head h3 { font-size: 1.2rem; }
.office-form .form-shell { box-shadow: none; border-color: var(--line-soft); }
.btn--lg { font-size: 1.0625rem; padding: 16px 34px; }
.mt-2 { margin-top: 1rem; }

/* ============================================================
   14. LEASE PAGE (clone-specs/copier-printer-lease.md)
   ============================================================ */
.ls { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.ls h2 { font-size: clamp(1.625rem, 2.5vw, 2.25rem); line-height: 1.33; }

/* decorative pattern backgrounds (subtle, light) */
.bg-cubes { background: url("../../uploads/2025/06/process-bg-1-1.jpg") center / cover no-repeat; }
.bg-circuit { background: url("../../uploads/2025/06/ab-bg-1-1.jpg") center / cover no-repeat; }
.bg-hex { background: url("../../uploads/2025/06/faq-3-1.jpg") center / cover no-repeat; }

/* S1 hero */
.lease-hero { padding: clamp(3.5rem, 7vw, 6.875rem) 0 clamp(3.5rem, 8vw, 8.75rem); }
.lease-hero-grid { display: grid; grid-template-columns: 53fr 47fr; gap: 45px; align-items: center; }
.lease-hero-copy h1 {
	font-size: clamp(2.25rem, 3.3vw, 2.9375rem); line-height: 1.19;
	font-weight: 600; text-transform: capitalize; color: #410000; margin-bottom: .5em;
}
.lease-hero-intro { color: #582121; margin-bottom: 1.4rem; }
.lease-hero-intro b { font-weight: 700; }
.rating-row { display: flex; align-items: center; gap: 14px; margin-bottom: 1.6rem; }
.rating-row img { width: 178px; height: auto; flex: none; }
.rating-score { font-family: var(--f-head); font-weight: 600; font-size: 1.3rem; color: #4B0E0E; }
@media (max-width: 1024px) { .lease-hero-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .lease-hero-grid { grid-template-columns: 1fr; } .lease-hero-copy { text-align: center; } .rating-row { justify-content: center; } }

/* S2 steps */
.steps-note { color: var(--heading); }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 5vw, 4.7rem); }
.step-item { text-align: center; }
.step-icon-wrap { position: relative; display: inline-block; margin-bottom: 1.1rem; }
.step-icon {
	display: grid; place-items: center; width: 98px; height: 98px;
	background: var(--white); border-radius: 50%; box-shadow: var(--sh-card);
	color: var(--red-text);
}
.step-badge {
	position: absolute; top: -4px; right: -12px; z-index: 1;
	display: grid; place-items: center; width: 42px; height: 42px;
	background: var(--red-band); color: var(--white); border-radius: 50%;
	font-family: var(--f-head); font-weight: 600; font-size: 1rem;
}
.step-item h4 { margin: .4em 0 .4em; }
.step-item p { font-size: 1rem; line-height: 1.625; }
@media (max-width: 767px) { .steps-row { grid-template-columns: 1fr; } }

/* shared alternating split (57.8/42.2) */
.split { display: grid; grid-template-columns: 42.2fr 57.8fr; gap: 30px; align-items: center; }
.split--rev { grid-template-columns: 57.8fr 42.2fr; }
.split-media img { width: 100%; height: auto; border-radius: 8px; display: block; }
.split-copy h2 { margin-bottom: .6em; }
.split-copy p { font-size: 1rem; line-height: 1.5; }
.split-copy .btn { margin-top: 1.2rem; }
@media (max-width: 767px) {
	.split, .split--rev { grid-template-columns: 1fr; }
	.split--rev .split-copy { order: 2; }
	.split--rev .split-media { order: 1; }
	.split-copy { padding-top: 10px; text-align: center; }
}

/* S5 reviews */
.reviews-sect .lc_reviews_widget { margin-top: 1.6rem; }

/* S8 brands */
.brands-sect { padding: clamp(2.5rem, 5vw, 4.4rem) 0; }
.sec-line-wrap { display: flex; align-items: center; gap: 22px; justify-content: center; margin-bottom: 2rem; }
.sec-line-wrap::before, .sec-line-wrap::after { content: ""; flex: 1; max-width: 220px; height: 1px; background: var(--gray-light); }
.sec-title2 { margin: 0; }
.brands-static { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: center; justify-items: center; }
.brands-static img { max-width: 200px; width: 60%; height: auto; }
@media (max-width: 767px) { .brands-static { grid-template-columns: 1fr; } }

/* S10 product cards */
.quote-cards-note { max-width: 74ch; margin-inline: auto; }
.pcard-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 2.2rem; align-items: start; }
.pcard {
	background: var(--white); border: 1px solid rgba(2, 1, 1, .18); border-radius: 8px;
	box-shadow: 0 8px 10px rgba(0, 0, 0, .08); text-align: center;
	display: flex; flex-direction: column; align-items: center; padding-top: 20px; height: 100%;
}
.pcard-row .pcard:nth-child(n+2) { margin-top: 20px; }
.pcard img { height: auto; max-width: 80%; }
.pcard-body { padding: 24px; width: 100%; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.pcard-body h5 { font-weight: 500; font-size: 1.375rem; margin: 0; letter-spacing: .04em; }
.pcard-body p { margin: 0 0 1rem; }
.pcard-btn { width: 100%; margin-top: auto; }
@media (max-width: 1024px) { .pcard-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pcard-row { grid-template-columns: 1fr; } .pcard-row .pcard:nth-child(n+2) { margin-top: 0; } }

/* S11 FAQ (plain variant: white closed headers, gray borders) */
.faq-sect { padding-top: clamp(4rem, 8vw, 7.5rem); }
.faq-head { margin-bottom: 2rem; }
.faq-cols { display: grid; grid-template-columns: 53fr 47fr; gap: clamp(1.5rem, 4vw, 5rem); align-items: start; }
.faq-img img { width: 100%; height: auto; border-radius: 8px; }
.faq--plain details { border-color: var(--gray-light); }
.faq--plain summary { background: var(--white); color: var(--heading); }
.faq--plain details[open] summary { background: var(--red-band); color: var(--white); }
@media (max-width: 1024px) { .faq-cols { grid-template-columns: 1fr; } }

/* ============================================================
   15. INTERIOR PAGES (built from clone-specs, per-page prefixes)
   ============================================================ */

/* ---- managed-services ---- */
/* ============================================================
   15. MANAGED SERVICES PAGE (clone-specs/managed-services.md, prefix mps-)
   ============================================================ */
/* live container widths: legacy inner sections 1250px, S4 boxed child 1220px (default .wrap = 1140px) */
.mps-wrap-lg { max-width: 1250px; }
.mps-wrap-md { max-width: 1220px; }

/* S1 hero — photo bg + flat red overlay at .31, content 58% / empty 42% spacer column */
.mps-hero {
	position: relative; isolation: isolate;
	background: url("../../uploads/2025/06/hero-slide-3-2.jpg") center / cover no-repeat;
	padding: clamp(3.75rem, 9vw, 6.875rem) 0 clamp(3.75rem, 11.5vw, 8.75rem);
}
.mps-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--red); opacity: .31; }
.mps-hero-grid { display: grid; grid-template-columns: 58fr 42fr; gap: 45px; align-items: center; }
.mps-hero h6 { color: var(--red); }
.mps-hero h1 { font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.34; font-weight: 700; text-transform: capitalize; color: var(--white); margin-bottom: .4em; }
.mps-hero p { font-size: clamp(1.125rem, 1.5vw, 1.25rem); font-weight: 300; line-height: 1.6; color: var(--white); margin: 0; }
@media (max-width: 767px) {
	.mps-hero-grid { grid-template-columns: 1fr; }
	.mps-hero h1 { line-height: 1.7; }
}

/* S3 print solutions — dot-pattern bg under #EFF1F5 wash at .5 */
.mps-solutions {
	padding: clamp(2.5rem, 6vw, 5.625rem) 0;
	background: linear-gradient(rgba(239, 241, 245, .5), rgba(239, 241, 245, .5)), url("../../uploads/2025/06/about-bg-5-1.jpg") center / cover no-repeat;
}

/* S4 insights — dark navy texture bg; band text renders white (live look with bg loaded) */
.mps-insights {
	padding: clamp(3.125rem, 8vw, 7.5rem) 0 clamp(3.125rem, 6vw, 5.625rem);
	background: var(--navy) url("../../uploads/2025/06/faq-bg-1-1.jpg") center / cover no-repeat;
}
.mps-insights .band-head h2 { color: var(--white); }
.mps-insights .band-head-r p { color: var(--gray-light); }

/* S3/S4 hover-border cards — muted-red border #C74A56 at 61 hex alpha, solid on hover */
.mps-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mps-card { border: 2px solid rgba(199, 74, 86, .38); border-radius: var(--r-card); padding: 30px; transition: border-color .3s; }
.mps-card:hover { border-color: var(--red-muted); }
.mps-card img { display: block; width: 100%; height: auto; border-radius: 9px; }
.mps-card h4 { margin: 30px 0 15px; }
.mps-card p { color: var(--heading); margin: 0; }
.mps-card--white { background: var(--white); border-radius: 10px; padding: 15px; }
.mps-card--white .mps-card-body { padding: 0 15px 15px; }
.mps-card--white h4 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.17; margin: 20px 0 10px; }
.mps-card--white p { font-size: 1rem; line-height: 1.625; }
@media (max-width: 1024px) { .mps-card { padding: 25px; } }
@media (max-width: 767px) {
	.mps-cards { grid-template-columns: 1fr; }
	.mps-card { padding: 20px; }
}

/* S6 CTA banner — photo bg + red overlay at .79, centered text left / button right */
.mps-cta {
	position: relative; isolation: isolate;
	background: url("../../uploads/2025/06/it-engineer-working.webp") center / cover no-repeat;
	padding: clamp(5rem, 8vw, 7.5rem) 0;
}
.mps-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--red-band); opacity: .79; }
.mps-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.mps-cta-copy { text-align: center; }
.mps-cta-sub { color: var(--white); margin-bottom: .4em; }
.mps-cta-copy h2 { font-size: clamp(1.875rem, 4.2vw, 3.75rem); line-height: 1.17; font-weight: 700; text-transform: uppercase; color: var(--white); margin: 0; }
.mps-cta-btn { text-align: right; }
@media (max-width: 1024px) {
	.mps-cta-grid { grid-template-columns: 1fr; }
	.mps-cta-btn { text-align: center; }
}

/* ---- it-services ---- */
/* ============================================================
   15. IT SERVICES PAGE (clone-specs/it-services.md) — prefix its-
   ============================================================ */
/* S1 hero — photo bg + dark-to-red gradient wash @ .31 */
.its-hero { position: relative; isolation: isolate; background: url("../../uploads/2025/06/officer_using_tablet_screen.webp") center / cover no-repeat; padding: clamp(3.75rem, 6.4vw, 6.125rem) 0 clamp(3.75rem, 5.2vw, 5rem); }
.its-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, var(--red) 100%); opacity: .31; }
.its-hero-copy { max-width: 58%; }
.its-hero h6 { color: var(--white); margin-bottom: .7em; }
.its-hero h1 { color: var(--white); text-transform: capitalize; font-size: clamp(2.25rem, 4.6vw, 4rem); line-height: 1.34; margin-bottom: .35em; }
.its-hero p { color: var(--white); font-size: clamp(1.125rem, 1.6vw, 1.25rem); line-height: 1.6; }
@media (max-width: 1024px) { .its-hero-copy { max-width: 100%; } }

/* section padding variants (live: 120 top / 90–120 bottom, 80 on tablet) */
.its-sect { padding: clamp(3.5rem, 7.8vw, 7.5rem) 0; }
.its-sect--tail { padding-bottom: clamp(2.75rem, 5.9vw, 5.625rem); }
.its-note { color: var(--heading); }

/* S3 counters band — dark geometric bg + red overlay @ .29 */
.its-stats { position: relative; isolation: isolate; padding: var(--sect-md) 0; background: url("../../uploads/2025/06/image.png") center / cover no-repeat; }
.its-stats::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--red); opacity: .29; }
.its-stats .stats-band { border-radius: var(--r-sm); }
.its-stats .stat img { width: 45px; }

/* S4 + S7 wave background */
.its-wave { background: url("../../uploads/2025/06/sr-bg-1-1.png") center / cover no-repeat; }

/* outlined service card (S4 ×6, S6 ×4) — muted-red border, gray icon chip */
.its-card { border: 2px solid rgba(199, 74, 86, .38); border-radius: var(--r-card); padding: 30px; transition: border-color .3s; }
.its-card:hover { border-color: var(--red-muted); }
.its-card h4 { margin: 30px 0 15px; }
.its-card p { color: var(--heading); margin: 0; }
.its-chip { display: grid; place-items: center; width: 82px; height: 82px; border-radius: 50%; background: rgba(239, 239, 239, .67); color: var(--red); }
@media (max-width: 1024px) { .its-card { padding: 25px 20px; } }
@media (max-width: 767px) { .its-card { text-align: center; } .its-chip { margin-inline: auto; } }

/* S5/S9/S11 CTA bands — engineer photo + red overlay @ .79, ghost button */
.its-cta { position: relative; isolation: isolate; padding: clamp(3.5rem, 7.8vw, 7.5rem) 0; }
.its-cta::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("../../uploads/2025/06/it-engineer-working.webp") center / cover no-repeat; }
.its-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--red-band); opacity: .79; }
.its-cta h2, .its-cta p { color: var(--white); }
.its-cta-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 20px; }
.its-cta-grid h2 { margin: 0; }
.its-cta-grid p { margin: 0 0 .4em; }
.its-cta-btn { text-align: right; }
.its-cta--center .wrap { text-align: center; }
.its-cta--center p { margin: 0 0 .6em; }
.its-cta--center .btn { margin-top: 1.5rem; }
.its-cta-note { font-size: 1.25rem; }
@media (max-width: 767px) { .its-cta-grid { grid-template-columns: 1fr; text-align: center; } .its-cta-btn { text-align: center; } }

/* S6 backup & disaster recovery — light bg + promo box */
.its-dr { background: #F5F7FA url("../../uploads/2025/06/Work-Process.jpg") center / cover no-repeat; }
.its-dr-row { display: grid; grid-template-columns: 28fr 36fr 36fr; gap: 30px; }
.its-dr-col { display: grid; gap: 30px; align-content: start; }
.its-promo { position: relative; isolation: isolate; overflow: hidden; border-radius: 5px; padding: 30px 15px; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; text-align: center; gap: 10px; }
.its-promo::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("../../uploads/2025/06/professional-businessman.webp") center / cover no-repeat; }
.its-promo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: #000000; opacity: .57; }
.its-promo h2 { color: var(--white); margin: 0; }
@media (max-width: 1024px) { .its-dr-row { grid-template-columns: 1fr 1fr; } .its-promo { grid-column: 1 / -1; min-height: 320px; } }
@media (max-width: 767px) { .its-dr-row { grid-template-columns: 1fr; } }

/* S7 benefits — photo left / 3×2 icon-box grid right */
.its-benefits { padding: clamp(3rem, 5.9vw, 5.625rem) 0; }
.its-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.its-benefits-media img { width: 100%; height: auto; border-radius: 10px; display: block; }
.its-bene-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-top: 1.4rem; }
.its-bene-icon { display: inline-block; color: var(--red); margin-bottom: 12px; }
.its-bene h3 { font-size: 1.375rem; margin: 0 0 .4em; }
.its-bene p { font-size: 1rem; line-height: 1.5; color: #575757; margin: 0; }
@media (max-width: 1024px) { .its-benefits-grid { grid-template-columns: 1fr; } }
@media (max-width: 767px) { .its-bene-grid { grid-template-columns: 1fr; } .its-benefits-copy { text-align: center; } .its-bene { text-align: left; } }

/* S8 cloud checklist */
.its-checks { list-style: none; margin: 0 0 1.2em; }
.its-checks li { display: flex; align-items: center; gap: .55em; padding-block: 2.5px; font-size: 1rem; }
.its-checks svg { flex: none; color: var(--red); }
@media (max-width: 767px) { .its-checks li { justify-content: center; } }

/* ---- about ---- */
/* ============================================================
   ABOUT PAGE (clone-specs/about.md) — prefix: abt-
   ============================================================ */
/* S1 hero — red band (via .on-red), office photo overlay at 10% */
.abt-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; min-height: 200px; padding: 80px 0 100px; }
.abt-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("../../uploads/2025/06/pexels-photo-3184292-scaled.jpeg") center / cover no-repeat; opacity: .1; }
.abt-hero .wrap { width: 100%; }
.abt-hero h1 { margin: 0 0 20px; }
.abt-crumb { color: rgba(255, 255, 255, .95); font-size: 1.125rem; margin: 0; }
.abt-crumb a:hover { text-decoration: underline; }
@media (max-width: 1024px) { .abt-hero { padding: 40px 0; } }
@media (max-width: 767px) { .abt-crumb { font-size: 1rem; } }

/* S2 floating counters card — half over hero, half over S3 texture */
.abt-stats { position: relative; z-index: 1; margin-top: -50px; }
@media (max-width: 1024px) { .abt-stats { margin-top: -85px; } }
@media (max-width: 767px) { .abt-stats { margin-top: 0; padding: 40px 0; } }

/* S3 about intro — halftone-dot texture slides up under the counters card */
.abt-intro { background: url("../../uploads/2025/06/about-bg-5-1.jpg"); margin-top: -185px; padding: 254px 0 110px; }
.abt-cols { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.abt-intro-media { padding-right: 25px; }
.abt-intro-copy { padding-left: 25px; }
.abt-frame { border: 8px solid var(--white); border-radius: var(--r-card); box-shadow: var(--sh-btn); }
.abt-photo { display: block; width: 75%; margin-inline: auto; }
.abt-badge-bbb { display: block; width: 50%; margin: -110px 0 0 auto; }
.abt-badge-sm { display: block; width: 34%; height: 164px; object-fit: cover; margin: -230px auto 0 0; }
.abt-intro-copy h2 { margin: 0 0 10px; }
.abt-intro-text { margin-bottom: 19px; }
.abt-checks { list-style: none; display: grid; gap: 5px; }
.abt-checks li { display: flex; align-items: center; gap: 10px; }
.abt-checks svg { flex: none; color: var(--body); }
@media (max-width: 1024px) {
	.abt-intro { margin-top: 0; padding: 80px 0; }
	.abt-photo { width: 90%; }
	.abt-badge-bbb { width: 75%; margin-top: -80px; }
	.abt-badge-sm { width: 75%; margin-top: -80px; }
}
@media (max-width: 767px) {
	.abt-cols { grid-template-columns: 1fr; }
	.abt-intro { padding: 50px 0; }
	.abt-intro-media { padding-right: 0; }
	.abt-intro-copy { padding: 25px 0 0; }
}

/* S4/S6 community + chamber — dot texture under 50% white overlay, outlined cards */
.abt-dots { background: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5)), url("../../uploads/2025/06/about-bg-5-1.jpg"); padding: 90px 0; }
.abt-note { color: var(--heading); }
.abt-cards { row-gap: 20px; }
.abt-card { border: 2px solid rgba(199, 74, 86, .38); border-radius: var(--r-card); padding: 30px; transition: border-color .3s; }
.abt-card:hover, .abt-card:focus-within { border-color: var(--red-muted); }
.abt-card--ghost, .abt-card--ghost:hover { border-color: transparent; }
.abt-card-logo { display: inline-block; }
.abt-card img { width: auto; }
.abt-card h4 { margin: 30px 0 15px; }
.abt-card h4 a { color: var(--heading); }
.abt-card h4 a:hover { color: var(--red-text); }
.abt-card p { color: var(--heading); margin: 0; }
@media (max-width: 767px) { .abt-dots { padding: 40px 0; } }

/* S5 technology partners — dark band, floating linked info boxes */
.abt-dark { background: #111827; padding: 100px 0; }
.abt-dark h2 { color: var(--white); }
.abt-dark .eyebrow { color: var(--red); }
.abt-dark .band-head-r p { color: #D1D5DB; }
.abt-partners { gap: 30px; }
.abt-partner { display: flex; align-items: flex-start; gap: 20px; background: #1F2937; border: 1px solid #374151; padding: 35px 25px 35px 20px; transition: background .3s, transform .3s; }
.abt-partner:hover { background: #374151; transform: translateY(-8px); }
.abt-partner-icon { flex: none; color: var(--white); transition: color .3s; }
.abt-partner-body { flex: 1; }
.abt-partner h3 { color: var(--white); margin: 0 0 10px; transition: color .3s; }
.abt-partner p { color: var(--white); font-size: 1rem; margin: 0; }
.abt-partner:hover h3, .abt-partner:hover .abt-partner-icon { color: var(--red); }
@media (max-width: 767px) { .abt-dark { padding: 80px 0; } }

/* S7 sponsorships — Peach Little League */
.abt-sponsor { padding: 80px 0; }
.abt-sponsor-media { text-align: right; padding-left: 25px; }
.abt-sponsor-media img { width: 481px; max-width: 100%; height: auto; border-radius: 9px; }
@media (max-width: 767px) {
	.abt-sponsor { padding: 50px 0; }
	.abt-sponsor-media { padding: 25px 0 0; }
}

/* S8 spacer strip (empty section on live) */
.abt-gap { height: 20px; }

/* S9 CTA — red band (via .on-red), desk photo overlay at 20% */
.abt-cta { position: relative; isolation: isolate; overflow: hidden; padding: 111px 0; }
.abt-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("../../uploads/2025/06/photo-1454165804606-c3d57bc86b40-1.avif") center / cover no-repeat; opacity: .2; }
.abt-cta h2 { margin: 15px 0 10px; }
.abt-cta-copy { max-width: 62ch; margin: 10px auto 25px; }
.abt-cta-btns { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.abt-cta-l { border-right: 3px solid var(--white); padding-right: 30px; text-align: right; }
.abt-cta-r { padding-left: 24px; text-align: left; }
@media (max-width: 767px) {
	.abt-cta { padding: 50px 0 160px; }
	.abt-cta-btns { grid-template-columns: 1fr; gap: 1.2rem; }
	.abt-cta-l { border-right: 0; padding: 0; text-align: center; }
	.abt-cta-r { padding: 0; text-align: center; }
}

/* ---- contact-us ---- */
/* ============================================================
   CONTACT PAGE (clone-specs/contact-us.md) — prefix ctc-
   ============================================================ */
/* S1 hero — flat red (no shape img), pexels overlay @ .1, left-aligned */
.ctc-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; background: var(--red-band); padding: 80px 0; }
.ctc-hero-overlay { position: absolute; inset: 0; z-index: -1; background: url("../../uploads/2025/06/pexels-photo-3184292-scaled.jpeg") center / cover no-repeat; opacity: .1; }
.ctc-hero .wrap { width: 100%; }
.ctc-hero h1 { color: var(--white); margin: 0 0 20px; }
.ctc-crumbs { color: rgba(255, 255, 255, .95); font-size: 1.125rem; margin: 0; }
.ctc-crumbs a { color: var(--white); }
.ctc-crumbs a:hover { color: var(--white); opacity: .85; }
@media (max-width: 1024px) { .ctc-hero { padding: 0; min-height: 300px; } .ctc-hero h1 { margin-bottom: 10px; } }
@media (max-width: 767px) { .ctc-hero { min-height: 170px; } .ctc-crumbs { font-size: 1rem; } }

/* S2 intro */
.ctc-intro { padding: 60px 0 40px; }
.ctc-intro-title { padding: 0 300px; margin: 0; }
@media (max-width: 1024px) { .ctc-intro { padding: 80px 0; } .ctc-intro-title { padding: 0 150px; } }
@media (max-width: 767px) { .ctc-intro { padding: 40px 0 0; } .ctc-intro-title { padding: 0; } }

/* S3 office card section (card itself = existing .office-card/.office-grid) */
@media (max-width: 1024px) { .ctc-card-sect { padding-bottom: 80px; } }
@media (max-width: 767px) { .ctc-card-sect { padding: 40px 0; } }

/* stacked icon + text contact rows (phone / address / services lines) */
.ctc-row { display: flex; align-items: center; gap: 15px; padding: 2px; }
.ctc-row--top { align-items: flex-start; }
.ctc-row img { width: 45px; height: 45px; flex: none; }
.ctc-row p { margin: 0; }
@media (max-width: 767px) { .ctc-row { flex-direction: column; align-items: center; text-align: center; } }

/* Atlanta divider: hairline above only (Columbus block reuses .office-loc--bordered) */
.ctc-loc-top { border-top: 1px solid rgba(0, 0, 0, .12); }

/* S4 map cards */
.ctc-maps-sect { margin: 80px 0 34px; }
.ctc-map-card { background: var(--white); border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, .09); overflow: hidden; }
.ctc-map-head { background: linear-gradient(180deg, var(--red-band) 0%, #F2295B 100%); padding: 20px; }
.ctc-map-head h2 { color: var(--white); font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1; margin: 0; }
.ctc-map-head p { color: var(--white); margin: 0; }
.ctc-map-frame { margin-top: -2px; padding: 20px; }
.ctc-map-frame iframe { display: block; width: 100%; height: 450px; border: 0; }
@media (max-width: 1024px) { .ctc-maps-sect { margin: 0; padding-bottom: 80px; } }
@media (max-width: 767px) { .ctc-maps-sect { padding: 40px 0; } .ctc-map-head { padding: 11px 10px; } .ctc-map-frame { padding: 17px; } .ctc-map-frame iframe { height: 320px; } }

/* ---- request-service ---- */
/* ============================================================
   REQUEST SERVICE PAGE (clone-specs/request-service.md, prefix rqs-)
   ============================================================ */
/* S1 page-title hero — solid red band (bg via .on-red), team photo ghosted at .1, left-aligned H1 + breadcrumb.
   Bottom padding 59px = live 80px + the breadcrumb widget's -21px margin, folded in. */
.rqs-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; padding: 80px 0 59px; }
.rqs-hero-overlay { position: absolute; inset: 0; z-index: -1; background: url("../../uploads/2025/06/pexels-photo-3184292-scaled.jpeg") center / cover no-repeat; opacity: .1; }
.rqs-hero .wrap { width: 100%; }
.rqs-hero h1 { margin: 0 0 20px; }
.rqs-crumb { margin: 0; font-size: 1.125rem; color: rgba(255, 255, 255, .95); }
.rqs-crumb a { color: var(--white); }
.rqs-crumb a:hover { color: var(--white); opacity: .85; }
@media (max-width: 1024px) { .rqs-hero { padding: 0; min-height: 300px; } .rqs-hero h1 { margin-bottom: 0; } }
@media (max-width: 767px) { .rqs-hero { min-height: 170px; } .rqs-crumb { font-size: 1rem; } }

/* S2 native service form (replaces the live GHL iframe; live spacing: 32px container + 58px main gap) */
.rqs-form-sect { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5.625rem); }

/* ---- request-supplies ---- */
/* ============================================================
   REQUEST SUPPLIES PAGE (clone-specs/request-supplies.md)
   ============================================================ */
/* S1 page-title banner — solid red (via .on-red) + 10% photo overlay, left-aligned.
   Desktop height is padding-driven (80px top; bottom 59px = live 80px padding
   + the breadcrumb's -21px margin, folded in). Tablet/mobile are min-height-driven
   with content vertically centered, per the live breakpoints. */
.rqp-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; padding: 80px 0 59px; }
.rqp-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("../../uploads/2025/06/photo-1454165804606-c3d57bc86b40.avif") center / cover no-repeat; opacity: .1; }
.rqp-hero .wrap { width: 100%; }
.rqp-hero h1 { margin: 0 0 20px; }
.rqp-hero .rqp-crumb { margin: 0; font-size: 1.125rem; color: rgba(255, 255, 255, .95); }
.rqp-hero .rqp-crumb a { color: var(--white); }
.rqp-hero .rqp-crumb a:hover { color: var(--white); text-decoration: underline; }
@media (max-width: 1024px) {
	.rqp-hero { min-height: 300px; padding: 0; }
	.rqp-hero h1 { margin-bottom: 0; }
}
@media (max-width: 767px) {
	.rqp-hero { min-height: 170px; }
	.rqp-hero .rqp-crumb { font-size: 1rem; }
}

/* S2 supplies form — native replacement for the GHL iframe; 32px bottom gap like live */
.rqp-form-sect { padding: clamp(2rem, 4.5vw, 3.25rem) 0 32px; }
.rqp-form-wrap { max-width: 860px; margin-inline: auto; }

/* ---- meter-reads ---- */
/* ============================================================
   METER READS PAGE (clone-specs/meter-reads.md)
   ============================================================ */
/* S1 hero — boxed-content red banner, /about-style: solid red + office photo at 10% */
.mtr-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; background: var(--red-band); padding: 80px 0 59px; }
.mtr-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("../../uploads/2025/06/pexels-photo-3184292-scaled.jpeg") center / cover no-repeat; opacity: .1; }
.mtr-hero .wrap { width: 100%; }
.mtr-hero h1 { color: var(--white); margin: 0 0 20px; }
.mtr-crumb { color: rgba(255, 255, 255, .95); font-size: 1.125rem; margin: 0; }
.mtr-crumb a { color: var(--white); }
.mtr-crumb a:hover { color: var(--white); opacity: .85; }
@media (max-width: 1024px) { .mtr-hero { padding: 0; min-height: 300px; } .mtr-hero h1 { margin-bottom: 0; } }
@media (max-width: 767px) { .mtr-hero { min-height: 170px; } .mtr-crumb { font-size: 1rem; } }

/* S2 form section — white, boxed, native form replaces the live GHL iframe */
.mtr-form-sect { padding: 32px 0; }

/* ---- services ---- */
/* ============================================================
   SERVICES HUB (page-services.php — clone-specs/services.md)
   Live page was unedited theme demo content; rebuilt as a real
   services hub reusing verbatim homepage copy. Owner to review.
   Card hover border echoes the live demo cards (2px --red-muted).
   ============================================================ */
.svs-intro { max-width: 62ch; margin: 12px 0 0; }
.svs-cards { gap: 30px; }
.svs-card { display: flex; flex-direction: column; align-items: flex-start; border: 2px solid transparent; transition: border-color .3s; }
.svs-card:hover { border-color: var(--red-muted); }
.svs-icon { display: grid; place-items: center; flex: none; width: 84px; height: 84px; border-radius: 50%; background: var(--pink); color: var(--red-text); margin-bottom: 1.2rem; }
.svs-title { font-size: clamp(1.375rem, 2vw, 1.75rem); line-height: 1.1; margin: 0 0 .55em; }
.svs-title a { color: var(--heading); }
.svs-title a:hover { color: var(--red-text); }
.svs-card p { margin: 0 0 1.2em; }
.svs-card .link-more { margin-top: auto; }
@media (max-width: 767px) {
	.svs-card { align-items: center; text-align: center; }
	.svs-icon { width: 68px; height: 68px; }
}

/* ---- blog ---- */
/* ============================================================
   BLOG INDEX (home.php — clone-specs/blog.md) — prefix blg-
   Hero texture = self-hosted Pexels office photo @ .1 over red
   (same file the contact hero uses). Content grid overlaps the
   hero band by 50px (live look, -30px mobile). Sidebar links
   styled red directly per the spec's kit-bleed rebuild note.
   ============================================================ */
/* S2 hero — flat red band (no shape img), photo texture, extra bottom pad for overlap */
.blg-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(3.75rem, 6vw, 5rem) 0 clamp(5rem, 8vw, 6.25rem); }
.blg-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("../../uploads/2025/06/pexels-photo-3184292-scaled.jpeg") center / cover no-repeat; opacity: .1; }
.blg-hero h1 { margin: 0; font-size: clamp(2rem, 3.9vw, 3.5rem); line-height: 1.2; }

/* S3/S4 layout — content column 2fr + sidebar 1fr, pulled up over the hero */
.blg-body { position: relative; z-index: 3; margin-top: -50px; padding-bottom: var(--sect-md); }
.blg-cols { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.blg-cols > * { min-width: 0; }
.blg-main .blg-grid { gap: 30px; }
.blg-main .blog-card { background: var(--white); border: 0; box-shadow: 0 5px 20px rgba(0, 0, 0, .08); transition: transform .3s ease, box-shadow .3s ease; }
.blg-main .blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, .15); }

/* S4 sidebar widgets — white cards, red header band */
.blg-side { display: flex; flex-direction: column; gap: 30px; }
.blg-widget { background: var(--white); border-radius: var(--r-sm); box-shadow: 0 5px 20px rgba(0, 0, 0, .08); overflow: hidden; }
.blg-widget-head { background: var(--red-band); color: var(--white); font-size: clamp(1.375rem, 1.8vw, 1.5625rem); line-height: 1.2; margin: 0; padding: 18px 25px; }
.blg-widget-body { padding: 25px; }

/* search */
.blg-search { display: flex; gap: 10px; }
.blg-search input { flex: 1; min-width: 0; font: inherit; font-size: 1rem; color: var(--heading); background: var(--white); padding: 12px 15px; border: 2px solid #E9ECEF; border-radius: 8px; transition: border-color .3s; }
.blg-search input:focus { outline: none; border-color: var(--red); }
.blg-search-btn { flex: none; font-family: var(--f-body); font-size: 1rem; font-weight: 700; color: var(--white); background: var(--red-band); border: 0; border-radius: 8px; padding: 12px 20px; cursor: pointer; transition: background .3s; }
.blg-search-btn:hover { background: var(--maroon); }

/* categories */
.blg-cats { list-style: none; }
.blg-cats li { padding: 12px 0; border-bottom: 1px solid #F0F0F0; }
.blg-cats li:first-child { padding-top: 0; }
.blg-cats li:last-child { padding-bottom: 0; border-bottom: 0; }
.blg-cats a { color: var(--red-text); font-size: 1rem; }
.blg-cats a:hover { color: var(--maroon); }

/* recent posts */
.blg-recent { list-style: none; }
.blg-recent li { padding: 15px 0; border-bottom: 1px solid #F0F0F0; }
.blg-recent li:first-child { padding-top: 0; }
.blg-recent li:last-child { padding-bottom: 0; border-bottom: 0; }
.blg-recent a { display: flex; align-items: flex-start; gap: 15px; }
.blg-recent img, .blg-r-blank { flex: none; width: 80px; height: 60px; object-fit: cover; border-radius: 8px; background: #E9ECEF; }
.blg-r-blank { display: grid; place-items: center; color: var(--gray-light); }
.blg-r-meta { flex: 1; min-width: 0; }
.blg-recent .blg-r-title { display: block; font-size: 1rem; line-height: 1.5; text-transform: capitalize; color: var(--red-text); transition: color .3s; }
.blg-recent a:hover .blg-r-title { color: var(--maroon); }
.blg-recent time { display: block; font-size: .85rem; line-height: 1.4; color: #999999; margin-top: .2em; }

/* quote CTA (replaces the live GHL survey iframe) */
.blg-cta p { font-size: 1rem; }
.blg-cta .btn { width: 100%; margin: .4rem 0 1rem; }
.blg-phone { display: inline-flex; align-items: center; gap: .45em; font-weight: 700; }

@media (max-width: 1024px) { .blg-cols { gap: 30px; } }
@media (max-width: 767px) {
	.blg-body { margin-top: -30px; }
	.blg-cols { grid-template-columns: 1fr; gap: 30px; }
	.blg-search { flex-direction: column; }
}

/* ============================================================
   16. SINGLE POST SIDEBAR + COMPACT SIDEBAR QUOTE FORM
   ============================================================ */
.sgl-cols { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; align-items: start; }
.sgl-main { min-width: 0; }
@media (max-width: 1024px) {
	.sgl-cols { grid-template-columns: 1fr; }
	.sgl-cols .blg-side { display: none; }
}

/* Quote form squeezed into the 360px sidebar: single column, tighter chrome */
.blg-quote .form-shell { padding: 1.2rem 1.1rem 1.4rem; }
.blg-quote .form-head { padding-bottom: .8rem; margin-bottom: 1rem; }
.blg-quote .form-head h2, .blg-quote .form-head h3 { font-size: 1.15rem; }
.blg-quote .fsteps-nav i { width: 26px; }
.blg-quote .fgrid { grid-template-columns: 1fr; gap: .85rem; }
.blg-quote .f-choices { grid-template-columns: 1fr; }
.blg-quote .f-choice span { min-height: 2.6em; }
.blg-quote .f-field input, .blg-quote .f-field select { padding: .6rem .8rem; }
.blg-quote .f-foot { margin-top: 1.1rem; gap: .7rem; }
.blg-quote .f-foot .f-note { display: none; }
.blg-quote .btn { font-size: .95rem; padding: 12px 20px; }
