/* High-impact home-service layout (bold type, light gray / white rhythm, strong red) */
:root {
	--brand-red: #b51e1e;
	--brand-red-hover: #951818;
	--brand-red-active: #7a1212;
	--brand-red-soft: rgba(181, 30, 30, 0.12);
	--brand-charcoal: #1a1a1a;
	--brand-gray: #4a4a4a;
	--brand-gray-muted: #6b6b6b;
	--surface: #ffffff;
	--surface-cream: #ececec;
	--surface-subtle: #e4e4e4;
	--surface-warm: #dadada;
	--text-body: #2a2826;
	--text-muted: #4d4944;
	--border: #c8c8c8;
	--border-card: #bababa;
	--shadow-soft: 0 10px 32px rgba(20, 18, 16, 0.08);
	--shadow-card: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 14px rgba(20, 18, 16, 0.07);
	--shadow-lift: 0 18px 40px rgba(20, 18, 16, 0.12);
	--focus-ring: var(--brand-red);
	/* Text selection: neutral slate (not default blue, not brand-red tint) */
	--text-selection-bg: #b8c4c9;
	--text-selection-color: #0f0f0f;
	--nav-hover-bg: var(--surface-subtle);
	/* Form fields: placeholder + service select “unselected” closed state */
	--form-field-placeholder: #8a8a8a;
	--radius: 3px;
	--section-space: 3.5rem;
	--section-space-sm: 2.5rem;
	--band-y: 3.5rem;
	--band-y-sm: 2.75rem;
	/* Horizontal gutter for .wrap and full-bleed sections that carry their own inset (e.g. hero). */
	--wrap-pad-x: clamp(1rem, 4vw, 1.75rem);
	/* Conservative until JS measures the real fixed header (avoids hero text underlap). */
	--header-h: 6.5rem;
	/* Primary nav: drawer + phone icon below 64rem; horizontal bar + Call Now from 64rem up (common lg). */
	--surface-band-a: #ffffff;
	/* Canonical light-gray band (body, alternating sections, review tiles, milestones, split-bands) */
	--surface-band-b: #eeeeee;
	/* Alias of band-b — keep third “stripe” token in sync for older markup (e.g. .split-band--band-c) */
	--surface-band-c: var(--surface-band-b);
	/* Inner-page hero (no photo): warm gray between #eee bands and --brand-gray */
	--hero-inner-bg: #6a6865;
	--hero-inner-bg-end: #5e5c59;
	--font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
	--font-display: "Oswald", "Arial Narrow", "Segoe UI", sans-serif;
	--font-heading: var(--font-display);
}

html {
	scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

#trust-strip {
	scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.68;
	color: var(--text-body);
	background: var(--surface-band-b);
}

/* Display headings — condensed sans, high impact */
h1,
h2,
h3 {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--brand-charcoal);
	line-height: 1.18;
	letter-spacing: 0.03em;
}

::selection {
	background: var(--text-selection-bg);
	color: var(--text-selection-color);
}

::-moz-selection {
	background: var(--text-selection-bg);
	color: var(--text-selection-color);
}

@media (max-width: calc(64rem - 1px)) {
	body.nav-open {
		overflow: hidden;
	}
}

.wrap {
	max-width: 56rem;
	margin: 0 auto;
	padding: 0 var(--wrap-pad-x);
}

.wrap--wide {
	max-width: 72rem;
}

/* Header — full-width bar, fixed (solid “truck magnet” trust, not glass app UI) */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: var(--surface);
	border-bottom: 1px solid rgba(26, 26, 26, 0.08);
	transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-soft);
}

.header-bar {
	width: 100%;
}

.header-inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.25rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.logo {
	margin: 0;
	display: block;
	line-height: 0;
	text-decoration: none;
	align-self: center;
	flex: 0 1 auto;
	min-width: 0;
}

.logo-img {
	display: block;
	height: 6.65rem;
	width: auto;
	max-width: min(100%, 30rem);
	object-fit: contain;
	object-position: left center;
}

.logo:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 4px;
	border-radius: 4px;
}

/* Phone icon + hamburger (mobile only; hidden on desktop) */
.header-tools {
	display: none;
	align-items: center;
	gap: 1.15rem;
	flex-shrink: 0;
	margin-left: auto;
}

.btn-call-mobile {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-width: 2.85rem;
	min-height: 2.85rem;
	padding: 0.5rem;
	border: none;
	border-radius: var(--radius);
	background: var(--brand-red);
	color: #fff;
	font: inherit;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(20, 18, 16, 0.12);
	transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn-call-mobile:hover {
	background: var(--brand-red-hover);
	color: #fff;
	box-shadow: 0 3px 14px rgba(20, 18, 16, 0.16);
}

.btn-call-mobile:active {
	background: var(--brand-red-active);
}

.btn-call-mobile:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 3px;
}

.btn-call-mobile__icon {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	flex-shrink: 0;
	object-fit: contain;
	transform: scaleX(-1);
	filter: brightness(0) invert(1);
}

/* Hamburger (mobile) */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 3.85rem;
	height: 3.25rem;
	padding: 0;
	border: none;
	border-radius: var(--radius);
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.nav-toggle:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 2px;
}

.nav-toggle-bar {
	display: block;
	height: 3px;
	width: 2.1rem;
	margin: 0 auto;
	background: var(--brand-charcoal);
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
	opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.header-actions {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 1rem 1.5rem;
	margin-left: auto;
	min-width: 0;
}

.site-nav .nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.15rem 0.35rem;
	min-width: 0;
}

.site-nav .nav-list > li > a,
.site-nav .nav-list > li > .nav-services-link {
	display: inline-flex;
	align-items: center;
	min-height: 3.1rem;
	padding: 0.4rem 0.7rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9375rem;
	text-transform: uppercase;
	letter-spacing: 0.055em;
	color: var(--brand-charcoal);
	text-decoration: none;
	border-radius: var(--radius);
	transition: color 0.15s ease;
}

button.nav-services-link {
	appearance: none;
	background: transparent;
	border: none;
	cursor: pointer;
	font: inherit;
	text-align: left;
}

.site-nav a:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 2px;
}

.site-nav .nav-list > li > a:hover,
.site-nav .nav-list > li > .nav-services-link:hover {
	color: var(--brand-red);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.site-nav .nav-list > li > a.is-active,
.site-nav .nav-list > li > .nav-services-link.is-active {
	color: var(--brand-red);
	text-decoration: none;
}

.site-nav .nav-list > li > a.is-active:hover,
.site-nav .nav-list > li > .nav-services-link.is-active:hover {
	color: var(--brand-red-hover);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.has-dropdown .nav-services-link.is-active::after {
	border-right-color: var(--brand-red);
	border-bottom-color: var(--brand-red);
}

/* Services dropdown (desktop) */
.has-dropdown {
	position: relative;
}

.has-dropdown > .nav-services-link::after {
	content: "";
	display: inline-block;
	width: 0.35rem;
	height: 0.35rem;
	margin-left: 0.35rem;
	border-right: 2px solid var(--brand-gray);
	border-bottom: 2px solid var(--brand-gray);
	transform: rotate(45deg) translateY(-2px);
	vertical-align: middle;
}

.submenu {
	list-style: none;
	margin: 0;
	padding: 0.35rem 0;
	min-width: 24rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	position: absolute;
	left: 0;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.25rem);
	transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
	z-index: 250;
}

@media (min-width: 64rem) {
	.has-dropdown:hover .submenu,
	.has-dropdown:focus-within .submenu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.submenu a {
		white-space: nowrap;
	}
}

.submenu a {
	display: flex;
	align-items: center;
	padding: 0.5rem 1rem;
	color: var(--brand-charcoal);
	text-decoration: none;
	min-height: 2.75rem;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.submenu a:hover {
	background: var(--nav-hover-bg);
	color: var(--brand-red);
	text-decoration: none;
}

.submenu a.is-active {
	background: transparent;
	color: var(--brand-red);
	text-decoration: none;
}

.submenu a.is-active:hover {
	background: var(--nav-hover-bg);
	color: var(--brand-red-hover);
	text-decoration: none;
}

.submenu li:first-child a {
	font-weight: 600;
	color: var(--brand-charcoal);
}

/* Call button — type matches .site-nav links on desktop */
.btn-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.1rem;
	padding: 0.4rem 0.95rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9375rem;
	text-transform: uppercase;
	letter-spacing: 0.055em;
	color: #fff;
	text-decoration: none;
	background: var(--brand-red);
	border: none;
	border-radius: var(--radius);
	box-shadow: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.btn-call:hover {
	background: var(--brand-red-hover);
	color: #fff;
	text-decoration: none;
}

.btn-call:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 3px;
}

.btn-call:active {
	background: var(--brand-red-active);
}

/* Nav drawer + compact header bar (viewport < 64rem / 1024px) */
@media (max-width: calc(64rem - 1px)) {
	.header-inner {
		flex-wrap: nowrap;
		align-items: center;
		gap: 0.4rem 0.55rem;
	}

	.site-header.nav-open .header-inner {
		flex-wrap: wrap;
	}

	.logo {
		flex: 1 1 0;
		min-width: 0;
	}

	.logo-img {
		height: auto;
		max-height: 3.45rem;
		width: auto;
		max-width: 100%;
		object-fit: contain;
		object-position: left center;
	}

	.header-tools {
		display: flex;
		flex-shrink: 0;
		gap: 0.4rem;
		margin-left: 0;
	}

	.btn-call-mobile {
		display: inline-flex;
		min-width: 2.75rem;
		min-height: 2.75rem;
		padding: 0.45rem;
	}

	.btn-call-mobile__icon {
		width: 1.65rem;
		height: 1.65rem;
	}

	.nav-toggle {
		display: flex;
		width: 3.35rem;
		height: 2.85rem;
	}

	.nav-toggle-bar {
		width: 1.85rem;
	}

	.header-actions {
		display: none;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		margin-left: 0;
		padding-top: 0.5rem;
		padding-bottom: 0.75rem;
		gap: 1rem;
		border-top: 1px solid var(--border);
		margin-top: 0.25rem;
		max-height: min(70vh, 28rem);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.site-header.nav-open .header-actions {
		display: flex;
		flex-basis: 100%;
		order: 3;
	}

	.site-nav {
		width: 100%;
	}

	.site-nav .nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav .nav-list > li > a,
	.site-nav .nav-list > li > .nav-services-link {
		width: 100%;
		min-height: 3rem;
		padding: 0.65rem 0.75rem;
		font-size: 1.05rem;
		border-radius: 6px;
	}

	.has-dropdown > .nav-services-link::after {
		margin-left: auto;
		transition: transform 0.2s ease;
	}

	.has-dropdown.is-open > .nav-services-link::after {
		transform: rotate(-135deg) translateY(1px);
	}

	.submenu {
		position: static;
		opacity: 1;
		visibility: hidden;
		transform: none;
		box-shadow: none;
		border: none;
		border-radius: 0;
		padding: 0 0 0 0.75rem;
		min-width: 0;
		max-height: 0;
		overflow: hidden;
		pointer-events: none;
		transition: max-height 0.25s ease, visibility 0.2s ease;
	}

	.has-dropdown.is-open .submenu {
		visibility: visible;
		max-height: 22rem;
		padding-bottom: 0.35rem;
		pointer-events: auto;
	}

	.submenu a {
		min-height: 3rem;
		padding: 0.65rem 0.75rem;
		font-size: 1rem;
		border-radius: 6px;
	}

	.submenu a:hover {
		background: var(--nav-hover-bg);
	}

	.btn-call {
		display: none;
	}
}

@media (min-width: 64rem) {
	:root {
		--header-h: 7.25rem;
	}

	.site-nav .nav-list {
		gap: 0.1rem 0.2rem;
	}
}

/* Tablet-ish horizontal bar: slightly tighter links between 64rem and ~80rem */
@media (min-width: 64rem) and (max-width: 79.99rem) {
	.site-nav .nav-list > li > a,
	.site-nav .nav-list > li > .nav-services-link {
		padding-left: 0.55rem;
		padding-right: 0.55rem;
		font-size: 0.95rem;
	}

	.btn-call {
		padding-left: 0.85rem;
		padding-right: 0.85rem;
		font-size: 0.875rem;
	}
}

.site-main {
	padding: calc(var(--header-h) + 1.5rem) 0 3.5rem;
}

/* Home main: full-bleed sections handle their own vertical rhythm. */
.site-main--home {
	padding-top: var(--header-h);
	padding-bottom: 0;
}

/*
 * Shared marketing layout — home (index.php), about (about.php), etc.
 * ---------------------------------------------------------------------
 * Patterns: .hero, .hero--about-page, .trust-strip, .page-section, .section-head,
 * .section-center, .showcase-*, .split-band-*, .about-* (about page).
 */

.site-main .wrap a {
	color: var(--brand-red);
}

.site-main .wrap a:hover {
	color: var(--brand-red-hover);
}

.site-main .wrap a:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 2px;
	border-radius: 2px;
}

.site-main .wrap a.btn,
.site-main .wrap a.btn--primary,
.site-main .wrap a.btn--ghost,
.site-main .wrap a.btn--outline {
	text-decoration: none;
}

.site-main .wrap a.btn--primary,
.site-main .wrap a.btn--primary:hover {
	color: #fff;
}

.site-main .wrap a.btn--ghost,
.site-main .wrap a.btn--ghost:hover,
.site-main .wrap a.btn--ghost-on-red,
.site-main .wrap a.btn--ghost-on-red:hover {
	color: #fff;
}

.site-main .wrap a.btn--light {
	color: var(--brand-red);
}

.site-main .wrap a.btn--light:hover {
	color: var(--brand-red-hover);
}

.site-main .wrap a.btn--outline-red,
.site-main .wrap a.btn--outline-red:hover {
	color: var(--brand-red);
}

.site-main .wrap a.btn--outline {
	color: var(--brand-charcoal);
}

.site-main .wrap a.btn--outline:hover {
	color: var(--brand-red);
}

.site-main .wrap a.btn--outline-on-tint:hover {
	color: var(--brand-charcoal);
}

.site-main .wrap .card__title a {
	color: var(--brand-charcoal);
	text-decoration: none;
}

.site-main .wrap .card__title a:hover {
	color: var(--brand-red);
}

.site-main .wrap > h1 {
	margin-top: 0;
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--brand-charcoal);
	line-height: 1.18;
}

/* Footer — red urgency strip + white reviews + deep charcoal body */
.site-footer {
	background: #151515;
	color: rgba(255, 255, 255, 0.82);
	border-top: none;
	padding: 0;
	font-size: 0.9375rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
	color: #fff;
}

.site-footer a:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 3px;
	border-radius: 2px;
}

.footer-quote {
	scroll-margin-top: calc(var(--header-h) + 0.75rem);
	padding-top: var(--band-y);
	padding-bottom: calc(var(--band-y) + 0.25rem);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	gap: 2rem 2.5rem;
	align-items: start;
}

@media (min-width: 56rem) {
	.footer-quote {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
		gap: 3rem 3.5rem;
		align-items: stretch;
	}
}

.footer-quote__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 1.5vw + 1rem, 1.85rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
}

.footer-quote__lede {
	margin: 0.75rem 0 0;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
	max-width: 36rem;
	font-size: 1.02rem;
}

.footer-quote__points-shell {
	margin: 1rem 0 0;
	padding: 0.35rem 0 0.35rem 1.1rem;
	border-left: 6px solid var(--brand-red);
	width: fit-content;
	max-width: 100%;
	box-sizing: border-box;
}

.footer-quote__points {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.footer-quote__points li {
	margin: 0;
	padding: 0;
}

.footer-quote__phone-line {
	margin: 1.15rem 0 0;
	font-size: 0.9375rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
}

.footer-quote__phone-line a {
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.05rem;
	letter-spacing: 0.03em;
}

.quote-form {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius);
	padding: 1.5rem 1.4rem 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.quote-form__row {
	display: grid;
	gap: 1rem;
}

@media (min-width: 36rem) {
	.quote-form__row {
		grid-template-columns: 1fr 1fr;
	}
}

.quote-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.quote-form__field--grow {
	min-width: 0;
}

.quote-form__field--full {
	grid-column: 1 / -1;
}

.quote-form__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.55);
}

.quote-form__input {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	padding: 0.7rem 0.85rem;
	font: inherit;
	font-size: 1rem;
	color: var(--brand-charcoal);
	background: #fff;
}

.quote-form__input::placeholder,
.quote-form__textarea::placeholder {
	color: var(--form-field-placeholder);
	opacity: 1;
}

.quote-form__input:focus {
	outline: 2px solid var(--brand-red);
	outline-offset: 1px;
	border-color: transparent;
}

.quote-form__textarea {
	resize: vertical;
	min-height: 5.5rem;
}

select.quote-form__input,
.quote-form__select {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	line-height: 1.35;
	min-height: 2.75rem;
	padding-right: 2.35rem;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 0.75rem 0.45rem;
	/* Closed + no real value yet: same tone as text placeholders */
	color: var(--form-field-placeholder);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%238a8a8a' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

select.quote-form__select:valid {
	color: var(--brand-charcoal);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%231a1a1a' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

select.quote-form__select option {
	color: var(--brand-charcoal);
	background: #fff;
}

select.quote-form__select option[value=""] {
	color: var(--form-field-placeholder);
}

select.quote-form__select::-ms-expand {
	display: none;
}

.quote-form__note {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.5;
}

.quote-form .btn--primary {
	display: flex;
	width: 100%;
	color: #fff;
	background: var(--brand-red);
	border: none;
	box-shadow: none;
}

.quote-form .btn--primary:hover {
	color: #fff;
	background: var(--brand-red-hover);
}

.form-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-alert {
	margin: 0;
	padding: 0.7rem 0.8rem;
	border-radius: 0.4rem;
	font-size: 0.9375rem;
	line-height: 1.4;
	border: 1px solid transparent;
}

.form-alert--success {
	background: rgba(60, 179, 113, 0.14);
	border-color: rgba(60, 179, 113, 0.45);
	color: #1f5f3d;
}

.form-alert--error {
	background: rgba(210, 47, 43, 0.12);
	border-color: rgba(210, 47, 43, 0.35);
	color: #7a1616;
}

.quote-form .form-alert--success {
	background: rgba(111, 214, 150, 0.2);
	border-color: rgba(111, 214, 150, 0.5);
	color: #d8ffe7;
}

.quote-form .form-alert--error {
	background: rgba(255, 132, 132, 0.2);
	border-color: rgba(255, 132, 132, 0.5);
	color: #ffd9d9;
}

/* Customer reviews — static grid, editorial not carousel */
.footer-reviews {
	padding: var(--band-y) 0;
	background: var(--surface-band-b);
	color: var(--text-body);
	border-bottom: none;
}

.footer-reviews__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 1.5vw + 1rem, 1.85rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--brand-charcoal);
	text-align: center;
}

.footer-reviews__intro {
	margin: 0.5rem auto 1.5rem;
	max-width: 40rem;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-muted);
	text-align: center;
}

.review-grid {
	display: grid;
	align-items: start;
	gap: 1rem 1.25rem;
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64rem) {
	.review-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.1rem 1.35rem;
	}
}

.review-card {
	margin: 0;
	padding: 1.1rem 1.15rem 1.2rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	border-top: 3px solid var(--brand-red);
}

.review-card__stars {
	margin: 0 0 0.5rem;
	font-size: 0.85rem;
	line-height: 1;
	color: #a67c00;
	letter-spacing: 0.06em;
}

.review-card__quote {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.62;
	color: var(--text-body);
}

.review-card__quote p {
	margin: 0;
}

.review-card__meta {
	margin: 0.85rem 0 0;
	padding-top: 0.75rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.review-card__name {
	font-style: normal;
	font-weight: 700;
	color: var(--brand-charcoal);
}

.footer-grid {
	padding-top: 2.75rem;
	padding-bottom: 2.5rem;
	display: grid;
	gap: 2.25rem 3rem;
}

@media (min-width: 48rem) {
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.5rem 3.5rem;
	}
}

@media (min-width: 70rem) {
	.footer-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2.5rem 2.75rem;
	}
}

.footer-heading {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.45);
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.footer-links a {
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.footer-links a.is-active {
	color: var(--brand-red);
	text-decoration: none;
}

.footer-links a.is-active:hover {
	color: #ffb8b8;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.footer-col--meta .footer-heading {
	color: rgba(255, 255, 255, 0.5);
}

.footer-meta {
	margin: 0 0 0.6rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}

.footer-meta--small {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
}

.footer-meta__phone {
	font-weight: 700;
	font-size: 1.15rem;
	color: #fff !important;
	text-decoration: none;
}

.footer-meta__phone:hover {
	color: #ffc8c8 !important;
}

.footer-copy {
	margin: 1rem 0 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.45);
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.72rem;
	color: #fff !important;
}

.footer-social__link:hover {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #fff !important;
}

.footer-social__abbr {
	line-height: 1;
	text-transform: lowercase;
}

.footer-bottom {
	padding-top: 1.25rem;
	padding-bottom: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.footer-credit {
	margin: 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.42);
}

.footer-credit__mark {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.45rem 0.65rem;
}

.footer-credit__by {
	font-size: 0.82rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
}

.footer-credit__logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
	opacity: 0.5;
	transition: opacity 0.15s ease;
}

.footer-credit__logo-link:hover,
.footer-credit__logo-link:focus-visible {
	opacity: 0.9;
}

.footer-credit__logo {
	display: block;
	height: clamp(2.35rem, 5.5vw, 3.1rem);
	width: auto;
}

/* Back to top — fixed, shows after ~1 viewport of scroll */
.back-to-top {
	position: fixed;
	z-index: 120;
	right: max(1rem, env(safe-area-inset-right, 0px));
	bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
	width: 3rem;
	height: 3rem;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-red);
	color: #fff;
	border: none;
	border-radius: 0;
	cursor: pointer;
	box-shadow: var(--shadow-lift);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(0.35rem);
	transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background-color 0.15s ease;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--brand-red-hover);
}

.back-to-top:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 2px;
}

/* Upward triangle (no stem) */
.back-to-top__arrow {
	display: block;
	width: 0;
	height: 0;
	margin-bottom: 0.1rem;
	border-left: 0.42rem solid transparent;
	border-right: 0.42rem solid transparent;
	border-bottom: 0.7rem solid #fff;
	border-top: 0;
}

.lead {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text-muted);
	max-width: 40rem;
}

.service-list,
.gallery-grid {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

@media (min-width: 40rem) {
	.service-list,
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.service-list li,
.gallery-grid li {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem 1.25rem;
	box-shadow: var(--shadow-card);
}

.service-list a {
	font-weight: 600;
	color: var(--brand-red);
	text-decoration: none;
}

.service-list a:hover {
	color: var(--brand-red-hover);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.contact-block {
	margin: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem 1.35rem;
	max-width: 28rem;
	box-shadow: var(--shadow-card);
}

.contact-block dt {
	font-family: var(--font-body);
	font-weight: 700;
	margin-top: 0.75rem;
}

.contact-block dt:first-child {
	margin-top: 0;
}

.contact-block dd {
	margin: 0.25rem 0 0;
}

.contact-layout__quote-link {
	margin-top: 1rem;
	text-decoration: none;
}

/* ----- Reusable layout / home sections ----- */

.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;
}

.wrap--narrow {
	max-width: 38rem;
}

/* Hero (home) — compact band; vertical rhythm from padding + min-height */
.hero {
	position: relative;
	color: #fff;
	margin-top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	min-height: clamp(22rem, 48vh, 34rem);
	padding-top: clamp(1.5rem, 5vh, 3.25rem);
	padding-bottom: clamp(1.5rem, 5vh, 3.25rem);
	background-color: #141110;
	overflow-x: hidden;
	overflow-y: visible;
}

/* About page hero — shorter band, tighter vertical padding */
.hero.hero--about-page {
	min-height: 0;
	min-height: clamp(10rem, 22vh, 15rem);
	padding-top: clamp(0.75rem, 2.2vh, 1.25rem);
	padding-bottom: clamp(0.75rem, 2.2vh, 1.25rem);
}

.hero.hero--about-page .hero__inner {
	padding-top: 0;
	padding-bottom: 0;
}

.hero.hero--about-page .hero__title {
	max-width: min(100%, 52rem);
	font-size: clamp(1.45rem, 1.2vw + 0.95rem, 1.95rem);
	line-height: 1.1;
}

.hero.hero--about-page .hero__title-line--brand,
.hero.hero--about-page .hero__title-line--sub {
	color: #fff;
}

.hero.hero--about-page .hero__title-line--brand {
	text-shadow:
		0 2px 18px rgba(0, 0, 0, 0.78),
		0 4px 34px rgba(0, 0, 0, 0.52),
		0 0 1px rgba(0, 0, 0, 0.48);
}

.hero.hero--about-page .hero__title-line--brand::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 1.22em;
	margin-right: 0.45em;
	background: var(--brand-red);
	vertical-align: -0.2em;
	border-radius: 0;
	opacity: 1;
}

/* Non-home hero is now solid red with title-only copy; no darkening scrims needed. */
.hero.hero--about-page::before,
.hero.hero--about-page::after {
	content: "";
}

.hero.hero--about-page::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		linear-gradient(90deg, rgba(5, 4, 4, 0.58) 0%, rgba(8, 7, 7, 0.5) 40%, rgba(16, 14, 13, 0.42) 72%, rgba(25, 21, 19, 0.36) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, transparent 54%);
}

.hero.hero--about-page::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.34) 100%);
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-color: #2a2622;
	background-image: url("../img/hero-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Inner pages (non-home): use shared hero-inner-pages photo */
.hero.hero--about-page .hero__bg {
	background-image: url("../img/hero-inner-pages.jpg");
	background-image: image-set(
		url("../img/hero-inner-pages.webp") type("image/webp"),
		url("../img/hero-inner-pages.jpg") type("image/jpeg")
	);
	background-color: #2a2622;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero__bg picture {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.hero__bg-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		linear-gradient(90deg, rgba(5, 4, 4, 0.55) 0%, rgba(5, 4, 4, 0.45) 38%, rgba(18, 14, 12, 0.38) 58%, rgba(55, 22, 22, 0.28) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 50%);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
	pointer-events: none;
}

.hero__eyebrow {
	margin: 0 0 0.85rem;
	padding-bottom: 0;
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.9);
	max-width: 100%;
	line-height: 1.45;
}

.hero__inner {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	align-self: stretch;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	/* Match .wrap horizontal inset (explicit here so hero always aligns with other bands in flex layouts) */
	padding-inline: var(--wrap-pad-x);
	padding-top: clamp(0.5rem, 2vmin, 1.25rem);
	padding-bottom: clamp(0.5rem, 2vmin, 1.25rem);
	text-align: left;
}

.hero__title {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-family: var(--font-display);
	font-size: clamp(2.35rem, 5.5vw + 1rem, 3.85rem);
	line-height: 1.02;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.035em;
	color: #fff;
	text-shadow: 0 3px 28px rgba(0, 0, 0, 0.55);
	max-width: 20ch;
}

.hero__title-line {
	display: block;
}

.hero__title-line--brand {
	color: var(--brand-red);
	text-shadow:
		0 2px 20px rgba(0, 0, 0, 0.82),
		0 0 1px rgba(0, 0, 0, 0.6);
}

.hero__title-line--sub {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.08em;
	font-weight: 600;
	color: #fff;
	text-shadow:
		0 2px 18px rgba(0, 0, 0, 0.75),
		0 4px 36px rgba(0, 0, 0, 0.45);
}

.hero__title-sub-prefix {
	display: block;
}

.hero__rotator {
	display: block;
	margin-top: 0.02em;
	/* Slot height set by JS as --hero-rotator-h so transform steps match row height */
}

/* Spans are inline: height/width from JS do nothing until display is non-inline. */
.hero__rotator-viewport {
	display: block;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	contain: paint;
	line-height: inherit;
	flex-shrink: 0;
	width: fit-content;
	max-width: 100%;
	/* One line until JS sets exact px; must be a definite block size for clipping */
	height: var(--hero-rotator-h, 1.05em);
	max-height: var(--hero-rotator-h, 1.05em);
}

.hero__rotator-track {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
	line-height: 0;
	will-change: transform;
	transition: transform 0.36s cubic-bezier(0.33, 1, 0.32, 1);
}

.hero__rotator-word {
	flex: 0 0 var(--hero-rotator-h, 2.85rem);
	min-height: 0;
	height: var(--hero-rotator-h, 2.85rem);
	max-height: var(--hero-rotator-h, 2.85rem);
	overflow: hidden;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	white-space: nowrap;
	line-height: inherit;
}

@media (prefers-reduced-motion: reduce) {
	.hero__rotator-track {
		transition-duration: 0.01ms;
	}
}

.hero__lead {
	margin: 1.35rem 0 0;
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.68;
	color: rgba(255, 255, 255, 0.96);
	max-width: 38rem;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: 2rem;
}

@media (max-width: 767px) {
	.hero {
		min-height: clamp(20rem, 46vh, 30rem);
		padding-top: clamp(1.35rem, 5.5vh, 2.75rem);
		padding-bottom: clamp(1.35rem, 5.5vh, 2.75rem);
	}

	.hero.hero--about-page {
		min-height: clamp(8.75rem, 19vh, 12.75rem);
		padding-top: clamp(0.55rem, 1.8vh, 0.95rem);
		padding-bottom: clamp(0.55rem, 1.8vh, 0.95rem);
	}

	/* Stronger scrim on small screens so type stays readable over busy photo crops */
	.hero::before {
		background-image:
			linear-gradient(90deg, rgba(5, 4, 4, 0.72) 0%, rgba(5, 4, 4, 0.62) 36%, rgba(14, 11, 10, 0.52) 58%, rgba(45, 20, 20, 0.42) 100%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 52%);
	}

	.hero::after {
		background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.45) 100%);
	}

	.hero__eyebrow {
		font-size: 0.75rem;
		letter-spacing: 0.08em;
		text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
	}

	.hero__title {
		font-size: clamp(1.9rem, 7vw + 0.5rem, 2.85rem);
		max-width: none;
	}

	.hero__lead {
		font-size: 1.0625rem;
		text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__actions .btn {
		width: 100%;
		justify-content: center;
	}
}

/* Service detail — intro band (white + photo + actions); shared by service subpages */
.service-intro {
	display: grid;
	gap: 1.75rem;
	align-items: start;
}

@media (min-width: 52rem) {
	.service-intro {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
		gap: 2.25rem 2.5rem;
		align-items: center;
	}
}

.service-intro__copy {
	min-width: 0;
}

.service-intro__figure {
	margin: 0;
	min-width: 0;
}

.service-intro__photo {
	border-radius: calc(var(--radius) + 2px);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lift);
	background: var(--surface);
	aspect-ratio: 4 / 3;
}

.service-intro__photo picture {
	display: block;
	width: 100%;
	height: 100%;
}

.service-intro__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	vertical-align: middle;
}

.service-intro__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 0.85rem;
	align-items: center;
	margin-top: 1.25rem;
}

.service-intro__faq {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--brand-red);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.site-main .wrap .service-intro__faq:hover {
	color: var(--brand-charcoal);
}

.service-intro .lead {
	max-width: none;
}

/* Service subpages — breadcrumb under hero */
.page-breadcrumb {
	background: var(--surface-band-b);
	border-top: none;
	border-bottom: none;
	padding: 0.5rem 0 0.55rem;
}

.page-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--text-muted);
}

.page-breadcrumb__list > li {
	display: inline-flex;
	align-items: center;
}

.page-breadcrumb__list > li + li::before {
	content: "/";
	margin: 0 0.55rem;
	color: var(--border-card);
	font-weight: 400;
	pointer-events: none;
}

.site-main .wrap .page-breadcrumb a {
	font-weight: 600;
	text-decoration: none;
	color: var(--brand-gray-muted);
}

.site-main .wrap .page-breadcrumb a:hover {
	color: var(--brand-red);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.page-breadcrumb__current {
	font-weight: 600;
	color: var(--brand-charcoal);
}

/* Gallery page — responsive grid + lightbox */
.gallery-page-section__intro {
	margin-bottom: 1.25rem;
}

.gallery-empty {
	margin: 0;
	padding: 1.5rem 0;
	color: var(--text-muted);
	font-size: 1.05rem;
}

/* FAQ page — full white canvas + minimal list / animated disclosure */
body:has(.site-main--faq) {
	background: #fff;
}

.site-main--faq {
	min-height: calc(100svh - var(--header-h));
}

.faq-page__intro {
	max-width: 40rem;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.faq-page__eyebrow {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--brand-red);
}

.faq-list {
	max-width: 48rem;
	margin: 0 auto;
	border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.faq-item {
	border-bottom: 1px solid rgba(26, 26, 26, 0.1);
	transition: box-shadow 0.28s ease;
}

.faq-item.is-open {
	box-shadow: inset 3px 0 0 var(--brand-red);
}

.faq-item__heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.faq-item__trigger {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
	padding: 1.15rem 0.15rem 1.15rem 1.125rem;
	margin: 0;
	border: none;
	background: transparent;
	text-align: left;
	cursor: pointer;
	color: inherit;
	font: inherit;
}

.faq-item__trigger:hover .faq-item__q {
	color: var(--brand-red);
}

.faq-item__q {
	flex: 1;
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1rem, 0.45vw + 0.94rem, 1.125rem);
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.38;
	color: var(--brand-charcoal);
	transition: color 0.2s ease;
}

.faq-item__chevron {
	position: relative;
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	margin-right: 0.15rem;
}

.faq-item__chevron::before,
.faq-item__chevron::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--brand-charcoal);
	transform: translate(-50%, -50%);
	transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.28, 1), opacity 0.2s ease;
}

.faq-item__chevron::before {
	width: 0.65rem;
	height: 2px;
}

.faq-item__chevron::after {
	width: 2px;
	height: 0.65rem;
}

.faq-item.is-open .faq-item__chevron::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}

.faq-item__trigger:focus {
	outline: none;
}

.faq-item__trigger:focus-visible {
	outline: 2px solid var(--brand-red);
	outline-offset: 3px;
	border-radius: 2px;
}

.faq-item__panel-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s cubic-bezier(0.32, 0.72, 0.28, 1);
}

.faq-item.is-open .faq-item__panel-wrap {
	grid-template-rows: 1fr;
}

.faq-item__panel {
	overflow: hidden;
	min-height: 0;
}

.faq-item__a {
	margin: 0;
	padding: 0 2.25rem 1.35rem 1.125rem;
	font-size: 1.0625rem;
	line-height: 1.72;
	color: var(--text-body);
}

@media (prefers-reduced-motion: reduce) {
	.faq-item__panel-wrap {
		transition: none !important;
	}

	.faq-item__chevron::before,
	.faq-item__chevron::after {
		transition: none !important;
	}

	.faq-item {
		transition: none;
	}
}

/* Stacked “sheets” so switching sets does not change the URL */
.gallery-pages {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	align-items: start;
}

.photo-gallery__page {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
	z-index: 0;
}

.photo-gallery__page.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.photo-gallery {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

@media (min-width: 52rem) {
	.photo-gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.85rem;
	}
}

.photo-gallery__item {
	margin: 0;
}

.photo-gallery__link {
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: calc(var(--radius) + 2px);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-card);
	background: var(--surface-band-b);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.photo-gallery__link:hover {
	border-color: rgba(181, 30, 30, 0.35);
	box-shadow: var(--shadow-lift);
	transform: translateY(-1px);
}

.photo-gallery__link:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 3px;
}

.photo-gallery__frame {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.photo-gallery__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
}

.photo-gallery__zoom-hint {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.35rem 0.45rem;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
	background: linear-gradient(to top, rgba(10, 10, 10, 0.72), transparent);
	opacity: 0;
	transition: opacity 0.15s ease;
	pointer-events: none;
}

.photo-gallery__link:hover .photo-gallery__zoom-hint,
.photo-gallery__link:focus-visible .photo-gallery__zoom-hint {
	opacity: 1;
}

.photo-pagination {
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.photo-pagination__meta {
	margin: 0 0 0.85rem;
	font-size: 0.9375rem;
	color: var(--text-muted);
	text-align: right;
}

.photo-pagination__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.4rem 0.5rem;
}

.photo-pagination__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.35rem;
	min-height: 2.35rem;
	padding: 0 0.5rem;
	margin: 0;
	font: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--brand-charcoal);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.photo-pagination__btn:hover:not(:disabled) {
	color: var(--brand-red);
	border-color: rgba(181, 30, 30, 0.45);
}

.photo-pagination__btn:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 2px;
}

.photo-pagination__btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.photo-pagination__btn--prev,
.photo-pagination__btn--next {
	min-width: auto;
	padding: 0.45rem 0.85rem;
}

.photo-pagination__btn.is-active {
	font-weight: 700;
	color: #fff;
	background: var(--brand-red);
	border-color: var(--brand-red);
}

.photo-pagination__btn.is-active:hover:not(:disabled) {
	color: #fff;
	border-color: var(--brand-red-hover);
	background: var(--brand-red-hover);
}

body.lightbox-open {
	overflow: hidden;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	box-sizing: border-box;
}

.lightbox[hidden] {
	display: none !important;
}

.lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 8, 0.92);
	cursor: pointer;
}

.lightbox__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: min(96vw, 110rem);
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 2.75rem;
	pointer-events: auto;
}

.lightbox__img {
	display: block;
	max-width: 100%;
	max-height: min(82vh, 1600px);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
	position: absolute;
	top: 0.35rem;
	right: 0.35rem;
	z-index: 3;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: none;
	border-radius: var(--radius);
	font-size: 1.75rem;
	line-height: 1;
	color: #fff;
	background: rgba(0, 0, 0, 0.45);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.lightbox__close:hover {
	background: var(--brand-red);
}

.lightbox__close:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 2.65rem;
	height: 3.25rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius);
	font-size: 1.85rem;
	line-height: 1;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.lightbox__nav:hover {
	background: rgba(181, 30, 30, 0.85);
	border-color: transparent;
}

.lightbox__nav:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.lightbox__nav--prev {
	left: 0.25rem;
}

.lightbox__nav--next {
	right: 0.25rem;
}

@media (max-width: calc(40rem - 1px)) {
	.lightbox__inner {
		padding: 2.75rem 0.25rem 2.25rem;
	}

	.lightbox__nav--prev {
		left: 0.15rem;
	}

	.lightbox__nav--next {
		right: 0.15rem;
	}

	.lightbox__nav {
		width: 2.35rem;
		height: 2.85rem;
		font-size: 1.55rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.photo-gallery__page {
		transition: none;
	}

	.photo-gallery__link {
		transition: none;
	}

	.photo-gallery__zoom-hint {
		transition: none;
	}
}

.service-aspect-grid {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	gap: 1.15rem;
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.service-aspect-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

@media (min-width: 64rem) {
	.service-aspect-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.35rem;
	}
}

.service-aspect-card {
	margin: 0;
	padding: 1.25rem 1.2rem 1.35rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	min-height: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.service-aspect-card__index {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--brand-red);
}

.service-aspect-card__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.035em;
	line-height: 1.2;
	color: var(--brand-charcoal);
}

.service-aspect-card__text {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.58;
	color: var(--text-body);
	flex: 1 1 auto;
}

.service-aspect-card__text a {
	font-weight: 600;
}

/* Trust — white band, four accreditations in one row */
.trust-strip {
	background: var(--surface-band-a);
	border-top: none;
	border-bottom: none;
	padding: var(--band-y-sm) 0;
}

.trust-strip__inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.trust-strip__intro {
	flex: 0 1 22rem;
	min-width: 0;
}

.trust-strip__kicker {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brand-red);
}

.trust-marks {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1.25rem;
}

.trust-marks--accredit {
	flex-wrap: nowrap;
	justify-content: stretch;
	align-items: center;
	gap: clamp(0.45rem, 1.8vw, 1rem);
}

.trust-marks__item {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	flex: 1 1 0;
}

.trust-marks--accredit .trust-marks__item {
	opacity: 1;
}

.trust-marks--accredit .trust-marks__item picture {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.trust-marks__bbb-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	line-height: 0;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.15s ease;
}

.trust-marks__bbb-link picture {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.trust-marks__bbb-link:hover {
	opacity: 0.88;
}

.trust-marks__bbb-link:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 4px;
	border-radius: 2px;
}

.trust-marks__img {
	display: block;
	height: auto;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.trust-marks__img--iema {
	max-height: clamp(1.35rem, 3.8vw, 2.35rem);
}

.trust-marks__img--nrpp {
	max-height: clamp(1.85rem, 5vw, 2.65rem);
}

.trust-marks__img--insured {
	max-height: clamp(2rem, 5.5vw, 2.85rem);
}

.trust-marks__img--bbb {
	max-height: clamp(1.65rem, 4.5vw, 2.5rem);
}

@media (min-width: 52rem) {
	.trust-marks--accredit {
		gap: 1rem 1.35rem;
	}

	.trust-marks__img--iema {
		max-height: 3.15rem;
	}

	.trust-marks__img--nrpp {
		max-height: 3.5rem;
	}

	.trust-marks__img--insured {
		max-height: 3.65rem;
	}

	.trust-marks__img--bbb {
		max-height: 3.35rem;
	}
}

@media (min-width: 72rem) {
	.trust-marks__img--iema {
		max-height: 3.5rem;
	}

	.trust-marks__img--nrpp {
		max-height: 3.85rem;
	}

	.trust-marks__img--insured {
		max-height: 4rem;
	}

	.trust-marks__img--bbb {
		max-height: 3.65rem;
	}
}

@media (max-width: 36rem) {
	.trust-marks:not(.trust-marks--accredit) {
		justify-content: center;
	}

	.trust-marks--accredit {
		gap: 0.35rem;
	}
}

.trust-strip--compact {
	padding: var(--section-space-sm) 0;
}

/* Inner marketing pages (not home): flush under fixed header + section rhythm */
.site-main--about,
.site-main--services,
.site-main--gallery,
.site-main--faq,
.site-main--contact,
.site-main--privacy,
.site-main--not-found,
.site-main--sitemap {
	padding-top: var(--header-h);
	padding-bottom: 0;
}

.site-main--about .page-section:not(.page-section--cta-band),
.site-main--services .page-section:not(.page-section--cta-band),
.site-main--gallery .page-section:not(.page-section--cta-band),
.site-main--faq .page-section:not(.page-section--cta-band),
.site-main--contact .page-section:not(.page-section--cta-band),
.site-main--privacy .page-section:not(.page-section--cta-band),
.site-main--not-found .page-section:not(.page-section--cta-band),
.site-main--sitemap .page-section:not(.page-section--cta-band) {
	padding-top: var(--band-y-sm);
	padding-bottom: var(--band-y-sm);
}

/* White <main> shell (body band is gray) */
.site-main--contact,
.site-main--gallery,
.site-main--faq,
.site-main--privacy,
.site-main--not-found,
.site-main--sitemap {
	background: #fff;
}

.not-found-body {
	max-width: 40rem;
}

.not-found-body__title {
	margin: 0 0 0.5rem;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 0.9vw + 0.95rem, 1.55rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--brand-charcoal);
}

.not-found-body__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: 1.5rem;
}

.contact-layout {
	display: grid;
	gap: 1.25rem;
	align-items: start;
}

@media (min-width: 64rem) {
	.contact-layout {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		grid-template-areas:
			"intro intro"
			"form info";
		gap: 1.5rem;
		align-items: start;
	}
}

.section-head--contact {
	margin-bottom: 0.25rem;
	max-width: none;
}

.section-head--contact .section-head__sub {
	margin-left: 0;
	margin-right: 0;
	max-width: none;
}

@media (min-width: 64rem) {
	.section-head--contact {
		grid-area: intro;
		margin-bottom: 0.15rem;
	}
}

.contact-form {
	margin: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 1.5rem 1.35rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 64rem) {
	.contact-form {
		grid-area: form;
		align-self: start;
	}
}

.contact-layout__info {
	margin: 0;
	min-width: 0;
}

@media (min-width: 64rem) {
	.contact-layout__info {
		grid-area: info;
		align-self: start;
	}
}

.contact-form .quote-form__label {
	color: var(--brand-gray-muted);
}

.contact-form .quote-form__input {
	border: 1px solid var(--border);
}

.contact-form .quote-form__input:focus {
	outline: 2px solid var(--brand-red);
	outline-offset: 1px;
	border-color: transparent;
}

.page-section.page-section--white {
	background: #fff;
	border-top: none;
	border-bottom: none;
}

.page-section.faq-page-section {
	background: #fff;
	border-top: none;
	border-bottom: none;
	padding: clamp(1.75rem, 3vw, 2.75rem) 0 clamp(2.25rem, 4vw, 3.5rem);
}

.privacy-policy {
	max-width: 56rem;
}

.sitemap-header {
	margin-bottom: 1.3rem;
	max-width: 52rem;
}

.sitemap-header__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 0.9vw + 0.95rem, 1.55rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--brand-charcoal);
}

/* Flex (not grid rows) so each bordered group stays only as tall as its links */
.sitemap-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-start;
}

.sitemap-group {
	flex: 1 1 100%;
	min-width: 0;
	max-width: 100%;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem 1.1rem;
	box-sizing: border-box;
}

@media (min-width: 52rem) {
	.sitemap-group {
		flex: 1 1 calc(50% - 0.5rem);
		max-width: calc(50% - 0.5rem);
	}

	/* Third block alone on its row — full width */
	.sitemap-group:nth-child(3) {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

.sitemap-group__title {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--brand-charcoal);
}

.sitemap-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

.sitemap-list a {
	text-decoration: none;
}

.sitemap-list a:hover {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.privacy-policy__header {
	margin-bottom: 1.25rem;
}

.privacy-policy__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 0.9vw + 0.95rem, 1.55rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--brand-charcoal);
}

.privacy-policy h3 {
	margin: 1.35rem 0 0.4rem;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--brand-charcoal);
}

.privacy-policy p,
.privacy-policy ul {
	margin: 0.4rem 0 0;
}


.about-story-section {
	background: var(--surface);
	border-top: none;
	border-bottom: none;
}

.about-story {
	padding-top: 0.15rem;
}

.about-story__body {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--text-body);
}

.about-story__body::after {
	content: "";
	display: table;
	clear: both;
}

.about-story__logo {
	float: right;
	width: min(44%, 22rem);
	margin: 0.1rem 0 0.65rem 1.35rem;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	shape-outside: margin-box;
}

.about-story__logo img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 10.5rem;
	object-fit: contain;
	object-position: center;
}

.about-story__body > p {
	margin: 0 0 1.1rem;
}

.about-story__body > p:last-child {
	margin-bottom: 0;
}

@media (max-width: 47.99rem) {
	.about-story__logo {
		float: none;
		width: 100%;
		max-width: 20rem;
		margin: 0 auto 1.25rem;
		text-align: center;
	}

	.about-story__logo img {
		margin: 0 auto;
		max-height: 8.5rem;
	}
}

.about-timeline {
	list-style: none;
	margin: 0.85rem auto 0;
	padding: 0;
	max-width: min(52rem, 100%);
	border-top: none;
}

.about-timeline__item {
	display: grid;
	grid-template-columns: minmax(5.5rem, 7.5rem) 1fr;
	gap: 0.65rem 1.25rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--border);
	position: relative;
	align-items: start;
}

.about-timeline__date {
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--brand-red);
	line-height: 1.35;
	padding-top: 0.15rem;
}

.about-timeline__content {
	min-width: 0;
}

.about-timeline__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--brand-charcoal);
	line-height: 1.25;
}

.about-timeline__text {
	margin: 0.35rem 0 0;
	font-size: 0.98rem;
	line-height: 1.62;
	color: var(--text-muted);
}

@media (max-width: 36rem) {
	.about-timeline__item {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	.about-timeline__date {
		padding-top: 0;
	}
}

.about-assurance {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 1rem 1.15rem;
	grid-template-columns: 1fr;
	align-items: start;
}

@media (min-width: 40rem) {
	.about-assurance {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 60rem) {
	.about-assurance {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.1rem 1.35rem;
	}
}

/* At a glance — white band; square tiles + flat check (no gradients / rounding) */
.about-assurance-section {
	background: var(--surface);
	border-top: none;
	border-bottom: none;
}

.about-assurance-section .about-assurance__card {
	display: grid;
	grid-template-columns: 2.35rem minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 0.85rem;
	row-gap: 0.3rem;
	align-items: start;
	margin: 0;
	padding: 1.05rem 1.15rem 1.1rem 1rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0;
	box-shadow: none;
}

.about-assurance-section .about-assurance__card::before {
	content: "\2713";
	grid-column: 1;
	grid-row: 1 / -1;
	align-self: start;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	margin-top: 0.15rem;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background: var(--brand-red);
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.about-assurance-section .about-assurance__title {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	padding-top: 0.35rem;
}

.about-assurance-section .about-assurance__text {
	grid-column: 2;
	grid-row: 2;
	margin: 0;
}

.about-assurance__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.9375rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.045em;
	line-height: 1.25;
	color: var(--brand-charcoal);
}

.about-assurance__text {
	margin: 0.45rem 0 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Buttons (reuse on inner pages) */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.6rem 1.5rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	text-decoration: none;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn--sm {
	min-height: 2.55rem;
	padding: 0.5rem 1.15rem;
	font-size: 0.8125rem;
}

.btn--full {
	width: 100%;
}

.btn:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 3px;
}

.btn--primary {
	background: var(--brand-red);
	color: #fff;
	border: none;
	box-shadow: none;
}

.btn--primary:hover {
	background: var(--brand-red-hover);
	color: #fff;
	text-decoration: none;
}

.btn--primary:active {
	background: var(--brand-red-active);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	text-decoration: none;
}

.btn--ghost-on-red {
	border-color: rgba(255, 255, 255, 0.95);
	color: #fff;
	background: transparent;
}

.btn--ghost-on-red:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.btn--light {
	background: #fff;
	color: var(--brand-red);
	border: none;
}

.btn--light:hover {
	background: var(--surface-subtle);
	color: var(--brand-red-hover);
}

.btn--outline-red {
	background: transparent;
	color: var(--brand-red);
	border: 2px solid var(--brand-red);
}

.btn--outline-red:hover {
	background: var(--brand-red-soft);
	color: var(--brand-red-hover);
	border-color: var(--brand-red-hover);
}

.btn--outline {
	background: var(--surface);
	color: var(--brand-charcoal);
	border-color: var(--border-card);
}

.btn--outline:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
	text-decoration: none;
}

.btn--outline-on-tint {
	background: transparent;
	color: var(--brand-charcoal);
	border-color: rgba(58, 58, 58, 0.35);
}

.btn--outline-on-tint:hover {
	border-color: var(--brand-charcoal);
	color: var(--brand-charcoal);
	background: rgba(255, 255, 255, 0.35);
}

.btn--outline-on-light {
	background: transparent;
	color: var(--brand-charcoal);
	border: 2px solid rgba(26, 26, 26, 0.35);
}

.btn--outline-on-light:hover {
	border-color: var(--brand-charcoal);
	color: var(--brand-charcoal);
	background: rgba(255, 255, 255, 0.5);
}

/* Page sections */
.page-section {
	padding: var(--band-y) 0;
}

.page-section--tight {
	padding: var(--section-space-sm) 0;
}

.page-section--surface {
	background: var(--surface-warm);
	border-top: none;
	border-bottom: none;
}

/* Light gray band — alternate with white and red CTA (about, inner pages) */
.page-section--band-gray {
	background: var(--surface-band-b);
	border-top: none;
	border-bottom: none;
}

.page-section--accent {
	background: linear-gradient(180deg, var(--surface-warm) 0%, var(--surface-subtle) 65%);
	border-top: none;
}

.page-section--cta-band {
	padding: var(--band-y) 0 calc(var(--band-y) + 0.35rem);
	background: var(--brand-red);
	color: #fff;
	border-top: none;
	border-bottom: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page-section--cta-band .section-center {
	gap: 0.55rem;
}

.page-section--cta-band .section-center__eyebrow {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.75);
}

.page-section--cta-band .section-center__title {
	margin: 0.15rem 0 0;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.045em;
	font-size: clamp(1.75rem, 2.2vw + 1rem, 2.5rem);
	line-height: 1.12;
}

.page-section--cta-band .section-center__text {
	margin: 0.35rem 0 0;
	color: rgba(255, 255, 255, 0.92);
	max-width: 36rem;
	line-height: 1.62;
	font-size: 1.0625rem;
}

.site-main .page-section--cta-band .section-center__text a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.site-main .page-section--cta-band .section-center__text a:hover,
.site-main .page-section--cta-band .section-center__text a:focus-visible {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.18em;
}

.page-section--cta-band .section-center__phone {
	margin: 0.65rem 0 0;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2vw + 0.75rem, 2rem);
	font-weight: 700;
	letter-spacing: 0.03em;
}

.page-section--cta-band .section-center__phone a {
	color: #fff;
	text-decoration: none;
}

.page-section--cta-band .section-center__phone a:hover {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.page-section--cta-band .section-center__actions {
	margin-top: 1rem;
}

.section-head {
	margin-bottom: 1.75rem;
	max-width: 40rem;
}

.section-head__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 0.9vw + 0.95rem, 1.55rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.15;
	color: var(--brand-charcoal);
}

.section-head__sub {
	margin: 0.65rem auto 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	color: var(--text-muted);
	line-height: 1.68;
	max-width: 38rem;
}

.section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	max-width: 40rem;
}

/* Left-aligned title + deck (avoids centered .section-head__sub under left title) */
.section-head--flush {
	max-width: none;
}

.section-head--flush .section-head__sub {
	margin-left: 0;
	margin-right: 0;
	max-width: none;
}

.section-foot {
	margin: 1.35rem 0 0;
	text-align: center;
	font-weight: 600;
	font-size: 0.9375rem;
}

.section-foot a {
	text-decoration: none;
}

.section-foot a:hover {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

/* Service / content cards */
.card-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.15rem;
}

@media (min-width: 48rem) {
	.card-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
	}
}

@media (min-width: 36rem) and (max-width: 47.99rem) {
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem 1.2rem 1.35rem;
	box-shadow: var(--shadow-card);
}

.card__title {
	margin: 0 0 0.5rem;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.card__text {
	margin: 0;
	flex: 1 1 auto;
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.55;
}

.card__cta {
	margin-top: 1rem;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	color: var(--brand-red);
	align-self: flex-start;
}

.card__cta:hover {
	color: var(--brand-red-hover);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.card__cta:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 2px;
	border-radius: 2px;
}

.site-main .wrap a.card__cta:hover {
	color: var(--brand-red-hover);
}

/* Dual promo (about / gallery) */
.dual-promo {
	display: grid;
	gap: 1.15rem;
}

@media (min-width: 48rem) {
	.dual-promo {
		grid-template-columns: 1fr 1fr;
		gap: 1.35rem;
	}
}

.promo-panel {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.65rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.4rem 1.3rem 1.5rem;
	box-shadow: var(--shadow-card);
}

.promo-panel__title {
	margin: 0;
	font-size: 1.25rem;
	color: var(--brand-charcoal);
}

.promo-panel__text {
	margin: 0;
	font-size: 0.98rem;
	color: var(--text-muted);
	line-height: 1.55;
	flex: 1 1 auto;
}

.promo-panel .btn {
	margin-top: 0.35rem;
}

/* Centered CTA strip */
.section-center {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
}

.section-center__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 1.2vw + 1rem, 1.75rem);
	font-weight: 600;
	color: var(--brand-charcoal);
	line-height: 1.18;
	letter-spacing: 0.03em;
}

.section-center__text {
	margin: 0;
	max-width: 34rem;
	color: var(--text-muted);
	font-size: 1.0625rem;
	line-height: 1.65;
}

.section-center__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: center;
	margin-top: 0.5rem;
}

@media (max-width: 767px) {
	.section-center__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.section-center__actions .btn {
		width: 100%;
		justify-content: center;
	}
}

.site-main .wrap a.btn--outline-on-tint,
.site-main .wrap a.btn--outline-on-tint:hover {
	color: var(--brand-charcoal);
}

.site-main .wrap a.btn--outline-on-light,
.site-main .wrap a.btn--outline-on-light:hover {
	color: var(--brand-charcoal);
}

/*
 * Scroll reveal: html.js is set server-side on the <html> tag.
 * main.js adds .is-revealed when [data-reveal] enters the viewport (IntersectionObserver).
 */
@media (prefers-reduced-motion: no-preference) {
	html.js [data-reveal]:not(.is-revealed) {
		opacity: 0;
		transform: translate3d(0, 1rem, 0);
	}

	html.js [data-reveal].is-revealed {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		transition: opacity 0.55s ease-out, transform 0.55s ease-out;
	}

	html.js .showcase-grid > [data-reveal].is-revealed:nth-child(2) {
		transition-delay: 75ms;
	}

	html.js .showcase-grid > [data-reveal].is-revealed:nth-child(3) {
		transition-delay: 150ms;
	}

	html.js .review-grid > [data-reveal].is-revealed:nth-child(2) {
		transition-delay: 60ms;
	}

	html.js .review-grid > [data-reveal].is-revealed:nth-child(3) {
		transition-delay: 120ms;
	}

	html.js .review-grid > [data-reveal].is-revealed:nth-child(4) {
		transition-delay: 180ms;
	}

	html.js .review-grid > [data-reveal].is-revealed:nth-child(5) {
		transition-delay: 240ms;
	}

	html.js .review-grid > [data-reveal].is-revealed:nth-child(6) {
		transition-delay: 300ms;
	}

	html.js .about-timeline > .about-timeline__item.is-revealed:nth-child(2) {
		transition-delay: 45ms;
	}

	html.js .about-timeline > .about-timeline__item.is-revealed:nth-child(3) {
		transition-delay: 90ms;
	}

	html.js .about-assurance > .about-assurance__card.is-revealed:nth-child(2) {
		transition-delay: 50ms;
	}

	html.js .about-assurance > .about-assurance__card.is-revealed:nth-child(3) {
		transition-delay: 100ms;
	}

	html.js .about-assurance > .about-assurance__card.is-revealed:nth-child(4) {
		transition-delay: 150ms;
	}

	html.js .about-assurance > .about-assurance__card.is-revealed:nth-child(5) {
		transition-delay: 200ms;
	}

	html.js .about-assurance > .about-assurance__card.is-revealed:nth-child(6) {
		transition-delay: 250ms;
	}
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* Home — service showcase */
.page-section--showcase {
	background: var(--surface-band-b);
	border-top: none;
}

.showcase-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.15rem;
	grid-template-columns: 1fr;
}

@media (min-width: 52rem) {
	.showcase-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
		align-items: stretch;
	}
}

.showcase-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	background: var(--surface-band-a);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: none;
}

.showcase-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--brand-charcoal);
}

.showcase-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26, 26, 26, 0.08) 0%, rgba(26, 26, 26, 0.35) 100%);
	pointer-events: none;
}

.showcase-card__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.showcase-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0.92;
	transition: opacity 0.2s ease, transform 0.35s ease;
}

.showcase-card__media:hover img,
.showcase-card__media:focus-visible img {
	opacity: 1;
	transform: scale(1.02);
}

.showcase-card__body {
	padding: 1.15rem 1.2rem 1.35rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.55rem;
	flex: 1 1 auto;
	border-top: 3px solid var(--brand-red);
}

@media (min-width: 52rem) {
	.showcase-card__body {
		padding: 1.2rem 1.15rem 1.4rem;
	}
}

.showcase-card__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 0.9vw + 0.95rem, 1.28rem);
	font-weight: 600;
	line-height: 1.22;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--brand-charcoal);
	max-width: 22ch;
}

.showcase-card__text {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.98rem;
	line-height: 1.62;
	max-width: 36ch;
}

.showcase-card__btn {
	margin-top: auto;
	align-self: center;
	min-width: 9.5rem;
}

.showcase-card__btn:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 2px;
	border-radius: 2px;
}

.showcase-card__media:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 4px;
	border-radius: var(--radius);
}

/* Split bands — alternating band tokens (white / light gray) */
.split-band {
	padding: var(--band-y) 0;
	border-top: none;
}

.split-band--band-b {
	background: var(--surface-band-a);
}

/* True light gray (#eee) for alternating bands — .split-band--band-b stays white (legacy name) */
.split-band--band-gray {
	background: var(--surface-band-b);
}

/* Legacy modifier — same fill as .split-band--band-gray */
.split-band--band-c {
	background: var(--surface-band-b);
}

.split-band__grid {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	/* Let columns shrink below intrinsic image width so gap + copy stay correct */
	grid-template-columns: minmax(0, 1fr);
}

/* Gallery band: copy left, photo right on desktop; photo first on narrow screens */
@media (max-width: 51.99rem) {
	.split-band__grid--proof .split-band__visual {
		order: -1;
	}
}

.split-band__eyebrow {
	margin: 0 0 0.4rem;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brand-red);
}

.split-band__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
}

@media (min-width: 52rem) {
	.split-band__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 2.25rem 2.75rem;
		align-items: stretch;
	}

	.split-band__content {
		justify-content: center;
	}
}

.split-band__visual {
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 0;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--brand-charcoal);
	box-shadow: none;
	aspect-ratio: 4 / 3;
}

.split-band__visual--proof {
	position: relative;
}

.split-band__visual--proof::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
	pointer-events: none;
}

.split-band__img {
	display: block;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.9;
}

.split-band__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 0.75vw + 0.95rem, 1.4rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.035em;
	line-height: 1.14;
	color: var(--brand-charcoal);
}

.split-band__text {
	margin: 0.85rem 0 0;
	font-family: var(--font-body);
	color: var(--text-muted);
	line-height: 1.68;
	font-size: 1.0625rem;
	max-width: 36rem;
}

.split-band__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 0.85rem;
	margin-top: 1.15rem;
}

.split-band__list {
	margin: 1rem 0 0;
	padding: 0 0 0 1.1rem;
	color: var(--text-body);
	line-height: 1.65;
	font-size: 1.02rem;
}

.split-band__list li {
	margin: 0.35rem 0;
}

/* Standalone CTA after list (about band); paired buttons use .split-band__actions */
.split-band__content > .btn {
	margin-top: 1.15rem;
}
