/**
 * Responsive site header and navigation.
 */
.pts-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(91, 35, 70, 0.08);
	background: rgba(255, 248, 239, 0.84);
	backdrop-filter: blur(18px);
	transition:
		background-color 220ms ease,
		box-shadow 220ms ease,
		border-color 220ms ease;
}

.pts-site-header.is-scrolled {
	border-color: rgba(91, 35, 70, 0.12);
	background: rgba(255, 248, 239, 0.96);
	box-shadow: 0 1rem 2.6rem rgba(91, 35, 70, 0.1);
}

.pts-site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: clamp(0.75rem, 1.6vw, 1.35rem);
	align-items: center;
	min-height: var(--pts-header-height, 84px);
}

.pts-site-header__brand {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-width: 0;
	text-decoration: none;
}

.pts-site-header__logo-picture {
	display: inline-flex;
	align-items: center;
}

.pts-site-header__logo {
	display: block;
	width: clamp(10rem, 14vw, 13.75rem);
	height: auto;
	object-fit: contain;
}

.pts-site-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(0.65rem, 1.3vw, 1.15rem);
	min-width: 0;
	margin-inline: auto;
	color: var(--pts-color-muted);
	font-size: clamp(0.78rem, 0.84vw, 0.92rem);
	font-weight: 850;
	line-height: 1;
}

.pts-site-header__nav a,
.pts-site-header__nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	min-height: 2.75rem;
	padding: 0;
	border: 0;
	color: inherit;
	font: inherit;
	line-height: 1;
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: color 180ms ease;
}

.pts-site-header__nav a::after,
.pts-site-header__nav-link::after {
	position: absolute;
	right: 0;
	bottom: 0.55rem;
	left: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--pts-color-accent), var(--pts-color-gold));
	opacity: 0;
	transform: scaleX(0.35);
	transform-origin: center;
	transition:
		opacity 180ms ease,
		transform 180ms ease;
	content: "";
}

.pts-site-header__nav a:hover,
.pts-site-header__nav a:focus-visible,
.pts-site-header__nav-link:hover,
.pts-site-header__nav-link:focus-visible,
.pts-site-header__nav-item.is-open .pts-site-header__nav-link {
	color: var(--pts-color-primary);
}

.pts-site-header__nav a:hover::after,
.pts-site-header__nav a:focus-visible::after,
.pts-site-header__nav-link:hover::after,
.pts-site-header__nav-link:focus-visible::after,
.pts-site-header__nav-item.is-open .pts-site-header__nav-link::after {
	opacity: 1;
	transform: scaleX(1);
}

.pts-site-header__nav-item {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.pts-site-header__submenu-icon {
	width: 0.82rem;
	height: 0.82rem;
	transition: transform 180ms ease;
}

.pts-site-header__nav-item.is-open .pts-site-header__submenu-icon {
	transform: rotate(180deg);
}

.pts-site-header__submenu {
	position: absolute;
	top: calc(100% + 0.6rem);
	left: 50%;
	z-index: 20;
	display: grid;
	gap: 0.2rem;
	width: min(20rem, 88vw);
	padding: 0.65rem;
	border: 1px solid rgba(91, 35, 70, 0.1);
	border-radius: 1.2rem;
	background: rgba(255, 248, 239, 0.98);
	box-shadow: 0 1.5rem 3rem rgba(91, 35, 70, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(0.45rem);
	transition:
		opacity 180ms ease,
		visibility 180ms ease,
		transform 180ms ease;
}

.pts-site-header__nav-item:hover .pts-site-header__submenu,
.pts-site-header__nav-item:focus-within .pts-site-header__submenu,
.pts-site-header__nav-item.is-open .pts-site-header__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.pts-site-header__submenu a {
	justify-content: flex-start;
	min-height: 2.55rem;
	padding: 0.72rem 0.85rem;
	border-radius: 0.85rem;
	color: var(--pts-color-primary);
	font-size: 0.9rem;
	line-height: 1.25;
}

.pts-site-header__submenu a::after {
	display: none;
}

.pts-site-header__submenu a:hover,
.pts-site-header__submenu a:focus-visible {
	background: rgba(217, 119, 69, 0.1);
}

.pts-site-header__actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
	min-width: 0;
}

.pts-site-header__phone,
.pts-header-phone,
.pts-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 3.1rem;
	padding: 0.88rem 1.25rem;
	border-radius: var(--pts-radius-pill);
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease,
		color 220ms ease,
		transform 220ms ease;
}

.pts-site-header__phone,
.pts-header-phone {
	overflow: hidden;
	color: var(--pts-color-white);
	background: var(--pts-color-primary);
	box-shadow: 0 1rem 2.1rem rgba(91, 35, 70, 0.18);
	white-space: nowrap;
}

.pts-site-header__phone::after,
.pts-header-phone::after,
.pts-button--primary::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
	transform: translateX(-120%);
	transition: transform 0.55s ease;
	content: "";
}

.pts-site-header__phone:hover::after,
.pts-site-header__phone:focus-visible::after,
.pts-header-phone:hover::after,
.pts-header-phone:focus-visible::after,
.pts-button--primary:hover::after,
.pts-button--primary:focus-visible::after {
	transform: translateX(120%);
}

.pts-site-header__phone:hover,
.pts-site-header__phone:focus-visible,
.pts-header-phone:hover,
.pts-header-phone:focus-visible,
.pts-button:hover,
.pts-button:focus-visible {
	transform: translateY(-2px);
}

.pts-site-header__phone-icon,
.pts-site-header__phone .pts-icon {
	position: relative;
	z-index: 1;
	width: 1.05rem;
	height: 1.05rem;
	stroke-width: 2.2;
}

.pts-site-header__phone span {
	position: relative;
	z-index: 1;
}

.pts-site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.9rem;
	height: 2.9rem;
	border: 1px solid rgba(91, 35, 70, 0.12);
	border-radius: 999px;
	color: var(--pts-color-primary);
	background: rgba(255, 255, 255, 0.62);
	box-shadow: 0 0.9rem 2rem rgba(38, 22, 34, 0.08);
	cursor: pointer;
}

.pts-site-header__toggle-icon {
	width: 1.22rem;
	height: 1.22rem;
}

.pts-button--primary {
	overflow: hidden;
	color: var(--pts-color-white);
	background: var(--pts-color-accent);
	box-shadow: 0 1.1rem 2.5rem rgba(217, 119, 69, 0.28);
}

.pts-button--secondary,
.pts-button--outline {
	border: 1px solid rgba(91, 35, 70, 0.18);
	color: var(--pts-color-primary);
	background: rgba(255, 255, 255, 0.58);
}

.pts-button--gold {
	color: var(--pts-color-primary-dark);
	background: var(--pts-color-gold);
	box-shadow: 0 1.1rem 2.4rem rgba(242, 184, 75, 0.24);
}

.pts-button--light {
	color: var(--pts-color-primary);
	background: var(--pts-color-white);
}

.pts-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
}

.pts-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 140;
	display: grid;
	justify-items: end;
	background: rgba(38, 22, 34, 0.5);
	backdrop-filter: blur(10px);
}

.pts-mobile-menu[hidden] {
	display: none;
}

.pts-mobile-menu__panel {
	width: min(100%, 28rem);
	height: 100%;
	padding: clamp(1rem, 4vw, 1.4rem);
	background:
		radial-gradient(circle at 80% 12%, rgba(242, 184, 75, 0.16), transparent 16rem),
		linear-gradient(180deg, var(--pts-color-cream), var(--pts-color-white));
	box-shadow: -1.4rem 0 3rem rgba(38, 22, 34, 0.18);
	overflow-y: auto;
}

.pts-mobile-menu__top {
	position: sticky;
	top: 0;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 0.55rem;
	align-items: center;
	margin: -0.2rem -0.2rem 1rem;
	padding: 0.2rem 0.2rem 0.9rem;
}

.pts-mobile-menu__brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.pts-mobile-menu__logo {
	display: block;
	width: min(10.8rem, 44vw);
	height: auto;
	object-fit: contain;
}

.pts-mobile-menu__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 2.65rem;
	padding: 0.72rem 0.85rem;
	border-radius: 999px;
	color: var(--pts-color-white);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	background: var(--pts-color-primary);
	white-space: nowrap;
}

.pts-mobile-menu__phone .pts-icon {
	width: 0.98rem;
	height: 0.98rem;
}

.pts-mobile-menu__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.65rem;
	height: 2.65rem;
	border: 1px solid rgba(91, 35, 70, 0.12);
	border-radius: 999px;
	color: var(--pts-color-primary);
	background: rgba(255, 255, 255, 0.72);
	cursor: pointer;
}

.pts-mobile-menu__nav {
	display: grid;
	gap: 0.5rem;
	padding-bottom: 2rem;
	opacity: 1;
	visibility: visible;
}

.pts-mobile-menu__group-toggle {
	cursor: pointer;
}

.pts-mobile-menu__group-toggle .pts-icon {
	width: 1rem;
	height: 1rem;
	color: var(--pts-color-accent);
	transition: transform 180ms ease;
}

.pts-mobile-menu__group.is-open .pts-mobile-menu__group-toggle .pts-icon {
	transform: rotate(180deg);
}

.pts-mobile-menu__submenu {
	display: grid;
	gap: 0.35rem;
	margin-top: 0.45rem;
	padding: 0.55rem;
	border: 1px solid rgba(91, 35, 70, 0.08);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.52);
}

.pts-mobile-menu__submenu[hidden] {
	display: none;
}

.pts-mobile-menu__submenu a {
	display: block;
	padding: 0.72rem 0.78rem;
	border-radius: 0.75rem;
	color: var(--pts-color-muted);
	font-size: 0.95rem;
	font-weight: 750;
	line-height: 1.3;
	text-decoration: none;
}

.pts-mobile-menu__submenu a:hover,
.pts-mobile-menu__submenu a:focus-visible {
	color: var(--pts-color-primary);
	background: rgba(217, 119, 69, 0.1);
}

body.pts-mobile-menu-open {
	overflow: hidden;
}

@media (max-width: 1180px) {
	.pts-site-header__inner {
		grid-template-columns: auto auto auto;
	}

	.pts-site-header__nav {
		display: none;
	}

	.pts-site-header__toggle {
		display: inline-flex;
	}

	.pts-site-header__logo {
		width: clamp(9.5rem, 22vw, 12rem);
	}

	.pts-site-header__actions {
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.pts-site-header__inner {
		min-height: var(--pts-header-height-mobile, 68px);
		gap: 0.5rem;
	}

	.pts-site-header__logo {
		width: clamp(8.5rem, 38vw, 10.5rem);
	}

	.pts-site-header__phone {
		min-height: 2.65rem;
		padding: 0.72rem 0.82rem;
		font-size: 0.84rem;
	}

	.pts-site-header__phone .pts-icon {
		width: 0.95rem;
		height: 0.95rem;
	}

	.pts-site-header__toggle {
		width: 2.65rem;
		height: 2.65rem;
	}
}

@media (max-width: 480px) {
	.pts-site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.pts-site-header__brand {
		grid-column: 1 / -1;
		padding-top: 0.5rem;
	}

	.pts-site-header__actions {
		grid-column: 1 / -1;
		width: 100%;
		justify-content: space-between;
		padding-bottom: 0.5rem;
	}

	.pts-site-header__phone {
		flex: 1 1 auto;
	}

	.pts-site-header__phone span {
		display: inline;
	}

	.pts-mobile-menu__top {
		grid-template-columns: 1fr auto;
	}

	.pts-mobile-menu__phone {
		grid-column: 1 / -1;
		justify-content: center;
		width: 100%;
	}
}

.pts-icon {
	display: inline-flex;
	width: 1.05em;
	height: 1.05em;
	flex: 0 0 auto;
	color: currentColor;
}

.pts-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pts-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-bottom: 18px;
	padding: 8px 13px;
	border: 1px solid rgba(217, 119, 69, 0.28);
	border-radius: var(--pts-radius-pill);
	background: rgba(217, 119, 69, 0.09);
	color: var(--pts-color-primary);
	font-size: 0.77rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	line-height: 1;
	text-transform: uppercase;
}

.pts-section-head {
	max-width: 820px;
	margin-bottom: clamp(34px, 5vw, 58px);
}

.pts-section-head--center {
	margin-inline: auto;
	text-align: center;
}

.pts-section-head--wide {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
	gap: clamp(26px, 5vw, 68px);
	max-width: none;
	align-items: end;
}

.pts-section-copy> :last-child,
.pts-section-head> :last-child {
	margin-bottom: 0;
}

.pts-site-footer {
	padding-block: 38px;
	background: var(--pts-color-primary-dark);
	color: var(--pts-color-white);
}

.pts-site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.pts-site-footer p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
}

.pts-site-footer__brand {
	font-family: var(--pts-font-heading);
	font-size: 1.35rem;
	font-weight: 850;
	letter-spacing: -0.04em;
	color: var(--pts-color-white) !important;
}

/**
 * Reputation read more, FAQ repair, and premium footer styles.
 */
.pts-reputation-board__quote {
	max-height: 19.5rem;
	overflow: hidden;
	transition: max-height 320ms ease;
}

.pts-reputation-board__quote::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 5rem;
	background: linear-gradient(180deg, rgba(91, 35, 70, 0), var(--pts-color-ink));
	content: "";
	pointer-events: none;
	transition: opacity 220ms ease;
}

.pts-reputation-board.is-expanded .pts-reputation-board__quote {
	max-height: 80rem;
}

.pts-reputation-board.is-expanded .pts-reputation-board__quote::after {
	opacity: 0;
}

.pts-reputation-board__actions {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
	justify-content: space-between;
	margin-top: 1.1rem;
}

.pts-reputation-board__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 2.65rem;
	padding: 0.72rem 0.95rem;
	border: 1px solid rgba(91, 35, 70, 0.12);
	border-radius: 999px;
	color: var(--pts-color-primary);
	font-weight: 900;
	line-height: 1;
	background: rgba(255, 255, 255, 0.78);
	cursor: pointer;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

.pts-reputation-board__toggle:hover,
.pts-reputation-board__toggle:focus-visible {
	border-color: rgba(217, 119, 69, 0.38);
	background: rgba(255, 255, 255, 0.94);
	transform: translateY(-2px);
}

.pts-reputation-board__toggle-icon {
	width: 1rem;
	height: 1rem;
	transition: transform 180ms ease;
}

.pts-reputation-board.is-expanded .pts-reputation-board__toggle-icon {
	transform: rotate(180deg);
}

/**
 * FAQ repair styles.
 */
.pts-faq-final {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 18%, rgba(242, 184, 75, 0.16), transparent 24rem),
		radial-gradient(circle at 88% 78%, rgba(217, 119, 69, 0.14), transparent 28rem),
		linear-gradient(180deg, var(--pts-color-white), var(--pts-color-cream));
}

.pts-faq-final::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(91, 35, 70, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(91, 35, 70, 0.045) 1px, transparent 1px);
	background-size: 4.5rem 4.5rem;
	mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
	content: "";
	pointer-events: none;
}

.pts-faq-final__shell {
	position: relative;
	z-index: 1;
}

.pts-faq-final__header {
	display: grid;
	grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
	gap: clamp(1.4rem, 4vw, 4.5rem);
	align-items: end;
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.pts-faq-final__title {
	max-width: 920px;
	margin: 0;
	color: var(--pts-color-primary);
	font-family: var(--pts-font-heading);
	font-size: clamp(2.05rem, 3.7vw, 3.7rem);
	font-weight: 850;
	letter-spacing: -0.055em;
	line-height: 0.98;
	text-wrap: balance;
}

.pts-faq-final__layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}

.pts-faq-final__visual {
	position: sticky;
	top: calc(var(--pts-header-height, 84px) + 2rem);
	display: grid;
	place-items: center;
	min-height: 24rem;
	border: 1px solid rgba(91, 35, 70, 0.1);
	border-radius: clamp(1.8rem, 3vw, 2.5rem);
	background:
		radial-gradient(circle at center, rgba(242, 184, 75, 0.22), transparent 12rem),
		rgba(255, 255, 255, 0.72);
	box-shadow: 0 1.8rem 3.8rem rgba(38, 22, 34, 0.08);
	text-align: center;
	overflow: hidden;
}

.pts-faq-final__orb {
	position: absolute;
	width: 15rem;
	height: 15rem;
	border: 1px dashed rgba(91, 35, 70, 0.22);
	border-radius: 50%;
}

.pts-faq-final__mark {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 7rem;
	height: 7rem;
	border-radius: 2rem;
	color: var(--pts-color-gold);
	font-family: var(--pts-font-heading);
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(145deg, var(--pts-color-primary), var(--pts-color-ink));
	box-shadow: 0 1.4rem 3rem rgba(91, 35, 70, 0.22);
}

.pts-faq-final__visual p {
	position: relative;
	z-index: 1;
	max-width: 14rem;
	margin: 1rem 0 0;
	color: var(--pts-color-primary);
	font-family: var(--pts-font-heading);
	font-size: 1.2rem;
	font-weight: 850;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

.pts-faq-final__list {
	display: grid;
	gap: 0.85rem;
}

.pts-faq-item {
	border: 1px solid rgba(91, 35, 70, 0.1);
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 1.1rem 2.4rem rgba(38, 22, 34, 0.055);
	overflow: hidden;
	backdrop-filter: blur(14px);
}

.pts-faq-item__button {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1rem;
	align-items: center;
	width: 100%;
	padding: clamp(1rem, 2vw, 1.2rem);
	border: 0;
	color: var(--pts-color-primary);
	font-family: var(--pts-font-heading);
	font-size: clamp(1.05rem, 1.35vw, 1.25rem);
	font-weight: 850;
	letter-spacing: -0.02em;
	line-height: 1.15;
	text-align: left;
	background: transparent;
	cursor: pointer;
}

.pts-faq-item__chevron {
	width: 1.05rem;
	height: 1.05rem;
	color: var(--pts-color-accent);
	transition: transform 180ms ease;
}

.pts-faq-item.is-active .pts-faq-item__chevron {
	transform: rotate(180deg);
}

.pts-faq-item__panel {
	overflow: hidden;
}

.pts-faq-item__panel[hidden] {
	display: none;
}

.pts-faq-item__panel p {
	margin: 0;
	padding: 0 clamp(1rem, 2vw, 1.2rem) clamp(1rem, 2vw, 1.2rem);
	color: var(--pts-color-muted);
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.68;
}

.pts-faq-item.is-active {
	border-color: rgba(217, 119, 69, 0.36);
	background: rgba(255, 255, 255, 0.9);
}

.pts-faq-final__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
	margin-top: clamp(2rem, 5vw, 4rem);
}

/**
 * Premium footer.
 */
.pts-site-footer {
	position: relative;
	overflow: hidden;
	padding: 0;
	color: rgba(255, 243, 228, 0.82);
	background:
		radial-gradient(circle at 12% 20%, rgba(242, 184, 75, 0.14), transparent 24rem),
		radial-gradient(circle at 90% 85%, rgba(217, 119, 69, 0.16), transparent 28rem),
		linear-gradient(145deg, var(--pts-color-primary), var(--pts-color-ink));
}

.pts-site-footer::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 243, 228, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 243, 228, 0.045) 1px, transparent 1px);
	background-size: 4.5rem 4.5rem;
	mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
	content: "";
	pointer-events: none;
}

.pts-site-footer__top {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 1.25fr) minmax(160px, 0.55fr) minmax(160px, 0.55fr) minmax(240px, 0.8fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	padding-block: clamp(3rem, 7vw, 5rem);
}

.pts-site-footer__logo-link {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 1rem;
}

.pts-site-footer__logo {
	display: block;
	width: min(13rem, 58vw);
	height: auto;
	filter: drop-shadow(0 1rem 1.8rem rgba(0, 0, 0, 0.18));
}

.pts-site-footer__brand-col p {
	max-width: 32rem;
	margin: 0;
	color: rgba(255, 243, 228, 0.76);
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.78;
}

.pts-site-footer__phone,
.pts-site-footer__estimate {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	width: fit-content;
	margin-top: 1.1rem;
	color: var(--pts-color-ink);
	font-weight: 900;
	text-decoration: none;
	background: linear-gradient(135deg, var(--pts-color-gold), var(--pts-color-cream));
	border-radius: 999px;
	padding: 0.85rem 1rem;
	box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.18);
}

.pts-site-footer__phone .pts-icon,
.pts-site-footer__estimate .pts-icon {
	width: 1rem;
	height: 1rem;
}

.pts-site-footer__nav h2,
.pts-site-footer__contact h2 {
	margin: 0 0 1rem;
	color: var(--pts-color-white);
	font-family: var(--pts-font-heading);
	font-size: 1.18rem;
	font-weight: 850;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.pts-site-footer__nav ul {
	display: grid;
	gap: 0.62rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pts-site-footer__nav a,
.pts-site-footer__bottom a {
	color: rgba(255, 243, 228, 0.76);
	font-size: 0.96rem;
	font-weight: 650;
	text-decoration: none;
	transition: color 180ms ease;
}

.pts-site-footer__nav a:hover,
.pts-site-footer__nav a:focus-visible,
.pts-site-footer__bottom a:hover,
.pts-site-footer__bottom a:focus-visible {
	color: var(--pts-color-gold);
}

.pts-site-footer__contact address {
	display: grid;
	gap: 0.85rem;
	margin: 0;
	font-style: normal;
}

.pts-site-footer__contact address span,
.pts-site-footer__contact address a {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.62rem;
	align-items: start;
	color: rgba(255, 243, 228, 0.78);
	font-size: 0.96rem;
	font-weight: 650;
	line-height: 1.5;
	text-decoration: none;
}

.pts-site-footer__contact address .pts-icon {
	width: 1rem;
	height: 1rem;
	margin-top: 0.16rem;
	color: var(--pts-color-gold);
}

.pts-site-footer__bottom {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255, 243, 228, 0.12);
	background: rgba(0, 0, 0, 0.08);
}

.pts-site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 1rem;
}

.pts-site-footer__bottom p {
	margin: 0;
	color: rgba(255, 243, 228, 0.7);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.5;
}

@media (max-width: 1100px) {
	.pts-faq-final__layout {
		grid-template-columns: 1fr;
	}

	.pts-faq-final__visual {
		position: relative;
		top: auto;
		min-height: 18rem;
	}

	.pts-site-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.pts-faq-final__header {
		grid-template-columns: 1fr;
	}

	.pts-faq-final__title {
		font-size: clamp(1.9rem, 8.5vw, 3.05rem);
	}

	.pts-faq-final__cta .pts-button,
	.pts-reputation__cta .pts-button {
		width: 100%;
	}

	.pts-reputation-board__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.pts-reputation-board__toggle,
	.pts-reputation-board__link {
		justify-content: center;
		width: 100%;
	}

	.pts-site-footer__top {
		grid-template-columns: 1fr;
	}

	.pts-site-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

/**
 * Header responsive final fixes.
 */
.pts-site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
}

.pts-site-header__actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
	margin-left: auto;
}

.pts-site-header__toggle {
	flex: 0 0 auto;
}

@media (max-width: 1180px) {
	.pts-site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.pts-site-header__brand {
		grid-column: 1;
	}

	.pts-site-header__actions {
		grid-column: 3;
	}

	.pts-site-header__phone span {
		display: inline;
	}

	.pts-site-header__phone {
		min-width: auto;
	}
}

@media (max-width: 640px) {
	.pts-site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 0.55rem;
		min-height: var(--pts-header-height-mobile, 68px);
	}

	.pts-site-header__brand {
		grid-column: 1;
		padding: 0;
	}

	.pts-site-header__actions {
		grid-column: 3;
		width: auto;
		padding: 0;
		gap: 0.5rem;
	}

	.pts-site-header__logo {
		width: clamp(8.4rem, 39vw, 10.5rem);
	}

	.pts-site-header__phone {
		width: 2.75rem;
		min-width: 2.75rem;
		height: 2.75rem;
		min-height: 2.75rem;
		padding: 0;
		border-radius: 999px;
	}

	.pts-site-header__phone span {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.pts-site-header__phone .pts-icon,
	.pts-site-header__phone-icon {
		width: 1.05rem;
		height: 1.05rem;
	}

	.pts-site-header__toggle {
		width: 2.75rem;
		height: 2.75rem;
	}
}

/**
 * Mobile menu panel visibility fixes.
 */
.pts-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	background: rgba(38, 22, 34, 0.58);
	backdrop-filter: blur(10px);
}

.pts-mobile-menu[hidden] {
	display: none !important;
}

.pts-mobile-menu__panel {
	display: flex;
	flex-direction: column;
	width: min(100%, 30rem);
	height: 100dvh;
	min-height: 100vh;
	padding: clamp(0.9rem, 3vw, 1.2rem);
	background:
		radial-gradient(circle at 88% 10%, rgba(242, 184, 75, 0.17), transparent 16rem),
		linear-gradient(180deg, var(--pts-color-cream), var(--pts-color-white));
	box-shadow: -1.4rem 0 3rem rgba(38, 22, 34, 0.22);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.pts-mobile-menu__logo {
	display: block;
	width: clamp(9.25rem, 36vw, 11.25rem);
	height: auto;
	object-fit: contain;
}

.pts-mobile-menu__nav>a,
.pts-mobile-menu__group-toggle {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.75rem;
	align-items: center;
	width: 100%;
	min-height: 3.2rem;
	padding: 0.92rem 1rem;
	border: 1px solid rgba(91, 35, 70, 0.1);
	border-radius: 1rem;
	color: var(--pts-color-primary);
	font-family: var(--pts-font-heading);
	font-size: 1.06rem;
	font-weight: 850;
	line-height: 1.1;
	text-align: left;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.78);
}

@media (max-width: 640px) {
	.pts-mobile-menu__panel {
		width: 100%;
	}

	.pts-mobile-menu__top {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	.pts-mobile-menu__logo {
		width: clamp(8.5rem, 42vw, 10.25rem);
		max-width: 100%;
	}

	.pts-mobile-menu__phone {
		width: 2.65rem;
		min-width: 2.65rem;
		padding: 0;
	}

	.pts-mobile-menu__phone span {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
}

/**
 * Mobile menu top row and service submenu final fix.
 */
@media (max-width: 640px) {
	.pts-mobile-menu__top {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 0.55rem;
		align-items: center;
	}

	.pts-mobile-menu__brand {
		grid-column: 1;
		min-width: 0;
	}

	.pts-mobile-menu__phone {
		grid-column: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.65rem;
		min-width: 2.65rem;
		height: 2.65rem;
		min-height: 2.65rem;
		padding: 0;
		border-radius: 999px;
	}

	.pts-mobile-menu__close {
		grid-column: 3;
		width: 2.65rem;
		height: 2.65rem;
	}
}

.pts-mobile-menu__submenu a[data-service-target],
.pts-site-header__submenu a[data-service-target] {
	cursor: pointer;
}