@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/poppins-400.woff2") format("woff2");
}

@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/poppins-500.woff2") format("woff2");
}

@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/poppins-600.woff2") format("woff2");
}

@font-face {
	font-family: Poppins;
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/poppins-700.woff2") format("woff2");
}

:root {
	--bg: #ffffff;
	--surface: #e0f4fb;
	--ink: #152c7a;
	--accent: #dd3721;
	--footer: #015199;
	--footer-deep: #01437e;
	--mist: #b1d4fe;
	--font: Poppins, sans-serif;
	--header: 118px;
	--wrap: 1140px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
}

body.admin-bar {
	min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {
	body.admin-bar {
		min-height: calc(100vh - 46px);
	}
}

#content {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--ink);
	text-decoration: none;
}

p {
	margin: 0 0 16px;
}

h1,
h2,
h3 {
	font-family: var(--font);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
}

.container {
	width: min(var(--wrap), calc(100% - 40px));
	margin: 0 auto;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100;
	width: auto;
	height: auto;
	margin: 0;
	padding: 8px 12px;
	clip: auto;
	background: var(--bg);
	color: var(--ink);
}

.btn {
	display: inline-block;
	border: 0;
	background: var(--accent);
	color: #fff;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
	padding: 14px 28px;
	cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
	background: var(--ink);
	color: #fff;
}

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

.btn--white:hover,
.btn--white:focus-visible {
	background: var(--ink);
	color: #fff;
}

.btn--ghost {
	background: rgba(45, 45, 45, 0.72);
	color: #fff;
	padding: 16px 36px;
}

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

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 30;
	color: #fff;
}

.site-header.is-stuck {
	position: fixed;
	background: #202020;
	box-shadow: 10px 0 25px -1px rgba(0, 0, 0, 0.05);
}

.site-header__bar {
	width: min(1170px, calc(100% - 48px));
	margin: 0 auto;
	min-height: 150px;
	display: flex;
	align-items: center;
	transition: min-height 0.5s ease-in-out;
}

.site-logo {
	margin-right: 110px;
	flex: 0 0 auto;
	overflow: visible;
}

.site-header.is-stuck .site-logo {
	align-self: flex-start;
	height: 60px;
}

.site-logo img {
	width: 201px;
	height: auto;
}

.site-nav {
	flex: 1;
}

.site-nav__list,
.site-nav__list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-nav__list > li {
	position: relative;
}

.site-nav__list > li > a {
	display: flex;
	align-items: center;
	height: 150px;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0 16px;
	transition: height 0.5s ease-in-out;
}

.site-nav__list > li.is-active > a,
.site-nav__list > li:hover > a {
	font-weight: 600;
}

.site-nav__list > li.is-active > a::after,
.site-nav__list > li:hover > a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 6px;
	width: 5px;
	height: 90px;
	background: var(--accent);
	transition: height 0.5s ease-in-out;
}

.site-header.is-stuck .site-header__bar {
	min-height: 60px;
}

.site-header.is-stuck .site-nav__list > li > a {
	height: 60px;
}

.site-header.is-stuck .site-nav__list > li.is-active > a::after,
.site-header.is-stuck .site-nav__list > li:hover > a::after {
	height: 60px;
}

.site-nav__list .has-sub ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 280px;
	background: #fff;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
}

.site-nav__list .has-sub:hover ul,
.site-nav__list .has-sub:focus-within ul {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.site-nav__list .has-sub li a {
	display: block;
	padding: 8px 18px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.site-nav__list .has-sub li a:hover,
.site-nav__list .has-sub li a:focus-visible {
	color: var(--accent);
}

.header-call {
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	white-space: nowrap;
}

.header-call strong {
	font-weight: 600;
}

.header-call:hover,
.header-call:focus-visible {
	color: var(--accent);
}

.mobile-call {
	display: none;
}

.nav-toggle {
	display: none;
	margin-left: auto;
	width: 46px;
	height: 46px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before {
	top: -7px;
}

.nav-toggle__bars::after {
	top: 7px;
}

.hero {
	position: relative;
	height: clamp(520px, 39.06vw, 750px);
	background-color: #1a1d22;
	background-image: linear-gradient(rgba(12, 28, 46, 0.42), rgba(12, 28, 46, 0.42)), url("../images/hero.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero__shade {
	display: none;
}

.hero__stage {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	width: min(956px, 90vw);
	transform: translate(-50%, -50%);
}

.hero__title {
	display: block;
	width: 100%;
	height: auto;
}

.hero .btn--ghost {
	position: absolute;
	z-index: 2;
	left: 62.24%;
	top: 73.24%;
	width: 156px;
	height: 52px;
	padding: 0;
	display: grid;
	place-items: center;
	background: var(--accent);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.cta-band {
	background-color: var(--accent);
	background-image: url("../images/cta-bg.jpg");
	background-repeat: repeat;
	background-position: 0 0;
	background-size: auto;
	color: #fff;
	margin-top: -80px;
	position: relative;
	z-index: 2;
}

.cta-band__inner {
	display: block;
	width: min(1250px, calc(100% - 30px));
	padding: 50px 0 85px;
}

.cta-band h1,
.cta-band h2,
.cta-band p {
	color: #fff;
	margin: 0;
}

.cta-band h1,
.cta-band h2 {
	font-size: 18px;
	font-weight: 500;
	line-height: 35px;
	text-transform: uppercase;
}

.cta-band h1 strong,
.cta-band h2 strong {
	font-weight: 700;
}

.cta-band p {
	font-size: 12px;
	line-height: 28px;
	margin-top: 0;
}

.cta-band .btn--white {
	margin-top: 0;
	margin-left: 50px;
	padding: 12px 30px;
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
}

.service-cards {
	padding: 90px 0 40px;
	position: relative;
}

.service-cards .container {
	width: min(1230px, calc(100% - 30px));
}

.service-cards::after {
	content: "";
	position: absolute;
	right: 6%;
	bottom: -141px;
	width: 450px;
	height: 350px;
	background: url("../images/promise-bg.jpg") center / cover no-repeat;
	z-index: 0;
	pointer-events: none;
}

.service-cards__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--surface);
	border-right: 10px solid #015199;
}

.service-card__media {
	position: relative;
	z-index: 1;
	display: block;
	color: #fff;
	margin-top: -38px;
}

.service-card--leak .service-card__media {
	margin-top: 0;
}

.service-card__media img {
	display: block;
	width: 100%;
	height: auto;
}

.service-card__media span {
	position: absolute;
	left: 0;
	right: 0;
	top: 40px;
	padding: 20px 0;
	text-align: center;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 29px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.service-card--leak .service-card__media span {
	top: auto;
	bottom: 10px;
}

.service-card p {
	position: relative;
	z-index: 0;
	background: var(--surface);
	color: var(--ink);
	margin: 0;
	padding: 40px 30px;
	min-height: 245px;
	font-size: 15px;
	line-height: 28px;
}

.service-card--leak p {
	margin-top: -38px;
}

.workmanship {
	padding: 70px 0 0;
}

.about-split__grid,
.article-split,
.contact-layout,
.listing__grid {
	display: grid;
	gap: 36px;
	align-items: center;
}

.about-split__grid,
.article-split {
	grid-template-columns: 0.8fr 1.2fr;
}

.workmanship__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	width: 100%;
}

.workmanship__grid .frame-photo {
	position: relative;
	margin: 0;
	min-height: 0;
	overflow: hidden;
}

.workmanship__grid .frame-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.workmanship__panel {
	background: var(--surface);
	border-left: 15px solid var(--ink);
	padding: 0;
}

.workmanship__grid .workmanship__copy {
	max-width: 700px;
	margin-left: -50px;
	border-left: 0;
	padding: 40px 30px 20px;
}

.frame-photo img,
.framed-photo img,
.stacked-photos img {
	width: 100%;
	object-fit: cover;
}

.workmanship__copy {
	background: var(--surface);
	border-left: 15px solid var(--ink);
	padding: 40px 30px 28px;
	margin-left: -50px;
	position: relative;
	z-index: 1;
}

.workmanship__copy h2,
.about-split h2,
.prose h2,
.article h2,
.quote-band h2 {
	color: var(--accent);
	text-transform: uppercase;
	font-size: 28px;
	margin: 0 0 18px;
}

.workmanship__copy .btn {
	float: right;
	margin-top: 20px;
}

.workmanship__copy::after,
.workmanship__copy--wide::after {
	content: "";
	display: block;
	clear: both;
}

.about-split {
	padding: 40px 0 70px;
}

.about-intro {
	padding: 70px 0;
}

.about-intro__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 30px;
	align-items: start;
}

.about-intro__photo {
	justify-self: end;
	width: 270px;
	max-width: 100%;
	height: auto;
	padding: 12px;
	background: var(--ink);
}

.about-intro h2 {
	color: var(--accent);
	font-size: 29px;
	font-weight: 700;
	line-height: 40px;
	text-transform: uppercase;
	margin: 0 0 10px;
}

.framed-photo {
	background: var(--ink);
	padding: 12px;
}

.stacked-photos {
	background: var(--ink);
	padding: 12px;
	display: grid;
	gap: 12px;
	margin: 0;
}

.stacked-photos img {
	height: 220px;
}

.testimonial-band {
	padding: 200px 0 100px;
	background: url("../images/underwater.jpg") center / cover no-repeat;
}

.testimonial {
	position: relative;
	width: min(770px, calc(100% - 140px));
	margin: 0 auto;
}

.testimonial::before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 10%;
	right: 10%;
	background: var(--accent);
}

.testimonial blockquote {
	position: relative;
	z-index: 1;
	margin: 0;
	background: var(--surface);
	padding: 100px 100px 40px;
}

.testimonial__label {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	top: -240px;
	left: -190px;
	margin: 0;
	transform: rotate(-90deg);
	color: var(--accent);
	font-size: 30px;
	font-weight: 600;
	line-height: 28px;
	text-transform: uppercase;
	white-space: nowrap;
	pointer-events: none;
}

.testimonial blockquote p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--ink);
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}

.testimonial footer {
	position: relative;
	z-index: 1;
	margin-top: 27px;
	margin-bottom: 15px;
	line-height: 31px;
	text-align: right;
}

.testimonial footer a {
	color: var(--ink);
	font-size: 16px;
	font-weight: 500;
}

.testimonial__mark {
	position: absolute;
	z-index: 0;
	width: 100px;
	height: 70px;
	object-fit: fill;
	pointer-events: none;
}

.testimonial__mark--before {
	top: -30px;
	left: -30px;
}

.testimonial__mark--after {
	right: 0;
	bottom: -38px;
}

.quote-band {
	padding: 20px 0 70px;
}

.quote-band__inner,
.quote-lead {
	text-align: center;
}

.quote-band__inner > p,
.quote-lead {
	max-width: 760px;
	margin: 0 auto 28px;
}

.quote-form {
	max-width: 760px;
	margin: 0 auto;
	text-align: left;
}

.quote-form__trap {
	position: absolute;
	left: -9999px;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
	width: 100%;
	border: 1px solid var(--ink);
	background: #fff;
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	padding: 18px 16px;
	margin-bottom: 14px;
}

.quote-form textarea {
	min-height: 140px;
	resize: vertical;
}

.quote-form input:focus-visible,
.quote-form textarea:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 1px;
}

.quote-form__choices {
	border: 0;
	margin: 0 0 14px;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 20px;
}

.quote-form__choices legend {
	font-weight: 600;
	margin-bottom: 8px;
}

.quote-form__choices label {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.quote-form__turnstile {
	display: flex;
	justify-content: center;
	margin: 4px 0 16px;
	min-height: 65px;
}

.quote-form .btn {
	display: block;
	margin: 8px auto 0;
	min-width: 240px;
	height: 60px;
	font-size: 18px;
}

.form-note {
	padding: 12px 14px;
	margin: 0 0 14px;
}

.form-note--ok {
	background: var(--surface);
}

.form-note--bad {
	background: #fff1ee;
	color: var(--accent);
}

.promise {
	position: relative;
	background-image: url("../images/promise-bg.jpg");
	background-repeat: repeat;
	background-position: 0 0;
	background-size: auto;
	color: #fff;
	padding: 54px 0;
}

.promise::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(221, 55, 33, 0.9);
}

.promise__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	text-align: center;
}

.promise h2 {
	margin: 0;
	color: #fff;
	font-size: 22px;
	text-transform: uppercase;
}

.site-footer__main {
	background: var(--footer);
	color: #fff;
	padding: 48px 0 36px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	text-align: center;
	gap: 20px;
}

.site-footer__mark img {
	margin: 0 auto;
}

.site-footer__address,
.site-footer__call {
	color: #fff;
	margin: 0;
}

.site-footer__call a {
	color: #fff;
	font-size: 26px;
	line-height: 46px;
	font-weight: 700;
}

.site-footer .btn {
	margin: 10px 0;
}

.site-footer .btn:hover,
.site-footer .btn:focus-visible {
	background: #fff;
	color: var(--accent);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 18px;
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}

.social-links a {
	color: #fff;
	display: block;
}

.social-links svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.social-links a:hover,
.social-links a:focus-visible {
	color: var(--accent);
}

.site-footer__legal {
	background: var(--footer-deep);
	text-align: center;
	padding: 16px 12px;
}

.site-footer__legal p {
	margin: 0;
	color: var(--mist);
	font-size: 14px;
}

.page-banner {
	background: url("../images/banner.jpg") top right / cover no-repeat;
	padding: 200px 20px 90px;
	text-align: center;
}

.page-banner h1 {
	margin: 0;
	color: var(--accent);
	font-size: 44px;
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 3px 4px 6px #fff;
}

.breadcrumbs {
	margin-top: 24px;
	color: var(--accent);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 3px 4px 6px #fff;
}

.breadcrumbs a {
	color: var(--accent);
}

.page-body {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}

.page-body > .content-band:last-child,
.page-body > .cleaner-band:last-child {
	flex: 1 0 auto;
}

.prose h3,
.article h3 {
	color: var(--accent);
	text-transform: uppercase;
	font-size: 22px;
	line-height: 28px;
	margin: 28px 0 10px;
}

.prose--center {
	text-align: center;
	max-width: 860px;
}

.article {
	padding: 40px 0;
}

.article-split {
	margin-bottom: 20px;
}

.article-split--photo-end {
	grid-template-columns: 2fr 1fr;
	align-items: start;
}

.article-split--even {
	grid-template-columns: 1fr 1fr;
	align-items: start;
}

.article__kicker,
.article__close {
	color: var(--accent);
	font-weight: 700;
	text-transform: uppercase;
}

.band {
	background: var(--surface);
	padding: 40px 0;
	margin: 10px 0 30px;
}

.split-copy {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.split-copy--three {
	grid-template-columns: 1fr 1fr 1fr;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 36px;
	margin-bottom: 24px;
	align-items: start;
}

.feature-grid > img {
	width: 100%;
	height: auto;
}

.feature-grid div > h3:not(:first-child) {
	margin-top: 18px;
}

.feature-grid--three {
	grid-template-columns: 1fr 1fr 1fr;
}

.feature-grid h3 {
	margin: 0 0 10px;
	color: var(--accent);
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
}

.page-intro,
.page-lead {
	padding: 70px 0;
}

.page-lead--inner {
	padding: 30px 0;
}

.page-intro {
	text-align: center;
}

.page-intro h2,
.page-lead h2,
.content-band h2 {
	color: var(--ink);
	text-transform: uppercase;
	font-size: 28px;
	font-weight: 700;
	line-height: 35px;
	text-align: center;
	margin: 0 0 30px;
}

.page-intro p {
	margin: 0 0 10px;
}

.page-intro em,
.page-lead em {
	font-style: italic;
}

.page-lead h3,
.content-band h3 {
	color: var(--accent);
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	margin: 0 0 10px;
}

.content-band {
	background: var(--surface);
	padding: 50px 0;
}

.content-band .btn,
.page-lead .btn {
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	padding: 8px 30px;
}

.band-action {
	text-align: center;
	margin: 10px 0 0;
}

.content-band .feature-grid,
.page-lead .feature-grid {
	margin-bottom: 0;
}

.page-lead .band-close,
.content-band .band-close {
	color: var(--ink);
	text-transform: uppercase;
	font-size: 28px;
	font-weight: 700;
	line-height: 35px;
	text-align: center;
	margin: 18px 0 0;
}

.photo-section {
	padding: 70px 0;
}

.article-split img {
	width: 100%;
	height: auto;
}

.photo-row {
	display: grid;
	gap: 20px;
	margin: 28px auto 10px;
}

.photo-row--3 {
	grid-template-columns: repeat(3, 1fr);
}

.photo-row--4 {
	grid-template-columns: repeat(4, 1fr);
}

.photo-row img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
}

.photo-row--4 img {
	border: 5px solid var(--ink);
}

.photo-half {
	max-width: 50%;
	margin-top: 12px;
}

h2.article__close {
	text-align: center;
}

.listing {
	padding: 50px 0 70px;
}

.listing__grid {
	grid-template-columns: 1fr 1fr;
	align-items: start;
}

.listing-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border: 5px solid var(--ink);
	margin-bottom: 12px;
}

.listing-card h2 {
	color: var(--accent);
	font-size: 24px;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.listing--repairs {
	text-align: center;
}

.listing--repairs .listing-card img {
	border: 0;
}

.text-link {
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
}

.cleaner-intro {
	padding: 70px 0;
	text-align: center;
}

.cleaner-intro h2 {
	color: var(--ink);
	text-transform: uppercase;
	font-size: 28px;
	font-weight: 700;
	line-height: 35px;
	margin: 0 0 30px;
}

.cleaner-intro p {
	margin: 0 0 10px;
}

.cleaner-kicker {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	font-style: italic;
	line-height: 28px;
	text-transform: uppercase;
}

.cleaner-band {
	background: var(--surface);
	padding: 50px 0;
}

.cleaner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: start;
}

.cleaner h2 {
	color: #333;
	text-transform: none;
	font-size: 29px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 0 15px;
}

.cleaner img {
	width: 100%;
	height: auto;
	background: #fff;
}

.cleaner .btn {
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	padding: 8px 30px;
}

.quote-band--page {
	padding: 70px 0;
}

.quote-band--page h2 {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	margin: 0 0 14px;
}

.quote-band--page .quote-lead {
	max-width: 800px;
}

.quote-band--page .contact-layout {
	grid-template-columns: 1fr 2fr;
	gap: 30px;
	align-items: start;
}

.quote-band--page .quote-form {
	width: 100%;
	max-width: none;
	margin: 0;
}

.quote-band--page .quote-form input[type="text"],
.quote-band--page .quote-form input[type="email"],
.quote-band--page .quote-form input[type="tel"],
.quote-band--page .quote-form textarea {
	height: 62px;
	padding: 8px 12px 8px 23px;
	font-size: 15px;
}

.quote-band--page .quote-form textarea {
	height: auto;
	min-height: 192px;
}

.quote-band--page .quote-form__choices {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 14px;
	margin-bottom: 16px;
	column-gap: 24px;
	row-gap: 6px;
}

.quote-band--page .quote-form__choices legend {
	width: 100%;
	color: #7f7f7f;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

.quote-form__choices .req {
	color: #c02b0a;
	font-size: 13px;
	font-weight: 700;
}

.quote-band--page .quote-form__choices label {
	font-size: 15px;
	font-weight: 700;
	align-items: center;
}

.contact-fact {
	text-align: center;
	margin-bottom: 28px;
}

.contact-fact__icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: var(--accent);
	display: grid;
	place-items: center;
}

.contact-fact__icon svg {
	width: 22px;
	height: 22px;
	fill: #fff;
}

.contact-fact h3 {
	margin: 0 0 12px;
	text-transform: uppercase;
	color: #333;
	font-size: 24px;
	font-weight: 700;
	line-height: 29px;
}

.workmanship--plain {
	padding-top: 10px;
}

.workmanship__copy--wide {
	margin-left: 0;
	max-width: 860px;
}

@media (max-width: 991px) {
	.site-header__bar,
	.site-header.is-stuck .site-header__bar {
		min-height: 92px;
	}

	.site-header.is-stuck .site-logo {
		align-self: center;
		height: auto;
	}

	.site-logo {
		margin-right: 0;
	}

	.site-logo img,
	.site-header.is-stuck .site-logo img {
		width: 140px;
	}

	.hero .btn--ghost {
		left: 54%;
		width: 140px;
		height: 46px;
		font-size: 14px;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		padding: 8px 0 16px;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.site-nav__list > li > a {
		color: var(--ink);
		height: auto;
		padding: 12px 20px;
	}

	.site-nav__list > li.is-active > a::after,
	.site-nav__list > li:hover > a::after {
		display: none;
	}

	.site-nav__list .has-sub ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		padding-left: 12px;
	}

	.nav-toggle {
		display: grid;
		place-items: center;
		color: #fff;
	}

	.site-header.is-stuck .nav-toggle {
		color: #fff;
	}

	.header-call {
		display: none;
	}

	.mobile-call {
		display: block;
		background: var(--accent);
		color: #fff;
		font-size: 15px;
		font-weight: 600;
		line-height: 1;
		padding: 12px 16px;
		text-align: center;
		text-transform: uppercase;
	}

	.mobile-call strong {
		font-weight: 700;
	}

	.mobile-call:hover,
	.mobile-call:focus-visible {
		background: var(--ink);
		color: #fff;
	}

	.service-cards__grid,
	.workmanship__grid,
	.about-split__grid,
	.about-intro__grid,
	.article-split,
	.article-split--photo-end,
	.article-split--even,
	.listing__grid,
	.split-copy,
	.split-copy--three,
	.feature-grid,
	.feature-grid--three,
	.contact-layout,
	.promise__grid,
	.cleaner,
	.site-footer__grid,
	.quote-form__choices {
		grid-template-columns: 1fr;
	}

	.service-cards__grid {
		border-right: 0;
	}

	.service-card p {
		min-height: 0;
		padding: 28px 22px;
	}

	.service-cards::after,
	.testimonial {
		width: min(770px, calc(100% - 32px));
	}

	.service-cards::after {
		display: none;
	}

	.service-card__media,
	.service-card--leak p {
		margin-top: 0;
	}

	.testimonial blockquote {
		padding: 100px 25px;
	}

	.testimonial__label {
		left: 0;
		right: 0;
		top: 15px;
		height: auto;
		transform: none;
		text-align: center;
	}

	.testimonial footer,
	.testimonial footer a {
		text-align: center;
	}

	.testimonial__mark--before {
		top: 8px;
		left: 8px;
	}

	.workmanship__copy {
		margin-left: 0;
		border-left: 0;
	}

	.workmanship__panel {
		border-left: 0;
		padding: 28px 20px;
	}

	.workmanship__grid .frame-photo img {
		position: static;
		height: auto;
		inset: auto;
	}

	.workmanship__grid .workmanship__copy {
		max-width: none;
		margin-left: 0;
	}

	.cta-band__inner {
		text-align: center;
	}

	.cta-band .btn--white {
		margin-left: 0;
		margin-top: 20px;
	}

	.page-banner {
		padding-top: 210px;
	}

	.page-banner h1 {
		font-size: 30px;
		line-height: 40px;
	}

	.about-intro__photo {
		justify-self: center;
	}

	.photo-row--3,
	.photo-row--4 {
		grid-template-columns: 1fr 1fr;
	}

	.photo-row img:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		width: calc(50% - 10px);
		justify-self: center;
	}

	.photo-half {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.site-header__bar,
	.site-nav__list > li > a,
	.site-nav__list > li > a::after {
		transition: none;
	}
}

body.login {
	margin: 0;
	min-height: 100vh;
	height: auto;
	display: flex;
	flex-direction: column;
	background: #fff;
	color: var(--ink);
	font-family: var(--font);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
}

body.login #login {
	width: min(420px, calc(100% - 40px));
	margin: 0 auto;
	padding: 48px 0 70px;
}

body.login h1.wp-login-logo {
	display: none;
}

body.login #login form {
	margin-top: 0;
	padding: 0;
	border: 0;
	box-shadow: none;
	background: transparent;
}

body.login form .input,
body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"] {
	background: #fff;
	border: 1px solid var(--ink);
	border-radius: 0;
	box-shadow: none;
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.4;
	padding: 14px 16px;
	margin: 0 0 16px;
}

body.login form .input:focus,
body.login input[type="text"]:focus,
body.login input[type="password"]:focus,
body.login input[type="email"]:focus {
	border-color: var(--accent);
	box-shadow: none;
	outline: 2px solid var(--accent);
	outline-offset: 1px;
}

body.login label {
	color: var(--ink);
	font-size: 15px;
	font-weight: 500;
}

body.login .button.button-primary {
	float: none;
	display: block;
	width: 100%;
	height: auto;
	margin-top: 8px;
	padding: 14px 28px;
	border: 0;
	border-radius: 0;
	background: var(--accent);
	box-shadow: none;
	color: #fff;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	text-shadow: none;
	text-transform: uppercase;
}

body.login .button.button-primary:hover,
body.login .button.button-primary:focus {
	background: var(--ink);
	color: #fff;
	box-shadow: none;
}

body.login .wp-pwd .button {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: var(--ink);
}

body.login #login_error,
body.login .message,
body.login .success {
	border: 0;
	border-left: 4px solid var(--accent);
	border-radius: 0;
	background: var(--surface);
	box-shadow: none;
	color: var(--ink);
	margin: 0 0 20px;
	padding: 12px 14px;
}

body.login #nav,
body.login #backtoblog,
body.login .privacy-policy-page-link {
	margin: 12px 0 0;
	padding: 0;
	font-size: 15px;
	text-align: center;
}

body.login #nav a,
body.login #backtoblog a,
body.login .privacy-policy-page-link a {
	color: var(--ink);
}

body.login #nav a:hover,
body.login #backtoblog a:hover,
body.login .privacy-policy-page-link a:hover,
body.login #nav a:focus,
body.login #backtoblog a:focus {
	color: var(--accent);
}

body.login .language-switcher {
	width: min(420px, calc(100% - 40px));
	margin: 0 auto 24px;
}
