.tfr-page {
	--tfr-dark: #202834;
	--tfr-dark-2: #2d3745;
	--tfr-accent: #d2900e;
	--tfr-accent-dark: #a96f05;
	--tfr-muted: #657182;
	--tfr-soft: #f3f6f9;
	--tfr-border: #e2e7ed;
	--tfr-cream: #fff8e9;
	color: var(--tfr-dark);
	background: #fff;
}

.tfr-page *,
.tfr-page *::before,
.tfr-page *::after {
	box-sizing: border-box;
}

.tfr-page h1,
.tfr-page h2,
.tfr-page h3,
.tfr-page h4 {
	color: var(--tfr-dark);
	letter-spacing: -.025em;
}

.tfr-page p {
	color: var(--tfr-muted);
	line-height: 1.7;
}

.tfr-section {
	padding: 74px 0;
}

.tfr-section--soft {
	background: var(--tfr-soft);
}

.tfr-eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 16px;
	color: var(--tfr-accent);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.tfr-eyebrow::before {
	content: "";
	width: 27px;
	height: 2px;
	margin-right: 10px;
	background: currentColor;
}

.tfr-title {
	max-width: 850px;
	margin-bottom: 21px;
	font-size: clamp(34px, 4vw, 57px);
	font-weight: 800;
	line-height: 1.08;
}

.tfr-lead {
	max-width: 790px;
	font-size: 18px;
}

.tfr-intro-spacing {
	margin-bottom: 38px;
}

.tfr-heading-row {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
	gap: 50px;
	align-items: end;
	margin-bottom: 42px;
}

.tfr-heading-row .tfr-title,
.tfr-heading-row .tfr-lead {
	margin-bottom: 0;
}

.tfr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 23px;
	border: 2px solid transparent;
	border-radius: 7px;
	font-weight: 800;
	line-height: 1;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.tfr-btn:hover,
.tfr-btn:focus {
	transform: translateY(-2px);
	text-decoration: none;
}

.tfr-btn--accent {
	color: #fff;
	background: var(--tfr-accent);
}

.tfr-btn--accent:hover,
.tfr-btn--accent:focus {
	color: #fff;
	background: var(--tfr-accent-dark);
}

.tfr-btn--light {
	color: var(--tfr-dark);
	background: #fff;
}

.tfr-btn--light:hover,
.tfr-btn--light:focus {
	color: var(--tfr-dark);
	background: var(--tfr-cream);
}

.tfr-btn--dark {
	color: #fff;
	background: var(--tfr-dark);
}

.tfr-btn--dark:hover,
.tfr-btn--dark:focus {
	color: #fff;
	background: var(--tfr-dark-2);
}

.tfr-hero {
	position: relative;
	overflow: hidden;
	padding: 86px 0 110px;
	background-color: var(--tfr-dark);
	background-position: center;
	background-size: cover;
}

.tfr-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(16, 24, 34, .96) 0%, rgba(16, 24, 34, .86) 49%, rgba(16, 24, 34, .55) 100%);
}

.tfr-hero::after {
	content: "";
	position: absolute;
	right: -8%;
	bottom: -83px;
	left: -8%;
	height: 115px;
	background: #fff;
	transform: rotate(-1.6deg);
}

.tfr-hero .container {
	position: relative;
	z-index: 2;
}

.tfr-kicker {
	display: inline-block;
	margin-bottom: 19px;
	padding: 7px 13px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tfr-hero h1 {
	max-width: 790px;
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(43px, 5vw, 70px);
	font-weight: 800;
	line-height: 1.03;
}

.tfr-hero__lead {
	max-width: 730px;
	margin-bottom: 29px;
	color: rgba(255, 255, 255, .88) !important;
	font-size: 19px;
}

.tfr-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 27px;
}

.tfr-hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tfr-hero-points li {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.tfr-hero-points li::before {
	content: "✓";
	margin-right: 8px;
	color: var(--tfr-accent);
}

.tfr-quick-form {
	padding: 30px;
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(5, 10, 18, .3);
}

.tfr-form-badge {
	display: inline-block;
	margin-bottom: 10px;
	padding: 5px 9px;
	border-radius: 4px;
	color: #fff;
	background: var(--tfr-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.tfr-quick-form h2 {
	margin-bottom: 8px;
	font-size: 31px;
	font-weight: 800;
}

.tfr-quick-form > p {
	margin-bottom: 20px;
	font-size: 14px;
}

.tfr-quick-form .form-group {
	margin-bottom: 12px;
}

.tfr-quick-form .form-control {
	min-height: 49px;
	border-color: #dbe1e7;
	border-radius: 6px;
}

.tfr-quick-form .form-check-label {
	color: var(--tfr-muted);
	font-size: 13px;
	line-height: 1.45;
}

.tfr-quick-form .form-check-label a {
	color: #956100 !important;
}

.tfr-quick-form .tfr-btn {
	width: 100%;
}

.tfr-trust {
	position: relative;
	z-index: 4;
	margin-top: -54px;
	padding-bottom: 68px;
}

.tfr-trust-card {
	height: 100%;
	padding: 23px;
	border: 1px solid var(--tfr-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(25, 38, 54, .1);
}

.tfr-trust-card strong {
	display: block;
	margin-bottom: 6px;
	color: var(--tfr-dark);
	font-size: 20px;
}

.tfr-trust-card span {
	display: block;
	color: var(--tfr-muted);
	font-size: 14px;
	line-height: 1.5;
}

.tfr-check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 11px;
	margin: 25px 0 30px;
}

.tfr-check {
	padding: 13px 15px;
	border: 1px solid var(--tfr-border);
	border-radius: 7px;
	background: #fff;
	font-weight: 700;
}

.tfr-check::before {
	content: "✓";
	margin-right: 9px;
	color: var(--tfr-accent);
}

.tfr-image-panel {
	position: relative;
}

.tfr-image-panel img {
	width: 100%;
	min-height: 490px;
	border-radius: 11px;
	object-fit: cover;
	box-shadow: 0 20px 48px rgba(25, 38, 54, .15);
}

.tfr-image-note {
	position: absolute;
	right: 22px;
	bottom: -24px;
	max-width: 310px;
	padding: 21px 23px;
	border-radius: 9px;
	color: rgba(255, 255, 255, .8);
	background: var(--tfr-dark);
	box-shadow: 0 16px 36px rgba(11, 18, 27, .25);
}

.tfr-image-note strong {
	display: block;
	margin-bottom: 6px;
	color: #fff;
	font-size: 18px;
	line-height: 1.3;
}

.tfr-service-card {
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--tfr-border);
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 14px 35px rgba(25, 38, 54, .08);
	transition: transform .2s ease, box-shadow .2s ease;
}

.tfr-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 43px rgba(25, 38, 54, .13);
}

.tfr-service-card--featured {
	border-top: 4px solid var(--tfr-accent);
}

.tfr-service-card img {
	width: 100%;
	height: 215px;
	object-fit: cover;
}

.tfr-service-card__body {
	padding: 27px;
}

.tfr-service-card__body > span {
	display: block;
	margin-bottom: 9px;
	color: var(--tfr-accent-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.tfr-service-card h3 {
	margin-bottom: 12px;
	font-size: 27px;
	font-weight: 800;
}

.tfr-service-card ul {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.tfr-service-card li {
	position: relative;
	margin-bottom: 9px;
	padding-left: 24px;
	color: var(--tfr-muted);
}

.tfr-service-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--tfr-accent);
	font-weight: 800;
}

.tfr-inline-cta {
	display: flex;
	align-items: center;
	gap: 14px 24px;
	margin-top: 34px;
	padding: 22px 24px;
	border-radius: 10px;
	color: #fff;
	background: var(--tfr-dark);
}

.tfr-inline-cta strong {
	font-size: 18px;
}

.tfr-inline-cta span {
	flex: 1;
	color: rgba(255, 255, 255, .72);
}

.tfr-roof-card {
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--tfr-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(25, 38, 54, .07);
}

.tfr-roof-card img {
	width: 100%;
	height: 175px;
	object-fit: cover;
}

.tfr-roof-card > div {
	padding: 22px;
}

.tfr-roof-card h3 {
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 800;
}

.tfr-roof-card p {
	margin-bottom: 0;
	font-size: 15px;
}

.tfr-section--dark {
	position: relative;
	color: #fff;
	background: var(--tfr-dark);
}

.tfr-section--dark h2,
.tfr-section--dark h3 {
	color: #fff;
}

.tfr-section--dark p {
	color: rgba(255, 255, 255, .73);
}

.tfr-dark-image {
	width: 100%;
	min-height: 510px;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.tfr-dark-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 25px;
	margin: 28px 0 31px;
	padding: 0;
	list-style: none;
}

.tfr-dark-list li {
	position: relative;
	padding-left: 25px;
	color: rgba(255, 255, 255, .86);
}

.tfr-dark-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--tfr-accent);
	font-weight: 800;
}

.tfr-factor-card {
	height: 100%;
	padding: 25px;
	border: 1px solid var(--tfr-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(25, 38, 54, .06);
}

.tfr-factor-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 17px;
	border-radius: 50%;
	color: #fff;
	background: var(--tfr-accent);
	font-weight: 800;
}

.tfr-factor-card h3 {
	margin-bottom: 10px;
	font-size: 23px;
	font-weight: 800;
}

.tfr-factor-card p {
	margin-bottom: 0;
	font-size: 15px;
}

.tfr-price-note {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 17px;
	padding: 25px 28px;
	border: 1px solid #ead39f;
	border-radius: 10px;
	background: var(--tfr-cream);
}

.tfr-price-note > div {
	flex: 1;
}

.tfr-price-note strong,
.tfr-price-note span {
	display: block;
}

.tfr-price-note strong {
	margin-bottom: 4px;
	font-size: 18px;
}

.tfr-price-note span {
	color: var(--tfr-muted);
}

.tfr-guarantee-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin: 28px 0 20px;
}

.tfr-guarantee-box {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	margin: 0;
	padding: 25px;
	border: 1px solid #ead39f;
	border-radius: 11px;
	background: var(--tfr-cream);
}

.tfr-guarantee-box > strong {
	flex: 0 0 auto;
	color: var(--tfr-accent-dark);
	font-size: 54px;
	font-weight: 800;
	line-height: 1;
}

.tfr-guarantee-box h3 {
	margin-bottom: 4px;
	font-size: 23px;
	font-weight: 800;
}

.tfr-guarantee-box p {
	margin-bottom: 0;
}

.tfr-small-note {
	font-size: 14px;
}

.tfr-completed-roof {
	position: relative;
	overflow: hidden;
	border-radius: 11px;
	box-shadow: 0 20px 48px rgba(25, 38, 54, .15);
}

.tfr-completed-roof img {
	width: 100%;
	min-height: 470px;
	object-fit: cover;
}

.tfr-completed-roof > div {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 24px 26px;
	background: linear-gradient(0deg, rgba(20, 28, 38, .94), rgba(20, 28, 38, 0));
}

.tfr-completed-roof strong,
.tfr-completed-roof span {
	display: block;
	color: #fff;
}

.tfr-completed-roof strong {
	margin-bottom: 3px;
	font-size: 22px;
}

.tfr-completed-roof span {
	color: rgba(255, 255, 255, .78);
}

.tfr-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 17px;
}

.tfr-gallery a {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	border-radius: 9px;
	background: var(--tfr-dark);
	box-shadow: 0 12px 28px rgba(25, 38, 54, .1);
}

.tfr-gallery img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease, opacity .35s ease;
}

.tfr-gallery span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 36px 18px 16px;
	color: #fff;
	background: linear-gradient(0deg, rgba(17, 25, 35, .9), transparent);
	font-weight: 800;
}

.tfr-gallery a:hover img {
	transform: scale(1.04);
	opacity: .87;
}

.tfr-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.tfr-process article {
	position: relative;
	padding: 28px;
	border: 1px solid var(--tfr-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 29px rgba(25, 38, 54, .07);
}

.tfr-process article:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 48px;
	right: -19px;
	z-index: 2;
	width: 19px;
	height: 2px;
	background: var(--tfr-accent);
}

.tfr-process article > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 43px;
	height: 43px;
	margin-bottom: 18px;
	border-radius: 50%;
	color: #fff;
	background: var(--tfr-accent);
	font-weight: 800;
}

.tfr-process h3 {
	margin-bottom: 10px;
	font-size: 23px;
	font-weight: 800;
}

.tfr-process p {
	margin-bottom: 0;
	font-size: 15px;
}

.tfr-callout {
	padding: 33px 0;
	color: #fff;
	background: var(--tfr-dark);
}

.tfr-callout h2 {
	margin-bottom: 6px;
	color: #fff;
	font-size: 29px;
	font-weight: 800;
}

.tfr-callout p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, .74);
}

.tfr-faq details {
	margin-bottom: 12px;
	border: 1px solid var(--tfr-border);
	border-radius: 9px;
	background: #fff;
	box-shadow: 0 9px 24px rgba(25, 38, 54, .05);
}

.tfr-faq summary {
	position: relative;
	padding: 20px 54px 20px 22px;
	cursor: pointer;
	color: var(--tfr-dark);
	font-size: 18px;
	font-weight: 800;
	list-style: none;
}

.tfr-faq summary::-webkit-details-marker {
	display: none;
}

.tfr-faq summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 20px;
	color: var(--tfr-accent);
	font-size: 27px;
	transform: translateY(-50%);
}

.tfr-faq details[open] summary::after {
	content: "−";
}

.tfr-faq details p {
	margin: 0;
	padding: 0 22px 21px;
}

.tfr-final {
	position: relative;
	padding: 80px 0;
	background-position: center;
	background-size: cover;
}

.tfr-final::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(19, 27, 37, .9);
}

.tfr-final .container {
	position: relative;
	z-index: 2;
}

.tfr-final h2 {
	margin-bottom: 20px;
	color: #fff;
	font-size: clamp(37px, 4.2vw, 59px);
	font-weight: 800;
	line-height: 1.07;
}

.tfr-final p {
	color: rgba(255, 255, 255, .8);
	font-size: 18px;
}

.tfr-final-list {
	margin: 26px 0;
	padding: 0;
	list-style: none;
}

.tfr-final-list li {
	position: relative;
	margin-bottom: 11px;
	padding-left: 28px;
	color: #fff;
	font-weight: 700;
}

.tfr-final-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--tfr-accent);
}

.tfr-final-phone {
	display: inline-flex;
	align-items: center;
	color: #fff !important;
	font-size: 25px;
	font-weight: 800;
}

.tfr-final-phone::before {
	content: "☎";
	margin-right: 10px;
	color: var(--tfr-accent);
}

.tfr-final-form {
	padding: 33px;
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .33);
}

.tfr-final-form .form-group {
	margin-bottom: 17px;
}

.tfr-final-form label {
	margin-bottom: 7px;
	color: var(--tfr-dark);
	font-size: 13px;
	font-weight: 800;
}

.tfr-final-form .form-control {
	min-height: 49px;
	border-color: #dbe1e7;
	border-radius: 6px;
	color: var(--tfr-dark);
	background-color: #fff;
}

.tfr-final-form textarea.form-control {
	min-height: 112px;
	resize: vertical;
}

.tfr-final-form .form-check-label {
	color: var(--tfr-muted);
	font-size: 13px;
	line-height: 1.45;
}

.tfr-final-form .form-check-label a {
	color: #956100 !important;
}

.tfr-submit {
	width: 100%;
}

@media (max-width: 1199.98px) {
	.tfr-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tfr-process article:nth-child(2)::after {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.tfr-hero {
		padding: 70px 0 94px;
	}

	.tfr-quick-form {
		margin-top: 40px;
	}

	.tfr-trust {
		margin-top: -35px;
	}

	.tfr-heading-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tfr-inline-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.tfr-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tfr-image-panel img,
	.tfr-dark-image,
	.tfr-completed-roof img {
		min-height: 410px;
	}
}

@media (max-width: 767.98px) {
	.tfr-section {
		padding: 55px 0;
	}

	.tfr-hero h1 {
		font-size: 42px;
	}

	.tfr-hero::after {
		height: 95px;
	}

	.tfr-trust {
		padding-bottom: 49px;
	}

	.tfr-check-grid,
	.tfr-dark-list {
		grid-template-columns: 1fr;
	}

	.tfr-image-note {
		position: static;
		max-width: none;
		margin-top: -10px;
	}

	.tfr-price-note,
	.tfr-guarantee-box {
		align-items: flex-start;
		flex-direction: column;
	}

	.tfr-gallery {
		grid-template-columns: 1fr;
	}

	.tfr-gallery a {
		min-height: 240px;
	}

	.tfr-process {
		grid-template-columns: 1fr;
	}

	.tfr-process article::after {
		display: none;
	}

	.tfr-final {
		padding: 60px 0;
	}

	.tfr-final-form {
		padding: 24px 20px;
	}
}

@media (max-width: 479.98px) {
	.tfr-actions .tfr-btn {
		width: 100%;
	}

	.tfr-hero-points {
		display: grid;
		grid-template-columns: 1fr;
	}

	.tfr-guarantee-box > strong {
		font-size: 47px;
	}
}
