/* =========================================================
   True Seal Paver Sealing — design tokens
   ========================================================= */
:root {
	--navy: #1a2740;
	--navy-deep: #10182b;
	--navy-soft: #3c475d;
	--paper: #f4f7fb;
	--orange: #e2591f;
	--orange-light: #eb7a3d;
	/* Darkened for text on light backgrounds — #e2591f only hits ~3.7:1 on
	   paper/white, below WCAG AA's 4.5:1 for normal text. Buttons/large UI
	   keep --orange; links/eyebrows/small text use this. */
	--orange-text: #b34619;
	--white: #ffffff;
	--gray-body: #4b5567;
	--line-on-navy: rgba(248, 250, 252, 0.14);
	--line-on-paper: rgba(26, 39, 64, 0.12);

	--font-display: "Poppins", system-ui, sans-serif;
	--font-body: "Inter", system-ui, sans-serif;

	--space-2xs: 0.5rem;
	--space-xs: 0.75rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
	--space-2xl: 6rem;

	--radius: 10px;
	--radius-card: 18px;
	--container: 1240px;
	--transition: 200ms ease;
	--shadow-card: 0 20px 40px -22px rgba(26, 39, 64, 0.28);
	--shadow-card-hover: 0 26px 48px -18px rgba(26, 39, 64, 0.35);
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html,
body {
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
}
@media (prefers-reduced-motion: no-preference) {
	html { scroll-behavior: smooth; }
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray-body);
	background: var(--paper);
}
/* Clearance for the fixed sticky quote/call bar so it doesn't cover
   the footer's last line on the widths where that bar shows. */
@media (max-width: 1039px) {
	body {
		padding-bottom: 68px;
	}
}
img, svg { max-width: 100%; display: block; }
a { color: var(--orange-text); text-decoration: none; }
a:hover { text-decoration: underline; }
.tsps-header a:not(.tsps-btn), .tsps-footer a:not(.tsps-btn), .tsps-hero a:not(.tsps-btn) { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--navy);
	line-height: 1.1;
	margin: 0 0 var(--space-sm);
}
h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.2vw + 1rem, 1.4rem); }
.tsps-heading-accent {
	color: var(--orange);
}
.tsps-hero .tsps-heading-accent,
.tsps-page-hero .tsps-heading-accent,
.tsps-ads-hero .tsps-heading-accent,
.tsps-ads-section--dark .tsps-heading-accent,
.tsps-ads-final .tsps-heading-accent,
.tsps-footer .tsps-heading-accent {
	color: var(--orange-light);
}
p { margin: 0 0 var(--space-sm); }

:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 2px;
}

.u-visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.tsps-skip-link:focus {
	position: fixed;
	top: var(--space-sm);
	left: var(--space-sm);
	width: auto; height: auto;
	clip: auto;
	background: var(--white);
	color: var(--navy);
	padding: var(--space-xs) var(--space-sm);
	border-radius: var(--radius);
	z-index: 200;
}

.tsps-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space-md);
}

/* =========================================================
   Scroll reveals — fadeInUp + slide-in-left/right. Driven by
   assets/js/main.js (IntersectionObserver adds .is-visible). Delays
   for staggered groups are also set there via .tsps-reveal-group.
   ========================================================= */
.tsps-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 700ms ease, transform 700ms ease;
}
.tsps-reveal.is-visible {
	opacity: 1;
	transform: none;
}
.tsps-reveal--left {
	transform: translateY(28px);
}
.tsps-reveal--right {
	transform: translateY(28px);
}
.tsps-reveal--left.is-visible,
.tsps-reveal--right.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tsps-reveal,
	.tsps-reveal--left,
	.tsps-reveal--right {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* "Landing" reveal — a bigger slide-in from off-screen left with a soft
   overshoot/settle ease, for a single hero-style image (the truck) that
   should feel like it's arriving and touching down, not just fading up. */
.tsps-reveal-land {
	opacity: 0;
	transform: translateX(-140px);
	transition: opacity 800ms ease, transform 900ms cubic-bezier(0.22, 1.4, 0.36, 1);
}
.tsps-reveal-land.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tsps-reveal-land {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Subtle "the page feels alive" hover — a small scale on standalone
   content photos (not used on flip cards or the compare sliders, which
   already have their own hover/drag motion). */
.tsps-img-hover {
	transition: transform 450ms ease;
}
.tsps-img-hover:hover {
	transform: scale(1.035);
}
@media (prefers-reduced-motion: reduce) {
	.tsps-img-hover {
		transition: none;
	}
	.tsps-img-hover:hover {
		transform: none;
	}
}

/* =========================================================
   Buttons — shared by theme (.tsps-btn) and the trueseal-forms
   plugin's form submit button (.ts-btn), same visual language.
   ========================================================= */
.tsps-btn, .ts-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-decoration: none;
	border: 0;
	border-radius: var(--radius);
	padding: 0.9em 1.6em;
	cursor: pointer;
	transition: background-color var(--transition), transform var(--transition), color var(--transition);
}
.tsps-btn:hover, .ts-btn:hover { text-decoration: none; }

.tsps-btn--primary, .ts-btn--primary {
	background: var(--orange);
	color: var(--white);
}
.tsps-btn--primary:hover, .ts-btn--primary:hover {
	background: var(--orange-light);
	color: var(--white);
}

.tsps-btn--secondary {
	background: var(--navy);
	color: var(--white);
}
.tsps-btn--secondary:hover {
	background: var(--navy-soft);
	color: var(--white);
}

.tsps-btn--ghost {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--line-on-navy);
}
.tsps-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border-color: var(--white);
}

.tsps-btn--sm { padding: 0.6em 1.1em; font-size: 0.8rem; }
.tsps-btn--lg { padding: 1.05em 2em; font-size: 1rem; }
.tsps-btn--full, .ts-btn--full { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.tsps-header {
	background: var(--white);
	color: var(--navy);
	position: relative;
	z-index: 100;
	box-shadow: 0 2px 16px rgba(26, 39, 64, 0.08);
}
.tsps-header-spacer {
	display: none;
	height: var(--tsps-sticky-header-height, 0px);
}
.tsps-header-spacer.is-active {
	display: block;
}
.tsps-header.is-sticky-active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	animation: tspsStickyHeaderIn 260ms ease both;
	box-shadow: 0 14px 34px rgba(16, 24, 43, 0.16);
}
.tsps-header.is-sticky-active .tsps-header__inner {
	padding-block: 0.55rem;
}
.tsps-header.is-sticky-active .tsps-header__logo,
.tsps-header.is-sticky-active .tsps-header__brand .custom-logo {
	width: 36px;
	height: 36px;
}
@keyframes tspsStickyHeaderIn {
	from {
		opacity: 0;
		transform: translateY(-100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.tsps-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	padding-block: 0.85rem;
	transition: padding-block var(--transition);
}
.tsps-header__brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-shrink: 0;
}
.tsps-header__logo {
	width: 46px;
	height: 46px;
	object-fit: contain;
	transition: width var(--transition), height var(--transition);
}
.tsps-header__brand .custom-logo-link {
	display: block;
	flex: 0 0 auto;
}
.tsps-header__brand .custom-logo {
	width: 42px;
	height: 42px;
	object-fit: cover;
	border-radius: 50%;
	transition: width var(--transition), height var(--transition);
}
.tsps-header__wordmark {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--navy);
	font-size: 1.05rem;
	letter-spacing: 0.01em;
}
.tsps-header__nav {
	display: none;
}
/* Kept in sync with .tsps-hero__inner's split breakpoint below — a gap
   between the two would show wrapped nav with the hero's form pushed
   out of view (the exact bug that was reported and fixed 2026-08-11). */
@media (min-width: 1040px) {
	.tsps-header__nav {
		display: flex;
		flex: 1;
		justify-content: center;
		min-width: 0;
	}
}
.tsps-nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}
.tsps-nav > li {
	position: relative;
}
.tsps-nav a {
	display: inline-block;
	color: var(--navy);
	font-weight: 600;
	font-size: 0.92rem;
	transition: color var(--transition), transform var(--transition);
}
.tsps-nav a:hover {
	color: var(--orange-text);
	transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
	.tsps-nav a:hover {
		transform: none;
	}
}
.tsps-header__nav .menu-item-has-children > a {
	padding-right: 0.85rem;
	position: relative;
}
.tsps-header__nav .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.38rem;
	height: 0.38rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-64%) rotate(45deg);
}
.tsps-header__nav .sub-menu {
	position: absolute;
	top: calc(100% + 0.75rem);
	left: 50%;
	z-index: 120;
	display: grid;
	gap: 0.15rem;
	min-width: 220px;
	padding: 0.55rem;
	background: var(--white);
	border: 1px solid var(--line-on-paper);
	border-radius: var(--radius);
	box-shadow: 0 24px 48px -24px rgba(16, 24, 43, 0.36);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity var(--transition), transform var(--transition);
}
.tsps-header__nav .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -0.8rem;
	height: 0.8rem;
}
.tsps-header__nav li:hover > .sub-menu,
.tsps-header__nav li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
.tsps-header__nav .sub-menu a {
	display: block;
	padding: 0.6rem 0.7rem;
	border-radius: calc(var(--radius) - 2px);
	white-space: nowrap;
}
.tsps-header__nav .sub-menu a:hover {
	background: var(--paper);
	transform: none;
	text-decoration: none;
}
.tsps-header__actions {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	flex-shrink: 0;
}
.tsps-header__phone {
	color: var(--navy);
	font-weight: 700;
	white-space: nowrap;
	display: none;
}
@media (min-width: 640px) {
	.tsps-header__phone { display: inline; }
}
/* Header's inline CTA competes with the hamburger for space on narrow
   phones — the drawer has its own full-width CTA, so hide this one
   below 480px rather than crowd the bar. */
@media (max-width: 760px) {
	.tsps-header__actions > .tsps-btn {
		display: none;
	}
}

/* ---------------------------------------------------------------
   Mobile nav — hamburger toggle + slide-in-right drawer
   --------------------------------------------------------------- */
.tsps-mobile-nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	color: var(--navy);
	flex-shrink: 0;
}
.tsps-mobile-nav-toggle svg {
	width: 26px;
	height: 26px;
	stroke: var(--navy);
	stroke-width: 2;
	fill: none;
}
@media (min-width: 1040px) {
	.tsps-mobile-nav-toggle {
		display: none;
	}
}

.tsps-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 300;
	visibility: hidden;
	pointer-events: none;
}
.tsps-mobile-nav.is-open {
	visibility: visible;
	pointer-events: auto;
}
@media (min-width: 1040px) {
	.tsps-mobile-nav {
		display: none;
	}
}

.tsps-mobile-nav__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 24, 43, 0.6);
	opacity: 0;
	transition: opacity 350ms ease;
}
.tsps-mobile-nav.is-open .tsps-mobile-nav__backdrop {
	opacity: 1;
}

.tsps-mobile-nav__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(340px, 85vw);
	background: var(--white);
	box-shadow: -16px 0 48px rgba(16, 24, 43, 0.3);
	transform: translateX(100%);
	transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
	display: flex;
	flex-direction: column;
	padding: var(--space-md);
	overflow-y: auto;
}
.tsps-mobile-nav.is-open .tsps-mobile-nav__panel {
	transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
	.tsps-mobile-nav__backdrop,
	.tsps-mobile-nav__panel {
		transition: none;
	}
}

.tsps-mobile-nav__panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-sm);
	border-bottom: 1px solid var(--line-on-paper);
}
.tsps-mobile-nav__close {
	background: transparent;
	border: 0;
	padding: 6px;
	cursor: pointer;
	color: var(--navy);
	flex-shrink: 0;
}
.tsps-mobile-nav__close svg {
	width: 22px;
	height: 22px;
	stroke: var(--navy);
	stroke-width: 2;
	fill: none;
}

.tsps-mobile-nav .tsps-nav {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}
.tsps-mobile-nav .tsps-nav a {
	display: block;
	padding: 0.85em 0.1em;
	font-size: 1.05rem;
	border-bottom: 1px solid var(--line-on-paper);
}
.tsps-mobile-nav .tsps-nav a:hover {
	transform: none;
}
.tsps-mobile-nav .sub-menu {
	display: grid;
	padding-left: var(--space-sm);
	background: var(--paper);
	border-left: 3px solid var(--orange);
}
.tsps-mobile-nav .sub-menu a {
	font-size: 0.95rem;
}

.tsps-mobile-nav__actions {
	margin-top: auto;
	padding-top: var(--space-lg);
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}
.tsps-mobile-nav__phone {
	text-align: center;
	font-weight: 700;
	color: var(--navy);
	font-size: 1.1rem;
}

body.tsps-no-scroll {
	overflow: hidden;
}

/* Anchor targets shouldn't land underneath the sticky header. */
#services, #reviews, #service-area, #faq, #quote {
	scroll-margin-top: 90px;
}

/* =========================================================
   Hero
   ========================================================= */
.tsps-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
	padding-block: var(--space-2xl) calc(var(--space-xl) + 30px);
}
.tsps-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 2;
	height: clamp(42px, 5vw, 72px);
	background: var(--white);
	clip-path: polygon(0 64%, 100% 22%, 100% 100%, 0 100%);
}

.tsps-hero__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.tsps-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
	filter: saturate(0.65) brightness(0.85);
	-webkit-mask-image: radial-gradient(ellipse 70% 90% at 78% 45%, black 30%, transparent 72%);
	mask-image: radial-gradient(ellipse 70% 90% at 78% 45%, black 30%, transparent 72%);
}
.tsps-hero__texture {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: repeating-linear-gradient(
		115deg,
		rgba(255, 255, 255, 0.05) 0px,
		rgba(255, 255, 255, 0.05) 1px,
		transparent 1px,
		transparent 14px
	);
	mix-blend-mode: overlay;
}

.tsps-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
	align-items: start;
}
/* Matches the header nav's own breakpoint (1040px) so there's no
   in-between width where nav shows wrapped but the hero is still
   single-column with the form pushed below the fold. */
@media (min-width: 1040px) {
	.tsps-hero__inner {
		grid-template-columns: 1.15fr 0.85fr;
		align-items: center;
	}
}

.tsps-hero__content {
	width: min(100%, 620px);
}

.tsps-hero__form {
	width: 100%;
	min-width: 0;
}

.tsps-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	margin-bottom: var(--space-md);
}
.tsps-trust-row__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--white);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}
.tsps-trust-row__item svg {
	width: 18px;
	height: 18px;
	fill: var(--orange-light);
	flex-shrink: 0;
}

.tsps-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--orange-text);
	margin-bottom: var(--space-xs);
}
/* On the navy hero background --orange-text is too dark to read clearly —
   use the lighter tint there instead. */
.tsps-hero .tsps-eyebrow {
	color: var(--orange-light);
}

.tsps-hero__headline {
	color: var(--white);
	margin-bottom: var(--space-sm);
}

.tsps-hero__subhead {
	color: rgba(248, 250, 252, 0.85);
	font-size: 1.05rem;
	max-width: 42ch;
	margin-bottom: var(--space-lg);
}

.tsps-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

/* =========================================================
   Quote form card (rendered by the trueseal-forms plugin via
   trueseal_render_contact_form() — classes are the plugin's).
   ========================================================= */
.ts-form-card {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	background: var(--white);
	border-radius: var(--radius-card);
	padding: var(--space-lg);
	box-shadow: 0 24px 48px -16px rgba(16, 24, 43, 0.45);
	overflow: hidden;
}
.ts-form-card__heading {
	margin-bottom: var(--space-md);
}
.ts-contact-form {
	width: 100%;
	min-width: 0;
}
.ts-form-notice {
	border-radius: var(--radius);
	padding: var(--space-sm);
	margin-bottom: var(--space-md);
	font-size: 0.9rem;
	font-weight: 600;
}
.ts-form-notice--success {
	background: #e6f4ea;
	color: #1e6b34;
}
.ts-form-notice--error {
	background: #fbe9e7;
	color: #b3261e;
}
.ts-honeypot {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.ts-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-sm) var(--space-md);
	margin-bottom: var(--space-md);
	width: 100%;
	min-width: 0;
}
.ts-form-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
	max-width: 100%;
}
.ts-form-field--full {
	grid-column: 1 / -1;
}
.ts-form-field label,
.ts-form-legend {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--navy);
}
.ts-form-field .required {
	color: var(--orange-text);
}
.ts-form-field input,
.ts-form-field select {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	font: inherit;
	font-family: var(--font-body);
	padding: 0.7em 0.85em;
	border: 1.5px solid var(--line-on-paper);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--navy);
}
.ts-form-field input:focus,
.ts-form-field select:focus {
	border-color: var(--orange);
}
.ts-field-error {
	border-color: #b3261e !important;
}

.ts-form-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm) var(--space-md);
	min-width: 0;
}
.ts-form-radio {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--gray-body);
	cursor: pointer;
	min-width: 0;
}
.ts-form-radio input {
	accent-color: var(--orange);
	width: 16px;
	height: 16px;
}
.ts-form-recaptcha {
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	margin-bottom: var(--space-md);
}
.ts-form-recaptcha .g-recaptcha {
	max-width: 100%;
	transform-origin: left top;
}
.ts-form-recaptcha iframe {
	max-width: 100%;
}

@media (max-width: 560px) {
	.ts-form-grid { grid-template-columns: 1fr; }
	.ts-form-field { grid-column: 1 / -1; }
}

@media (max-width: 380px) {
	.ts-form-recaptcha .g-recaptcha {
		transform: scale(0.88);
		width: 114%;
	}
}

/* =========================================================
   Intro section — image-left/text-right, white background
   ========================================================= */
.tsps-intro {
	background: var(--white);
	padding-block: var(--space-2xl);
}
.tsps-intro__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
	align-items: center;
}
@media (min-width: 900px) {
	.tsps-intro__inner {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-2xl);
	}
}
.tsps-intro__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius-card);
	box-shadow: 0 24px 48px -28px rgba(26, 39, 64, 0.4);
}
.tsps-intro__text h2 {
	color: var(--navy);
}
.tsps-intro__text p {
	color: var(--navy);
	max-width: 52ch;
}
.tsps-intro__text .tsps-btn {
	margin-top: var(--space-xs);
}

/* =========================================================
   Services grid
   ========================================================= */
.tsps-services {
	background: var(--paper);
	padding-block: var(--space-2xl);
}
.tsps-services__heading {
	text-align: center;
	max-width: 40ch;
	margin-inline: auto;
	margin-bottom: var(--space-xl);
}

.tsps-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}
@media (min-width: 640px) {
	.tsps-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1100px) {
	.tsps-services__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Flip cards — front is photo+title, back is description+CTA. The
   whole card is one link (see template), so hover/focus flips it for
   mouse/keyboard users while touch users can just tap straight through. */
.tsps-flip-card {
	perspective: 1800px;
}
.tsps-flip-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
	border-radius: var(--radius-card);
}
.tsps-flip-card__link:hover,
.tsps-flip-card__link:focus {
	text-decoration: none;
	color: inherit;
}
.tsps-flip-card__inner {
	position: relative;
	min-height: 440px;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	transform-style: preserve-3d;
	transition: transform 650ms cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow var(--transition);
}
.tsps-flip-card__link:hover .tsps-flip-card__inner,
.tsps-flip-card__link:focus-visible .tsps-flip-card__inner {
	transform: rotateY(180deg);
	box-shadow: var(--shadow-card-hover);
}

.tsps-flip-card__face {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: var(--radius-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.tsps-flip-card__face--front img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tsps-flip-card__front-overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: var(--space-md);
	background: linear-gradient(180deg, transparent 0%, rgba(16, 24, 43, 0.85) 100%);
}
.tsps-flip-card__front-overlay h3 {
	color: var(--white);
	text-transform: uppercase;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	margin: 0;
}

.tsps-flip-card__face--back {
	transform: rotateY(180deg);
	background: var(--white);
	border: 1px solid var(--line-on-paper);
	justify-content: space-between;
	padding: var(--space-md);
}
.tsps-flip-card__face--back h3 {
	text-transform: uppercase;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	color: var(--navy);
	margin-bottom: var(--space-2xs);
}
.tsps-flip-card__face--back p {
	color: var(--gray-body);
	font-size: 0.9rem;
	margin: 0;
}

@media (prefers-reduced-motion: reduce) {
	.tsps-flip-card__inner {
		transition: none;
	}
}

/* =========================================================
   Brand visual banner — simple, bold pause point
   ========================================================= */
.tsps-banner {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(16, 24, 43, 0.7) 0%, rgba(26, 39, 64, 0.66) 100%),
		url("../photos/homepage/sealed-pool-deck.jpeg") center / cover fixed;
	padding-block: calc(var(--space-2xl) + 40px);
}
.tsps-banner::before,
.tsps-banner::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
	height: clamp(42px, 5vw, 74px);
}
.tsps-banner::before {
	top: -1px;
	background: var(--paper);
	clip-path: polygon(0 0, 100% 0, 100% 34%, 0 78%);
}
.tsps-banner::after {
	bottom: -1px;
	background: var(--white);
	clip-path: polygon(0 56%, 100% 18%, 100% 100%, 0 100%);
}

.tsps-banner__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
}
.tsps-banner__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	filter: saturate(0.5) brightness(0.75);
}
.tsps-banner__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(
		ellipse 65% 75% at 50% 50%,
		rgba(16, 24, 43, 0.82) 0%,
		rgba(16, 24, 43, 0.55) 55%,
		rgba(16, 24, 43, 0.2) 100%
	);
}

.tsps-banner__content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 640px;
}
.tsps-banner__logo {
	display: block;
	width: 86px;
	height: 86px;
	object-fit: contain;
	margin: 0 auto var(--space-sm);
	filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.38));
}
.tsps-banner__wordmark {
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(248, 250, 252, 0.8);
	font-size: 0.9rem;
	margin-bottom: var(--space-sm);
}
.tsps-banner__tagline {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--white);
	font-size: clamp(1.6rem, 2.5vw + 1rem, 2.4rem);
	line-height: 1.2;
	margin: 0 0 var(--space-lg);
}

/* =========================================================
   Credibility section — text-left/image-right, white background
   ========================================================= */
.tsps-credibility {
	background: var(--white);
	padding-block: var(--space-2xl);
}
.tsps-credibility__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
	align-items: center;
}
@media (min-width: 900px) {
	.tsps-credibility__inner {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-2xl);
	}
}

.tsps-credibility__text h2 {
	color: var(--navy);
}
.tsps-credibility__text > p {
	color: var(--navy);
	max-width: 52ch;
}

.tsps-credibility__list {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	margin: var(--space-md) 0 var(--space-lg);
}
.tsps-credibility__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	color: var(--navy);
	font-weight: 500;
}
.tsps-credibility__list svg {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 0.1em;
}
.tsps-credibility__list svg circle {
	fill: var(--orange);
}

.tsps-credibility__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

/* =========================================================
   Testimonials
   ========================================================= */
.tsps-testimonials {
	background: var(--paper);
	padding-block: var(--space-2xl);
}
.tsps-testimonials__heading {
	text-align: center;
	max-width: 40ch;
	margin-inline: auto;
	margin-bottom: var(--space-2xs);
}
.tsps-testimonials__subhead {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	text-align: center;
	color: var(--orange-text);
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: var(--space-xl);
}
.tsps-testimonials__subhead svg {
	width: 16px;
	height: 16px;
	fill: var(--orange);
}

/* Auto-scrolling marquee: .track holds two copies of .set back to back
   (200% width) and animates from -50% to 0%, so the second copy is what's
   already on screen at the loop boundary — the restart is invisible. */
.tsps-testimonials__viewport {
	overflow: hidden;
	width: 100%;
	padding-block: var(--space-2xs) var(--space-sm);
	-webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
	mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.tsps-testimonials__track {
	display: flex;
	width: max-content;
	animation: tsps-marquee-right 55s linear infinite;
}
.tsps-testimonials__viewport:hover .tsps-testimonials__track,
.tsps-testimonials__viewport:focus-within .tsps-testimonials__track {
	animation-play-state: paused;
}
.tsps-testimonials__set {
	display: flex;
	flex-shrink: 0;
	gap: var(--space-lg);
	padding-inline: calc(var(--space-lg) / 2);
}

@keyframes tsps-marquee-right {
	from {
		transform: translateX(-50%);
	}
	to {
		transform: translateX(0%);
	}
}

.tsps-testimonial-card {
	flex: 0 0 320px;
	max-width: 85vw;
	background: var(--white);
	border: 1px solid var(--line-on-paper);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	padding: var(--space-md);
	display: flex;
	flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition);
}
.tsps-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card-hover);
}

@media (prefers-reduced-motion: reduce) {
	.tsps-testimonials__viewport {
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}
	.tsps-testimonials__track {
		animation: none;
	}
	.tsps-testimonials__set[aria-hidden] {
		display: none;
	}
}
.tsps-testimonial-card__stars {
	display: flex;
	gap: 0.2rem;
	margin-bottom: var(--space-xs);
}
.tsps-testimonial-card__stars svg {
	width: 16px;
	height: 16px;
	fill: var(--orange);
}
.tsps-testimonial-card__quote {
	color: var(--navy);
	font-size: 0.95rem;
	flex: 1;
	margin-bottom: var(--space-md);
}
.tsps-testimonial-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-sm);
	padding-top: var(--space-sm);
	border-top: 1px solid var(--line-on-paper);
}
.tsps-testimonial-card__name {
	color: var(--navy);
	font-weight: 700;
	font-size: 0.9rem;
	margin: 0;
}
.tsps-testimonial-card__time {
	color: var(--gray-body);
	font-size: 0.78rem;
	margin: 0;
}
.tsps-testimonial-card__source {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-shrink: 0;
}
.tsps-testimonial-card__source svg {
	width: 16px;
	height: 16px;
}
.tsps-testimonial-card__source span {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--gray-body);
	white-space: nowrap;
}

.tsps-testimonials__cta {
	text-align: center;
	margin-top: var(--space-xl);
}

/* =========================================================
   Service area
   ========================================================= */
.tsps-service-area {
	background: var(--white);
	padding-block: var(--space-2xl);
}
.tsps-service-area__heading {
	text-align: center;
	max-width: 44ch;
	margin-inline: auto;
	margin-bottom: var(--space-2xs);
}
.tsps-service-area__subhead {
	text-align: center;
	max-width: 56ch;
	margin-inline: auto;
	margin-bottom: var(--space-xl);
}

.tsps-service-area__split {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	margin-bottom: var(--space-lg);
	align-items: stretch;
}
@media (min-width: 900px) {
	.tsps-service-area__split {
		grid-template-columns: 1.1fr 0.9fr;
		gap: var(--space-2xl);
	}
}

.tsps-service-area__map {
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	min-height: 320px;
}
.tsps-service-area__map iframe {
	width: 100%;
	height: 100%;
	min-height: 320px;
	border: 0;
	display: block;
}

.tsps-service-area__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-sm);
	align-content: start;
}

.tsps-service-area__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85em 1.1em;
	background: var(--paper);
	border-radius: var(--radius);
	color: var(--navy);
	font-weight: 600;
	font-size: 0.92rem;
	transition: background-color var(--transition);
}
.tsps-service-area__item:hover {
	background: rgba(217, 102, 27, 0.1);
}
.tsps-service-area__item svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	fill: var(--orange);
}

.tsps-service-area__note {
	text-align: center;
	color: var(--gray-body);
	font-size: 0.9rem;
	margin-bottom: var(--space-lg);
}

.tsps-service-area__cta {
	text-align: center;
}

/* =========================================================
   FAQ — native <details>/<summary> accordion, no JS
   ========================================================= */
.tsps-faq {
	background: var(--paper);
	padding-block: var(--space-2xl);
}
.tsps-faq__heading {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.tsps-faq__list {
	max-width: 760px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.tsps-faq__item {
	background: var(--white);
	border: 1px solid var(--line-on-paper);
	border-radius: var(--radius-card);
	padding: var(--space-md) var(--space-lg);
	transition: box-shadow var(--transition);
}
.tsps-faq__item[open] {
	box-shadow: var(--shadow-card);
}

.tsps-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--navy);
	font-size: 1.02rem;
	padding-block: 0.3rem;
}
.tsps-faq__question::-webkit-details-marker {
	display: none;
}

.tsps-faq__icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	stroke: var(--orange);
	stroke-width: 2;
	fill: none;
	transition: transform var(--transition);
}
.tsps-faq__item[open] .tsps-faq__icon {
	transform: rotate(45deg);
}

.tsps-faq__answer {
	color: var(--gray-body);
	margin: var(--space-xs) 0 0.2rem;
	max-width: 68ch;
}

/* =========================================================
   Closing CTA — last homepage section before the footer
   ========================================================= */
.tsps-closing-cta {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	padding-block: calc(var(--space-2xl) + 20px) var(--space-2xl);
}
.tsps-closing-cta::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -1px;
	z-index: 2;
	height: clamp(42px, 5vw, 72px);
	background: var(--paper);
	clip-path: polygon(0 0, 100% 0, 100% 36%, 0 76%);
}

.tsps-closing-cta__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.tsps-closing-cta__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
	filter: saturate(0.6) brightness(0.7);
}
.tsps-closing-cta__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(16, 24, 43, 0.75) 0%, rgba(16, 24, 43, 0.88) 100%);
}

.tsps-closing-cta__content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 680px;
}
.tsps-closing-cta__headline {
	color: var(--white);
	margin-bottom: var(--space-lg);
}

/* =========================================================
   Comparison table
   ========================================================= */
.tsps-comparison {
	background: var(--paper);
	padding-block: var(--space-2xl) var(--space-md);
}
.tsps-comparison__heading {
	text-align: center;
	max-width: 44ch;
	margin-inline: auto;
	margin-bottom: var(--space-2xs);
}
.tsps-comparison__subhead {
	text-align: center;
	max-width: 56ch;
	margin-inline: auto;
	margin-bottom: var(--space-xl);
}

.tsps-comparison__table-wrap {
	overflow-x: auto;
	background: var(--white);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	border: 1px solid var(--line-on-paper);
}
.tsps-comparison__table {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
}
.tsps-comparison__table th,
.tsps-comparison__table td {
	padding: 1rem 1.25rem;
	text-align: center;
	border-bottom: 1px solid var(--line-on-paper);
}
.tsps-comparison__table thead th {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--navy);
	font-size: 0.95rem;
	padding-top: 1.4rem;
}
.tsps-comparison__row-label {
	text-align: left;
	font-weight: 600;
	color: var(--navy);
	white-space: nowrap;
}
.tsps-comparison__table tbody tr:last-child th,
.tsps-comparison__table tbody tr:last-child td {
	border-bottom: none;
}
.tsps-comparison__highlight-col {
	background: rgba(226, 89, 31, 0.07);
	position: relative;
}
.tsps-comparison__table thead .tsps-comparison__highlight-col {
	background: var(--orange);
	color: var(--white);
	border-radius: var(--radius) var(--radius) 0 0;
}

.tsps-comparison__icon {
	width: 22px;
	height: 22px;
	display: inline-block;
}
.tsps-comparison__icon--yes {
	fill: var(--orange);
}
.tsps-comparison__icon--no {
	fill: #b7bec9;
}
.tsps-comparison__varies {
	color: var(--gray-body);
	font-size: 0.88rem;
	font-style: italic;
}

/* =========================================================
   Truck/trailer showcase — sits directly under the comparison
   section's CTA and drives in once this section reaches the viewport.
   ========================================================= */
.tsps-truck {
	background: var(--paper);
	padding-block: 0 var(--space-2xl);
	overflow: clip;
}
.tsps-truck__inner {
	text-align: center;
}
.tsps-truck__media {
	max-width: 760px;
	margin-inline: auto;
	opacity: 0;
	transform: translateX(-42vw) translateY(18px) rotate(-2deg);
	transition:
		opacity 360ms ease,
		transform 980ms cubic-bezier(0.18, 1.18, 0.28, 1);
	will-change: transform, opacity;
}
.tsps-truck.is-truck-active .tsps-truck__media {
	opacity: 1;
	transform: translateX(0) translateY(0) rotate(0deg);
}
.tsps-truck__media img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 30px 30px rgba(26, 39, 64, 0.22));
}
@media (prefers-reduced-motion: reduce) {
	.tsps-truck__media {
		opacity: 1;
		transform: none;
		transition: none;
		will-change: auto;
	}
}

/* =========================================================
   3-step process
   ========================================================= */
.tsps-process {
	background: var(--white);
	padding-block: var(--space-2xl);
}
.tsps-process__heading {
	text-align: center;
	max-width: 46ch;
	margin-inline: auto;
	margin-bottom: var(--space-xl);
}

.tsps-process__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
	margin-bottom: var(--space-xl);
}
@media (min-width: 760px) {
	.tsps-process__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.tsps-process__step {
	text-align: center;
}
.tsps-process__icon {
	position: relative;
	width: 76px;
	height: 76px;
	margin: 0 auto var(--space-md);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--paper);
	border-radius: 50%;
}
.tsps-process__icon svg {
	width: 34px;
	height: 34px;
	fill: var(--orange);
}
.tsps-process__number {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tsps-process__step h3 {
	color: var(--navy);
	margin-bottom: var(--space-xs);
}
.tsps-process__step p {
	color: var(--gray-body);
	max-width: 34ch;
	margin-inline: auto;
}

.tsps-process__cta {
	text-align: center;
}

@media (max-width: 759px) {
	.tsps-process {
		padding-block: var(--space-xl) var(--space-2xl);
	}
	.tsps-process__heading {
		margin-bottom: var(--space-lg);
	}
	.tsps-process__grid {
		display: block;
		margin-bottom: var(--space-lg);
		padding-bottom: 5.5rem;
	}
	.tsps-process__step {
		position: sticky;
		top: calc(78px + (var(--tsps-step-index, 0) * 18px));
		z-index: calc(5 + var(--tsps-step-index, 0));
		width: 100%;
		margin-bottom: var(--space-md);
		padding: var(--space-lg) var(--space-md);
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.98)),
			var(--white);
		border: 1px solid var(--line-on-paper);
		border-radius: var(--radius-card);
		box-shadow: 0 18px 44px -28px rgba(16, 24, 43, 0.42);
	}
	.tsps-process__step.is-visible {
		box-shadow: var(--shadow-card);
	}
	.tsps-process__step:nth-child(2) {
		transform-origin: center top;
	}
	.tsps-process__step:nth-child(3) {
		margin-bottom: 0;
		transform-origin: center top;
	}
	.tsps-process__step p {
		max-width: 30rem;
	}
	.tsps-process__cta {
		position: relative;
		z-index: 10;
	}
}

@media (max-width: 759px) and (prefers-reduced-motion: reduce) {
	.tsps-process__grid {
		padding-bottom: 0;
	}
	.tsps-process__step {
		position: static;
	}
}

/* =========================================================
   Before/after gallery
   ========================================================= */
.tsps-gallery {
	background: var(--paper);
	padding-block: var(--space-2xl);
}
.tsps-gallery__heading {
	text-align: center;
	margin-bottom: var(--space-2xs);
}
.tsps-gallery__subhead {
	text-align: center;
	color: var(--gray-body);
	margin-bottom: var(--space-xl);
}

.tsps-gallery__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}
@media (min-width: 760px) {
	.tsps-gallery__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.tsps-gallery__caption {
	text-align: center;
	color: var(--navy);
	font-weight: 700;
	font-size: 0.9rem;
	margin: var(--space-sm) 0 0;
}
.tsps-gallery__photo {
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-card);
	background: var(--navy);
}
.tsps-gallery__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tsps-gallery__cta {
	display: flex;
	justify-content: center;
	margin-top: var(--space-lg);
}

/* Before/after comparison slider. --tsps-compare-pos (0%-100%, set by
   JS in assets/js/main.js) controls both the after-image reveal width
   and the handle position, driven from a single source of truth. */
.tsps-compare {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	cursor: ew-resize;
	touch-action: pan-y;
	user-select: none;
	--tsps-compare-pos: 50%;
}
.tsps-compare__before,
.tsps-compare__after {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* The after image is always rendered at full size — only its visible
   region is clipped — so it never stretches/distorts as the handle
   moves (a shrinking wrapper + resized image would do exactly that). */
.tsps-compare__after {
	clip-path: inset(0 calc(100% - var(--tsps-compare-pos)) 0 0);
}

.tsps-compare__tag {
	position: absolute;
	top: 0.6rem;
	z-index: 2;
	padding: 0.3em 0.75em;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	pointer-events: none;
}
.tsps-compare__tag--before {
	right: 0.6rem;
	background: var(--gray-body);
}
.tsps-compare__tag--after {
	left: 0.6rem;
	background: var(--orange);
}

.tsps-compare__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--tsps-compare-pos);
	z-index: 3;
	width: 3px;
	background: var(--white);
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	touch-action: none;
}
.tsps-compare__handle::before,
.tsps-compare__handle::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 3px;
	height: 40%;
	background: var(--white);
	transform: translateX(-50%);
}
.tsps-compare__handle::before {
	top: 0;
}
.tsps-compare__handle::after {
	bottom: 0;
}
.tsps-compare__handle svg {
	position: relative;
	z-index: 1;
	width: 34px;
	height: 34px;
	padding: 6px;
	border-radius: 50%;
	background: var(--white);
	box-shadow: var(--shadow-card);
	fill: none;
	stroke: var(--navy);
	stroke-width: 2;
}

.tsps-compare__range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
	z-index: 4;
}

/* =========================================================
   Internal pages
   ========================================================= */
.tsps-page-hero {
	position: relative;
	overflow: hidden;
	background: var(--navy-deep);
	color: rgba(248, 250, 252, 0.86);
}
.tsps-page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(16, 24, 43, 0.92), rgba(16, 24, 43, 0.72) 48%, rgba(16, 24, 43, 0.42));
	z-index: 0;
}
.tsps-page-hero--simple {
	background: var(--paper);
	color: var(--gray-body);
}
.tsps-page-hero--thanks {
	min-height: 520px;
}
.tsps-page-hero--simple::after {
	display: none;
}
.tsps-page-hero__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.tsps-page-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tsps-page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	padding-block: clamp(5rem, 8vw, 8rem);
}
.tsps-page-hero h1 {
	color: var(--white);
	max-width: 780px;
}
.tsps-page-hero--simple h1 {
	color: var(--navy);
}
.tsps-page-hero p:not(.tsps-eyebrow) {
	max-width: 680px;
	font-size: 1.12rem;
}
.tsps-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

.tsps-page-section {
	padding-block: var(--space-2xl);
	background: var(--white);
}
.tsps-page-section--paper {
	background: var(--paper);
}
.tsps-page-grid--services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-lg);
}
.tsps-service-tile {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	border-radius: var(--radius-card);
	background: var(--white);
	box-shadow: var(--shadow-card);
	border: 1px solid var(--line-on-paper);
}
.tsps-service-tile__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.tsps-service-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}
.tsps-service-tile:hover .tsps-service-tile__media img {
	transform: scale(1.04);
}
.tsps-service-tile__body {
	padding: var(--space-lg);
}
.tsps-service-tile__body h2 {
	font-size: clamp(1.35rem, 1.2vw + 1rem, 1.8rem);
}
.tsps-service-tile__body h2 a {
	color: var(--navy);
}
.tsps-text-link {
	display: inline-flex;
	align-items: center;
	font-weight: 800;
	color: var(--orange-text);
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 0.84rem;
	letter-spacing: 0.02em;
}

.tsps-detail-layout,
.tsps-split-page,
.tsps-service-area-page,
.tsps-quote-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: var(--space-xl);
	align-items: start;
}
.tsps-detail-layout__main,
.tsps-proof-panel,
.tsps-detail-layout__aside,
.tsps-quote-page__aside {
	border-radius: var(--radius-card);
	background: var(--paper);
	padding: var(--space-lg);
	box-shadow: var(--shadow-card);
}
.tsps-detail-layout__main {
	background: var(--white);
	box-shadow: none;
	padding: 0;
}
.tsps-check-list {
	display: grid;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}
.tsps-check-list li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 0.8rem;
	align-items: start;
	color: var(--navy);
	font-weight: 700;
}
.tsps-check-list svg {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(226, 89, 31, 0.12);
	fill: var(--orange);
	padding: 5px;
}
.tsps-maintenance-plans {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-lg);
}
.tsps-maintenance-plan {
	display: grid;
	align-content: start;
	gap: var(--space-sm);
	height: 100%;
	padding: var(--space-lg);
	border: 1px solid var(--line-on-paper);
	border-radius: var(--radius-card);
	background: var(--white);
	box-shadow: var(--shadow-card);
}
.tsps-maintenance-plan--featured {
	border-color: rgba(226, 89, 31, 0.35);
	box-shadow: var(--shadow-card-hover);
}
.tsps-maintenance-plan__label {
	display: inline-flex;
	width: fit-content;
	margin: 0;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(226, 89, 31, 0.12);
	color: var(--orange-text);
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}
.tsps-maintenance-plan__note {
	margin: var(--space-sm) 0 0;
	padding-top: var(--space-sm);
	border-top: 1px solid var(--line-on-paper);
	color: var(--navy);
	font-weight: 700;
}
.tsps-maintenance-pricing {
	max-width: 900px;
	text-align: center;
}
.tsps-maintenance-pricing__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-md);
	margin: var(--space-lg) 0;
}
.tsps-maintenance-pricing__grid > div {
	padding: var(--space-lg);
	border: 1px solid var(--line-on-paper);
	border-radius: var(--radius-card);
	background: var(--paper);
	box-shadow: var(--shadow-card);
}
.tsps-maintenance-pricing span,
.tsps-maintenance-pricing strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
}
.tsps-maintenance-pricing span {
	color: var(--orange-text);
	text-transform: uppercase;
	font-size: 0.82rem;
}
.tsps-maintenance-pricing strong {
	color: var(--navy);
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	line-height: 1;
}
.tsps-maintenance-pricing p {
	margin: var(--space-xs) 0 0;
}
.tsps-detail-layout__aside,
.tsps-quote-page__aside {
	background: var(--navy);
	color: rgba(248, 250, 252, 0.82);
}
.tsps-detail-layout__aside h2,
.tsps-quote-page__aside h2 {
	color: var(--white);
}
.tsps-detail-layout__aside .tsps-check-list li,
.tsps-quote-page__aside .tsps-check-list li {
	color: var(--white);
}

.tsps-page-kicker {
	max-width: 720px;
	margin-bottom: var(--space-lg);
}
.tsps-mini-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-md);
}
.tsps-mini-service {
	position: relative;
	overflow: hidden;
	min-height: 180px;
	border-radius: var(--radius-card);
	color: var(--white);
	box-shadow: var(--shadow-card);
}
.tsps-mini-service img {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	object-fit: cover;
}
.tsps-mini-service::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 24, 43, 0.16), rgba(16, 24, 43, 0.82));
}
.tsps-mini-service span {
	position: absolute;
	left: var(--space-md);
	right: var(--space-md);
	bottom: var(--space-md);
	z-index: 1;
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--white);
}

.tsps-page-cta {
	background: var(--navy);
	color: rgba(248, 250, 252, 0.82);
	padding-block: var(--space-xl);
}
.tsps-page-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-lg);
}
.tsps-page-cta h2 {
	color: var(--white);
	max-width: 720px;
	margin: 0;
}

.tsps-service-area-page__map iframe {
	width: 100%;
	min-height: 520px;
	border: 0;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}
.tsps-area-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: var(--space-md) 0;
}
.tsps-area-list li {
	border-radius: 999px;
	background: var(--paper);
	color: var(--navy);
	padding: 0.55rem 0.9rem;
	font-weight: 700;
}
.tsps-quote-page {
	background: var(--paper);
	padding-top: var(--space-xl);
}
.tsps-quote-page__form .ts-form-card {
	box-shadow: var(--shadow-card-hover);
}
.tsps-quote-page__phone {
	display: inline-flex;
	margin-top: var(--space-md);
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--orange-light);
}
.tsps-content-page {
	max-width: 820px;
}
.tsps-content-page > * + * {
	margin-top: var(--space-sm);
}
.tsps-post-featured {
	margin: 0 0 var(--space-lg);
	overflow: hidden;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}
.tsps-post-featured img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.tsps-service-hero .tsps-hero__photo img {
	object-position: center;
}
.tsps-service-intro,
.tsps-service-includes,
.tsps-service-quality,
.tsps-service-faq {
	padding-block: var(--space-2xl);
	background: var(--white);
}
.tsps-service-intro__inner,
.tsps-service-why__inner,
.tsps-service-quality__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
	gap: var(--space-xl);
	align-items: center;
}
.tsps-service-intro__copy,
.tsps-service-quality__copy {
	max-width: 680px;
}
.tsps-service-intro__media,
.tsps-service-quality__media {
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card-hover);
}
.tsps-service-intro__media img,
.tsps-service-quality__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.tsps-section-heading {
	max-width: 760px;
	margin-bottom: var(--space-lg);
}
.tsps-include-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-md);
}
.tsps-include-card {
	min-height: 100%;
	padding: var(--space-lg);
	border-radius: var(--radius-card);
	background: var(--paper);
	border: 1px solid var(--line-on-paper);
	box-shadow: var(--shadow-card);
}
.tsps-include-card__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: var(--space-md);
	border-radius: 50%;
	background: var(--navy);
}
.tsps-include-card__icon svg {
	width: 28px;
	height: 28px;
	fill: var(--orange-light);
}
.tsps-service-why {
	padding-block: var(--space-2xl);
	background: var(--paper);
	color: var(--gray-body);
}
.tsps-service-why h2 {
	color: var(--navy);
}
.tsps-service-why__inner {
	align-items: center;
}
.tsps-service-why__copy {
	max-width: 720px;
}
.tsps-service-why__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}
.tsps-service-why__card {
	padding: var(--space-md);
	border-radius: var(--radius-card);
	background: var(--white);
	border: 1px solid var(--line-on-paper);
	box-shadow: var(--shadow-card);
}
.tsps-service-why__card span {
	display: block;
	margin-bottom: 0.4rem;
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--navy);
}
.tsps-service-why__card p {
	margin: 0;
	font-size: 0.92rem;
}
.tsps-service-why__media {
	position: relative;
	overflow: hidden;
	min-height: 480px;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card-hover);
}
.tsps-service-why__media img {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	object-fit: cover;
}
.tsps-service-why__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 24, 43, 0.05), rgba(16, 24, 43, 0.64));
}
.tsps-service-why__badge {
	position: absolute;
	left: var(--space-md);
	right: var(--space-md);
	bottom: var(--space-md);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	padding: var(--space-md);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-card);
}
.tsps-service-why__badge span {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--navy);
}
.tsps-service-why__badge a {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--orange-text);
	white-space: nowrap;
}
.tsps-service-quality {
	background: var(--paper);
}
.tsps-service-quality__inner {
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}
.tsps-service-faq {
	background: var(--white);
}
.tsps-service-faq .tsps-faq__heading {
	color: var(--navy);
}

@media (max-width: 900px) {
	.tsps-page-grid--services,
	.tsps-detail-layout,
	.tsps-split-page,
	.tsps-service-area-page,
	.tsps-quote-page__grid,
	.tsps-mini-service-grid,
	.tsps-service-intro__inner,
	.tsps-service-why__inner,
	.tsps-service-quality__inner {
		grid-template-columns: 1fr;
	}
	.tsps-include-grid {
		grid-template-columns: 1fr;
	}
	.tsps-service-why__cards {
		grid-template-columns: 1fr;
	}
	.tsps-maintenance-plans,
	.tsps-maintenance-pricing__grid {
		grid-template-columns: 1fr;
	}
	.tsps-page-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: clamp(1.9rem, 8.6vw, 2.25rem);
	}
	.tsps-container {
		padding-inline: var(--space-sm);
	}
	.tsps-hero {
		padding-block: var(--space-xl) calc(var(--space-lg) + 30px);
	}
	.tsps-hero__inner,
	.tsps-hero__content,
	.tsps-hero__form {
		width: min(100%, calc(100vw - (var(--space-sm) * 2)));
		max-width: 100%;
		min-width: 0;
	}
	.tsps-hero__headline,
	.tsps-hero__subhead,
	.tsps-hero .tsps-eyebrow {
		max-width: 100%;
		overflow-wrap: break-word;
	}
	.tsps-trust-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.75rem 1rem;
	}
	.tsps-trust-row__item {
		max-width: 100%;
		min-width: 0;
		font-size: 0.78rem;
	}
	.tsps-hero__ctas {
		align-items: stretch;
		flex-direction: column;
	}
	.tsps-hero__ctas .tsps-btn {
		width: 100%;
		padding-inline: 1rem;
	}
	.ts-form-grid {
		grid-template-columns: 1fr;
	}
	.ts-form-card {
		padding: var(--space-md);
	}
	.tsps-page-hero::after {
		background: rgba(16, 24, 43, 0.82);
	}
	.tsps-page-hero__inner {
		padding-block: 4rem;
	}
	.tsps-service-tile__body,
	.tsps-detail-layout__main,
	.tsps-proof-panel,
	.tsps-detail-layout__aside,
	.tsps-quote-page__aside {
		padding: var(--space-md);
	}
	.tsps-detail-layout__main {
		padding: 0;
	}
	.tsps-service-area-page__map iframe {
		min-height: 360px;
	}
	.tsps-service-intro,
	.tsps-service-includes,
	.tsps-service-why,
	.tsps-service-quality,
	.tsps-service-faq {
		padding-block: var(--space-xl);
	}
	.tsps-include-card,
	.tsps-service-why__card,
	.tsps-maintenance-plan,
	.tsps-maintenance-pricing__grid > div {
		padding: var(--space-md);
	}
	.tsps-service-why__media {
		min-height: 360px;
	}
	.tsps-service-why__badge {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* =========================================================
   Footer
   ========================================================= */
.tsps-footer {
	background: var(--navy-deep);
	color: rgba(248, 250, 252, 0.7);
	padding-block: 0 var(--space-md);
}
.tsps-footer-cta {
	position: relative;
	overflow: hidden;
	min-height: clamp(360px, 42vw, 560px);
	display: grid;
	place-items: center;
	margin-bottom: var(--space-xl);
	background: var(--navy-deep);
}
.tsps-footer-cta__photo,
.tsps-footer-cta__scrim,
.tsps-footer-cta__fade {
	position: absolute;
	inset: 0;
}
.tsps-footer-cta__photo {
	z-index: 0;
}
.tsps-footer-cta__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.62;
	filter: saturate(0.7) brightness(0.78);
}
.tsps-footer-cta__scrim {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(16, 24, 43, 0.82), rgba(16, 24, 43, 0.42) 48%, rgba(16, 24, 43, 0.72)),
		linear-gradient(180deg, rgba(16, 24, 43, 0.18), rgba(16, 24, 43, 0.72));
}
.tsps-footer-cta__fade {
	z-index: 2;
	background: linear-gradient(180deg, rgba(16, 24, 43, 0) 45%, var(--navy-deep) 100%);
}
.tsps-footer-cta__content {
	position: relative;
	z-index: 3;
	max-width: 760px;
	text-align: center;
	padding-block: var(--space-2xl);
}
.tsps-footer-cta__headline {
	color: var(--white);
	margin-bottom: var(--space-lg);
	text-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
}
.tsps-footer__grid {
	display: grid;
	grid-template-columns: 1.08fr 0.86fr 0.78fr 0.96fr 0.88fr 1.42fr;
	gap: var(--space-md);
	align-items: start;
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--line-on-navy);
}
.tsps-footer__brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.05rem;
	margin-bottom: var(--space-sm);
}
.tsps-footer__brand img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}
.tsps-footer__contact {
	display: grid;
	gap: 0.55rem;
	color: rgba(248, 250, 252, 0.72);
}
.tsps-footer__contact a {
	color: var(--orange-light);
	font-weight: 700;
}
.tsps-footer__nav h2,
.tsps-footer__map h2 {
	color: var(--white);
	font-size: 1rem;
	margin-bottom: var(--space-sm);
}
.tsps-footer__nav ul {
	display: grid;
	gap: 0.55rem;
}
.tsps-footer__nav a {
	color: rgba(248, 250, 252, 0.74);
}
.tsps-footer__nav a:hover {
	color: var(--white);
}
.tsps-footer__review {
	display: grid;
	gap: 0.35rem;
	color: rgba(248, 250, 252, 0.78);
	line-height: 1.35;
}
.tsps-footer__stars {
	color: var(--orange-light);
	letter-spacing: 0.06em;
	font-size: 0.95rem;
}
.tsps-footer__outline-link {
	display: inline-flex;
	margin-top: var(--space-sm);
	margin-right: 0.45rem;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--line-on-navy);
	border-radius: var(--radius);
	color: var(--white);
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.tsps-footer__outline-link:hover {
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
}
.tsps-footer__map iframe {
	width: 100%;
	min-height: 230px;
	border: 0;
	border-radius: var(--radius);
	filter: saturate(0.9);
}
.tsps-footer__copyright {
	margin: var(--space-md) 0 0;
	font-size: 0.82rem;
	color: rgba(248, 250, 252, 0.55);
	text-align: center;
}
@media (max-width: 1180px) {
	.tsps-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.tsps-footer__map {
		grid-column: 1 / -1;
	}
}
@media (max-width: 640px) {
	.tsps-banner {
		background-attachment: scroll;
	}
	.tsps-footer__grid {
		grid-template-columns: 1fr;
	}
	.tsps-footer__map {
		grid-column: auto;
	}
}

/* =========================================================
   Sticky mobile quote/call bar — appears after ~200px scroll
   (desktop already has a persistent CTA in the sticky header).
   ========================================================= */
.tsps-sticky-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 150;
	display: flex;
	gap: 0.6rem;
	align-items: stretch;
	padding: 0.65rem 0.75rem;
	background: var(--white);
	box-shadow: 0 -10px 28px rgba(16, 24, 43, 0.18);
	transform: translateY(100%);
	transition: transform 350ms ease;
}
.tsps-sticky-bar.is-visible {
	transform: translateY(0);
}
@media (min-width: 1040px) {
	.tsps-sticky-bar {
		display: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	.tsps-sticky-bar {
		transition: none;
	}
}

.tsps-sticky-bar__call {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	flex: 0 0 auto;
	padding-inline: 1rem;
	border-radius: var(--radius);
	background: var(--paper);
	color: var(--navy);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
}
.tsps-sticky-bar__call svg {
	width: 18px;
	height: 18px;
	fill: var(--navy);
}
.tsps-sticky-bar__quote {
	flex: 1;
}

/* =========================================================
   Google Ads landing page — paver sealing
   ========================================================= */
.tsps-ads-landing {
	background: var(--white);
}
.tsps-ads-hero {
	position: relative;
	overflow: hidden;
	background: var(--navy-deep);
	color: var(--white);
}
.tsps-ads-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 34%;
	background: linear-gradient(180deg, rgba(16, 24, 43, 0), var(--navy-deep));
	pointer-events: none;
}
.tsps-ads-hero__photo {
	position: absolute;
	inset: 0;
	opacity: 0.52;
}
.tsps-ads-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 72%;
}
.tsps-ads-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
	gap: var(--space-xl);
	align-items: center;
	min-height: 760px;
	padding-block: var(--space-2xl);
}
.tsps-ads-hero__copy {
	max-width: 760px;
}
.tsps-ads-hero h1 {
	max-width: 10ch;
	margin-bottom: var(--space-sm);
	color: var(--white);
	font-size: clamp(2.65rem, 6.6vw, 5.8rem);
	line-height: 0.92;
}
.tsps-ads-hero__copy > p {
	max-width: 58ch;
	color: rgba(248, 250, 252, 0.9);
	font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}
.tsps-ads-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin: var(--space-md) 0;
}
.tsps-ads-proof li {
	padding: 0.48rem 0.72rem;
	border: 1px solid var(--line-on-navy);
	border-radius: 999px;
	background: rgba(248, 250, 252, 0.12);
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}
.tsps-ads-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}
.tsps-ads-quote {
	align-self: stretch;
	display: flex;
	align-items: center;
	min-width: 0;
}
.tsps-ads-quote .ts-form-card {
	width: 100%;
	border: 1px solid rgba(248, 250, 252, 0.28);
	box-shadow: 0 28px 70px -30px rgba(0, 0, 0, 0.46);
}
.tsps-ads-strip {
	background: var(--navy-deep);
	color: var(--white);
	border-top: 1px solid var(--line-on-navy);
}
.tsps-ads-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.tsps-ads-strip__grid div {
	padding: var(--space-md);
	border-right: 1px solid var(--line-on-navy);
}
.tsps-ads-strip__grid div:last-child {
	border-right: 0;
}
.tsps-ads-strip strong,
.tsps-ads-strip span {
	display: block;
}
.tsps-ads-strip strong {
	margin-bottom: 0.25rem;
	color: var(--orange-light);
	font-family: var(--font-display);
	font-size: 1.05rem;
}
.tsps-ads-strip span {
	color: rgba(248, 250, 252, 0.78);
	font-size: 0.94rem;
}
.tsps-ads-section {
	padding-block: var(--space-2xl);
	background: var(--white);
}
.tsps-ads-section--paper {
	background: var(--paper);
}
.tsps-ads-section--dark {
	background: linear-gradient(135deg, var(--navy-deep), var(--navy));
	color: var(--white);
}
.tsps-ads-split,
.tsps-ads-proof-row,
.tsps-ads-final__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
	gap: var(--space-xl);
	align-items: center;
}
.tsps-ads-copy h2,
.tsps-ads-heading h2,
.tsps-ads-proof-list h2,
.tsps-ads-final h2 {
	color: var(--navy);
}
.tsps-ads-section--dark .tsps-ads-heading h2 {
	color: var(--white);
}
.tsps-ads-copy > p {
	max-width: 62ch;
}
.tsps-ads-decision,
.tsps-ads-card-grid,
.tsps-ads-steps {
	display: grid;
	gap: var(--space-md);
}
.tsps-ads-decision {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: var(--space-lg);
}
.tsps-ads-decision div,
.tsps-ads-card-grid article,
.tsps-ads-steps div,
.tsps-ads-review,
.tsps-ads-proof-list {
	padding: var(--space-md);
	border: 1px solid var(--line-on-paper);
	border-radius: var(--radius-card);
	background: var(--white);
	box-shadow: var(--shadow-card);
}
.tsps-ads-decision span,
.tsps-ads-card-grid strong,
.tsps-ads-steps strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--navy);
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 800;
}
.tsps-ads-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: var(--space-xl);
}
.tsps-ads-section--dark .tsps-ads-card-grid article {
	border-color: var(--line-on-navy);
	background: rgba(248, 250, 252, 0.08);
	box-shadow: none;
}
.tsps-ads-section--dark .tsps-ads-card-grid strong,
.tsps-ads-section--dark .tsps-ads-card-grid p {
	color: var(--white);
}
.tsps-ads-heading {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}
.tsps-ads-review {
	background: var(--navy);
	color: var(--white);
}
.tsps-ads-review p {
	color: rgba(248, 250, 252, 0.92);
	font-size: clamp(1.1rem, 1.8vw, 1.45rem);
	line-height: 1.55;
}
.tsps-ads-review span {
	color: var(--orange-light);
	font-family: var(--font-display);
	font-weight: 800;
}
.tsps-ads-proof-list .tsps-check-list {
	margin-top: var(--space-sm);
}
.tsps-ads-steps {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: var(--space-xl);
}
.tsps-ads-steps span {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-sm);
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 800;
}
.tsps-ads-final {
	padding-block: var(--space-xl);
	background: var(--navy-deep);
	color: var(--white);
}
.tsps-ads-final h2 {
	color: var(--white);
}
.tsps-ads-final p {
	max-width: 66ch;
	color: rgba(248, 250, 252, 0.84);
}
.tsps-ads-final__inner {
	grid-template-columns: minmax(0, 1fr) auto;
}
@media (max-width: 1040px) {
	.tsps-ads-hero__inner,
	.tsps-ads-split,
	.tsps-ads-proof-row,
	.tsps-ads-final__inner {
		grid-template-columns: 1fr;
	}
	.tsps-ads-hero__inner {
		min-height: auto;
	}
	.tsps-ads-card-grid,
	.tsps-ads-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.tsps-ads-strip__grid div:nth-child(2n) {
		border-right: 0;
	}
	.tsps-ads-final__inner {
		align-items: start;
	}
}
@media (max-width: 700px) {
	.tsps-ads-hero__inner {
		padding-block: var(--space-xl);
	}
	.tsps-ads-hero h1 {
		max-width: 11ch;
	}
	.tsps-ads-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}
	.tsps-ads-hero__actions .tsps-btn,
	.tsps-ads-final .tsps-btn {
		width: 100%;
	}
	.tsps-ads-proof,
	.tsps-ads-strip__grid,
	.tsps-ads-decision,
	.tsps-ads-card-grid,
	.tsps-ads-steps {
		grid-template-columns: 1fr;
	}
	.tsps-ads-proof {
		display: grid;
	}
	.tsps-ads-strip__grid div {
		border-right: 0;
		border-bottom: 1px solid var(--line-on-navy);
	}
	.tsps-ads-strip__grid div:last-child {
		border-bottom: 0;
	}
}
