/*
 * Advanced Electric Signs – Homepage
 * Built from screenshot reference – no dependency on theme/child/header-layout
 */

/* Homepage palette: black, white, red only */
:root {
	--black: #000;
	--white: #fff;
	--red: #b31b1b;
	--red-hover: #8b0000;
	--accent: #b31b1b;
	--accent-hover: #8b0000;
	--text: #000;
	--text-muted: #000;
	--border: rgba(0, 0, 0, 0.12);
	--bg-alt: #fff;
	--dark-teal: #000;
	--dark-teal-darker: #000;
	--light-beige: #fff;
	--cta-warm: #b31b1b;
	--cta-warm-hover: #8b0000;
	--font-hero: 'Archivo', sans-serif;
	--font-script: 'Yellowtail', cursive;
}

* {
	box-sizing: border-box;
}

/* Prevent horizontal scroll from full-width / 100vw elements */
html,
body {
	overflow-x: hidden;
}

/* Responsive images: prevent overflow and preserve aspect ratio */
img {
	max-width: 100%;
	height: auto;
}

/* Text selection: red highlight, white text */
::selection {
	background: var(--accent);
	color: var(--white);
}
::-moz-selection {
	background: var(--accent);
	color: var(--white);
}

/* Base typography for all pages using this stylesheet (home + inner pages) – Archivo only, no serif */
body {
	margin: 0;
	padding: 0;
	font-family: var(--font-hero);
	font-size: clamp(16px, 1vw + 14px, 19px);
	line-height: 1.6;
	color: var(--text);
}
main,
.main-content {
	color: var(--accent);
}
body.home {
	/* Home-specific overrides (e.g. header over hero) only */
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
	padding: 0.5em 1em;
	background: var(--black);
	color: var(--white);
	text-decoration: none;
}
.skip-link:focus {
	left: 0;
	top: 0;
}
.skip-link:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
	z-index: 100000;
}

/* In-page links: underlined for usability (exclude top nav and button-style links) */
a[href] {
	text-decoration: underline;
	transition: color 0.2s ease;
}
a[href]:hover,
a[href]:focus-visible {
	color: var(--accent);
}
/* Links that are buttons/CTAs: never underlined (now or in future) */
.site-header a,
a.service-secondary-nav-link,
a.hero-cta,
a.page-lead-cta,
a.page-lead-call,
a.page-cta-btn,
a.page-cta-phone,
a.page-cta-band-btn,
a.page-cta-band-arrow,
a.btn,
a.reviews-spot-cta,
a.header-cta-btn,
a.header-phone,
a.scroll-to-top,
a.footer-credit-link,
a.top-service-link,
a.svc-carousel-cta,
a.faq-cta-btn,
a.projects-masonry-cta-phone,
a.projects-masonry-cta-btn,
a.footer-quote-btn,
a[class*="btn"],
a[role="button"],
a.about-work-card,
a.about-work-card *,
a.btn-about-work {
	text-decoration: none;
}
a[class*="btn"]:hover,
a[class*="btn"]:focus-visible,
a[role="button"]:hover,
a[role="button"]:focus-visible,
a.about-work-card:hover,
a.about-work-card:focus,
a.about-work-card:focus-visible,
a.about-work-card:hover *,
a.about-work-card:focus *,
a.about-work-card:focus-visible *,
a.btn-about-work:hover,
a.btn-about-work:focus-visible {
	text-decoration: none;
}
/* Button text is never underlined */
button,
input[type="submit"],
input[type="button"],
[class*="btn"] {
	text-decoration: none;
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus,
input[type="button"]:hover, input[type="button"]:focus,
[class*="btn"]:hover, [class*="btn"]:focus {
	text-decoration: none;
}

/*
 * Main page content only (not header/footer): prose links red + underlined;
 * hover/focus removes underline. Card/tile/CTA links excluded via :not().
 */
.main-content a[href]:not(.hero-cta):not(.page-lead-cta):not(.page-lead-call):not(.page-cta-btn):not(.page-cta-phone):not(.page-cta-band-btn):not(.page-cta-band-arrow):not(.btn):not(.reviews-spot-cta):not(.faq-cta-btn):not(.projects-masonry-cta-phone):not(.projects-masonry-cta-btn):not(.top-service-link):not(.service-card-link):not(.projects-masonry-item):not(.stats-banner-logo):not(.svc-carousel-link):not(.svc-carousel-cta):not(.about-work-card):not(.btn-about-work):not([class*="btn"]):not([role="button"]) {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	transition: color 0.2s ease;
}
.main-content a[href]:not(.hero-cta):not(.page-lead-cta):not(.page-lead-call):not(.page-cta-btn):not(.page-cta-phone):not(.page-cta-band-btn):not(.page-cta-band-arrow):not(.btn):not(.reviews-spot-cta):not(.faq-cta-btn):not(.projects-masonry-cta-phone):not(.projects-masonry-cta-btn):not(.top-service-link):not(.service-card-link):not(.projects-masonry-item):not(.stats-banner-logo):not(.svc-carousel-link):not(.svc-carousel-cta):not(.about-work-card):not(.btn-about-work):not([class*="btn"]):not([role="button"]):hover,
.main-content a[href]:not(.hero-cta):not(.page-lead-cta):not(.page-lead-call):not(.page-cta-btn):not(.page-cta-phone):not(.page-cta-band-btn):not(.page-cta-band-arrow):not(.btn):not(.reviews-spot-cta):not(.faq-cta-btn):not(.projects-masonry-cta-phone):not(.projects-masonry-cta-btn):not(.top-service-link):not(.service-card-link):not(.projects-masonry-item):not(.stats-banner-logo):not(.svc-carousel-link):not(.svc-carousel-cta):not(.about-work-card):not(.btn-about-work):not([class*="btn"]):not([role="button"]):focus-visible {
	text-decoration: none;
	color: var(--accent-hover);
}

/* ========== HEADER ========== */
.site-header {
	background: var(--white);
	width: 100%;
}

/* Home: header overlays hero, full viewport – no layout space; branded typography */
body.home .site-header--over-hero {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background: linear-gradient(to bottom, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.42) 40%, rgba(0,0,0,0.2) 75%, transparent 100%);
	border: none;
	font-family: var(--font-hero);
}

/* Modern hero header: centered logo, left/right nav, balanced utility */
.site-header--modern .header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	padding: 1.25rem 2rem;
	min-height: 80px;
}
/* Centered header: 3 columns – links left | logo center | buttons right */
.site-header--centered .header-bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	justify-items: stretch;
	gap: 1.5rem 2rem;
	width: 100%;
	padding: 1.25rem 2rem;
	min-height: 80px;
}
.site-header--centered .header-menu-btn {
	display: none;
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	align-self: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: var(--white);
	border-radius: 6px;
	cursor: pointer;
	font-size: 1.1rem;
	align-items: center;
	justify-content: center;
}
.site-header--centered .header-menu-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}
/* Left: nav links, aligned left */
.site-header--centered .nav-left {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
}
.site-header--centered .nav-left .nav-menu {
	justify-content: flex-start;
}
/* Center: logo, truly centered */
.site-header--centered .header-logo {
	grid-column: 2;
	grid-row: 1;
	justify-self: center;
	flex-shrink: 0;
}
.site-header--centered .header-logo a {
	display: block;
}
.site-header--centered .header-logo img {
	display: block;
	max-height: 106px;
	width: auto;
	height: auto;
	min-width: 166px;
	object-fit: contain;
}
.header-tagline {
	display: block;
	text-align: center;
	margin-top: 0.25rem;
	font-family: var(--font-hero);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text, #333);
}
body.home .site-header--over-hero .header-tagline {
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
/* Right: buttons/CTA, aligned right */
.site-header--centered .header-cta {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.25rem;
	flex-wrap: wrap;
}
@media (min-width: 992px) {
	.site-header--centered .header-bar {
		grid-template-columns: 1fr auto 1fr;
	}
}
.site-header--modern .logo {
	flex-shrink: 0;
}
.site-header--modern .site-nav {
	background: transparent;
	border: none;
	width: auto;
}
.site-header--centered .site-nav .nav-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.15rem;
}
.site-header--modern .nav-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
}
.site-header--centered .nav-left .nav-menu {
	justify-content: flex-start;
}
.site-header--modern .nav-menu > li {
	border-left: none;
}
.site-header--modern .nav-menu > li > a {
	padding: 0.6rem 1.1rem;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.site-header--modern .nav-menu > li > a:hover {
	background: transparent;
	color: var(--accent);
	text-decoration: underline;
}
.site-header--modern .nav-menu > li.current > a {
	background: transparent;
	font-weight: 700;
}
.site-header--modern .header-cta {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 1.25rem;
}
.site-header--modern .header-phone {
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	white-space: nowrap;
}
.site-header--modern .header-cta-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: var(--accent);
	color: var(--white);
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.2;
	text-decoration: none;
	border-radius: 6px;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
	border: 2px solid transparent;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.site-header--modern .header-cta-btn:hover {
	background: var(--accent-hover);
	color: var(--white);
	border-color: var(--accent);
}

/* Over-hero: phone = white border box, white text; CTA = black text on white */
body.home .site-header--over-hero .header-phone {
	color: var(--white);
	text-shadow: 0 1px 2px rgba(0,0,0,0.4);
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.35);
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	line-height: 1.2;
}
body.home .site-header--over-hero .header-phone:hover {
	color: var(--white);
	opacity: 0.9;
	border-color: rgba(255, 255, 255, 0.5);
}
body.home .site-header--over-hero .header-phone:focus,
body.home .site-header--over-hero .header-phone:focus-visible {
	border-color: var(--accent);
	outline: none;
}
body.home .site-header--over-hero .header-cta-btn {
	background: var(--accent);
	color: var(--white);
}
body.home .site-header--over-hero .header-cta-btn:hover {
	background: var(--accent-hover);
	color: var(--white);
}
body.home .site-header--over-hero .nav-menu > li > a {
	color: var(--white);
	text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
body.home .site-header--over-hero .nav-menu > li > a:hover {
	color: var(--accent);
	text-decoration: underline;
}
body.home .site-header--over-hero .nav-menu > li.current > a {
	color: var(--white);
}

/* Neon OPEN badge: shown via JS during Mon–Fri 8am–5pm Pacific (shop hours) */
.neon-open-sign {
	display: none;
	flex-shrink: 0;
	line-height: 1;
}
.neon-open-sign.neon-open-sign--on {
	display: block;
}
.neon-open-sign__housing {
	display: inline-block;
	background: linear-gradient(165deg, #2a2a2a 0%, #0f0f0f 45%, #1a1a1a 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 3px;
	padding: 0.2rem 0.55rem 0.1rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		inset 0 -2px 6px rgba(0, 0, 0, 0.5),
		0 2px 10px rgba(0, 0, 0, 0.35);
	vertical-align: middle;
}
.neon-open-sign__tube {
	display: inline-block;
	font-family: 'Yellowtail', 'Brush Script MT', 'Segoe Script', cursive;
	font-size: clamp(1.15rem, 2.5vw, 1.45rem);
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #fff8f8;
	text-shadow:
		0 0 2px #fff,
		0 0 6px #ff8a80,
		0 0 12px #ff5252,
		0 0 22px #e53935,
		0 0 36px #c62828,
		0 0 48px rgba(198, 40, 40, 0.45);
	filter: drop-shadow(0 0 3px rgba(255, 82, 82, 0.9));
	animation: neon-open-pulse 4.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
	.neon-open-sign__tube {
		animation: none;
	}
}
@keyframes neon-open-pulse {
	0%, 100% { opacity: 1; filter: drop-shadow(0 0 3px rgba(255, 82, 82, 0.9)) brightness(1); }
	48% { opacity: 0.98; filter: drop-shadow(0 0 4px rgba(255, 82, 82, 1)) brightness(1.03); }
	52% { opacity: 1; filter: drop-shadow(0 0 2px rgba(255, 82, 82, 0.75)) brightness(0.98); }
}
.site-footer .neon-open-sign--in-footer {
	margin: 0;
	flex-shrink: 0;
}
.footer-phone-open-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 0.65rem 1rem;
	margin: 0 0 0.5rem;
}
.footer-phone-open-row .footer-phone {
	margin: 0;
}
.site-footer .neon-open-sign--in-footer .neon-open-sign__housing {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		inset 0 -2px 6px rgba(0, 0, 0, 0.55),
		0 0 14px rgba(229, 57, 53, 0.25),
		0 2px 12px rgba(0, 0, 0, 0.45);
}
.site-footer .neon-open-sign--in-footer .neon-open-sign__tube {
	font-size: clamp(1.25rem, 3vw, 1.55rem);
}

/* Logo over hero (no filter); centered layout uses .header-logo */
body.home .site-header--over-hero .logo img,
body.home .site-header--over-hero .header-logo img {
	max-height: 106px;
	width: auto;
	height: auto;
	min-width: 166px;
	display: block;
	object-fit: contain;
}

/* Hero area: Inter throughout (overlay + headline) */
.hero-overlay,
.hero-overlay h1,
.hero-overlay h2.hero-slide-title {
	font-family: var(--font-hero);
}

/* Default header (non-home): keep .header-inner layout for other pages if needed */
.header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.logo a {
	display: block;
}
.logo img {
	display: block;
	max-height: 101px;
	width: auto;
}

.header-right {
	flex: 1;
	min-width: 200px;
	text-align: right;
}
.header-tagline-line1 {
	margin: 0 0 4px;
	font-size: 1em;
	font-weight: bold;
	color: var(--accent);
}
.header-tagline-line2 {
	margin: 0;
	font-size: 0.9em;
	color: var(--text);
}

/* Nav (for pages without .site-header--modern) */
.site-nav {
	background: #fff;
	border-top: 1px solid var(--border);
	width: 100%;
}
.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
}
.nav-menu > li {
	position: relative;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.nav-menu > li:first-child {
	border-left: none;
}
.nav-menu > li > a {
	display: block;
	padding: 16px 20px;
	color: #000;
	text-decoration: none;
	font-size: 15px;
	text-align: left;
}
.nav-menu > li > a:hover {
	background: #fff;
	color: #000;
}
.nav-menu > li.current > a {
	background: #fff;
	color: #000;
	font-weight: bold;
}
.nav-menu > li.has-dropdown > a {
	display: flex;
	align-items: center;
	gap: 6px;
}
.nav-menu > li.has-dropdown > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 4px;
	flex-shrink: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.9;
}
/* Invisible bridge so hover isn’t lost between parent link and dropdown */
.nav-menu > li.has-dropdown::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 8px;
	width: 100%;
	pointer-events: none;
}
/* Dropdown panel: simple, high contrast */
.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 0;
	list-style: none;
	margin-left: 0;
	padding: 0.35rem 0;
	min-width: 200px;
	z-index: 100;
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.nav-menu > li:hover .sub-menu,
.nav-menu > li:focus-within .sub-menu {
	display: block;
}
.sub-menu li {
	margin: 0;
}
.sub-menu a {
	display: block;
	padding: 0.6rem 1rem 0.6rem 1.25rem;
	color: #fff;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
}
.sub-menu a:hover,
.sub-menu a:focus {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	outline: none;
}
.sub-menu a:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.6);
	outline-offset: -2px;
}
/* First/last item radius only when multiple items */
.sub-menu li:first-child a {
	border-radius: 4px 4px 0 0;
}
.sub-menu li:last-child a {
	border-radius: 0 0 4px 4px;
}
.sub-menu li:only-child a {
	border-radius: 4px;
}

/* Modern header: non-hero pages */
.site-header--modern:not(.site-header--over-hero) .header-phone {
	color: var(--text);
}
.site-header--modern:not(.site-header--over-hero) .header-phone:hover {
	color: var(--accent);
}
.site-header--modern:not(.site-header--over-hero) .nav-menu > li > a {
	color: var(--text);
}
.site-header--modern:not(.site-header--over-hero) .nav-menu > li.current > a {
	color: var(--accent);
}

/* ========== INTERNAL PAGES: Black header (About, etc.) – full contrast ========== */
/* Higher specificity than .site-header--modern:not(.site-header--over-hero) so dark overrides win */
.site-header--dark.site-header--modern {
	background: #000;
}
.site-header--dark.site-header--modern .header-tagline {
	color: rgba(255, 255, 255, 0.9);
}
.site-header--dark.site-header--modern .nav-menu > li > a {
	color: #fff;
}
.site-header--dark.site-header--modern .nav-menu > li > a:hover {
	color: var(--accent);
	text-decoration: underline;
}
.site-header--dark.site-header--modern .nav-menu > li.current > a {
	color: var(--accent);
}
/* Dark header: phone and CTA match homepage over-hero design (same padding, radius, layout) */
.site-header--dark.site-header--modern .header-phone {
	color: var(--white);
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.35);
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	line-height: 1.2;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	white-space: nowrap;
}
.site-header--dark.site-header--modern .header-phone:hover {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.5);
	opacity: 0.9;
}
.site-header--dark.site-header--modern .header-phone:focus,
.site-header--dark.site-header--modern .header-phone:focus-visible {
	border-color: var(--accent);
	outline: none;
}
.site-header--modern:not(.site-header--over-hero) .header-phone:focus,
.site-header--modern:not(.site-header--over-hero) .header-phone:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
.site-header--dark.site-header--modern .header-cta-btn {
	background: var(--accent);
	color: var(--white);
	border: 2px solid transparent;
	padding: 0.75rem 1.5rem;
	font-size: 0.95rem;
	line-height: 1.2;
	border-radius: 6px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.site-header--dark.site-header--modern .header-cta-btn:hover {
	background: var(--accent-hover);
	color: var(--white);
	border-color: transparent;
}
/* Header logo: always color version (no filter) */
.site-header--dark.site-header--modern .header-logo img {
	filter: none;
}
.site-header--dark.site-header--centered .header-menu-btn {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
	background: transparent;
}
.site-header--dark.site-header--centered .header-menu-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.site-header--dark.site-header--modern.header-nav-open {
	background: #000;
}
.site-header--dark.site-header--modern.header-nav-open .nav-menu > li > a {
	color: #fff;
}
.site-header--dark.site-header--modern.header-nav-open .nav-menu > li.current > a {
	color: var(--accent);
}
.site-header--dark.site-header--modern.header-nav-open .header-phone {
	color: #fff;
}
.site-header--dark.site-header--modern.header-nav-open .header-cta-btn {
	color: #fff;
	background: var(--accent);
}

/*
 * Interior pages (all non-home): one shared spec for bar, logo, nav, CTA spacing
 * so About, Services hub, service detail, Contact, Projects, etc. stay identical.
 */
body:not(.home) .site-header--modern.site-header--centered .header-bar {
	padding: 1.25rem 2rem;
	min-height: 80px;
	gap: 1.5rem 2rem;
	box-sizing: border-box;
}
body:not(.home) .site-header--modern.site-header--centered .header-logo img {
	max-height: 106px;
	min-width: 166px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}
body:not(.home) .site-header--modern.site-header--centered .header-cta {
	gap: 1.25rem;
}
body:not(.home) .site-header--modern.site-header--centered .header-tagline {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
body:not(.home) .site-header--modern.site-header--centered .nav-menu > li > a {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.6rem 1.1rem;
}

/* ========== HERO SLIDER ========== */
/* Full viewport on load; scroll continues to main content below */
.hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hero--full-viewport {
	height: 100vh;
	height: 100dvh;
	min-height: 100vh;
	min-height: 100dvh;
}
/* Mobile: lock hero height so it doesn't shift when browser chrome or slides change */
@media (max-width: 991px) {
	.hero.hero--full-viewport {
		height: 100vh;
		height: 100svh;
		min-height: 100vh;
		min-height: 100svh;
		max-height: 100vh;
		max-height: 100svh;
	}
	.hero.hero--full-viewport .hero-slider,
	.hero.hero--full-viewport .hero-slide {
		height: 100%;
		min-height: 100%;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
}
/* About page: 50% viewport height (half of homepage hero) */
.hero--half {
	min-height: 50vh;
	min-height: 50dvh;
}
.hero--half .hero-slide {
	position: absolute;
	inset: 0;
	opacity: 1;
	pointer-events: auto;
}
.hero--half .hero-overlay,
.hero--half .hero-overlay--centered {
	min-height: 0;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2.5rem 2rem;
}
.hero--half .hero-overlay--centered .hero-subheading {
	margin-top: 0.5rem;
}
.hero-slider {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
}

.hero-slide {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	z-index: 0;
	pointer-events: none;
	transition: opacity 0.45s ease;
}
/* Video slide: full-bleed local video (autoplay, start at 30s, ~10s then advance) */
.hero-slide--video {
	background: #000;
}
.hero-slide--video .hero-slide-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.hero-slide--video .hero-slide-video video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.hero-slide--video .hero-overlay {
	position: relative;
	z-index: 1;
}
/* Focal point at top (e.g. DQ, McDonald's): anchor image to top so sign/action isn't cut off */
.hero-slide--align-top {
	background-position: center top;
}
/* Dairy Queen: shift image down so more of the top is visible (sign not cut off) */
.hero-slide--shift-up {
	background-position: center 20%;
}

/* Tractor Supply: vertical background position – change --hero-slide-tractor-bg-y to adjust */
.hero-slide--tractor-supply {
	--hero-slide-tractor-bg-y: 60%;
	background-position: center var(--hero-slide-tractor-bg-y);
}

/* Margarita Factory (day & dusk): vertical background position – change --hero-slide-margarita-bg-y to adjust */
.hero-slide--margarita-factory {
	--hero-slide-margarita-bg-y: 40%;
	background-position: center var(--hero-slide-margarita-bg-y);
}
.hero-slide.active {
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}

.hero-overlay {
	width: 100%;
	height: 100%;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* Homepage only: lighter overlay so hero image shows through more */
	background: linear-gradient(to top left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.45) 85%, rgba(0, 0, 0, 0.5) 100%);
	padding: 20px;
	box-sizing: border-box;
}

.hero--full-viewport .hero-overlay {
	min-height: 0;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 2.5rem 2.5rem 5rem;
}

.hero-subheading {
	display: block;
	margin: 0 0 0.75rem;
	color: var(--white);
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	text-transform: uppercase;
	opacity: 0.95;
}

.hero-overlay h1,
.hero-overlay h2.hero-slide-title {
	margin: 0;
	color: var(--white);
	font-family: var(--font-hero);
	font-size: clamp(2.08rem, 5.76vw, 3.84rem);
	font-weight: 800;
	line-height: 1.08;
	text-align: left;
	max-width: 14em;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.hero-overlay .hero-cta {
	display: inline-block;
	margin-top: 1.25rem;
	padding: 0.75rem 1.5rem;
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	border: 2px solid var(--accent);
	border-radius: 6px;
	background: var(--accent);
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.hero-overlay .hero-cta:hover {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	color: #fff;
}

.hero-dots {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
	padding-right: 24px;
	gap: 10px;
	z-index: 5;
}
.hero-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	cursor: pointer;
}
.hero-dots button.active,
.hero-dots button:hover {
	background: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
}

.hero-prev,
.hero-next {
	display: none;
}

/* Modern header: responsive – keep type large but fit */
@media (max-width: 1024px) {
	.site-header--modern .header-bar {
		gap: 1.5rem;
		padding: 1rem 1.25rem;
		min-height: 72px;
	}
	.site-header--modern .nav-menu > li > a {
		padding: 0.5rem 0.85rem;
		font-size: 1.05rem;
	}
	.site-header--modern .sub-menu a {
		font-size: 1.05rem;
	}
	.site-header--modern .header-phone,
	.site-header--modern .header-cta-btn {
		font-size: 0.95rem;
	}
	.site-header--modern .header-cta-btn {
		padding: 0.65rem 1.2rem;
	}
	/* Interior: keep nav size consistent with desktop (no bump to 1.05rem) */
	body:not(.home) .site-header--modern.site-header--centered .header-bar {
		padding: 1rem 1.25rem;
		min-height: 72px;
		gap: 1.5rem;
	}
	body:not(.home) .site-header--modern.site-header--centered .nav-menu > li > a {
		font-size: 0.95rem;
		padding: 0.5rem 0.85rem;
	}
}
@media (max-width: 991px) {
	/* Mobile bar: menu left | logo center | CTA right, consistent across all pages */
	.site-header--centered .header-bar {
		grid-template-columns: auto 1fr auto;
		min-width: 0;
		padding: 1rem 1.25rem;
		gap: 0.5rem;
		min-height: 64px;
	}
	.site-header--centered .header-menu-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		justify-self: start;
		position: relative;
	}
	.site-header--centered .header-menu-close-icon {
		display: none;
	}
	.site-header--centered .nav-left {
		display: none;
	}
	.site-header--centered .header-logo {
		grid-column: 2;
		justify-self: center;
		min-width: 0;
	}
	.site-header--centered .header-logo img {
		max-height: 80px;
		width: auto;
	}
	body:not(.home) .site-header--modern.site-header--centered .header-logo img {
		max-height: 80px;
		min-width: 0;
	}
	body.home .site-header--over-hero .header-logo img {
		max-height: 80px;
		min-width: 0;
	}
	.site-header--centered .header-cta {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		gap: 0.5rem;
		flex-shrink: 0;
	}
	/* Smaller CTA on mobile to give room for the logo – same size on home and interior pages */
	.site-header--modern .header-cta-btn,
	.site-header--dark.site-header--modern .header-cta-btn,
	body.home .site-header--over-hero .header-cta-btn {
		padding: 0.5rem 0.65rem;
		font-size: 0.8rem;
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.site-header--centered .header-phone {
		display: none;
	}

	/* Full-screen mobile menu when open – in flow, solid black (override over-hero gradient) */
	.site-header--centered.header-nav-open,
	body.home .site-header--over-hero.header-nav-open {
		position: relative;
		width: 100%;
		min-height: 100vh;
		min-height: 100dvh;
		background: #000;
		overflow-y: auto;
	}
	.site-header--centered.header-nav-open .header-bar {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		min-height: 100%;
		padding: 2rem 1.5rem 3rem;
		gap: 0;
		grid-template-columns: none;
		grid-template-rows: none;
	}
	.site-header--centered.header-nav-open .header-menu-btn {
		position: absolute;
		top: 1.25rem;
		right: 1.25rem;
		width: 48px;
		height: 48px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.1);
		color: #fff;
		font-size: 1.5rem;
	}
	.site-header--centered.header-nav-open .header-menu-btn:hover {
		background: rgba(255, 255, 255, 0.18);
	}
	.site-header--centered.header-nav-open .header-menu-open-icon {
		display: none;
	}
	.site-header--centered.header-nav-open .header-menu-close-icon {
		display: block;
	}
	.site-header--centered.header-nav-open .header-logo {
		grid-column: unset;
		grid-row: unset;
		order: 1;
		margin-top: 2.5rem;
		margin-bottom: 2rem;
	}
	.site-header--centered.header-nav-open .header-logo img {
		max-height: 90px;
		width: auto;
	}
	.site-header--centered.header-nav-open .nav-left {
		display: block;
		grid-column: unset;
		grid-row: unset;
		order: 2;
		width: 100%;
		max-width: 320px;
		padding-top: 0;
		border-top: none;
		margin-bottom: 2rem;
	}
	.site-header--centered.header-nav-open .nav-left .nav-menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.site-header--centered.header-nav-open .nav-menu > li {
		border-left: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.site-header--centered.header-nav-open .nav-menu > li:last-child {
		border-bottom: none;
	}
	.site-header--centered.header-nav-open .nav-menu > li > a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding: 1rem 1.25rem;
		box-sizing: border-box;
		text-align: center;
		font-size: 1.15rem;
		color: #fff;
	}
	.site-header--centered.header-nav-open .nav-menu > li > a:hover {
		background: rgba(255, 255, 255, 0.06);
		color: var(--accent);
		text-decoration: underline;
	}
	/* Mobile: show dropdowns inline */
	.site-header--centered.header-nav-open .sub-menu {
		display: block;
		position: static;
		margin-top: 0.35rem;
		margin-left: 0;
		margin-bottom: 0.5rem;
		padding: 0.25rem 0 0.25rem 1rem;
		min-width: 0;
		background: rgba(255, 255, 255, 0.06);
		border: none;
		border-radius: 6px;
		box-shadow: none;
	}
	.site-header--centered.header-nav-open .sub-menu a {
		padding: 0.65rem 1rem;
		color: rgba(255, 255, 255, 0.9);
		font-size: 1rem;
	}
	.site-header--centered.header-nav-open .sub-menu a:hover,
	.site-header--centered.header-nav-open .sub-menu a:focus {
		background: rgba(255, 255, 255, 0.1);
		color: #fff;
	}
	.site-header--centered.header-nav-open .header-cta {
		grid-column: unset;
		grid-row: unset;
		order: 3;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		width: 100%;
		max-width: 320px;
		margin-top: auto;
		padding-top: 1.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}
	.site-header--centered.header-nav-open .header-phone {
		display: inline-block;
		font-size: 1.25rem;
		font-weight: 600;
		color: #fff;
		text-decoration: none;
		padding: 0.75rem 1.5rem;
	}
	.site-header--centered.header-nav-open .header-phone:hover {
		color: var(--cta-warm);
	}
	.site-header--centered.header-nav-open .header-cta-btn {
		display: inline-block;
		width: 100%;
		text-align: center;
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
	.site-header--centered.header-nav-open .header-cta-btn:hover,
	.site-header--centered.header-nav-open .header-cta-btn:focus-visible {
		background: var(--accent-hover);
		color: var(--white);
	}
	body.home .site-header--centered.header-nav-open .header-logo img {
		max-height: 90px;
	}
}
@media (max-width: 768px) {
	/* Keep same mobile header layout as 991px: menu left, logo center, CTA right */
	.site-header--centered .header-bar {
		padding: 1rem 1.25rem;
		gap: 0.5rem;
	}
}

@media (max-width: 480px) {
	.hero-overlay,
	.hero--full-viewport .hero-overlay {
		padding: 1.5rem 1.25rem 4rem;
	}
	.hero-overlay h1,
	.hero-overlay h2.hero-slide-title {
		font-size: clamp(1.5rem, 7vw, 2rem);
	}
	.hero-overlay .hero-cta {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
	}
}

/* iPhone / short phones in landscape: header + hero copy share a shallow viewport */
@media (orientation: landscape) and (max-height: 520px) {
	body.home .site-header--over-hero .header-bar {
		padding: 0.45rem 0.85rem;
		min-height: 0;
		gap: 0.35rem 0.65rem;
		align-items: center;
	}
	body.home .site-header--over-hero .header-logo {
		min-width: 0;
		max-width: min(42vw, 200px);
	}
	body.home .site-header--over-hero .header-logo img {
		max-height: clamp(40px, 12vh, 56px);
		min-width: 0;
		width: auto;
		height: auto;
	}
	body.home .site-header--over-hero .header-tagline {
		display: none;
	}
	body.home .site-header--over-hero .header-menu-btn {
		width: 40px;
		height: 40px;
		font-size: 1rem;
		flex-shrink: 0;
	}
	body.home .site-header--over-hero .header-cta {
		flex-shrink: 0;
	}
	body.home .site-header--over-hero .header-cta-btn {
		padding: 0.4rem 0.55rem;
		font-size: 0.72rem;
		min-height: 40px;
	}
	.hero.hero--full-viewport .hero-overlay {
		justify-content: flex-end;
		align-items: flex-start;
		padding: 0.5rem 1rem 2.75rem;
		box-sizing: border-box;
	}
	.hero.hero--full-viewport .hero-subheading {
		font-size: 0.7rem;
		margin-bottom: 0.35rem;
	}
	.hero.hero--full-viewport .hero-overlay h1,
	.hero.hero--full-viewport .hero-overlay h2.hero-slide-title {
		font-size: clamp(1.05rem, 3.8vw, 1.65rem);
		line-height: 1.12;
		max-width: min(22em, 92vw);
	}
	.hero.hero--full-viewport .hero-overlay .hero-cta {
		margin-top: 0.65rem;
		padding: 0.55rem 1rem;
		font-size: 0.8rem;
		min-height: 40px;
	}
	.hero.hero--full-viewport .hero-dots {
		bottom: 10px;
		padding-right: 12px;
		gap: 8px;
	}
}
@media (min-width: 768px) {
	.hero-overlay {
		padding: 3rem 3rem 5rem;
	}
	.hero--full-viewport .hero-overlay {
		padding: 3rem 4rem 5rem;
	}
}

/* ========== TOP THREE SERVICES (under hero – 3-column panels, bg image + overlay) ========== */
.top-three-services {
	width: 100%;
	background: none;
	padding: 1.5rem;
	box-sizing: border-box;
}
.top-three-services-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}
.top-service-card {
	margin: 0;
}
.top-service-link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	min-height: 600px;
	padding: 2.5rem 2rem 2.75rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-decoration: none;
	color: var(--white);
	text-align: center;
	overflow: hidden;
}
/* Red gradient fades in on hover (fluid, no flash) */
.top-service-link::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0.5;
	background: linear-gradient(180deg, rgba(90, 25, 25, 0.72) 0%, rgba(40, 10, 10, 0.72) 50%, rgba(0, 0, 0, 0.72) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}
.top-service-link:hover::before {
	opacity: 1;
}
.top-service-link--repair {
	background-image: url('../images/recent-work/ross-seattle-sign-maintenance-boom-lift.png');
}
.top-service-link--install {
	background-image: url('../images/recent-work/mcdonalds-pylon-sign-installation.png');
}
.top-service-link--design {
	background-image: url('../images/recent-work/margarita-factory-illuminated-sign-dusk.png');
}
.top-service-link--emc {
	background-image: url('../images/recent-work/del-taco-restaurant-electric-signage-night.png');
}
.top-service-link--projects {
	background-image: url('../images/recent-work/tractor-supply-co-sign-crane-installation.png');
}
/* Gradient overlay: lighter so image shows through, text still readable */
.top-service-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.58) 30%,
		rgba(0, 0, 0, 0.65) 50%,
		rgba(0, 0, 0, 0.72) 70%,
		rgba(0, 0, 0, 0.78) 85%,
		rgba(0, 0, 0, 0.85) 100%
	);
}
.top-service-title {
	position: relative;
	z-index: 1;
	margin: 0 0 1rem;
	font-family: var(--font-hero);
	font-size: clamp(1.62rem, 3vw, 2.1rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--white);
	text-align: center;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
}
.top-service-desc {
	position: relative;
	z-index: 1;
	margin: 0 0 1.25rem;
	font-family: var(--font-hero);
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.98);
	text-align: center;
	max-width: 320px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.5);
}
.top-service-btn {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0.65rem 1.5rem;
	font-family: var(--font-hero);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--white);
	background: transparent;
	border: 2px solid var(--accent);
	border-radius: 4px;
	transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.top-service-link:hover .top-service-btn {
	background: var(--accent);
	color: var(--white);
}
@media (max-width: 900px) {
	.top-three-services-inner {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}
	.top-service-link {
		min-height: 500px;
		padding: 2rem 1.5rem 2.5rem;
	}
}

/* ========== BRAND LOGOS (under hero) ========== */
.brand-logos {
	background: none;
	padding: 2rem 0;
	border-bottom: none;
	width: 100%;
}
.brand-logos-inner {
	overflow: hidden;
	width: 100%;
}
.brand-logos-track {
	display: flex;
	width: 200%;
	/* Space between slots only — each item is fixed width so narrow marks don’t look “floating” */
	gap: 2.5rem;
	animation: brand-logos-scroll 35s linear infinite;
}
.brand-logo-item {
	flex: 0 0 auto;
	/* Same footprint as .brand-logo max-width: every logo centers in an equal column */
	width: 200px;
	max-width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
}
/* Cap both dimensions so wide wordmarks don’t dwarf compact/square marks */
.brand-logos .brand-logo {
	width: auto;
	height: auto;
	max-height: 104px;
	max-width: 200px;
	object-fit: contain;
	object-position: center;
	filter: grayscale(100%);
	opacity: 0.85;
}
/* Text placeholder when brand SVG is not available (grey box, black type) */
.brand-logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 104px;
	min-width: 112px;
	max-width: 200px;
	padding: 0.4rem 0.65rem;
	background: #bdbdbd;
	color: #000;
	font-size: 0.8125rem;
	font-weight: 700;
	font-family: var(--font-body, system-ui, sans-serif);
	text-align: center;
	line-height: 1.2;
	border-radius: 4px;
	letter-spacing: 0.01em;
}
.brand-logo-placeholder--long {
	max-width: 220px;
	font-size: 0.7rem;
	font-weight: 600;
}
.brand-logo-placeholder--more {
	max-width: 200px;
	font-size: 0.75rem;
	font-weight: 600;
}
.brand-logos-intro {
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	margin: 1.5rem auto 0;
	/* Same width as testimonial block: max 1200px, 2rem horizontal padding like reviews-spot */
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2rem;
	box-sizing: border-box;
}
@keyframes brand-logos-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
@media (max-width: 768px) {
	.brand-logos-track {
		animation-duration: 17.5s;
		gap: 1.5rem;
	}
	.brand-logos .brand-logo {
		max-height: 52px;
		max-width: 120px;
	}
	.brand-logo-placeholder {
		min-height: 52px;
		min-width: 80px;
		max-width: 140px;
		font-size: 0.65rem;
		padding: 0.25rem 0.4rem;
	}
	.brand-logo-placeholder--long {
		font-size: 0.6rem;
		max-width: 120px;
	}
	.brand-logo-item {
		width: 140px;
		max-width: 140px;
	}
}

/* ========== BELOW LOGOS: unified design language (black / white / red) ========== */
/* Shared section rhythm – matches hero + service boxes + logos */
.content-below-logos {
	--section-padding: clamp(3.5rem, 7vw, 5rem);
	--heading-size: clamp(1.5rem, 4vw, 2.25rem);
	--body-size: 1.1rem;
}

/* ========== REVIEWS SPOT (black, bold – first block after logos) ========== */
.reviews-spot {
	position: relative;
	background: #000;
	padding: var(--section-padding, clamp(3.5rem, 7vw, 5rem)) 2rem;
	overflow: hidden;
}
/* Subtle red-to-black gradient from bottom right, fading away */
.reviews-spot::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(to top left, transparent 0%, rgba(0, 0, 0, 0.4) 35%, rgba(179, 27, 27, 0.06) 70%, rgba(179, 27, 27, 0.12) 100%);
}
.reviews-spot-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}
.reviews-spot-card {
	position: relative;
	z-index: 1;
	background: transparent;
	padding: 0;
	margin: 0 auto;
	box-sizing: border-box;
	text-align: center;
}
.reviews-spot-label {
	font-family: var(--font-hero);
	margin: 0 0 1.25rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--accent);
}
.reviews-spot-testimonials {
	position: relative;
	min-height: 220px;
}
.reviews-spot-slide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}
.reviews-spot-slide.active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}
.reviews-spot-quote {
	margin: 0 0 2rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.4;
	color: #fff;
	font-style: normal;
	font-family: var(--font-hero);
	font-weight: 500;
}
.reviews-spot-quote::before,
.reviews-spot-quote::after {
	content: none;
}
.reviews-spot-author {
	display: block;
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
	font-style: normal;
	color: rgba(255, 255, 255, 0.9);
}
.reviews-spot-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--accent);
	color: #fff;
	padding: 0.9rem 1.75rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s ease, color 0.2s ease;
	font-family: var(--font-hero);
}
.reviews-spot-cta:hover {
	background: var(--accent-hover);
	color: #fff;
}
.reviews-spot-cta span {
	font-size: 1.1em;
}

/* Why Choose – same section as testimonial */
.reviews-spot-why {
	margin-top: clamp(3rem, 6vw, 4rem);
	padding-top: clamp(2.5rem, 5vw, 3.5rem);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.reviews-spot-why-heading {
	position: relative;
	z-index: 1;
	font-family: var(--font-hero);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	margin: 0 0 1.5rem;
}
.reviews-spot-why .why-grid {
	position: relative;
	z-index: 1;
	margin-top: 0;
}

/* ========== MAIN CONTENT ========== */
.main-content {
	background: #fff;
	width: 100%;
	padding: 0;
}
.content-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}
@media (max-width: 640px) {
	.content-inner {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

/* ========== PAGE LEAD (white, value prop + image) ========== */
.page-lead {
	background: #fff;
	color: #000;
	padding: clamp(3.5rem, 7vw, 5rem) 2rem;
}
.page-lead-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
}
.page-lead-content {
	text-align: left;
}
.page-lead-label {
	font-family: var(--font-hero);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
	color: var(--accent);
}
.page-lead-title {
	font-family: var(--font-hero);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	color: #000;
}
.page-lead-text {
	font-size: 1.1rem;
	line-height: 1.65;
	margin: 0 0 1.75rem;
	color: rgba(0, 0, 0, 0.85);
}
.page-lead-cta {
	display: inline-block;
	padding: 0.9rem 2rem;
	font-weight: 700;
	font-size: 0.9rem;
	color: #fff;
	background: var(--accent);
	border: none;
	border-radius: 4px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background 0.2s, color 0.2s;
	font-family: var(--font-hero);
}
.page-lead-cta:hover,
.page-lead-cta:focus-visible {
	background: var(--accent-hover);
	color: #fff !important;
}
.page-lead-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}
.page-lead-call {
	display: inline-block;
	padding: 0.9rem 1.5rem;
	font-family: var(--font-hero);
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
	background: transparent;
	border: 2px solid var(--accent);
	border-radius: 4px;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.page-lead-call:hover,
.page-lead-call:focus {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff !important;
	text-decoration: none;
}
.page-lead-image {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	background: #f0f0f0;
}
.page-lead-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}
.page-lead-map {
	width: 100%;
	min-height: 380px;
	height: 100%;
	background: #e8e8e8;
}
.page-lead-map .leaflet-control-attribution {
	font-size: 10px;
}
@media (max-width: 900px) {
	.page-lead-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.page-lead-content {
		text-align: center;
	}
	.page-lead-actions {
		justify-content: center;
	}
}

/* ========== PAGE SECTIONS (below logos – unified rhythm) ========== */
.page-section {
	padding: clamp(3.5rem, 7vw, 5rem) 0;
}
@media (max-width: 480px) {
	.page-section {
		padding: 2.5rem 0;
	}
}
.page-section--alt {
	background: #000;
	color: #fff;
}
.page-section--alt .section-heading {
	color: #fff;
	text-align: center;
}
.page-section--alt .section-intro {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	color: rgba(255, 255, 255, 0.88);
}
.page-section--alt .why-item h3 {
	color: #fff;
}
.page-section--alt .why-item p {
	color: rgba(255, 255, 255, 0.88);
}

/* ========== OWNER LETTER (Dave & Tara – authenticity) ========== */
/* Match page-lead: section horizontal padding, inner max-width 1200px, no inner padding */
.owner-letter-section {
	background: #f8f8f8;
	padding: clamp(3.5rem, 7vw, 5rem) 2rem;
}
.owner-letter-section .owner-letter-inner {
	padding: 0;
}
.owner-letter-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.owner-letter-content {
	min-width: 0;
}
.owner-letter-photo {
	min-width: 0;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}
.owner-letter-photo img:only-child,
.owner-letter-photo img:first-child:nth-last-child(2) {
	grid-column: 1 / -1;
}
.owner-letter-caption {
	grid-column: 1 / -1;
	margin: 0.25rem 0 0;
	font-size: 0.85rem;
	color: #666;
	text-align: center;
	font-style: italic;
}
.owner-letter-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}
.owner-letter-heading {
	font-family: var(--font-hero);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 1.25rem;
	text-align: left;
}
.owner-letter-quote {
	margin: 0;
	padding: 0;
	border: none;
}
.owner-letter-text {
	font-size: 1.15rem;
	line-height: 1.7;
	color: #333;
	margin: 0 0 1.75rem;
}
.owner-letter-signature {
	display: block;
	margin: 0;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.owner-letter-signature-names {
	display: block;
	font-family: var(--font-script);
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: 0.02em;
}
.owner-letter-signature-title {
	display: block;
	font-family: var(--font-hero);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.6);
	margin-top: 0.25rem;
}

@media (max-width: 700px) {
	.owner-letter-inner {
		grid-template-columns: 1fr;
	}
	.owner-letter-photo {
		order: -1;
	}
	.owner-letter-heading {
		text-align: center;
	}
}
@media (max-width: 768px) {
	body.home .owner-letter-signature-names,
	.page-about .owner-letter-signature-names {
		font-size: 1.225rem;
	}
}
@media (max-width: 640px) {
	.owner-letter-section {
		padding: 2.5rem 1.25rem;
	}
	.owner-letter-inner {
		padding: 0;
	}
}

/* ========== STATS BANNER (left stat, centered logo, right stat) ========== */
.stats-banner {
	background: var(--black);
	color: var(--white);
	padding: clamp(0.75rem, 1.5vw, 1rem) 2rem;
}
.stats-banner-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.5rem);
	max-width: 1200px;
	margin: 0 auto;
}
.stats-banner-stat--left {
	justify-self: start;
}
.stats-banner-stat--right {
	justify-self: end;
}
.stats-banner-brand {
	display: flex;
	align-items: center;
	justify-self: center;
}
.stats-banner-logo {
	display: block;
	text-decoration: none;
}
.stats-banner-logo img {
	display: block;
	height: auto;
	max-height: 60px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	/* Ensure logo is visible on black: white version if SVG is dark */
	filter: brightness(0) invert(1);
}
.stats-banner-stat {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.25em;
	white-space: nowrap;
}
.stats-banner-num {
	font-family: var(--font-hero);
	font-size: clamp(1.2rem, 2.25vw, 1.5rem);
	font-weight: 700;
	color: var(--accent);
	letter-spacing: -0.02em;
}
.stats-banner-label {
	font-family: var(--font-hero);
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	font-weight: 500;
	color: var(--white);
}
@media (max-width: 700px) {
	.stats-banner-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 1rem;
	}
	.stats-banner-stat--left,
	.stats-banner-stat--right {
		justify-self: center;
	}
	.stats-banner-brand {
		order: -1;
	}
	.stats-banner-stat {
		white-space: normal;
	}
}

.section-heading {
	font-family: var(--font-hero);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 0.75rem;
	text-align: left;
}
.section-intro {
	text-align: left;
	max-width: 640px;
	margin: 0 0 2rem;
	font-size: 1.1rem;
	color: rgba(0, 0, 0, 0.75);
	line-height: 1.65;
}
.services-cards .section-heading,
.services-cards .section-intro,
.recent-projects-section .section-heading,
.recent-projects-section .section-intro {
	text-align: center;
}
.services-cards .section-intro,
.recent-projects-section .section-intro {
	margin-left: auto;
	margin-right: auto;
}
.recent-projects-section {
	background: #fff;
}

/* ========== SERVICES PAGE (matches homepage type scale, fonts, radii, breakpoints) ========== */
.services-page-lead-image {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 6px;
	min-height: 280px;
}
.services-page-lead-visual {
	text-align: center;
	padding: 2rem;
}
.services-page-lead-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: var(--accent);
	color: #fff;
	border-radius: 50%;
	font-size: 2rem;
	margin-bottom: 1rem;
}
/* Match .page-lead-label: 0.7rem, 0.15em spacing, uppercase, accent */
.services-page-lead-copy {
	margin: 0;
	font-family: var(--font-hero);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--accent);
}

/* Services page: 2+4 image grid below heading (top 2 primary, bottom 4) */
.services-hero-grid-section {
	padding: 0 0 3rem;
}
.services-hero-grid-section .content-inner {
	padding: 0 2rem;
	max-width: 1200px;
}
.services-hero-grid {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.services-hero-row {
	display: grid;
	gap: 1.25rem;
}
.services-hero-row--top {
	grid-template-columns: repeat(2, 1fr);
}
.services-hero-row--bottom {
	grid-template-columns: repeat(4, 1fr);
}
.services-hero-card {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	transition: transform 0.25s ease;
}
.services-hero-card:hover {
	transform: translateY(-2px);
}
.services-hero-card:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
.services-hero-card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: filter 0.35s ease;
}
.services-hero-card--hover:hover .services-hero-card-bg {
	filter: blur(6px);
}
.services-hero-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.14) 100%);
	pointer-events: none;
	transition: background 0.3s ease;
}
.services-hero-card--hover:hover .services-hero-card-overlay {
	background: rgba(0, 0, 0, 0.35);
}
.services-hero-card-title {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	font-family: var(--font-hero);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
	transition: opacity 0.3s ease;
}
.services-hero-row--top .services-hero-card-title {
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	padding: 1.25rem;
}
.services-hero-row--bottom .services-hero-card-title {
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}
/* Portrait cards (bottom row): taller aspect, hover content */
.services-hero-card--portrait {
	aspect-ratio: 3 / 4;
}
.services-hero-card-hover {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.services-hero-card--hover:hover .services-hero-card-title {
	opacity: 0;
}
.services-hero-card--hover:hover .services-hero-card-hover {
	opacity: 1;
}
.services-hero-card-desc {
	font-family: var(--font-hero);
	font-size: clamp(0.9rem, 1.2vw, 1rem);
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
	margin-bottom: 1rem;
	max-width: 280px;
}
.services-hero-card-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 1rem;
}
.services-hero-card-arrow i {
	display: block;
}
@media (max-width: 900px) {
	.services-hero-row--bottom {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.services-hero-row--top,
	.services-hero-row--bottom {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.services-hero-card {
		aspect-ratio: 16 / 10;
	}
	.services-hero-card--portrait {
		aspect-ratio: 3 / 4;
	}
	.services-hero-card-title {
		font-size: 1rem;
		padding: 1rem;
	}
	.services-hero-row--top .services-hero-card-title {
		font-size: 1.2rem;
	}
	.services-hero-card-desc {
		font-size: 0.9rem;
	}
}

/* ========== Services page: Reviews area ========== */
.services-reviews-area {
	background: #e8f4f8;
	padding: 3.5rem 0 4rem;
}
.services-reviews-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}
.services-reviews-subheading {
	margin: 0 0 0.25rem;
	font-family: var(--font-hero);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #2e435e;
}
.services-reviews-heading {
	margin: 0 0 1.25rem;
	font-family: var(--font-hero);
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #2e435e;
	line-height: 1.2;
}
.services-reviews-rating-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.5rem;
	margin-bottom: 2rem;
}
.services-reviews-stars {
	display: flex;
	gap: 0.15rem;
	color: #e6b422;
	font-size: 1.1rem;
}
.services-reviews-rating-text {
	margin: 0;
	font-size: 0.95rem;
	color: #2e435e;
}
.services-reviews-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1rem;
	background: #2e435e;
	color: #fff;
	font-family: var(--font-hero);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}
.services-reviews-share-btn:hover {
	background: #1a2a3a;
	color: #fff;
}
.services-reviews-google-icon {
	flex-shrink: 0;
}
.services-reviews-inner {
	position: relative;
}
.services-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-right: 3.5rem;
}
.services-review-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.services-review-card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}
.services-review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #2e435e;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 700;
	flex-shrink: 0;
}
.services-review-name {
	margin: 0 0 0.15rem;
	font-family: var(--font-hero);
	font-size: 0.95rem;
	font-weight: 700;
	color: #2e435e;
}
.services-review-meta {
	margin: 0;
	font-size: 0.8rem;
	color: #5a6c7d;
}
.services-review-stars {
	display: flex;
	gap: 0.1rem;
	color: #e6b422;
	font-size: 0.75rem;
	margin-bottom: 0.6rem;
}
.services-review-text {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #2e435e;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.services-review-seemore {
	font-size: 0.85rem;
	font-weight: 600;
	color: #2e435e;
	text-decoration: underline;
}
.services-review-seemore:hover {
	color: var(--accent);
}
.services-reviews-nav {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.services-reviews-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: #2e435e;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	text-decoration: none;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.services-reviews-arrow:hover {
	background: #2e435e;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
@media (max-width: 900px) {
	.services-reviews-grid {
		grid-template-columns: repeat(2, 1fr);
		margin-right: 3.5rem;
	}
}
@media (max-width: 560px) {
	.services-reviews-area {
		padding: 2.5rem 0 3rem;
	}
	.services-reviews-rating-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.services-reviews-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin-right: 0;
	}
	.services-reviews-nav {
		position: static;
		transform: none;
		text-align: center;
		margin-top: 1.5rem;
	}
	.services-reviews-arrow {
		display: inline-flex;
	}
}

/* Card grid – same gap/rhythm as homepage sections */
.services-list-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}
.service-card {
	padding: 1.5rem;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
	border-color: var(--accent);
	box-shadow: 0 4px 16px rgba(179, 27, 27, 0.08);
}
.service-card--highlight {
	border-color: rgba(179, 27, 27, 0.25);
	background: rgba(179, 27, 27, 0.03);
}
/* Match .why-item h3 scale: clamp(1rem, 2vw, 1.25rem), uppercase */
.service-card-title {
	font-family: var(--font-hero);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}
/* Match .section-intro / .why-item p body size: 1.05rem–1.1rem */
.service-card-desc {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(0, 0, 0, 0.85);
}
/* Match .page-lead-cta / .top-service-btn: 0.9rem, 0.08em */
.service-card-link {
	font-family: var(--font-hero);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s;
}
.service-card-link:hover {
	color: var(--accent-hover);
}
/* Process: same as .page-section--alt; body text matches .why-item p */
.services-process-section .section-heading,
.services-process-section .section-intro {
	text-align: center;
	color: #fff;
}
.services-process-section .section-intro {
	color: rgba(255, 255, 255, 0.88);
	margin-left: auto;
	margin-right: auto;
}
.services-process-list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}
.services-process-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
}
.services-process-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	background: var(--accent);
	color: #fff;
	font-family: var(--font-hero);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.05em;
	border-radius: 50%;
	flex-shrink: 0;
}
.services-process-item strong {
	color: #fff;
}
/* Trust grid – body matches .why-item p */
.services-trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.services-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: #f8f8f8;
	border-radius: 6px;
}
.services-trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--accent);
	color: #fff;
	border-radius: 6px;
	font-size: 1.25rem;
	flex-shrink: 0;
}
.services-trust-item p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.55;
	color: #333;
}
.services-trust-note {
	margin: 1.5rem 0 0;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.75);
	text-align: center;
}
/* Match homepage breakpoint for page-lead and section stacking */
@media (max-width: 900px) {
	.services-list-grid {
		grid-template-columns: 1fr;
	}
	.services-page-lead-inner {
		grid-template-columns: 1fr;
	}
	.services-page-lead-content {
		text-align: center;
	}
}

/* FAQ section – two-column layout: intro (left) + accordion (right) */
.faq-section {
	background: #fff;
}
.faq-wrap {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 3rem 3rem;
	align-items: start;
	max-width: 1200px;
}
.faq-intro {
	position: sticky;
	top: 2rem;
}
.faq-heading {
	font-family: var(--font-hero);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 1rem;
	line-height: 1.2;
}
.faq-intro-text {
	margin: 0 0 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.8);
}
.faq-cta-wrap {
	margin: 0;
}
.faq-cta-btn {
	display: inline-block;
	padding: 0.85rem 1.75rem;
	font-family: var(--font-hero);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: #000;
	background: transparent;
	border: 2px solid var(--accent);
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}
.faq-cta-btn:hover {
	background: var(--accent);
	color: #fff;
}
.faq-cta-btn:hover,
.faq-cta-btn:focus-visible,
.faq-cta-btn:hover:visited,
.faq-cta-btn:focus-visible:visited {
	color: #fff;
}
a.faq-cta-btn:hover,
a.faq-cta-btn:focus-visible,
a.faq-cta-btn:hover:visited,
a.faq-cta-btn:focus-visible:visited {
	color: #fff !important;
}
/* Accordion column */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.faq-details {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.faq-details:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.faq-summary {
	list-style: none;
	font-family: var(--font-hero);
	font-size: 1.05rem;
	font-weight: 700;
	color: #000;
	line-height: 1.35;
	padding: 1rem 2.5rem 1rem 0;
	position: relative;
	cursor: pointer;
}
.faq-summary::-webkit-details-marker {
	display: none;
}
.faq-summary::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid currentColor;
	transition: transform 0.2s ease;
}
.faq-details[open] .faq-summary::after {
	transform: translateY(-50%) rotate(180deg);
}
.faq-details[open] .faq-summary {
	color: var(--accent);
}
.faq-answer-inner {
	padding: 0 0 1.25rem;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.8);
}
.faq-answer-inner a:hover {
	opacity: 0.92;
}
@media (max-width: 900px) {
	.faq-wrap {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.faq-intro {
		position: static;
	}
}

/* ========== SERVICES CARDS (light beige, clean) ========== */
.services-cards {
	background: var(--light-beige);
}
.services-cards .content-inner {
	padding: 0 2rem;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 1.5rem;
}
.service-card {
	margin: 0;
}
.service-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	background: var(--white);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.25s, transform 0.2s;
}
.service-card-link:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}
.service-card-image {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #fff;
}
.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.service-card-body {
	padding: 1.5rem 1.75rem;
}
.service-card-title {
	font-family: var(--font-hero);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--dark-teal);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.service-card-body p {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--text-muted);
}
.service-card-cta {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent);
}
.service-card-link:hover .service-card-cta {
	text-decoration: underline;
}

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

/* ========== WHY CHOOSE US (black, same rhythm as above) ========== */
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 0;
	row-gap: 0.5rem;
	margin-top: 2rem;
}
.why-item {
	text-align: left;
	padding: 1.5rem 1.25rem 1.5rem 1.5rem;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
}
/* No left line on first column (each row) */
.why-item:nth-child(4n+1) {
	border-left-width: 0;
	padding-left: 0;
}
@media (max-width: 900px) {
	.why-item:nth-child(4n+1) {
		border-left-width: 1px;
		padding-left: 1.5rem;
	}
	.why-item:nth-child(2n+1) {
		border-left-width: 0;
		padding-left: 0;
	}
}
@media (max-width: 500px) {
	/* One column: no left border, no left spacing on every item */
	.why-item,
	.why-item:first-child,
	.why-item:nth-child(2n+1),
	.why-item:nth-child(2n) {
		border-left-width: 0;
		padding-left: 0;
	}
}
.why-item-num {
	display: block;
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--accent);
	margin-bottom: 0.75rem;
	line-height: 1;
}
.why-item h3 {
	font-family: var(--font-hero);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #fff;
}
.why-item p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}
@media (max-width: 500px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
}
/* About page: 3-column why grid (6 cards) */
.why-grid--three {
	grid-template-columns: repeat(3, 1fr);
}
.why-grid--three .why-item:nth-child(4n+1) {
	border-left-width: 1px;
	padding-left: 1.5rem;
}
.why-grid--three .why-item:nth-child(3n+1) {
	border-left-width: 0;
	padding-left: 0;
}
@media (max-width: 900px) {
	.why-grid--three {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	.why-grid--three .why-item:nth-child(3n+1) {
		border-left-width: 1px;
		padding-left: 1.5rem;
	}
	.why-grid--three .why-item:nth-child(2n+1) {
		border-left-width: 0;
		padding-left: 0;
	}
}
@media (max-width: 500px) {
	.why-grid--three {
		grid-template-columns: 1fr;
	}
	/* One column: no left border, no left spacing on every item */
	.why-grid--three .why-item,
	.why-grid--three .why-item:first-child,
	.why-grid--three .why-item:nth-child(2n+1),
	.why-grid--three .why-item:nth-child(2n) {
		border-left-width: 0;
		padding-left: 0;
	}
}

/* ========== ESTIMATE SECTION (dark teal, big bold) ========== */
.estimate-section {
	background: var(--dark-teal);
	color: var(--white);
}
.estimate-section .section-heading {
	text-align: center;
	color: var(--white);
}
.estimate-section .section-intro {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.section-heading--light {
	color: var(--white);
}
.section-intro--light {
	color: rgba(255, 255, 255, 0.9);
}
.estimate-form-inner {
	max-width: 640px;
	margin: 0 auto;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.25rem;
	margin-bottom: 1.5rem;
}
.form-row {
	margin: 0;
}
.form-row.full {
	grid-column: 1 / -1;
}
.form-row.half {
	grid-column: span 1;
}
.estimate-section label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
	font-weight: 500;
}
.estimate-section .required {
	opacity: 0.85;
	font-weight: 400;
}
.estimate-section input,
.estimate-section textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.95);
	color: var(--text);
	font-size: 1rem;
	font-family: inherit;
	border-radius: 6px;
}
.estimate-section input:focus,
.estimate-section textarea:focus {
	outline: none;
	border-color: var(--white);
	background: var(--white);
}
.form-submit {
	margin: 0;
	text-align: center;
}
.btn {
	display: inline-block;
	padding: 0.85rem 1.75rem;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-family: inherit;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}
.btn-estimate {
	background: var(--accent);
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.btn-estimate:hover {
	background: var(--accent-hover);
	color: var(--white);
}

@media (max-width: 600px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
	.form-row.half {
		grid-column: 1 / -1;
	}
}

/* ========== SERVICES OFFERINGS (light beige, list) ========== */
.services-offerings {
	background: var(--light-beige);
}
.services-offerings .section-intro {
	margin-bottom: 1.5rem;
}
.offerings-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem 3rem;
	max-width: 720px;
	margin: 0 auto;
}
.offerings-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.offerings-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.6rem;
	font-size: 1rem;
	line-height: 1.5;
}
.offerings-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	background: var(--dark-teal);
	border-radius: 50%;
}
@media (max-width: 600px) {
	.offerings-columns {
		grid-template-columns: 1fr;
	}
}

/* ========== RECENT PROJECTS (dark teal, big bold) ========== */
.recent-projects-section {
	position: relative;
	overflow: hidden;
	background: var(--dark-teal);
	color: var(--white);
}
/* Subtle red-to-black gradient from bottom right (match reviews-spot) */
.recent-projects-section::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(to top left, transparent 0%, rgba(0, 0, 0, 0.4) 35%, rgba(179, 27, 27, 0.06) 70%, rgba(179, 27, 27, 0.12) 100%);
}
.recent-projects-section .section-heading {
	margin-bottom: 0.25rem;
	color: var(--white);
}
.recent-projects-section .section-intro {
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.88);
}
.recent-projects-credential {
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 1.5rem;
	line-height: 1.4;
}
.recent-projects-section .content-inner--wide {
	position: relative;
	z-index: 1;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.recent-projects-section .projects-masonry {
	margin-bottom: 2rem;
}
.recent-projects-section .projects-cta {
	margin: 0;
	text-align: center;
}
.recent-projects-section .btn-projects {
	background: var(--accent);
	color: #fff;
	font-family: var(--font-hero);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.9rem 2rem;
	border-radius: 4px;
}
.recent-projects-section .btn-projects:hover {
	background: var(--accent-hover);
	color: #fff;
}

/* Masonry layout – large imagery, no fixed aspect ratio */
.projects-masonry {
	column-count: 4;
	column-gap: 1.25rem;
	width: 100%;
}
.projects-masonry-item {
	display: block;
	break-inside: avoid;
	margin-bottom: 1.25rem;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}
.projects-masonry-item:focus {
	outline: 2px solid var(--cta-warm);
	outline-offset: 2px;
}
.projects-masonry-item img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.projects-masonry-item:hover img {
	transform: scale(1.03);
}

/* Last item: red CTA box (same flow as masonry, no lightbox) */
.projects-masonry-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	padding: 2rem;
	background: var(--accent);
	color: var(--white);
	border-radius: 4px;
	break-inside: avoid;
	margin-bottom: 1.25rem;
	overflow: hidden;
	transition: background 0.2s ease;
}
.projects-masonry-cta:hover {
	background: var(--accent-hover);
}
.projects-masonry-cta:hover .projects-masonry-cta-text,
.projects-masonry-cta:hover .projects-masonry-cta-phone {
	color: var(--white);
}
.projects-masonry-cta-text,
.projects-masonry-cta-phone,
.projects-masonry-cta-btn {
	text-decoration: none;
}
.projects-masonry-cta-text {
	display: block;
	font-family: var(--font-hero);
	font-size: 1.25rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0.5rem;
	color: var(--white);
}
.projects-masonry-cta-phone {
	display: inline-block;
	font-family: var(--font-hero);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem;
	transition: color 0.2s ease, opacity 0.2s ease;
}
.projects-masonry-cta-phone:hover,
.projects-masonry-cta-phone:focus {
	color: var(--white);
	opacity: 0.9;
}
.projects-masonry-cta-btn {
	display: inline-block;
	padding: 0.65rem 1.5rem;
	font-family: var(--font-hero);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--white);
	border: 2px solid var(--white);
	border-radius: 4px;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.projects-masonry-cta-btn:hover,
.projects-masonry-cta-btn:focus {
	color: var(--accent);
	background: var(--white);
	border-color: var(--white);
}
.projects-masonry-cta:hover .projects-masonry-cta-btn {
	background: var(--white);
	color: var(--accent);
	border-color: var(--white);
}
@media (max-width: 900px) {
	.projects-masonry {
		column-count: 2;
		column-gap: 1rem;
	}
	.projects-masonry-item,
	.projects-masonry-cta {
		margin-bottom: 1rem;
	}
}
@media (max-width: 520px) {
	.projects-masonry {
		column-count: 1;
		column-gap: 0;
	}
	.projects-masonry-item,
	.projects-masonry-cta {
		margin-bottom: 1rem;
	}
}

/* ========== Projects page: gallery page modifier, filter, captions ========== */
.content-inner--narrow {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.recent-projects-section--gallery-page {
	background: #000;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.recent-projects-section--gallery-page .section-heading,
.recent-projects-section--gallery-page .gallery-heading {
	color: #fff;
	text-align: center;
	margin-bottom: 0.5rem;
}
.recent-projects-section--gallery-page .section-intro {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.88);
}
.projects-intro-section .section-heading,
.projects-intro-section .projects-intro-heading {
	text-align: center;
	margin-bottom: 0.5rem;
}
.projects-intro-section .section-intro,
.projects-intro-section .projects-intro-text {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 640px;
}
.projects-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.projects-filter-btn {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	font-family: var(--font-hero);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #000;
	background: #fff;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 2rem;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.projects-filter-btn:hover,
.projects-filter-btn:focus-visible {
	border-color: var(--accent);
	color: var(--accent);
	background: #fff;
}
.projects-filter-btn.active {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}
.projects-filter-btn.active:hover,
.projects-filter-btn.active:focus-visible {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	color: #fff;
}
/* Project item caption overlay (hover) */
.projects-masonry-item {
	position: relative;
}
.projects-masonry-item .project-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.75rem 1rem;
	font-family: var(--font-hero);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: none;
}
.projects-masonry-item:hover .project-caption,
.projects-masonry-item:focus .project-caption,
.projects-masonry-item:focus-visible .project-caption {
	opacity: 1;
	transform: translateY(0);
}
/* Filter: hide items by type */
.projects-masonry-item.is-hidden,
.projects-masonry-cta.is-hidden {
	display: none !important;
}
.projects-services-strip .section-heading {
	text-align: center;
	margin-bottom: 0.5rem;
}
.projects-services-strip .section-intro {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5rem;
}
/* Projects page: What We Do cards full width, centered (3 columns only) */
.page-projects .projects-services-strip .top-three-services-inner {
	grid-template-columns: repeat(3, 1fr);
	max-width: 100%;
}
.page-projects .projects-services-strip .top-three-services {
	padding-left: clamp(1rem, 4vw, 2rem);
	padding-right: clamp(1rem, 4vw, 2rem);
}
@media (max-width: 900px) {
	.page-projects .projects-services-strip .top-three-services-inner {
		grid-template-columns: 1fr;
	}
}

/* Recent projects lightbox */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.92);
	align-items: center;
	justify-content: center;
	padding: 2rem;
	box-sizing: border-box;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
	.lightbox {
		padding: 1rem;
		align-items: flex-start;
		padding-top: max(1rem, env(safe-area-inset-top));
	}
}
.lightbox.lightbox-open {
	display: flex;
}
.lightbox-inner {
	position: relative;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox-img {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	z-index: 2;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
	transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: rgba(255, 255, 255, 0.25);
}
.lightbox-close {
	top: 1rem;
	right: 1rem;
	font-size: 2rem;
	padding: 0.25rem 0.6rem;
}
.lightbox-prev {
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-next {
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-caption {
	margin-top: 1rem;
	padding: 0 2rem;
	max-width: 560px;
	text-align: center;
	font-family: var(--font-hero);
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
}
.lightbox-inner {
	flex-direction: column;
}

/* Legacy carousel (kept for other pages that might use it) */
.projects-carousel {
	position: relative;
	max-width: 1200px;
	margin: 0 auto 20px;
	overflow: hidden;
	--projects-gap: 16px;
	cursor: grab;
	user-select: none;
}
.projects-carousel.is-dragging {
	cursor: grabbing;
}
.projects-carousel.is-dragging a {
	pointer-events: none;
}
.projects-track {
	display: flex;
	transition: transform 0.3s ease;
	gap: var(--projects-gap);
}
.projects-slide {
	flex: 0 0 calc((100% - 4 * var(--projects-gap)) / 5);
	min-width: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #fff;
}
@media (max-width: 900px) {
	.projects-slide {
		flex: 0 0 calc((100% - 2 * var(--projects-gap)) / 3);
	}
}
@media (max-width: 640px) {
	.projects-slide {
		flex: 0 0 calc((100% - var(--projects-gap)) / 2);
	}
}
.projects-slide a {
	display: block;
	width: 100%;
	height: 100%;
}
.projects-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.projects-prev,
.projects-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: none;
	background: rgba(0,0,0,0.5);
	color: var(--white);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}
.projects-prev:hover,
.projects-next:hover {
	background: rgba(0,0,0,0.7);
}
.projects-prev { left: 10px; }
.projects-next { right: 10px; }
.projects-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 15px;
}
.projects-dots button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid var(--accent);
	background: transparent;
	cursor: pointer;
	padding: 0;
}
.projects-dots button.active,
.projects-dots button:hover {
	background: var(--accent);
}

.projects-cta {
	margin: 0;
	text-align: center;
}
.btn-projects {
	background: var(--accent);
	color: var(--white);
	padding: 15px 30px;
}
.btn-projects:hover {
	background: var(--accent-hover);
	color: var(--white);
}

/* ========== PAGE CTA BAND (clean style: white, bold + script, pill + arrow) ========== */
.page-cta-band {
	position: relative;
	overflow: hidden;
	color: #1a1a1a;
	background: #f5f5f5;
	padding: clamp(4rem, 8vw, 6rem) 2rem;
	text-align: center;
}
@media (max-width: 640px) {
	.page-cta-band {
		padding: 3rem 1.25rem;
	}
	.page-cta-band-inner {
		padding: 0;
	}
	.page-cta-band-title--script {
		font-size: clamp(2rem, 10vw, 2.75rem);
	}
	.page-cta-band-actions {
		gap: 0.75rem;
	}
	.page-cta-band-btn,
	.page-cta-band-arrow {
		min-height: 44px;
		min-width: 44px;
	}
}
/* Background image: fixed – image stays in place when scrolling; text in the box scrolls over it */
.page-cta-band-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #e8e8e8;
	background-image: url('../images/hero/hero-05-margarita-factory-dusk.png');
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	filter: blur(45px) brightness(3);
	pointer-events: none;
}
@media (min-width: 768px) {
	.page-cta-band-bg {
		background-attachment: fixed;
	}
}
/* Light overlay so image stays subtle and text stays readable */
.page-cta-band::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(255, 255, 255, 0.72);
	pointer-events: none;
}
.page-cta-band-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
}
.page-cta-band-headline {
	display: block;
	margin: 0 0 0.15em;
	line-height: 1.1;
}
.page-cta-band-title {
	display: block;
	font-family: var(--font-hero);
	font-size: clamp(1.25rem, 3.15vw, 1.95rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1a1a1a;
}
.page-cta-band-title--script {
	font-family: var(--font-script);
	font-weight: 400;
	font-size: clamp(2.75rem, 7.5vw, 4.5rem);
	color: var(--accent);
	letter-spacing: 0.02em;
}
.page-cta-band-text {
	margin: 0 0 2rem;
	font-family: var(--font-hero);
	font-size: 1.1rem;
	color: #333;
	max-width: 32em;
	margin-left: auto;
	margin-right: auto;
}
.page-cta-band-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}
/* Pill outline button (primary CTA) */
.page-cta-band-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2rem;
	font-family: var(--font-hero);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--accent);
	background: transparent;
	border: 2px solid var(--accent);
	border-radius: 999px;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.page-cta-band-btn:hover {
	background: var(--accent);
	color: #fff !important;
	border-color: var(--accent);
}
/* Circular arrow button – same red outline */
.page-cta-band-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 1.25rem;
	color: var(--accent);
	background: transparent;
	border: 2px solid var(--accent);
	border-radius: 50%;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.page-cta-band-arrow:hover {
	background: var(--accent);
	color: #fff !important;
	border-color: var(--accent);
}
.page-cta-band-arrow:hover i {
	color: inherit;
}
.page-cta-band-arrow i {
	display: block;
	line-height: 1;
}
.page-cta-btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	background: var(--accent);
	color: var(--white);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background 0.2s, color 0.2s;
}
.page-cta-btn:hover {
	background: var(--accent-hover);
	color: var(--white);
}

/* ========== ABOUT PAGE: Final CTA (accent background, centered) ========== */
.about-cta-section {
	background: var(--accent);
	color: var(--white);
	text-align: center;
	padding: clamp(4rem, 8vw, 6rem) 2rem;
}
.about-cta-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}
.about-cta-heading {
	font-family: var(--font-script);
	font-size: clamp(2.6rem, 6.75vw, 4.1rem);
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--white);
	margin: 0 0 0.5rem;
	line-height: 1.2;
}
.about-cta-text {
	font-family: var(--font-hero);
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 2rem;
	max-width: 32em;
	margin-left: auto;
	margin-right: auto;
}
.about-cta-actions {
	justify-content: center;
}
.about-cta-section .page-lead-cta {
	background: var(--white);
	color: var(--accent);
}
.about-cta-section .page-lead-cta:hover {
	background: rgba(255, 255, 255, 0.95);
	color: var(--accent-hover);
}
.about-cta-section .page-lead-call {
	border-color: var(--white);
	color: var(--white);
}
.about-cta-section .page-lead-call:hover,
.about-cta-section .page-lead-call:focus {
	background: var(--white);
	border-color: var(--white);
	color: var(--accent) !important;
}

/* ========== SERVICES PAGE (conversion-focused) ========== */
/* Hero: dark (black to match design system) */
.svc-hero {
	background: #000;
	color: var(--white);
	text-align: center;
	padding: clamp(3.5rem, 7vw, 5rem) 2rem;
}
@media (max-width: 480px) {
	.svc-hero {
		padding: 2.5rem 1.25rem;
	}
	.svc-hero-title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}
	.svc-hero-actions {
		flex-wrap: wrap;
		justify-content: center;
	}
}
.svc-hero-inner {
	max-width: 800px;
	margin: 0 auto;
}
.svc-hero-title {
	font-family: var(--font-hero);
	font-size: clamp(2.08rem, 5.76vw, 3.84rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	text-transform: uppercase;
	margin: 0 0 1rem;
	color: var(--white);
}
.svc-hero-sub {
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 1.5rem;
}
.svc-hero-sub a,
.svc-hero-sub a:visited {
	color: var(--accent);
}
.svc-hero-sub a:hover,
.svc-hero-sub a:focus-visible {
	color: var(--accent-hover);
}
.svc-hero-tagline {
	margin: 0 0 0.65rem;
	font-family: var(--font-script);
	font-size: clamp(1.35rem, 3.2vw, 1.95rem);
	font-weight: 400;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.98);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 2px 10px rgba(0, 0, 0, 0.35);
}
.svc-hero-actions {
	justify-content: center;
	gap: 1rem;
}
.svc-hero .page-lead-cta {
	background: var(--accent);
	color: var(--white);
}
.svc-hero .page-lead-call {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--white);
}
.svc-hero .page-lead-call:hover,
.svc-hero .page-lead-call:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--white) !important;
}

/* Hero with background image (e.g. individual service pages) */
.svc-hero--with-bg {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.svc-hero--with-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	pointer-events: none;
}
.svc-hero--with-bg .svc-hero-inner {
	position: relative;
	z-index: 1;
}

/* Trust bar: high-contrast strip */
.svc-trust-bar {
	background: #1a1a1a;
	color: var(--white);
	padding: 1rem 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.svc-trust-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}
.svc-trust-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.75rem;
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}
.svc-trust-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.svc-trust-item i {
	color: var(--accent);
}
.svc-trust-sep {
	opacity: 0.5;
	user-select: none;
}
@media (max-width: 768px) {
	.svc-trust-sep { display: none; }
	.svc-trust-text { flex-direction: column; }
}

/* Services page: intro blurbs under Core Services (split topics for readability) */
.svc-summary-wrap {
	max-width: 1000px;
	margin: 0 auto 2rem;
	padding: 0 2rem;
}
.svc-summary-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 1.25rem;
}
.svc-summary-blurb {
	margin: 0;
	padding: 1.15rem 1.25rem;
	background: rgba(0, 0, 0, 0.025);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	text-align: left;
}
.svc-summary-blurb--wide {
	grid-column: 1 / -1;
}
.svc-summary-blurb-title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
	letter-spacing: 0.02em;
}
.svc-summary-blurb-text {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.78);
}
.svc-summary-blurb-text a[href] {
	font-weight: 600;
}
@media (max-width: 640px) {
	.svc-summary-grid {
		grid-template-columns: 1fr;
	}
	.svc-summary-blurb--wide {
		grid-column: auto;
	}
}

/* Services hub: Core Services heading + intro; cards use homepage .top-three-services / .top-service-link */
.svc-core-section {
	padding-top: clamp(2.5rem, 5vw, 3.5rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	background: #fff;
}
.svc-core-heading-inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
}
.svc-core-section .section-heading {
	text-align: center;
	margin-bottom: 0.75rem;
}
.svc-core-section-intro {
	margin: 0 auto 1.5rem;
	max-width: 38rem;
	font-family: var(--font-hero);
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.72);
}
/* Supporting blurbs: tighter cards + horizontal rows */
.svc-summary-wrap--core {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem 0;
}
.svc-core-subheading {
	text-align: center;
	font-family: var(--font-hero);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.5);
	margin: 0 0 1.25rem;
}
.svc-core-section .svc-summary-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1.5rem, 2.8vw, 2.5rem);
}
.svc-core-section .svc-summary-blurb {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.svc-core-section .svc-summary-blurb-title {
	font-size: clamp(1.2rem, 1.2vw + 0.95rem, 1.45rem);
	line-height: 1.25;
	margin-bottom: 0.7rem;
}
.svc-core-section .svc-summary-blurb-text {
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(0, 0, 0, 0.8);
}
.svc-summary-blurb--horizontal {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(240px, 34%) 1fr;
	gap: 1.75rem 2rem;
	align-items: center;
	padding: 0;
	overflow: visible;
}
.svc-summary-blurb--horizontal .svc-summary-blurb-text-col {
	padding: 0;
}
.svc-summary-blurb--horizontal .svc-summary-blurb-title {
	margin-top: 0;
}
.svc-summary-blurb--horizontal-reverse {
	direction: rtl;
}
.svc-summary-blurb--horizontal-reverse > * {
	direction: ltr;
}
.svc-summary-blurb--horizontal-reverse .svc-summary-blurb-text-col {
	padding: 0;
}
.svc-summary-blurb-media {
	margin: 0;
	min-height: 220px;
	background: #e8e6e4;
	border-radius: 10px;
	overflow: hidden;
}
.svc-summary-blurb-media img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	display: block;
}
@media (max-width: 768px) {
	.svc-summary-blurb--horizontal,
	.svc-summary-blurb--horizontal-reverse {
		grid-template-columns: 1fr;
		direction: ltr;
		padding: 0;
	}
	.svc-summary-blurb--horizontal .svc-summary-blurb-text-col,
	.svc-summary-blurb--horizontal-reverse .svc-summary-blurb-text-col {
		padding: 0;
	}
	.svc-summary-blurb-media {
		min-height: 180px;
		order: -1;
	}
	.svc-summary-blurb--horizontal-reverse .svc-summary-blurb-media {
		order: -1;
	}
}
@media (max-width: 640px) {
	.svc-core-section .svc-summary-grid {
		grid-template-columns: 1fr;
	}
}

/* Services hub: in-house fabrication summary (content moved from homepage) */
.svc-fab-summary-section {
	padding-top: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.svc-fab-summary-inner {
	max-width: 900px;
	margin: 0 auto;
}
.svc-fab-summary-section .section-heading {
	text-align: center;
	margin-bottom: 1rem;
}
.svc-fab-summary-text {
	text-align: center;
	margin: 0 auto 1.5rem;
	max-width: 52rem;
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.88);
}
.svc-fab-summary-text a {
	font-weight: 600;
}
.svc-fab-summary-cta-wrap {
	text-align: center;
	margin: 0;
}

/* ========== INDIVIDUAL SERVICE PAGES (e.g. /services/sign-fabrication.html) ========== */
.service-breadcrumb {
	position: relative;
	padding: 0.75rem 2rem;
	background: transparent;
}
@media (max-width: 640px) {
	.service-breadcrumb {
		padding: 0.75rem 1.25rem;
	}
	.service-breadcrumb-list {
		font-size: 0.85rem;
	}
}
.service-breadcrumb::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	top: 0;
	bottom: 0;
	background: #0d0d0d;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	z-index: -1;
}
.service-breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9rem;
}
.service-breadcrumb-list li:not(:last-child)::after {
	content: "\203a";
	margin-left: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 400;
}
.service-breadcrumb-list a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}
.service-breadcrumb-list a:hover {
	color: rgba(255, 255, 255, 0.95);
	text-decoration: underline;
}
.service-breadcrumb-list li[aria-current="page"] {
	color: #fff;
	font-weight: 600;
	background: var(--accent);
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	margin-left: 0.25rem;
}
.service-breadcrumb-list li[aria-current="page"]::before {
	display: none;
}

.service-secondary-nav {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	padding: 1rem 2rem;
	isolation: isolate;
}

.service-secondary-nav::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	top: 0;
	bottom: 0;
	background: #000;
	z-index: -1;
}

.service-secondary-nav-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.55rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	text-decoration: none;
	font-family: var(--font-hero);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.2;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-secondary-nav-link:hover,
.service-secondary-nav-link:focus-visible {
	color: #fff !important;
	background: transparent;
	border-color: var(--accent);
	text-decoration: none;
}

.service-secondary-nav-link,
.service-secondary-nav-link:visited,
.service-secondary-nav-link:hover,
.service-secondary-nav-link:focus-visible {
	text-decoration: none !important;
}

.service-secondary-nav-link.is-current {
	background: rgba(255, 255, 255, 0.16);
	border-color: #fff;
	color: #fff;
}

.projects-related-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin: 1rem 0 0;
}

.projects-related-links-label {
	width: 100%;
	margin: 0;
	text-align: center;
	font-family: var(--font-hero);
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.72);
}

.projects-related-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.08);
	text-decoration: none;
}

@media (max-width: 640px) {
	.service-secondary-nav {
		padding: 0.9rem 1.25rem;
	}
}

.svc-hero--detail .svc-hero-sub {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* In-House section: layout with text + one photo */
.service-intro-section--visual {
	background: linear-gradient(180deg, #f8f7f6 0%, #fff 100%);
}
.service-intro-section--visual .service-intro-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}
.service-intro-header {
	text-align: center;
	margin-bottom: 2rem;
}
.service-intro-section--visual .section-heading {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}
.service-intro-highlights {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.service-intro-highlights li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text);
}
.service-intro-highlights-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	background: var(--accent);
	color: #fff;
	border-radius: 50%;
	font-size: 0.75rem;
}
.service-intro-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.35rem clamp(2rem, 4vw, 3rem);
	align-items: start;
}
.service-intro-layout > * {
	min-width: 0;
}
/* Simple two-column intro (installation, repair, banners, lift) */
.service-intro-text {
	min-width: 0;
}
.service-intro-text p {
	margin: 0 0 1.25rem;
	line-height: 1.65;
	font-size: 1.05rem;
	color: rgba(0, 0, 0, 0.85);
}
.service-intro-text p:last-child {
	margin-bottom: 0;
}
.service-intro-section--visual .service-intro-lead {
	font-size: 1.2rem;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.9);
	line-height: 1.45;
}
/* Sign fabrication: lead is a direct grid item */
.service-intro-layout > .service-intro-lead {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
}
.service-intro-photos {
	grid-column: 2;
	grid-row: 1 / span 3;
	align-self: start;
}
.service-intro-block--franchise {
	grid-column: 1;
	grid-row: 2;
}
.service-intro-block--in-house {
	grid-column: 1;
	grid-row: 3;
}
.service-intro-block--fullpath {
	grid-column: 1;
	grid-row: 4;
}
.service-intro-block--related {
	grid-column: 1;
	grid-row: 5;
}
.service-intro-block--duo.service-intro-block--aside {
	grid-column: 2;
	grid-row: 4;
}
.service-intro-block--emphasis.service-intro-block--aside {
	grid-column: 2;
	grid-row: 5;
}
.service-intro-block--budget.service-intro-block--aside {
	grid-column: 2;
	grid-row: 6;
}
/* Right column is narrower: stack the two-up callout */
.service-intro-block--aside.service-intro-block--duo {
	grid-template-columns: 1fr;
}
.service-intro-block {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	padding: 1.25rem 1.35rem 1.3rem;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.service-intro-block--emphasis {
	border-left: 4px solid var(--accent);
	padding-left: calc(1.35rem - 3px);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.service-intro-block--related {
	background: rgba(179, 27, 27, 0.04);
	border-color: rgba(179, 27, 27, 0.12);
	padding: 1rem 1.25rem;
	box-shadow: none;
}
.service-intro-subhead {
	font-family: var(--font-hero);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
	margin: 0 0 0.65rem;
	line-height: 1.3;
}
.service-intro-block .service-intro-subhead + p {
	margin-top: 0;
}
.service-intro-layout > .service-intro-block p {
	margin: 0 0 0.85rem;
	max-width: none;
	font-size: 1.05rem;
	line-height: 1.68;
	color: rgba(0, 0, 0, 0.85);
}
.service-intro-layout > .service-intro-block p:last-child {
	margin-bottom: 0;
}
.service-intro-block--duo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	padding: 1.1rem;
	background: transparent;
	border-style: dashed;
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: none;
}
.service-intro-callout {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	padding: 1rem 1.1rem;
	text-align: center;
}
.service-intro-layout > .service-intro-block .service-intro-callout .service-intro-callout-title {
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 700;
	color: var(--accent);
	margin: 0 0 0.35rem;
	line-height: 1.25;
}
.service-intro-layout > .service-intro-block .service-intro-callout .service-intro-callout-text {
	font-size: 0.98rem;
	line-height: 1.55;
	margin: 0;
	color: rgba(0, 0, 0, 0.82);
}
.service-intro-layout > .service-intro-block .service-intro-related-text {
	font-size: 1.02rem;
	line-height: 1.65;
	margin: 0;
	color: rgba(0, 0, 0, 0.88);
}
@media (max-width: 520px) {
	.service-intro-block--duo {
		grid-template-columns: 1fr;
	}
}
.service-intro-photos {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.service-intro-photo {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	display: block;
	object-fit: cover;
	object-position: center;
	max-height: 320px;
}
.lift-service-video-wrap {
	margin: 0 auto 1.5rem;
	max-width: 70rem;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
	background: transparent;
}
.lift-service-video {
	display: block;
	width: 100%;
	height: auto;
	max-height: 34rem;
	object-fit: cover;
}
.service-intro-rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.25rem;
	background: #fff;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	text-decoration: none !important;
	color: inherit;
	font-family: var(--font-hero);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-intro-rating:link,
.service-intro-rating:visited,
.service-intro-rating:hover,
.service-intro-rating:active,
.service-intro-rating:focus,
.service-intro-rating *,
.service-intro-rating *:hover,
.service-intro-rating *:focus {
	text-decoration: none !important;
}
.service-intro-rating:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 0, 0, 0.12);
}
.service-intro-rating:focus {
	outline: none;
}
.service-intro-rating:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
.service-intro-stars {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	color: var(--accent);
	font-size: 1rem;
	line-height: 1;
}
.service-intro-stars .fa-star {
	display: block;
}
.service-intro-rating-text {
	font-family: var(--font-hero);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text);
	letter-spacing: 0.02em;
	line-height: 1.2;
}
@media (max-width: 768px) {
	.service-intro-layout {
		display: flex;
		flex-direction: column;
		gap: 1.35rem;
	}
	.service-intro-layout > * {
		grid-column: unset;
		grid-row: unset;
	}
	.service-intro-photos {
		order: 1;
	}
	.service-intro-lead {
		order: 2;
	}
	.service-intro-block--franchise {
		order: 3;
	}
	.service-intro-block--duo {
		order: 4;
	}
	.service-intro-block--emphasis {
		order: 5;
	}
	.service-intro-block--in-house {
		order: 6;
	}
	.service-intro-block--budget {
		order: 7;
	}
	.service-intro-block--fullpath {
		order: 8;
	}
	.service-intro-block--related {
		order: 9;
	}
	.service-intro-photo {
		max-height: 280px;
	}
	/* Classic layout (text wrapper + photos): image first on small screens */
	.service-intro-layout:has(> .service-intro-text) .service-intro-photos {
		order: -1;
	}
}
.service-intro-section p {
	max-width: 720px;
	margin: 0 0 1rem;
	line-height: 1.65;
}
.service-intro-section p:last-of-type {
	margin-bottom: 0;
}

.service-types-section .section-intro,
.service-process-section .section-intro,
.service-why-section .section-intro,
.service-related-section .section-heading {
	text-align: center;
}
.service-related-section .section-intro {
	text-align: center;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}
/* Related services: always 3 columns so three cards fill the row (no empty 4th column) */
.service-related-section .top-three-services-inner {
	grid-template-columns: repeat(3, 1fr);
	max-width: none;
}
@media (max-width: 900px) {
	.service-related-section .top-three-services-inner {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}
}
/* What We Fabricate: card grid (sign-fabrication) */
.service-types-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin: 0 0 2rem;
	max-width: none;
}
@media (max-width: 900px) {
	.service-types-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}
@media (max-width: 600px) {
	.service-types-grid {
		grid-template-columns: 1fr;
	}
}
.service-type-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 1.25rem 1.5rem;
	text-align: left;
}
.service-type-card-title {
	font-family: var(--font-hero);
	font-size: clamp(0.95rem, 1.8vw, 1.15rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}
.service-type-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}
.service-types-section .section-intro {
	margin-bottom: 1.5rem;
}
.service-types-list,
.service-process-list,
.service-why-list {
	max-width: 720px;
	margin: 0 auto 2rem;
	padding-left: 1.5rem;
	line-height: 1.65;
}
.service-types-list li,
.service-process-list li,
.service-why-list li {
	margin-bottom: 0.75rem;
}
.service-process-list {
	list-style: none;
	padding-left: 0;
	counter-reset: process;
}
.service-process-list li {
	position: relative;
	padding-left: 2rem;
}
.service-process-list li::before {
	counter-increment: process;
	content: counter(process);
	position: absolute;
	left: 0;
	top: 0.1em;
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 50%;
}
.service-types-cta {
	text-align: center;
	margin: 0;
}
.service-types-cta .page-lead-cta {
	display: inline-block;
}

/* Our Fabrication Process: numbered steps with left indicator (reference style) */
.service-process-section--dark {
	background: #0d0d0d;
	color: #fff;
}
.service-process-section--dark .process-inner {
	background: #1a1a1a;
	border-radius: 12px;
	padding: clamp(2.5rem, 5vw, 3.5rem) 2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.service-process-section--dark .process-header {
	text-align: center;
	margin-bottom: 2rem;
}
.service-process-section--dark .section-heading {
	color: #fff;
	text-align: center;
	margin-bottom: 0.5rem;
}
.service-process-section--dark .section-heading-accent {
	color: var(--accent);
}
.service-process-section--dark .section-intro {
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 640px;
	margin-bottom: 0;
}
.process-two-col {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}
.process-steps-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
}
.process-image-col {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	max-width: 420px;
}
.process-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: block;
	object-fit: cover;
	object-position: center;
	max-height: 480px;
}
@media (max-width: 900px) {
	.process-two-col {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.process-image-col {
		max-width: none;
		order: -1;
	}
	.process-image {
		max-height: 320px;
	}
}
.process-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.5rem 2rem;
	align-items: start;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.process-step:first-child {
	padding-top: 0;
}
.process-step:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
/* Left column: number + label + vertical line */
.process-step-indicator {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 4.5rem;
	padding-right: 1rem;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.process-step-num {
	display: block;
	font-family: var(--font-hero);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1;
	color: var(--accent);
	letter-spacing: -0.02em;
}
.process-step-label {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}
/* Right column: heading + content */
.process-step-body {
	min-width: 0;
}
.process-step-title {
	font-family: var(--font-hero);
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	margin: 0 0 0.75rem;
	line-height: 1.3;
}
/* Process / spotlight copy: default for light sections; dark sections override below */
.service-process-section .process-step-content p {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.85);
}
.service-process-section .process-step-content p:last-child {
	margin-bottom: 0;
}
.service-process-section--dark .process-step-content p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 0.85rem;
}
.service-process-section--dark .process-step-content p:last-child {
	margin-bottom: 0;
}
.page-section--alt.service-process-section .process-step-content p {
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 1rem;
}
.page-section--alt.service-process-section .process-step-content p:last-child {
	margin-bottom: 0;
}

/* Sign fabrication (and similar): light-band spotlight with readable type + card */
.service-process-section.service-spotlight-light {
	background: #f4f4f4;
}
.service-process-section.service-spotlight-light .process-inner {
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}
.service-process-section.service-spotlight-light .section-heading {
	margin-bottom: 0.65rem;
}
.service-process-section.service-spotlight-light .section-intro {
	max-width: 42rem;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
	color: rgba(0, 0, 0, 0.82);
	line-height: 1.68;
}
.service-process-section.service-spotlight-light .process-two-col {
	grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
	gap: clamp(1.5rem, 4vw, 2.75rem);
	align-items: start;
}
.service-process-section.service-spotlight-light .process-spotlight-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	padding: clamp(1.25rem, 3vw, 1.85rem);
	box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}
#scoreboard-installation-spotlight .section-heading,
#scoreboard-installation-spotlight .section-intro {
	text-align: center;
}
#scoreboard-installation-spotlight .section-intro {
	max-width: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.service-process-section.service-spotlight-light .process-spotlight-label {
	font-family: var(--font-hero);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
	margin: 0 0 0.4rem;
	line-height: 1.3;
}
.service-process-section.service-spotlight-light .process-spotlight-label:not(:first-child) {
	margin-top: 1.35rem;
}
.service-process-section.service-spotlight-light .process-spotlight-card > p {
	font-size: 1.02rem;
	line-height: 1.68;
}
.service-process-section.service-spotlight-light .process-image {
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.service-process-section.service-spotlight-light .process-image-caption {
	margin: 0.75rem 0 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--text-muted, #666);
}
@media (max-width: 900px) {
	.service-process-section.service-spotlight-light .process-two-col {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 600px) {
	.service-process-section--dark .process-inner {
		padding: 1.5rem 1.25rem;
	}
	.process-step {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding: 1.25rem 0;
	}
	.process-step-indicator {
		flex-direction: row;
		align-items: baseline;
		gap: 0.5rem;
		min-width: 0;
		padding-right: 0;
		border-right: none;
		padding-bottom: 0.25rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		margin-bottom: 0.25rem;
	}
	.process-step-num {
		font-size: 1.75rem;
	}
	.process-step-label {
		margin-top: 0;
		font-size: 0.7rem;
	}
}

/* What We Fabricate on sign-fabrication: distinct background so it separates from Types We Fabricate below */
.service-types-section--sign-fab {
	background: #1a1a1a;
}
.service-types-section--sign-fab .section-heading,
.service-types-section--sign-fab .section-intro,
.service-types-section--sign-fab .service-type-card-title,
.service-types-section--sign-fab .service-type-card p {
	color: #fff;
}
.service-types-section--sign-fab .service-type-card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}
.service-types-section--sign-fab .service-type-card p {
	color: rgba(255, 255, 255, 0.88);
}

/* Monument sign PDF customer proofs (sign-fabrication) */
.monument-proofs-section {
	background: #f8f8f8;
}
.monument-proofs-section .section-heading {
	text-align: center;
}
.monument-proofs-section .section-intro {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 2rem;
}
.monument-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: stretch;
}
.monument-proof-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	padding: 1.25rem 1.25rem 1.5rem;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.monument-proof-title {
	font-family: var(--font-hero);
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
	line-height: 1.3;
	color: var(--accent);
}
.monument-proof-desc {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(0, 0, 0, 0.78);
	flex: 0 0 auto;
}
.monument-proof-preview {
	position: relative;
	flex: 1 1 auto;
	min-height: 260px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #eaeaea;
}
.monument-proof-preview iframe {
	display: block;
	width: 100%;
	height: 380px;
	border: none;
	pointer-events: none;
}
.monument-proof-preview-trigger {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0.75rem 1rem 1rem;
	margin: 0;
	border: none;
	cursor: zoom-in;
	font-family: var(--font-body, inherit);
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 42%, transparent 72%);
	transition: background 0.2s ease;
}
.monument-proof-preview-trigger:hover,
.monument-proof-preview-trigger:focus {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.06) 78%);
	outline: none;
}
.monument-proof-preview-trigger:focus-visible {
	box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 4px var(--accent, #a52a2a);
}
.monument-proof-preview-trigger-label {
	padding: 0.35rem 0.9rem 0.4rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: #111;
	text-shadow: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.monument-proof-preview-trigger:hover .monument-proof-preview-trigger-label,
.monument-proof-preview-trigger:focus .monument-proof-preview-trigger-label {
	background: #fff;
}
.monument-proof-download {
	margin: 1rem 0 0;
	text-align: center;
}
.monument-proof-download .btn {
	font-size: 0.9rem;
	padding: 0.5rem 1.15rem;
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	background: transparent;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
}
.monument-proof-download .btn:hover,
.monument-proof-download .btn:focus-visible {
	color: var(--accent-hover);
	text-decoration: underline;
}
.monument-proof-browser-note {
	text-align: center;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.55);
	max-width: 560px;
	margin: 1.75rem auto 0;
}
@media (max-width: 900px) {
	.monument-proof-grid {
		grid-template-columns: 1fr;
	}
	.monument-proof-preview iframe {
		height: 300px;
	}
}

/* Monument PDF full-size lightbox (sign-fabrication) */
.monument-pdf-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10002;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(0.75rem, 3vw, 1.5rem);
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.2s, opacity 0.2s;
}
.monument-pdf-lightbox[aria-hidden="false"] {
	visibility: visible;
	opacity: 1;
}
.monument-pdf-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	cursor: pointer;
}
.monument-pdf-lightbox-dialog {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(1120px, 96vw);
	height: min(90vh, 900px);
	max-height: calc(100vh - 1.5rem);
	background: #1a1a1a;
	border-radius: 10px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.monument-pdf-lightbox-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex: 0 0 auto;
	padding: 0.65rem 0.85rem 0.65rem 1.1rem;
	background: #222;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.monument-pdf-lightbox-heading {
	margin: 0;
	font-family: var(--font-hero);
	font-size: clamp(0.95rem, 2.2vw, 1.1rem);
	font-weight: 700;
	color: #f5f5f5;
	line-height: 1.3;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.monument-pdf-lightbox-close {
	flex: 0 0 auto;
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}
.monument-pdf-lightbox-close:hover,
.monument-pdf-lightbox-close:focus {
	background: rgba(255, 255, 255, 0.22);
	outline: none;
}
.monument-pdf-lightbox-close:focus-visible {
	box-shadow: 0 0 0 2px var(--accent, #a52a2a);
}
.monument-pdf-lightbox-frame-wrap {
	flex: 1 1 auto;
	min-height: 0;
	background: #2d2d2d;
}
.monument-pdf-lightbox-iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
	background: #3d3d3d;
}

.page-section--alt .service-types-list li,
.page-section--alt .section-intro {
	color: rgba(255, 255, 255, 0.9);
}
.page-section--alt .service-types-cta .page-lead-cta {
	background: var(--accent);
	color: #fff;
}

/* Why Choose Advanced Electric Signs: white section, centered items, checkmark icons (sign-fabrication) */
.service-why-section--fab {
	background: #fff;
	color: #000;
}
.service-why-section--fab .why-choose-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
}
.why-choose-header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.service-why-section--fab .section-heading {
	color: #000;
	text-align: center;
	margin-bottom: 0.5rem;
}
.why-choose-intro {
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.7);
	margin: 0;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.why-choose-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem 1.5rem;
}
.why-choose-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0;
}
.why-choose-item-icon-wrap {
	flex-shrink: 0;
	margin-bottom: 0.75rem;
}
.why-choose-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 1.5rem;
}
.why-choose-item-body {
	min-width: 0;
}
.why-choose-title {
	font-family: var(--font-hero);
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	font-weight: 700;
	color: #000;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}
.why-choose-item p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.72);
}
@media (max-width: 900px) {
	.why-choose-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem 1.25rem;
	}
}
@media (max-width: 600px) {
	.service-why-section--fab .why-choose-inner {
		padding: 0 1.25rem;
	}
	.why-choose-header {
		margin-bottom: 1.75rem;
	}
	.why-choose-list {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.why-choose-icon {
		font-size: 1.35rem;
	}
}

.service-related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin: 0 0 2rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.service-related-card {
	display: block;
	padding: 1.5rem;
	background: #f8f8f8;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.service-related-card:hover {
	border-color: var(--accent);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.service-related-icon {
	display: block;
	font-size: 1.75rem;
	color: var(--accent);
	margin-bottom: 0.75rem;
}
.service-related-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #000;
}
.service-related-desc {
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.8);
	margin: 0 0 0.75rem;
}
.service-related-link {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent);
}
.service-related-link i {
	margin-left: 0.25rem;
}
.service-related-back {
	text-align: center;
	margin: 0;
}
.service-related-back a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
}
.service-related-back a:hover {
	text-decoration: underline;
}
@media (max-width: 640px) {
	.service-related-grid {
		grid-template-columns: 1fr;
	}
}

.service-faq-section .faq-list {
	max-width: 720px;
	margin: 0 auto;
}

/* ========== SERVICES PAGE: Projects carousel (above Sign Capabilities) – full width ========== */
.svc-carousel-section {
	margin-top: 0;
	padding: 0.25rem 0 1rem;
	background: #fff;
	width: 100%;
}
.svc-carousel-wrap {
	position: relative;
	width: 100%;
}
.svc-carousel-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: var(--accent, #b31b1b);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.svc-carousel-arrow:hover {
	background: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}
.svc-carousel-arrow:focus-visible {
	outline: 2px solid var(--accent, #b31b1b);
	outline-offset: 3px;
}
.svc-carousel-arrow:active {
	transform: translateY(-50%) scale(0.96);
}
.svc-carousel-arrow--prev {
	left: 0.35rem;
}
.svc-carousel-arrow--next {
	right: 0.35rem;
}
@media (min-width: 900px) {
	.svc-carousel-arrow--prev {
		left: 0.75rem;
	}
	.svc-carousel-arrow--next {
		right: 0.75rem;
	}
}
.svc-carousel-viewport {
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	touch-action: manipulation;
}
.svc-carousel-track {
	display: flex;
	gap: 1rem;
	transition: transform 0.5s ease;
	width: max-content;
}
.svc-carousel-slide {
	flex: 0 0 280px;
	width: 280px;
	height: 368px;
	border-radius: 0;
	overflow: hidden;
	background: #e8e8e8;
}
.svc-carousel-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	cursor: pointer;
}
.svc-carousel-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
}
.svc-carousel-link:hover img {
	transform: scale(1.03);
}
.svc-carousel-slide--cta {
	flex: 0 0 280px;
	width: 280px;
	height: 368px;
}
.svc-carousel-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: var(--accent);
	color: var(--white);
	text-decoration: none;
	text-align: center;
	padding: 1.5rem;
	transition: background 0.2s, color 0.2s;
}
a.svc-carousel-cta:hover,
a.svc-carousel-cta:focus-visible {
	background: var(--accent-hover);
	color: var(--white);
	text-decoration: none;
}
.svc-carousel-cta-text {
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
	text-decoration: none;
}
a.svc-carousel-cta .svc-carousel-cta-link {
	font-family: var(--font-hero);
	font-size: 0.95rem;
	font-weight: 600;
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
}
a.svc-carousel-cta:hover .svc-carousel-cta-link,
a.svc-carousel-cta:focus-visible .svc-carousel-cta-link {
	text-decoration: underline;
	color: inherit;
}
@media (max-width: 640px) {
	.svc-carousel-slide,
	.svc-carousel-slide--cta {
		flex: 0 0 260px;
		width: 260px;
		height: 342px;
	}
}

/* Carousel lightbox */
.svc-carousel-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.2s, opacity 0.2s;
}
.svc-carousel-lightbox[aria-hidden="false"] {
	visibility: visible;
	opacity: 1;
}
.svc-carousel-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	cursor: pointer;
}
.svc-carousel-lightbox-content {
	position: relative;
	max-width: 95vw;
	max-height: 90vh;
	z-index: 1;
}
.svc-carousel-lightbox-img {
	display: block;
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.svc-carousel-lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: #000;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
}
.svc-carousel-lightbox-close:hover {
	background: #fff;
	color: #000;
}

.svc-graphics-gallery-section .section-intro {
	max-width: 70rem;
}

.svc-van-slideshow {
	display: grid;
	gap: 1rem;
	margin: 0 0 1.5rem;
}

.svc-van-slideshow-frame {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #e8e8e8;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.svc-van-slideshow-link {
	display: block;
	text-decoration: none;
}

.svc-van-slideshow-img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.svc-van-slideshow-meta {
	max-width: 60rem;
}

.svc-van-slideshow-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.svc-van-slideshow-btn {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: var(--accent);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.svc-van-slideshow-btn--prev {
	left: 0.5rem;
}

.svc-van-slideshow-btn--next {
	right: 0.5rem;
}

.svc-van-slideshow-btn:hover,
.svc-van-slideshow-btn:focus-visible {
	background: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}

.svc-van-slideshow-btn:active {
	transform: translateY(-50%) scale(0.96);
}

.svc-van-slideshow-btn:focus-visible {
	outline: 2px solid var(--accent, #b31b1b);
	outline-offset: 3px;
}

.svc-van-slideshow-dots {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.svc-van-slideshow-dots button {
	width: 0.65rem;
	height: 0.65rem;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.svc-van-slideshow-dots button.active {
	background: var(--accent);
}

/* Sign capabilities: same design as Why Choose + image per item */
.svc-capabilities-section .why-grid {
	margin-top: 0;
}
.svc-capability-item {
	display: flex;
	flex-direction: column;
}
.svc-capability-img {
	width: 100%;
	height: 200px;
	border-radius: 6px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
	margin-bottom: 1rem;
	flex-shrink: 0;
}
.svc-capability-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.svc-capabilities-section .why-item-num {
	margin-bottom: 0.5rem;
}
.svc-capabilities-section .why-item h3 {
	margin: 0 0 0.5rem;
}
.svc-capabilities-section .why-item p {
	margin: 0;
}
#lift-project-spotlight {
	background: #e7e7e7;
	color: #111;
}
#lift-project-spotlight .reviews-spot-why-heading,
#lift-project-spotlight .section-heading {
	color: var(--accent);
	text-align: center;
}
#lift-project-spotlight .section-intro {
	color: rgba(0, 0, 0, 0.82);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
#lift-project-spotlight .why-item h3,
#lift-project-spotlight .why-item p {
	color: rgba(0, 0, 0, 0.84);
}
#lift-project-spotlight .why-item-num {
	color: var(--accent);
}
/* Types We Fabricate: testimonial next to LED Retrofit (sign-fabrication) */
.svc-fab-testimonial {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	align-self: stretch;
}
.svc-fab-testimonial-quote {
	margin: 0 0 0.75rem;
	font-size: clamp(1.4rem, 2.25vw, 1.65rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
	font-style: normal;
}
.svc-fab-testimonial-quote::before,
.svc-fab-testimonial-quote::after {
	content: none;
}
.svc-fab-testimonial-author {
	display: block;
	margin: 0;
	font-size: 0.85rem;
	font-style: normal;
	color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 900px) {
	.svc-fab-testimonial {
		grid-column: 1 / -1;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		padding: 1.5rem 0 0 0;
		margin-top: 0.5rem;
	}
}
@media (max-width: 500px) {
	.svc-fab-testimonial {
		padding: 1.25rem 0 0 0;
	}
	.svc-fab-testimonial-quote {
		font-size: 1.4rem;
	}
}

/* Types We Fabricate: separate from What We Fabricate above (sign-fabrication) */
.service-fabrication-grid {
	padding-top: clamp(4rem, 10vw, 6rem);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Process: 50/50 split */
.svc-process-section {
	background: #fff;
}
.svc-process-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}
.svc-process-content {
	min-width: 0;
}
.svc-process-content .section-heading {
	margin-bottom: 0.75rem;
	line-height: 1.15;
}
.svc-process-intro {
	font-size: 1.1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.75);
	margin: 0 0 1.5rem;
}
.svc-process-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: process;
}
.svc-process-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(0, 0, 0, 0.85);
}
.svc-process-body {
	flex: 1;
	min-width: 0;
}
.svc-process-num {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: var(--white);
	font-family: var(--font-hero);
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 50%;
}
.svc-process-visual {
	min-height: 280px;
}
.svc-process-image {
	background: #e8e8e8;
	border-radius: 6px;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(0, 0, 0, 0.4);
	font-size: 0.9rem;
}
@media (max-width: 768px) {
	.svc-process-inner { grid-template-columns: 1fr; }
	.svc-process-visual { order: -1; min-height: 200px; }
	.svc-process-image { min-height: 200px; }
}

/* ========== SERVICES PAGE: Service area (content left, map right – unique layout) ========== */
.svc-service-area {
	background: #fff;
	color: #000;
	padding: clamp(3.5rem, 7vw, 5rem) 2rem;
}
.svc-service-area-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.svc-service-area-content {
	text-align: left;
	min-width: 0;
}
.svc-service-area-label {
	font-family: var(--font-hero);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
	color: var(--accent);
}
.svc-service-area-title {
	font-family: var(--font-hero);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	color: #000;
}
.svc-service-area-text {
	font-size: 1.1rem;
	line-height: 1.65;
	margin: 0 0 1.25rem;
	color: rgba(0, 0, 0, 0.85);
}
.svc-service-area-list {
	margin: 0 0 1.5rem;
	padding-left: 1.25rem;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.85);
}
.svc-service-area-list li {
	margin-bottom: 0.35rem;
}
.svc-service-area-actions {
	margin: 0;
}
.svc-service-area-map-wrap {
	min-width: 0;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #e8e8e8;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.svc-service-area-map {
	width: 100%;
	min-height: 360px;
	aspect-ratio: 4 / 3.2;
}
.svc-service-area-map .leaflet-control-attribution {
	font-size: 10px;
}
@media (max-width: 900px) {
	.svc-service-area-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.svc-service-area-content {
		text-align: center;
	}
	.svc-service-area-list {
		list-style-position: inside;
		padding-left: 0;
	}
	.svc-service-area-actions {
		justify-content: center;
	}
	.svc-service-area-map-wrap {
		order: -1;
	}
}

/* Ironclad guarantee: dark background, benefit cards with icons + vertical dividers */
.svc-guarantee-section {
	background: #000;
	color: var(--white);
}
.svc-guarantee-heading {
	font-family: var(--font-hero);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 0.5rem;
	color: var(--white);
}
.svc-guarantee-intro {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 2rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}
.svc-guarantee-cards {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 0;
	max-width: 900px;
	margin: 0 auto;
}
.svc-guarantee-card {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.5rem 1rem;
}
.svc-guarantee-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1rem;
	color: var(--accent);
	font-size: 1.75rem;
	line-height: 1;
}
.svc-guarantee-card-icon i {
	opacity: 1;
}
.svc-guarantee-card-title {
	font-family: var(--font-hero);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.3;
	color: var(--white);
	margin: 0 0 0.35rem;
}
.svc-guarantee-card-desc {
	font-family: var(--font-hero);
	font-size: 1.05rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}
.svc-guarantee-divider {
	width: 1px;
	flex-shrink: 0;
	align-self: stretch;
	min-height: 4rem;
	background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 700px) {
	.svc-guarantee-cards {
		flex-direction: column;
		align-items: center;
	}
	.svc-guarantee-card {
		flex: 0 0 auto;
		width: 100%;
		max-width: 280px;
		padding: 1.25rem 1rem;
	}
	.svc-guarantee-divider {
		display: none;
	}
}

/* Social proof: testimonials match About page style (stacked) */
.svc-proof-section .section-heading {
	text-align: center;
	margin-bottom: 0.5rem;
}
.svc-proof-brands {
	text-align: center;
	font-size: 0.95rem;
	color: rgba(0, 0, 0, 0.7);
	margin: 0 0 2rem;
}
.svc-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
@media (max-width: 900px) {
	.svc-testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.svc-testimonials-grid {
		grid-template-columns: 1fr;
	}
}
/* Reuse About page testimonial card styles */
.svc-testimonials-grid .about-testimonial-card {
	margin: 0;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.svc-testimonials-grid .about-testimonial-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}
.svc-testimonials-grid .about-testimonial-stars {
	display: inline-flex;
	gap: 0.15rem;
	color: #f4b400;
}
.svc-testimonials-grid .about-testimonial-stars .fa-star {
	font-size: 1rem;
}
.svc-testimonials-grid .about-testimonial-google {
	font-size: 1.25rem;
	color: #4285f4;
}
.svc-testimonials-grid .about-testimonial-quote {
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(0, 0, 0, 0.85);
	margin: 0 0 1rem;
}
.svc-testimonials-grid .about-testimonial-author {
	display: block;
	font-size: 0.95rem;
	font-style: normal;
	color: var(--accent);
	font-weight: 600;
}

/* ========== ABOUT PAGE: Trusted Brands (same format as homepage .brand-logos) ========== */
.about-trusted-brands {
	background: none;
	padding: clamp(3.5rem, 7vw, 5rem) 2rem;
	text-align: center;
	width: 100%;
	border-bottom: none;
}
.about-trusted-brands .content-inner {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0 2rem;
	box-sizing: border-box;
}
.about-trusted-intro {
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 2rem;
	line-height: 1.5;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.about-trusted-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
.about-trusted-logo-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-trusted-logo {
	height: clamp(80px, 12vw, 140px);
	width: auto;
	max-width: 200px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.85;
}
.about-trusted-brands .about-trusted-logo-item .brand-logo-placeholder {
	min-height: clamp(72px, 10vw, 120px);
	min-width: 90px;
	max-width: 168px;
	font-size: 0.75rem;
	font-weight: 600;
}
.about-trusted-brands .about-trusted-logo-item .brand-logo-placeholder--long {
	font-size: 0.68rem;
	max-width: 180px;
}
.about-trusted-brands .about-trusted-logo-item .brand-logo-placeholder--more {
	font-size: 0.7rem;
}
@media (max-width: 640px) {
	.about-trusted-brands .content-inner {
		padding: 0 1.25rem;
	}
	.about-trusted-logos {
		gap: 1.5rem;
	}
	.about-trusted-logo {
		height: 72px;
		max-width: 140px;
	}
	.about-trusted-brands .about-trusted-logo-item .brand-logo-placeholder {
		min-height: 64px;
		font-size: 0.65rem;
		max-width: 130px;
	}
}

/* ========== ABOUT PAGE: Our Work (featured projects showcase) ========== */
.about-work-section {
	background: #fff;
	padding-bottom: clamp(3rem, 6vw, 4rem);
}
.about-work-section .section-heading {
	text-align: center;
	margin-bottom: 0.5rem;
}
.about-work-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 0.5rem;
	font-size: 1.1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.75);
}
.about-work-credential {
	text-align: center;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(0, 0, 0, 0.6);
	margin: 0 0 2rem;
}
.about-work-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 2rem;
}
.about-work-card {
	display: block;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	text-decoration: none;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.about-work-card:hover,
.about-work-card:focus-visible {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}
.about-work-card:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
.about-work-card-img {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.about-work-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.about-work-card:hover .about-work-card-img img {
	transform: scale(1.05);
}
.about-work-card-caption {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.25rem;
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.about-work-card-type {
	font-family: var(--font-hero);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--accent);
}
.about-work-card-location {
	font-size: 0.95rem;
	color: rgba(0, 0, 0, 0.8);
	font-weight: 500;
}
.about-work-cta-wrap {
	text-align: center;
	margin: 0;
}
.btn-about-work {
	display: inline-block;
	font-family: var(--font-hero);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.9rem 2rem;
	border-radius: 6px;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}
.btn-about-work:hover,
.btn-about-work:focus-visible {
	background: var(--accent-hover);
	color: #fff;
}
@media (max-width: 900px) {
	.about-work-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}
@media (max-width: 560px) {
	.about-work-grid {
		grid-template-columns: 1fr;
	}
}

/* ========== ABOUT PAGE: Testimonials (3 at a time, carousel) ========== */
.about-testimonials-section {
	background: #fff;
}
.about-testimonials-section .section-heading {
	text-align: center;
	margin-bottom: 2rem;
}
.about-testimonials-viewport {
	overflow: hidden;
	width: 100%;
}
.about-testimonials-track {
	display: flex;
	width: 233.33%;
	transition: transform 0.6s ease;
	will-change: transform;
}
.about-testimonial-slide {
	flex: 0 0 14.2857%;
	min-width: 0;
	padding: 0 0.5rem;
	box-sizing: border-box;
}
.about-testimonial-card {
	margin: 0;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.about-testimonial-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}
.about-testimonial-stars {
	display: inline-flex;
	gap: 0.15rem;
	color: #f4b400;
}
.about-testimonial-stars .fa-star {
	font-size: 1rem;
}
.about-testimonial-google {
	font-size: 1.25rem;
	color: #4285f4;
}
.about-testimonial-quote {
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(0, 0, 0, 0.85);
	margin: 0 0 1rem;
}
.about-testimonial-author {
	display: block;
	font-size: 0.95rem;
	font-style: normal;
	color: var(--accent);
	font-weight: 600;
}
@media (max-width: 768px) {
	.about-testimonials-track {
		flex-direction: column;
		width: 100%;
	}
	.about-testimonial-slide {
		flex: 0 0 auto;
		width: 100%;
		padding: 0 0 1rem;
	}
	.about-testimonial-slide:last-child {
		padding-bottom: 0;
	}
}

/* ========== ABOUT PAGE: FAQ (narrow centered, accordion) ========== */
.about-faq-section .content-inner.about-faq-inner {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2rem;
}
.about-faq-section .section-heading {
	text-align: center;
	margin-bottom: 0.75rem;
}
.about-faq-intro {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.75);
	margin: 0 0 2rem;
	text-align: center;
}
.about-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* ========== QUOTE MODAL (Get a Quote popup) ========== */
.quote-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10001;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	overflow-y: auto;
}
.quote-modal.quote-modal-open {
	display: flex;
}
.quote-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}
.quote-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 680px;
	max-height: calc(90vh - 2rem);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
	margin: auto;
}
.quote-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	color: #000;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 8px;
	transition: background 0.2s, color 0.2s;
	z-index: 2;
}
.quote-modal-close:hover,
.quote-modal-close:focus {
	background: rgba(0, 0, 0, 0.08);
	color: #000;
}
.quote-modal-inner {
	padding: 1.75rem 2rem 2rem;
}
.quote-modal-title {
	font-family: var(--font-hero);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 0.35rem;
	color: #000;
}
.quote-modal-text {
	margin: 0 0 0.25rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.75);
}
.quote-modal-call {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.75);
}
.quote-modal-phone {
	color: var(--accent);
	font-weight: 700;
	text-decoration: none;
}
.quote-modal-phone:hover,
.quote-modal-phone:focus {
	text-decoration: underline;
}
/* Two-column grid for name, email, phone, address – keeps form short */
.quote-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1.25rem;
	row-gap: 0.75rem;
	margin-bottom: 0.75rem;
}
.quote-form-row {
	margin-bottom: 0.75rem;
}
.quote-form label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: #000;
}
.quote-form .optional {
	font-weight: 400;
	opacity: 0.75;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	padding: 0.6rem 0.9rem;
	border: 2px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	font-size: 0.95rem;
	font-family: inherit;
	color: #000;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-form select {
	cursor: pointer;
	appearance: auto;
}
.quote-form-hint {
	display: block;
	font-size: 0.85rem;
	color: rgba(0, 0, 0, 0.6);
	margin-top: 0.35rem;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
	color: rgba(0, 0, 0, 0.45);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(179, 27, 27, 0.2);
}
.quote-form-actions {
	margin-top: 1rem;
}
.quote-form-submit {
	display: block;
	width: 100%;
	padding: 0.75rem 1.5rem;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.quote-form-submit:hover,
.quote-form-submit:focus {
	background: var(--accent-hover);
	color: #fff;
}
@media (max-width: 520px) {
	.quote-form-grid {
		grid-template-columns: 1fr;
	}
	.quote-modal {
		padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
		align-items: flex-start;
		padding-top: max(1rem, env(safe-area-inset-top));
	}
	.quote-modal-inner {
		padding: 1.25rem 1.25rem 1.5rem;
	}
	/* Prevent iOS zoom on focus: ensure inputs are at least 16px */
	.quote-form input,
	.quote-form select,
	.quote-form textarea {
		font-size: 16px;
	}
}

/* Form success feedback */
.form-success-message {
	text-align: center;
	padding: 2rem 1rem;
	animation: fadeInUp 0.4s ease;
}
.form-success-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a7a3a;
	margin: 0 0 0.75rem;
}
.form-success-message p {
	margin: 0.5rem 0;
	font-size: 1.05rem;
}
.form-success-message a {
	font-weight: 600;
	color: var(--accent);
}

/* Form errors + anti-spam (honeypot hidden; Turnstile mount) */
.form-error-message {
	text-align: center;
	padding: 1rem 1rem 0;
	color: #b31b1b;
	font-weight: 600;
}
.form-error-message p {
	margin: 0;
	font-size: 1rem;
}
.hp-field {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
.aes-turnstile-mount {
	min-height: 65px;
}

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

/* ========== CONTACT PAGE ========== */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.contact-form-section {
	background: #fff;
	padding: 2.5rem 0;
}
.contact-form-section-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	box-sizing: border-box;
}
.contact-heading {
	font-family: var(--font-hero);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 0.5rem;
}
.contact-form-col .contact-intro {
	margin: 0 0 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	max-width: 32em;
}
.contact-form-col .contact-form {
	max-width: 28em;
}
.contact-form-row {
	margin-bottom: 1rem;
}
.contact-form-row label {
	display: block;
	font-family: var(--font-hero);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: #000;
}
.contact-form-row .required {
	color: var(--accent);
}
.contact-form-col input,
.contact-form-col textarea {
	width: 100%;
	padding: 0.6rem 0.75rem;
	font-family: var(--font-hero);
	font-size: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	box-sizing: border-box;
	transition: border-color 0.2s;
}
.contact-form-col input:focus,
.contact-form-col textarea:focus {
	outline: none;
	border-color: var(--accent);
}
.contact-form-actions {
	margin-top: 1.25rem;
}
.contact-form-submit {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	font-family: var(--font-hero);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	background: var(--accent);
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}
.contact-form-submit:hover,
.contact-form-submit:focus {
	background: var(--accent-hover);
}
.contact-form-call {
	margin: 1rem 0 0;
	font-size: 0.95rem;
	color: #333;
}
.contact-form-call .contact-phone-link {
	text-decoration: underline;
	color: var(--accent);
	font-weight: 600;
}
.contact-form-call .contact-phone-link:hover {
	color: var(--accent-hover);
}
.contact-image-col {
	position: relative;
}
.contact-section-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	object-fit: cover;
	max-height: 420px;
}
@media (max-width: 900px) {
	.contact-form-section-inner {
		grid-template-columns: 1fr;
		padding: 0 1.5rem;
	}
	/* Content and form first, photo below (DOM order) */
	.contact-section-image {
		max-height: 280px;
	}
}
@media (max-width: 480px) {
	.contact-form-section-inner {
		padding: 0 1.25rem;
	}
	.contact-form-section {
		padding: 1.5rem 0;
	}
	/* Prevent iOS zoom on focus */
	.contact-form-col input,
	.contact-form-col textarea {
		font-size: 16px;
	}
}

.contact-details-section {
	background: #f5f5f5;
	padding: 2.5rem 0;
}
.contact-details-heading {
	text-align: center;
	margin-bottom: 1.5rem;
}
.contact-details-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	box-sizing: border-box;
}
.contact-detail-card {
	background: #fff;
	padding: 1.5rem;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.contact-detail-title {
	font-family: var(--font-hero);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 0.5rem;
}
.contact-detail-desc {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #555;
}
.contact-detail-value {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
}
.contact-detail-value a {
	color: var(--accent);
	text-decoration: underline;
	transition: color 0.2s;
}
.contact-detail-value a:hover {
	color: var(--accent-hover);
}
.contact-detail-links a {
	text-decoration: underline;
}
.contact-detail-sep {
	margin: 0 0.25em;
	color: #999;
	font-weight: 400;
}
.contact-detail-emergency {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #eee;
}
.contact-detail-emergency-label {
	margin: 0 0 0.5rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #666;
}
.contact-detail-emergency .contact-detail-value {
	font-size: 1rem;
}
.contact-detail-emergency-note {
	font-weight: 500;
	font-size: 0.9rem;
	color: #555;
}
.contact-form-emergency {
	margin: 1rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 0.95rem;
	line-height: 1.5;
	color: #444;
}
.contact-form-emergency-label {
	display: block;
	font-weight: 700;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #666;
	margin-bottom: 0.35rem;
}
.contact-form-emergency-line {
	margin: 0;
}
@media (max-width: 900px) {
	.contact-details-grid {
		grid-template-columns: repeat(2, 1fr);
		padding: 0 1.5rem;
	}
}
@media (max-width: 520px) {
	.contact-details-grid {
		grid-template-columns: 1fr;
	}
}

.contact-map-section {
	padding: 0;
	background: #e8e8e8;
}
.contact-map-wrap {
	width: 100%;
	line-height: 0;
}
.contact-map-iframe {
	display: block;
	width: 100%;
	height: 450px;
	border: 0;
	vertical-align: middle;
}

/* ========== FOOTER (branded dark multi-column) ========== */
.site-footer {
	--footer-container-max: 1280px;
	--footer-padding-x: 2rem;
	position: relative;
	overflow: hidden;
	width: 100%;
	font-family: var(--font-hero);
	color: rgba(255, 255, 255, 0.9);
	background: #000;
}
/* Subtle red-to-black gradient from bottom right (match reviews-spot) */
.site-footer::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(to top left, transparent 0%, rgba(0, 0, 0, 0.4) 35%, rgba(179, 27, 27, 0.06) 70%, rgba(179, 27, 27, 0.12) 100%);
}

.footer-main {
	position: relative;
	z-index: 1;
	background: #000;
	padding: 4rem var(--footer-padding-x) 3.5rem;
}
.footer-main-inner {
	max-width: var(--footer-container-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 3rem 2.5rem;
	align-items: start;
}
.footer-col-title {
	font-family: var(--font-hero);
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 0 1.25rem;
}

/* Column 1: Brand – logo + tagline */
.footer-brand {
	position: relative;
}
.footer-brand .footer-logo {
	display: block;
	margin-bottom: 1.25rem;
}
.footer-brand .footer-logo img {
	display: block;
	max-height: 100px;
	width: auto;
	filter: none;
}
.footer-tagline {
	margin: 0;
	padding-right: 2rem;
	max-width: 32em;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

/* Column 2: Quick links */
.footer-nav--primary {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.footer-nav--primary a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 1.05rem;
	transition: color 0.2s;
}
.footer-nav--primary a:hover {
	color: var(--accent);
}

/* Column 3: Contact */
.footer-contact {
	margin: 0;
}
.footer-address,
.footer-phone,
.footer-emergency-contact,
.footer-hours-text {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
}
.footer-emergency-contact {
	font-size: 0.9rem;
	line-height: 1.45;
}
.footer-emergency-label {
	display: block;
	font-weight: 700;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 0.3rem;
}
.footer-emergency-line {
	display: block;
}
.footer-emergency-name {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
}
.footer-emergency-note {
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.88rem;
}
.footer-contact a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
	transition: color 0.2s;
}
.footer-contact a:hover {
	color: var(--accent);
}
.footer-quote-btn {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.6rem 1.25rem;
	background: var(--accent);
	color: var(--white);
	font-family: var(--font-hero);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.footer-quote-btn:hover,
.footer-quote-btn:focus {
	background: var(--white);
	color: var(--accent);
	text-decoration: none;
}
/* Override .footer-contact a so button-style link is never underlined */
.footer-contact a.footer-quote-btn,
.footer-contact a.footer-quote-btn:hover,
.footer-contact a.footer-quote-btn:focus {
	text-decoration: none !important;
}
@media (max-width: 640px) {
	.footer-quote-btn {
		min-height: 44px;
		padding: 0.75rem 1.5rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
}

/* General footer nav (More column) */
.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.footer-nav a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: underline;
	font-size: 1.09rem;
	transition: color 0.2s;
}
.footer-nav a:hover {
	color: var(--accent);
}

/* Contact block */
.footer-contact {
	margin: 0;
}
.footer-address,
.footer-phone,
.footer-emergency-contact,
.footer-email {
	margin: 0 0 0.6rem;
	font-size: 1.09rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
}
.footer-emergency-contact {
	font-size: 0.95rem;
	line-height: 1.45;
}
.footer-contact a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: underline;
	transition: color 0.2s;
}
.footer-contact a:hover {
	color: var(--accent);
}

/* Opening hours */
.footer-hours {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
}
.footer-hours li {
	margin: 0;
}

/* Bottom strip – same container width as .footer-main-inner (logo + tagline) */
.footer-bottom {
	position: relative;
	z-index: 1;
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1rem var(--footer-padding-x);
	/* Extra right padding so scroll-to-top button never covers "Website by Graticle" */
	padding-right: calc(var(--footer-padding-x) + 44px + 1rem);
}
.footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: var(--footer-container-max);
	margin: 0 auto;
}
.site-footer .copyright {
	margin: 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: left;
}
.footer-bottom-sitemap {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s ease;
}
.footer-bottom-sitemap:hover,
.footer-bottom-sitemap:focus {
	color: var(--accent);
}
.footer-credit {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: right;
}
.footer-credit-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}
.footer-credit-link:hover,
.footer-credit-link:focus,
.footer-credit-link:active {
	opacity: 1;
}
.footer-credit-logo {
	height: 32px;
	width: auto;
	display: block;
	filter: brightness(0) invert(1);
	transition: filter 0.2s ease;
}
.footer-credit-link:hover .footer-credit-logo,
.footer-credit-link:focus .footer-credit-logo,
.footer-credit-link:active .footer-credit-logo {
	filter: none;
}

/* Scroll to top – fixed bottom right */
.scroll-to-top {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 100;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #000;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.scroll-to-top:hover,
.scroll-to-top:focus,
.scroll-to-top:active {
	background: var(--accent);
	color: #fff;
	transform: translateY(-2px);
}
.scroll-to-top:hover i,
.scroll-to-top:focus i,
.scroll-to-top:active i {
	color: #fff;
}
.scroll-to-top i {
	font-size: 1rem;
}
.scroll-to-top[aria-hidden="true"] {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 1024px) {
	.footer-main-inner {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem 2rem;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
	.footer-brand .footer-logo img {
		max-height: 88px;
	}
}
@media (max-width: 600px) {
	.site-footer {
		--footer-padding-x: 1.5rem;
	}
	.footer-main {
		padding: 3rem var(--footer-padding-x) 2.5rem;
	}
	.footer-main-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		justify-items: center;
		text-align: center;
	}
	.footer-col {
		text-align: center;
	}
	.footer-brand .footer-logo {
		display: inline-block;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-brand .footer-logo img {
		max-height: 80px;
	}
	.footer-tagline {
		padding-right: 0;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-nav--primary {
		align-items: center;
	}
	.footer-contact {
		text-align: center;
	}
	.footer-phone-open-row {
		justify-content: center;
	}
	.footer-quote-btn {
		margin-left: auto;
		margin-right: auto;
	}
	.footer-bottom-inner {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		gap: 1rem;
	}
	.site-footer .copyright {
		text-align: center;
	}
	.footer-credit {
		text-align: center;
	}
	.footer-bottom {
		padding-right: calc(var(--footer-padding-x) + 40px + 0.75rem);
	}
	.scroll-to-top {
		bottom: 1rem;
		right: 1rem;
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
	}
}
@media (max-width: 400px) {
	.site-footer {
		--footer-padding-x: 1.25rem;
	}
}

/* ========== SITEMAP PAGE ========== */
.page-sitemap .sitemap-section .content-inner {
	padding: 0 2rem;
}
@media (max-width: 640px) {
	.page-sitemap .sitemap-section .content-inner {
		padding: 0 1.25rem;
	}
	.sitemap-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.sitemap-section .section-heading {
		font-size: 1.5rem;
	}
}
.sitemap-intro {
	margin: 0 0 2rem;
	color: rgba(0, 0, 0, 0.75);
	font-size: 1.05rem;
	line-height: 1.6;
}
.sitemap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
	gap: 2rem 2.5rem;
}
.sitemap-group-title {
	font-family: var(--font-hero);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
	color: #000;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 0.35rem;
}
.sitemap-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sitemap-list li {
	margin: 0 0 0.5rem;
}
.sitemap-list a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}
.sitemap-list a:hover {
	color: #000;
	text-decoration: underline;
}

/* ========== 404 page (reuses svc-hero, page-lead, contact-details-section, service-card) ========== */
.page-404-lead .page-lead-inner {
	align-items: center;
}
.page-404-path {
	margin: 0 0 1.25rem;
	padding: 0.65rem 0.85rem;
	background: rgba(0, 0, 0, 0.04);
	border: 1px solid var(--border);
	border-radius: 6px;
	line-height: 1.5;
	word-break: break-word;
}
.page-404-path-code {
	display: block;
	font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;
	font-size: 0.88rem;
	color: #000;
}
.page-404-lead .page-lead-title {
	margin-top: 0;
}
.page-404-tips-list {
	margin: 0 0 1.5rem;
	padding-left: 1.2rem;
	color: rgba(0, 0, 0, 0.78);
	font-size: 0.95rem;
	line-height: 1.55;
}
.page-404-tips-list li {
	margin-bottom: 0.5rem;
}
.page-404-tips-list li:last-child {
	margin-bottom: 0;
}
.page-404-dest-grid {
	margin-top: 0.5rem;
}
.page-404-dest-grid .page-404-dest-cta {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}
.page-404-dest-grid .page-404-dest-cta:hover,
.page-404-dest-grid .page-404-dest-cta:focus-visible {
	color: #fff !important;
}
