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

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

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

:root {
	--color-steel: #607382;
	--color-navy: #071b26;
	--color-navy-deep: #051721;
	--color-white: #ffffff;
	--font-main: "Evolve Sans", "Avenir Next", "Segoe UI", sans-serif;
	--content-max: 1540px;
	--content-gutter: 40px;
	--content-edge: max(calc(var(--content-gutter) / 2), calc((100vw - var(--content-max)) / 2));
	--content-wrap: min(100% - var(--content-gutter), var(--content-max));
	--text-h1: clamp(40px, 9vw, 64px);
	--text-h2: clamp(30px, 8vw, 52px);
	--text-h3: clamp(22px, 5.5vw, 30px);
	--text-lead: clamp(20px, 4.8vw, 31px);
	--text-body: 17px;
	--text-eyebrow: clamp(19px, 4.5vw, 24px);
	--text-small: 15px;
	--leading-heading: 1.1;
	--leading-body: 1.45;
	--hero-wrap: var(--content-wrap);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-navy-deep);
	color: var(--color-white);
	font-family: var(--font-main);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-underline-offset: 0.16em;
}

button {
	font: inherit;
}

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

.skip-link:focus {
	z-index: 100;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--color-navy);
	border-radius: 4px;
}

.site-main {
	min-height: 0;
}

.blog-post {
	background: #f4f6f7;
	color: var(--color-navy);
}

.blog-post-hero {
	padding: 150px 0 46px;
	background: linear-gradient(180deg, rgba(7, 27, 38, 0.98) 0%, rgba(7, 27, 38, 0.92) 100%);
	color: var(--color-white);
}

.blog-post-hero__inner {
	display: grid;
	gap: 30px;
	width: var(--content-wrap);
	margin: 0 auto;
}

.blog-post-hero__copy {
	display: grid;
	gap: 18px;
	align-content: center;
}

.blog-post-hero__back,
.blog-post-hero__category a {
	width: fit-content;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: color 160ms ease, transform 160ms ease;
}

.blog-post-hero__back:hover,
.blog-post-hero__back:focus-visible,
.blog-post-hero__category a:hover,
.blog-post-hero__category a:focus-visible {
	color: var(--color-white);
	outline: none;
	transform: translateY(-2px);
}

.blog-post-hero__category {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.blog-post-hero h1 {
	max-width: 930px;
	margin: 0;
	font-size: clamp(40px, 11vw, 76px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.03;
}

.blog-post-hero__intro {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(18px, 4.4vw, 25px);
	font-weight: 400;
	line-height: 1.42;
}

.blog-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.blog-post-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.blog-post-hero__media {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
}

.blog-post-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-post-body {
	padding: 52px 0 78px;
}

.blog-post-body__inner {
	display: grid;
	gap: 34px;
	width: var(--content-wrap);
	margin: 0 auto;
}

.blog-post-rail {
	display: grid;
	gap: 12px;
	padding: 22px;
	border: 1px solid rgba(96, 115, 130, 0.22);
	border-radius: 8px;
	background: var(--color-white);
}

.blog-post-rail__label {
	margin: 0;
	color: var(--color-navy);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
}

.blog-post-rail p:not(.blog-post-rail__label) {
	margin: 0;
	color: var(--color-steel);
	font-size: 15px;
	line-height: 1.5;
}

.blog-post-rail__button,
.blog-post-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	width: fit-content;
	padding: 0 22px;
	border: 0;
	background: var(--color-steel);
	color: var(--color-white);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease;
}

.blog-post-rail__button:hover,
.blog-post-rail__button:focus-visible,
.blog-post-cta__button:hover,
.blog-post-cta__button:focus-visible {
	background: var(--color-navy);
	outline: none;
	transform: translateY(-10px);
}

.blog-post-content {
	max-width: 760px;
}

.blog-post-content > *:first-child {
	margin-top: 0;
}

.blog-post-content > *:last-child {
	margin-bottom: 0;
}

.blog-post-content p,
.blog-post-content li {
	color: #516474;
	font-size: clamp(17px, 4.1vw, 19px);
	font-weight: 400;
	line-height: 1.72;
}

.blog-post-content p {
	margin: 0 0 24px;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
	color: var(--color-navy);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.12;
}

.blog-post-content h2 {
	margin: 54px 0 17px;
	font-size: clamp(30px, 7vw, 45px);
}

.blog-post-content h3 {
	margin: 34px 0 13px;
	font-size: clamp(22px, 5vw, 29px);
}

.blog-post-content h4 {
	margin: 28px 0 12px;
	font-size: clamp(19px, 4.4vw, 23px);
}

.blog-post-content ul,
.blog-post-content ol {
	display: grid;
	gap: 11px;
	margin: 0 0 28px;
	padding-left: 1.2em;
}

.blog-post-content figure {
	margin: 34px 0 40px;
}

.blog-post-content figure img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 8px;
}

.blog-post-content blockquote {
	margin: 38px 0;
	padding: 24px 0 24px 24px;
	border-left: 3px solid var(--color-steel);
	color: var(--color-navy);
}

.blog-post-content blockquote p {
	color: var(--color-navy);
	font-size: clamp(20px, 4.6vw, 26px);
	line-height: 1.42;
}

.blog-post-cta {
	padding: 0 0 82px;
	background: #f4f6f7;
}

.blog-post-cta__inner {
	display: grid;
	gap: 24px;
	width: var(--content-wrap);
	margin: 0 auto;
	padding: 30px;
	border-radius: 8px;
	background: var(--color-navy);
	color: var(--color-white);
}

.blog-post-cta__eyebrow {
	margin: 0 0 9px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.blog-post-cta h2 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(28px, 7vw, 48px);
	line-height: 1.08;
}

@media (min-width: 760px) {
	.blog-post-hero {
		padding: 170px 0 70px;
	}

	.blog-post-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
		align-items: end;
		gap: 54px;
	}

	.blog-post-hero__media {
		aspect-ratio: 0.92;
	}

	.blog-post-body {
		padding: 76px 0 98px;
	}

	.blog-post-body__inner {
		grid-template-columns: 230px minmax(0, 760px);
		justify-content: center;
		align-items: start;
		gap: 64px;
	}

	.blog-post-rail {
		position: sticky;
		top: 38px;
	}

	.blog-post-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		padding: 42px 48px;
	}
}

@media (min-width: 1180px) {
	.blog-post-hero__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.58fr);
	}

	.blog-post-body__inner {
		grid-template-columns: 260px minmax(0, 780px);
		gap: 86px;
	}
}

.site-header {
	position: absolute;
	z-index: 10;
	inset: 0 0 auto;
	color: var(--color-white);
}

.utility-bar {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 48px;
	padding: 0;
	background: rgba(96, 115, 130, 0.96);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.utility-link,
.utility-warranty {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	margin: 0;
	padding: 0 16px;
	color: var(--color-white);
	font-size: inherit;
	font-weight: 700;
	white-space: nowrap;
}

.utility-link {
	position: relative;
	min-height: 38px;
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.utility-link:hover,
.utility-link:focus-visible {
	background: rgba(5, 23, 33, 0.22);
	outline: none;
}

.utility-link:active {
	transform: translateY(1px);
}

.utility-link--phone::before,
.utility-warranty::before {
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	background: currentColor;
}

.utility-link--phone::before {
	width: 20px;
	height: 20px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M22 16.92v3a2 2 0 0 1-2.18 2 19.78 19.78 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.78 19.78 0 0 1 2.11 4.2 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.8a2 2 0 0 1-.45 2.11L8.05 9.9a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.31 1.84.53 2.8.66A2 2 0 0 1 22 16.92Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' d='M14 2.5c3.9.9 6.6 3.6 7.5 7.5M14 7c1.5.5 2.5 1.5 3 3'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M22 16.92v3a2 2 0 0 1-2.18 2 19.78 19.78 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.78 19.78 0 0 1 2.11 4.2 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.8a2 2 0 0 1-.45 2.11L8.05 9.9a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.31 1.84.53 2.8.66A2 2 0 0 1 22 16.92Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' d='M14 2.5c3.9.9 6.6 3.6 7.5 7.5M14 7c1.5.5 2.5 1.5 3 3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.utility-warranty::before {
	width: 24px;
	height: 27px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 27' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 0 22 4.4v7.9c0 6.2-4 11.7-10 14.7C6 24 2 18.5 2 12.3V4.4L12 0Zm0 2.2L4 5.7v6.6c0 5.1 3.1 9.7 8 12.4 4.9-2.7 8-7.3 8-12.4V5.7l-8-3.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 27' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 0 22 4.4v7.9c0 6.2-4 11.7-10 14.7C6 24 2 18.5 2 12.3V4.4L12 0Zm0 2.2L4 5.7v6.6c0 5.1 3.1 9.7 8 12.4 4.9-2.7 8-7.3 8-12.4V5.7l-8-3.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.utility-link--quote::after {
	content: "→";
	margin-left: 2px;
	font-size: 24px;
	font-weight: 500;
	line-height: 0.7;
	text-decoration: none;
	transition: transform 160ms ease;
}

.utility-link--quote:hover::after,
.utility-link--quote:focus-visible::after {
	transform: translateX(3px);
}

.utility-link__label {
	font-weight: inherit;
}

.utility-link__strong {
	font-weight: inherit;
	text-decoration: none;
}

.utility-warranty {
	display: none;
}

.hero-shell {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	width: var(--hero-wrap);
	margin-inline: auto;
	padding-top: 31px;
}

.brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	width: 245px;
	padding: 0;
	background: transparent;
	text-decoration: none;
}

.brand-mark img {
	width: 100%;
	height: auto;
}

.menu-toggle {
	display: inline-grid;
	grid-template-columns: 24px auto;
	gap: 9px;
	align-items: center;
	min-height: 44px;
	padding: 10px 13px;
	color: var(--color-white);
	background: rgba(7, 27, 38, 0.82);
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}

.menu-toggle__line {
	grid-column: 1;
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease;
}

.menu-toggle__label {
	grid-column: 2;
	grid-row: 1 / span 2;
	font-size: 14px;
	font-weight: 700;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-child {
	transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
	transform: translateY(-4px) rotate(-45deg);
}

.primary-nav {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	max-height: 0;
	overflow: hidden;
	background: rgba(7, 27, 38, 0.76);
	border-radius: 4px;
	transition: max-height 180ms ease;
}

.primary-nav.is-open {
	max-height: 360px;
}

.primary-nav a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 12px 18px;
	color: var(--color-white);
	background: rgba(7, 27, 38, 0.78);
	border-radius: 4px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	background: rgba(7, 27, 38, 0.96);
	outline: none;
}

.hero {
	position: relative;
	min-height: 768px;
	overflow: hidden;
	background: var(--color-navy);
}

.hero__image,
.hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__image {
	object-fit: cover;
	object-position: center top;
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgba(5, 23, 33, 0.82) 0%, rgba(5, 23, 33, 0.66) 31%, rgba(5, 23, 33, 0.18) 76%, rgba(5, 23, 33, 0.08) 100%),
		linear-gradient(180deg, rgba(5, 23, 33, 0.08) 0%, rgba(5, 23, 33, 0.2) 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	width: var(--hero-wrap);
	margin-inline: auto;
	padding-top: 274px;
	color: var(--color-white);
}

.hero__content h1 {
	max-width: 960px;
	margin: 0;
	font-size: clamp(44px, 3.55vw, 64px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
}

.hero__content p {
	max-width: 1000px;
	margin: 26px 0 0;
	font-size: clamp(22px, 1.55vw, 31px);
	font-weight: 400;
	line-height: 1.24;
	letter-spacing: 0;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 38px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 204px;
	min-height: 52px;
	padding: 14px 28px;
	color: var(--color-white);
	border: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-10px);
	box-shadow: none;
	outline: none;
}

.button:active {
	transform: translateY(-1px);
}

.button--dark {
	background: #071b26;
}

.button--dark:hover,
.button--dark:focus-visible {
	background: #0d2b3a;
}

.button--light {
	background: #607382;
}

.button--light:hover,
.button--light:focus-visible {
	background: #73899a;
}

.desktop-break {
	display: none;
}

.services-overview {
	background: var(--color-white);
	color: var(--color-navy);
}

.services-overview__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 72px 0 84px;
}

.services-overview__header {
	max-width: 900px;
	margin-inline: auto;
	text-align: center;
}

.services-overview__header h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(34px, 7vw, 46px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.services-overview__header p {
	max-width: 820px;
	margin: 20px auto 0;
	color: #6f7f8e;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.45;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-top: 56px;
}

.service-card {
	display: grid;
	align-content: start;
	justify-items: start;
	min-height: 310px;
	padding: 38px;
	color: var(--color-navy);
	background: transparent;
	border-radius: 24px;
	text-decoration: none;
	transition: background-color 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
	background: #f6f6f6;
	transform: translateY(-2px);
	outline: none;
}

.service-card__icon {
	width: 138px;
	height: 92px;
	object-fit: contain;
	object-position: left center;
	margin-bottom: 52px;
}

.service-card:nth-child(-n+3) .service-card__icon {
	transform: scale(1.35);
	transform-origin: left center;
}

.service-card h3 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(28px, 8vw, 34px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.service-card p {
	max-width: 245px;
	margin: 22px 0 0;
	color: #6f7f8e;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.45;
}

.mission-section {
	background: var(--color-white);
	color: var(--color-navy);
}

.mission-section__inner {
	display: grid;
	grid-template-columns: 1fr;
	width: 100%;
	margin-inline: auto;
}

.mission-panel {
	position: relative;
	display: grid;
	min-height: 560px;
	overflow: hidden;
	color: var(--color-white);
	background: var(--color-navy);
}

.mission-panel__image,
.mission-panel__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.mission-panel__image {
	object-fit: cover;
	object-position: 45% center;
}

.mission-panel__overlay {
	background:
		linear-gradient(90deg, rgba(5, 23, 33, 0.78) 0%, rgba(5, 23, 33, 0.58) 54%, rgba(5, 23, 33, 0.44) 100%),
		linear-gradient(180deg, rgba(5, 23, 33, 0.14) 0%, rgba(5, 23, 33, 0.46) 100%);
}

.mission-panel__content {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	width: min(var(--content-wrap), 760px);
	min-height: inherit;
	margin-inline: auto;
	padding: 58px 0;
}

.mission-panel__content h2 {
	margin: 0;
	color: var(--color-white);
	font-size: clamp(38px, 8vw, 54px);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0;
}

.mission-panel__content > p {
	max-width: 760px;
	margin: 34px 0 0;
	color: rgba(255, 255, 255, 0.96);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.55;
}

.mission-signoff {
	display: grid;
	justify-items: start;
	gap: 22px;
	margin-top: 38px;
}

.mission-signoff p {
	margin: 0;
	color: var(--color-white);
}

.mission-signoff strong,
.mission-signoff span {
	display: block;
}

.mission-signoff strong {
	font-size: 23px;
	font-weight: 700;
	line-height: 1.15;
}

.mission-signoff span {
	margin-top: 10px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.2;
}

.mission-signoff img {
	width: 118px;
	height: auto;
}

.mission-stats {
	display: grid;
	gap: 0;
	width: min(100% - 64px, 420px);
	margin: 0 auto;
	padding: 48px 0 62px;
	background: var(--color-white);
}

.mission-stat {
	padding: 0 0 36px;
	border-bottom: 1px solid #8398a8;
}

.mission-stat + .mission-stat {
	padding-top: 38px;
}

.mission-stat:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.mission-stat strong {
	display: block;
	color: var(--color-navy);
	font-size: clamp(54px, 15vw, 68px);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: 0;
}

.mission-stat span {
	display: block;
	margin-top: 24px;
	color: #607382;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.landscaping-services {
	background: var(--color-white);
	color: var(--color-navy);
}

.landscaping-services__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 72px 0 84px;
	text-align: center;
}

.landscaping-services__header p {
	margin: 0;
	color: #607382;
	font-size: clamp(22px, 5.5vw, 28px);
	font-weight: 700;
	line-height: 1.15;
}

.landscaping-services__header h2 {
	margin: 12px 0 0;
	color: var(--color-navy);
	font-size: clamp(38px, 9vw, 56px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0;
}

.landscaping-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 48px;
	text-align: left;
}

.landscape-card {
	position: relative;
	min-height: 410px;
	overflow: hidden;
	background: var(--color-navy);
	isolation: isolate;
}

.landscape-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.landscape-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(5, 23, 33, 0.06);
	transition: background-color 220ms ease;
}

.landscape-card__content {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: start;
	width: min(100% - 48px, 300px);
	margin: 156px 24px 24px auto;
	padding: 30px 28px 34px;
	color: var(--color-white);
	background: rgba(5, 23, 33, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition: background-color 220ms ease, transform 220ms ease;
}

.landscape-card h3 {
	margin: 0;
	color: var(--color-white);
	font-size: clamp(30px, 8vw, 36px);
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: 0;
}

.landscape-card p {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.96);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.42;
}

.landscape-card:hover img,
.landscape-card:focus-within img {
	transform: scale(1.035);
}

.landscape-card:hover::after,
.landscape-card:focus-within::after {
	background: rgba(5, 23, 33, 0.14);
}

.landscape-card:hover .landscape-card__content,
.landscape-card:focus-within .landscape-card__content {
	background: rgba(5, 23, 33, 0.92);
	transform: translateY(-4px);
}

.landscaping-services__cta {
	min-width: 240px;
	margin-top: 40px;
}

.latest-projects {
	background: var(--color-white);
	color: var(--color-navy);
}

.latest-projects__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 64px 0 86px;
}

.latest-projects__header {
	max-width: 920px;
}

.latest-projects__header h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(38px, 9vw, 56px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.latest-projects__header p {
	max-width: 900px;
	margin: 24px 0 0;
	color: #607382;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
}

.latest-projects__carousel {
	position: relative;
	margin-top: 54px;
}

.latest-projects__track {
	display: grid;
	grid-auto-columns: minmax(286px, 84%);
	grid-auto-flow: column;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 0 18px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.latest-projects__track::-webkit-scrollbar {
	display: none;
}

.case-study-card {
	display: grid;
	gap: 18px;
	color: var(--color-navy);
	text-decoration: none;
	scroll-snap-align: start;
}

.case-study-card img {
	width: 100%;
	aspect-ratio: 478 / 365;
	object-fit: cover;
	background: #eef2f4;
	transition: transform 180ms ease, filter 180ms ease;
}

.case-study-card__title,
.case-study-card__description {
	display: block;
}

.case-study-card__title {
	color: #030303;
	font-size: clamp(22px, 5.8vw, 29px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
}

.case-study-card__description {
	display: -webkit-box;
	margin-top: -6px;
	overflow: hidden;
	color: #607382;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.case-study-card:hover img,
.case-study-card:focus-visible img {
	filter: brightness(0.94);
	transform: translateY(-2px);
}

.case-study-card:focus-visible {
	outline: 2px solid #607382;
	outline-offset: 8px;
}

.latest-projects__control {
	position: absolute;
	z-index: 2;
	top: 34%;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	color: var(--color-navy);
	background: rgba(255, 255, 255, 0.92);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.latest-projects__control:hover,
.latest-projects__control:focus-visible {
	color: var(--color-white);
	background: var(--color-navy);
	transform: translateY(-10px);
	outline: none;
}

.latest-projects__control:disabled {
	cursor: default;
	opacity: 0;
	pointer-events: none;
}

.latest-projects__control span {
	font-size: 22px;
	line-height: 1;
}

.latest-projects__control--prev {
	left: 10px;
}

.latest-projects__control--next {
	right: 10px;
}

.customer-reviews {
	background: #f4f4f4;
	color: var(--color-navy);
}

.customer-reviews__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 70px 0 82px;
}

.customer-reviews__header {
	max-width: 900px;
	margin-inline: auto;
	text-align: center;
}

.customer-reviews__header h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(36px, 8.6vw, 52px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.customer-reviews__header p {
	max-width: 860px;
	margin: 24px auto 0;
	color: #607382;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.42;
}

.customer-reviews__widget {
	width: 100%;
	min-height: 360px;
	margin-top: 50px;
	overflow: visible;
}

.customer-reviews__widget > * {
	max-width: 100%;
}

.blog-insights {
	background: #f4f4f4;
	color: var(--color-navy);
}

.blog-insights__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 58px 0 84px;
}

.blog-insights__header {
	max-width: 690px;
}

.blog-insights__header h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(36px, 8vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.blog-insights__header p {
	max-width: 620px;
	margin: 24px 0 0;
	color: #607382;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.45;
}

.blog-insights__carousel {
	position: relative;
	margin-top: 52px;
}

.blog-insights__track {
	display: grid;
	grid-auto-columns: minmax(286px, 84%);
	grid-auto-flow: column;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 0 20px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.blog-insights__track::-webkit-scrollbar {
	display: none;
}

.blog-card {
	display: grid;
	align-content: start;
	color: var(--color-navy);
	text-decoration: none;
	scroll-snap-align: start;
}

.blog-card img {
	width: 100%;
	aspect-ratio: 310 / 232;
	object-fit: cover;
	background: #e7ecef;
	transition: filter 180ms ease, transform 180ms ease;
}

.blog-card__meta,
.blog-card__title,
.blog-card__excerpt {
	display: block;
}

.blog-card__meta {
	margin-top: 34px;
	color: #607382;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}

.blog-card__title {
	display: -webkit-box;
	margin-top: 28px;
	overflow: hidden;
	color: #050505;
	font-size: clamp(22px, 5.4vw, 26px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-card__excerpt {
	display: -webkit-box;
	margin-top: 18px;
	overflow: hidden;
	color: #4d4d4d;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-card:hover img,
.blog-card:focus-visible img {
	filter: brightness(0.94);
	transform: translateY(-2px);
}

.blog-card:focus-visible {
	outline: 2px solid #607382;
	outline-offset: 8px;
}

.blog-insights__control {
	position: absolute;
	z-index: 2;
	top: 28%;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	color: var(--color-navy);
	background: rgba(255, 255, 255, 0.94);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.blog-insights__control:hover,
.blog-insights__control:focus-visible {
	color: var(--color-white);
	background: var(--color-navy);
	transform: translateY(-10px);
	outline: none;
}

.blog-insights__control:disabled {
	cursor: default;
	opacity: 0;
	pointer-events: none;
}

.blog-insights__control span {
	font-size: 22px;
	line-height: 1;
}

.blog-insights__control--prev {
	left: 10px;
}

.blog-insights__control--next {
	right: 10px;
}

.blog-archive-hero {
	background: var(--color-navy);
	color: var(--color-white);
}

.blog-archive-hero__inner {
	width: var(--hero-wrap);
	margin-inline: auto;
	padding: 176px 0 68px;
}

.blog-archive-hero__eyebrow {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.blog-archive-hero h1 {
	max-width: 820px;
	margin: 0;
	font-size: var(--text-h1);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.blog-archive-hero p:not(.blog-archive-hero__eyebrow) {
	max-width: 760px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: var(--text-body);
	font-weight: 400;
	line-height: var(--leading-body);
}

.blog-archive-list {
	background: #f4f6f7;
	color: var(--color-navy);
}

.blog-archive-list__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 42px 0 78px;
}

.blog-service-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 38px;
}

.blog-service-filter a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 11px 18px;
	color: #4c6170;
	background: var(--color-white);
	border: 1px solid #d5e0e7;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.blog-service-filter a:hover,
.blog-service-filter a:focus-visible,
.blog-service-filter a.is-active {
	color: var(--color-white);
	background: var(--color-navy);
	border-color: var(--color-navy);
	outline: none;
	transform: translateY(-2px);
}

.blog-archive-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 42px;
}

.blog-card--archive {
	min-width: 0;
}

.blog-card--archive img {
	aspect-ratio: 4 / 3;
}

.blog-pagination {
	margin-top: 54px;
}

.blog-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-pagination a,
.blog-pagination span {
	display: grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	padding: 10px 14px;
	color: var(--color-navy);
	background: var(--color-white);
	border: 1px solid #d5e0e7;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.blog-pagination a:hover,
.blog-pagination a:focus-visible,
.blog-pagination .current {
	color: var(--color-white);
	background: var(--color-navy);
	border-color: var(--color-navy);
	outline: none;
}

.blog-pagination a:hover,
.blog-pagination a:focus-visible {
	transform: translateY(-2px);
}

.blog-archive-empty {
	max-width: 680px;
	padding: 34px;
	background: var(--color-white);
	border: 1px solid #d5e0e7;
}

.blog-archive-empty h2 {
	margin: 0;
	font-size: var(--text-h3);
	line-height: var(--leading-heading);
}

.blog-archive-empty p {
	margin: 14px 0 26px;
	color: #607382;
	font-size: var(--text-body);
	line-height: var(--leading-body);
}

@media (min-width: 760px) {
	.blog-archive-hero__inner {
		padding: 196px 0 86px;
	}

	.blog-archive-list__inner {
		padding: 56px 0 96px;
	}

	.blog-service-filter {
		margin-bottom: 48px;
	}

	.blog-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px 28px;
	}
}

@media (min-width: 1180px) {
	.blog-archive-hero__inner {
		padding: 218px 0 104px;
	}

	.blog-archive-list__inner {
		padding: 72px 0 118px;
	}

	.blog-archive-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 58px 34px;
	}

	.blog-card--archive .blog-card__meta {
		margin-top: 26px;
	}

	.blog-card--archive .blog-card__title {
		margin-top: 22px;
	}
}

.case-study-hero {
	position: relative;
	min-height: 660px;
	overflow: hidden;
	background: var(--color-navy);
	color: var(--color-white);
}

.case-study-hero__image,
.case-study-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.case-study-hero__image {
	object-fit: cover;
	object-position: center;
}

.case-study-hero__overlay {
	background:
		linear-gradient(90deg, rgba(5, 23, 33, 0.84) 0%, rgba(5, 23, 33, 0.62) 46%, rgba(5, 23, 33, 0.2) 100%),
		linear-gradient(180deg, rgba(5, 23, 33, 0.18) 0%, rgba(5, 23, 33, 0.44) 100%);
}

.case-study-hero__content {
	position: relative;
	z-index: 1;
	width: var(--hero-wrap);
	margin-inline: auto;
	padding-top: 250px;
}

.case-study-hero__back {
	display: inline-flex;
	margin-bottom: 26px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.case-study-hero__back:hover,
.case-study-hero__back:focus-visible {
	color: var(--color-white);
	text-decoration: underline;
	outline: none;
}

.case-study-hero h1 {
	max-width: 980px;
	margin: 0;
	font-size: clamp(42px, 7vw, 72px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.case-study-hero p {
	max-width: 790px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(18px, 2.2vw, 24px);
	font-weight: 400;
	line-height: 1.38;
}

.case-study-detail,
.case-study-archive-list {
	background: var(--color-white);
	color: var(--color-navy);
}

.case-study-detail__inner,
.case-study-archive-list__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 64px 0 88px;
}

.case-study-detail__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 44px;
}

.case-study-spec {
	padding: 34px 30px;
	background: #f6f8f9;
}

.case-study-spec h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: 28px;
	line-height: 1.15;
}

.case-study-spec dl {
	display: grid;
	gap: 0;
	margin: 28px 0 0;
}

.case-study-spec div {
	padding: 18px 0;
	border-top: 1px solid #c8d2da;
}

.case-study-spec dt {
	margin: 0 0 7px;
	color: #607382;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.case-study-spec dd {
	margin: 0;
	color: var(--color-navy);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}

.case-study-copy {
	max-width: 860px;
	color: #354856;
	font-size: 19px;
	line-height: 1.62;
}

.case-study-copy > *:first-child {
	margin-top: 0;
}

.case-study-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 44px;
}

.case-study-gallery:first-child {
	margin-top: 0;
}

.case-study-gallery img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.case-study-archive-hero {
	background: var(--color-navy);
	color: var(--color-white);
}

.case-study-archive-hero__inner {
	width: var(--hero-wrap);
	margin-inline: auto;
	padding: 220px 0 112px;
}

.case-study-archive-hero h1 {
	margin: 0;
	font-size: clamp(44px, 7vw, 72px);
	line-height: 1.08;
}

.case-study-archive-hero p {
	max-width: 760px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 20px;
	line-height: 1.42;
}

.case-study-archive-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
}

.site-footer {
	background: var(--color-navy-deep);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 58px 0 34px;
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 38px;
}

.footer-brand__logo {
	display: inline-flex;
	width: 220px;
	text-decoration: none;
}

.footer-brand__logo img {
	width: 100%;
	height: auto;
}

.footer-contact {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-style: normal;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
}

.footer-contact a {
	text-decoration: none;
}

.footer-column h3,
.footer-accordion summary {
	margin: 0 0 22px;
	color: var(--color-white);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.15;
}

.footer-accordion summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	cursor: pointer;
	list-style: none;
}

.footer-accordion summary::-webkit-details-marker {
	display: none;
}

.footer-accordion summary::after {
	content: "+";
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.78);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	transition: transform 160ms ease;
}

.footer-accordion[open] summary::after {
	transform: rotate(45deg);
}

.footer-accordion summary:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.38);
	outline-offset: 8px;
}

.footer-column ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column li,
.footer-column a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}

.footer-column a {
	text-decoration: none;
	transition: color 160ms ease, opacity 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
	color: var(--color-white);
	outline: none;
}

.footer-actions {
	display: grid;
	gap: 16px;
	max-width: 242px;
	margin-top: 34px;
}

.footer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 13px 22px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-button:hover,
.footer-button:focus-visible {
	transform: translateY(-10px);
}

.footer-button--light {
	color: var(--color-navy);
	background: var(--color-white);
}

.footer-column a.footer-button--light {
	color: var(--color-navy);
}

.footer-button--light:hover,
.footer-button--light:focus-visible {
	color: var(--color-navy);
	background: #e6ecef;
}

.footer-button--steel {
	color: var(--color-white);
	background: #607382;
}

.footer-column a.footer-button--steel {
	color: var(--color-white);
}

.footer-button--steel:hover,
.footer-button--steel:focus-visible {
	color: var(--color-white);
	background: #718696;
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 56px;
	color: #607382;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.site-footer__bottom a {
	color: inherit;
	text-decoration: none;
}

.footer-go-up {
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

@media (hover: none), (pointer: coarse) {
	.button:hover,
	.button:focus-visible,
	.footer-button:hover,
	.footer-button:focus-visible,
	.latest-projects__control:hover,
	.latest-projects__control:focus-visible,
	.blog-insights__control:hover,
	.blog-insights__control:focus-visible {
		transform: none;
	}
}

.hero__content h1,
.case-study-hero h1,
.case-study-archive-hero h1 {
	font-size: var(--text-h1);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.services-overview__header h2,
.mission-panel__content h2,
.landscaping-services__header h2,
.latest-projects__header h2,
.customer-reviews__header h2,
.blog-insights__header h2,
.case-study-spec h2 {
	font-size: var(--text-h2);
	font-weight: 700;
	line-height: var(--leading-heading);
	letter-spacing: 0;
}

.service-card h3,
.landscape-card h3,
.case-study-card__title,
.blog-card__title {
	font-size: var(--text-h3);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: 0;
}

.services-overview__header p,
.service-card p,
.mission-panel__content > p,
.mission-signoff span,
.landscape-card p,
.latest-projects__header p,
.case-study-card__description,
.customer-reviews__header p,
.blog-insights__header p,
.blog-card__excerpt,
.case-study-hero p,
.case-study-archive-hero p,
.case-study-copy {
	font-size: var(--text-body);
	font-weight: 400;
	line-height: var(--leading-body);
}

.hero__content p {
	font-size: var(--text-lead);
	font-weight: 400;
	line-height: 1.24;
}

.landscaping-services__header p,
.mission-signoff strong,
.mission-stat span {
	font-size: var(--text-eyebrow);
	font-weight: 700;
	line-height: 1.18;
}

.blog-card__meta,
.case-study-hero__back,
.footer-contact,
.site-footer__bottom {
	font-size: var(--text-small);
}

@media (min-width: 1280px) {
	:root {
		--content-gutter: 192px;
	}

	.utility-bar {
		grid-template-columns: 1fr auto 1fr;
		gap: 18px;
		min-height: 52px;
		padding-inline: max(24px, calc((100% - 1570px) / 2));
		font-size: 20px;
	}

	.utility-link,
	.utility-warranty {
		display: inline-flex;
		min-height: 40px;
		padding-inline: 14px;
	}

	.utility-link--phone {
		justify-self: start;
	}

	.utility-warranty {
		justify-self: center;
	}

	.utility-link--quote {
		justify-self: end;
	}

	.utility-link--phone::before {
		width: 25px;
		height: 25px;
	}

	.utility-link--quote::after {
		margin-left: 8px;
		font-size: 28px;
	}

	.desktop-break {
		display: block;
	}
}

@media (min-width: 1280px) {
	.hero-shell {
		grid-template-columns: 245px minmax(720px, 918px);
		gap: clamp(88px, 20vw, 416px);
		align-items: start;
	}

	.menu-toggle {
		display: none;
	}

	.primary-nav {
		grid-template-columns: repeat(6, minmax(110px, 1fr));
		max-height: none;
		margin-top: 0;
		overflow: visible;
		background: rgba(7, 27, 38, 0.64);
		border-radius: 5px;
	}

	.primary-nav a {
		justify-content: center;
		min-height: 73px;
		padding: 18px 20px;
		background: transparent;
		border-radius: 5px;
		font-size: 18px;
	}

	.services-overview__inner {
		width: var(--content-wrap);
		padding: 114px 0 118px;
	}

	.services-overview__header h2 {
		font-size: 46px;
	}

	.services-overview__header p {
		font-size: 18px;
	}

	.services-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 48px;
		margin-top: 70px;
	}

	.service-card {
		min-height: 374px;
		padding: 46px 36px 42px;
		border-radius: 24px;
	}

	.service-card__icon {
		width: 174px;
		height: 104px;
		margin-bottom: 54px;
	}

	.service-card:nth-child(-n+3) .service-card__icon {
		transform: scale(1.75);
	}

	.service-card h3 {
		font-size: 34px;
	}

	.service-card p {
		max-width: 270px;
		font-size: 17px;
	}

	.mission-section__inner {
		grid-template-columns: minmax(0, 1.35fr) minmax(520px, 0.95fr);
		min-height: 670px;
	}

	.mission-panel {
		min-height: 670px;
	}

	.mission-panel__content {
		width: min(790px, calc(100% - (var(--content-edge) * 2)));
		margin-left: var(--content-edge);
		margin-right: var(--content-edge);
		padding: 72px 0;
		transform: translateY(28px);
	}

	.mission-panel__content h2 {
		font-size: 50px;
	}

	.mission-panel__content > p {
		margin-top: 34px;
		font-size: 18px;
		line-height: 1.5;
	}

	.mission-signoff {
		margin-top: 48px;
	}

	.mission-signoff img {
		width: 116px;
	}

	.mission-stats {
		align-content: center;
		justify-self: center;
		width: min(54%, 375px);
		min-height: 670px;
		padding: 0;
	}

	.mission-stat {
		padding-bottom: 44px;
	}

	.mission-stat + .mission-stat {
		padding-top: 50px;
	}

	.mission-stat strong {
		font-size: 62px;
	}

	.mission-stat span {
		margin-top: 24px;
		font-size: 24px;
	}

	.landscaping-services__inner {
		width: var(--content-wrap);
		padding: 118px 0 106px;
	}

	.landscaping-services__header p {
		font-size: 28px;
	}

	.landscaping-services__header h2 {
		font-size: 56px;
	}

	.landscaping-services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 54px;
		margin-top: 58px;
	}

	.landscape-card {
		min-height: 0;
		aspect-ratio: 464 / 347;
	}

	.landscape-card__content {
		width: min(58%, 292px);
		margin: 42px 22px 22px auto;
		padding: 26px 28px 28px;
		border-radius: 22px;
	}

	.landscape-card h3 {
		font-size: 31px;
		line-height: 1.28;
	}

	.landscape-card p {
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.35;
	}

	.landscaping-services__cta {
		margin-top: 44px;
	}

	.latest-projects__inner {
		width: var(--content-wrap);
		padding: 64px 0 102px;
	}

	.latest-projects__header h2 {
		font-size: 56px;
	}

	.latest-projects__header p {
		font-size: 20px;
	}

	.latest-projects__carousel {
		margin-top: 58px;
	}

	.latest-projects__track {
		grid-auto-columns: calc((100% - 68px) / 3);
		gap: 34px;
		padding-bottom: 22px;
	}

	.case-study-card {
		gap: 20px;
	}

	.case-study-card__title {
		font-size: 29px;
	}

	.case-study-card__description {
		max-width: 94%;
		font-size: 17px;
	}

	.latest-projects__control {
		top: 36%;
		width: 52px;
		height: 52px;
	}

	.latest-projects__control--prev {
		left: -26px;
	}

	.latest-projects__control--next {
		right: 28px;
	}

	.customer-reviews__inner {
		width: var(--content-wrap);
		padding: 86px 0 88px;
	}

	.customer-reviews__header h2 {
		font-size: 52px;
	}

	.customer-reviews__header p {
		font-size: 18px;
	}

	.customer-reviews__widget {
		min-height: 372px;
		margin-top: 54px;
	}

	.blog-insights__inner {
		width: var(--content-wrap);
		padding: 42px 0 104px;
	}

	.blog-insights__header h2 {
		font-size: 44px;
	}

	.blog-insights__header p {
		font-size: 17px;
	}

	.blog-insights__carousel {
		margin-top: 58px;
	}

	.blog-insights__track {
		grid-auto-columns: calc((100% - 84px) / 4);
		gap: 28px;
		padding-bottom: 24px;
	}

	.blog-card__meta {
		margin-top: 36px;
	}

	.blog-card__title {
		margin-top: 28px;
		font-size: 22px;
	}

	.blog-card__excerpt {
		font-size: 16px;
	}

	.blog-insights__control {
		top: 24%;
		width: 52px;
		height: 52px;
	}

	.blog-insights__control--prev {
		left: -26px;
	}

	.blog-insights__control--next {
		right: -26px;
	}

	.case-study-detail__inner,
	.case-study-archive-list__inner {
		width: var(--content-wrap);
		padding: 92px 0 118px;
	}

	.case-study-detail__inner {
		grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
		gap: 76px;
		align-items: start;
	}

	.case-study-spec {
		position: sticky;
		top: 32px;
	}

	.case-study-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}

	.case-study-gallery img:first-child {
		grid-column: 1 / -1;
	}

	.case-study-archive-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 34px;
	}

	.site-footer__inner {
		width: var(--content-wrap);
		padding: 84px 0 36px;
	}

	.site-footer__main {
		grid-template-columns: 245px 154px 154px 220px 242px;
		justify-content: space-between;
		align-items: start;
		gap: 52px;
	}

	.footer-brand__logo {
		width: 220px;
	}

	.footer-contact {
		margin-top: 28px;
		font-size: 15px;
	}

	.footer-column h3 {
		margin-bottom: 18px;
		font-size: 21px;
	}

	.footer-accordion summary {
		margin-bottom: 18px;
		pointer-events: none;
	}

	.footer-accordion summary::after {
		display: none;
	}

	.footer-accordion:not([open]) > ul,
	.footer-accordion:not([open]) > .footer-actions {
		display: grid;
	}

	.footer-column ul {
		gap: 11px;
	}

	.footer-actions {
		margin-top: 24px;
	}

	.footer-button {
		min-height: 44px;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		margin-top: 34px;
		font-size: 15px;
	}

	.site-footer__bottom nav {
		justify-content: center;
	}

	.footer-go-up {
		justify-self: end;
	}
}

@media (max-width: 759px) {
	:root {
		--hero-wrap: var(--content-wrap);
	}

	.utility-bar {
		min-height: 48px;
		font-size: 12px;
	}

	.utility-link {
		min-width: 0;
		padding-inline: 12px;
	}

	.utility-link__label {
		display: none;
	}

	.utility-link__strong {
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.utility-warranty::before {
		width: 18px;
		height: 20px;
	}

	.utility-link--phone::before {
		width: 18px;
		height: 18px;
	}

	.utility-link--quote::after {
		font-size: 21px;
	}

	.hero-shell {
		padding-top: 20px;
	}

	.brand-mark {
		width: 168px;
	}

	.hero {
		min-height: min(680px, 86svh);
	}

	.hero__image {
		object-position: 58% top;
	}

	.hero__overlay {
		background:
			linear-gradient(90deg, rgba(5, 23, 33, 0.84) 0%, rgba(5, 23, 33, 0.58) 62%, rgba(5, 23, 33, 0.28) 100%),
			linear-gradient(180deg, rgba(5, 23, 33, 0.2) 0%, rgba(5, 23, 33, 0.42) 100%);
	}

	.hero__content {
		padding-top: 212px;
	}

	.hero__content h1 {
		font-size: clamp(38px, 10vw, 42px);
		line-height: 1.12;
	}

	.hero__content p {
		margin-top: 22px;
		font-size: 19px;
	}

	.hero__actions {
		gap: 12px;
		margin-top: 30px;
	}

	.button {
		min-width: 0;
		min-height: 48px;
		padding-inline: 20px;
		font-size: 15px;
	}

	.services-overview__inner {
		padding-top: 56px;
		padding-bottom: 64px;
	}

	.services-overview__header h2,
	.mission-panel__content h2,
	.landscaping-services__header h2,
	.latest-projects__header h2,
	.customer-reviews__header h2,
	.blog-insights__header h2 {
		font-size: 32px;
		line-height: 1.12;
	}

	.services-overview__header {
		text-align: left;
	}

	.services-overview__header p {
		margin-top: 16px;
		font-size: 16px;
	}

	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		margin-top: 36px;
	}

	.service-card {
		min-height: 0;
		padding: 18px 14px 20px;
		border-radius: 16px;
	}

	.service-card__icon {
		width: 82px;
		height: 56px;
		margin-bottom: 24px;
	}

	.service-card:nth-child(-n+3) .service-card__icon {
		transform: scale(1.18);
	}

	.service-card h3 {
		font-size: 22px;
		line-height: 1.12;
	}

	.service-card p {
		margin-top: 12px;
		font-size: 15px;
		line-height: 1.35;
	}

	.mission-panel {
		min-height: 600px;
	}

	.mission-panel__image {
		object-position: 42% center;
	}

	.mission-panel__content {
		align-content: end;
		width: var(--content-wrap);
		padding: 46px 0;
	}

	.mission-panel__content > p {
		margin-top: 24px;
		font-size: 15px;
		line-height: 1.48;
	}

	.mission-signoff {
		gap: 16px;
		margin-top: 30px;
	}

	.mission-signoff strong {
		font-size: 21px;
	}

	.mission-signoff span {
		font-size: 16px;
	}

	.mission-signoff img {
		width: 104px;
	}

	.mission-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
		width: var(--content-wrap);
		padding: 30px 0 36px;
	}

	.mission-stat {
		padding: 0 10px;
		border-bottom: 0;
		border-left: 1px solid #c4d0d8;
	}

	.mission-stat + .mission-stat {
		padding-top: 0;
	}

	.mission-stat:first-child {
		border-left: 0;
		padding-left: 0;
	}

	.mission-stat:last-child {
		padding-right: 0;
	}

	.mission-stat strong {
		font-size: clamp(30px, 9vw, 38px);
		line-height: 1;
	}

	.mission-stat span {
		margin-top: 10px;
		font-size: 12px;
		line-height: 1.25;
	}

	.landscaping-services__inner {
		padding: 56px 0 64px;
	}

	.landscaping-services__header {
		text-align: left;
	}

	.landscaping-services__header h2 {
		margin-top: 10px;
	}

	.landscaping-services__grid {
		display: grid;
		grid-auto-columns: minmax(min(330px, 86vw), 92%);
		grid-auto-flow: column;
		grid-template-columns: none;
		gap: 16px;
		margin-top: 34px;
		margin-inline: calc(var(--content-gutter) / -2);
		overflow-x: auto;
		overflow-y: hidden;
		padding: 0 calc(var(--content-gutter) / 2) 18px;
		scroll-behavior: smooth;
		scroll-padding-inline: calc(var(--content-gutter) / 2);
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.landscaping-services__grid::-webkit-scrollbar {
		display: none;
	}

	.landscape-card {
		min-height: 400px;
		scroll-snap-align: start;
	}

	.landscape-card:nth-child(1) img {
		object-position: 34% center;
	}

	.landscape-card:nth-child(2) img {
		object-position: 50% center;
	}

	.landscape-card:nth-child(3) img {
		object-position: 58% center;
	}

	.landscape-card__content {
		width: calc(100% - 40px);
		margin: 170px 20px 20px;
		padding: 28px 26px 30px;
	}

	.landscape-card p {
		font-size: 15px;
	}

	.landscaping-services__cta {
		width: min(100%, 240px);
		margin-top: 30px;
	}

	.latest-projects__inner {
		padding: 56px 0 64px;
	}

	.latest-projects__header p {
		margin-top: 18px;
		font-size: 16px;
	}

	.latest-projects__carousel {
		margin-top: 36px;
	}

	.latest-projects__control {
		top: 28%;
	}

	.customer-reviews__inner {
		padding: 56px 0 64px;
	}

	.customer-reviews__header p {
		margin-top: 18px;
		font-size: 16px;
	}

	.customer-reviews__widget {
		min-height: 460px;
		margin-top: 34px;
	}

	.blog-insights__inner {
		padding: 52px 0 64px;
	}

	.blog-insights__header p {
		margin-top: 18px;
		font-size: 16px;
	}

	.blog-insights__carousel {
		margin-top: 36px;
	}

	.blog-card__meta {
		margin-top: 24px;
	}

	.blog-card__title {
		margin-top: 18px;
	}

	.blog-card__excerpt {
		margin-top: 14px;
	}

	.blog-insights__control {
		top: 25%;
	}

	.case-study-hero {
		min-height: 620px;
	}

	.case-study-hero__content {
		padding-top: 224px;
	}

	.case-study-detail__inner,
	.case-study-archive-list__inner {
		padding: 48px 0 68px;
	}

	.case-study-spec {
		padding: 28px 24px;
	}

	.case-study-archive-hero__inner {
		padding: 204px 0 76px;
	}

	.site-footer__inner {
		padding: 50px 0 32px;
	}

	.site-footer__main {
		gap: 0;
	}

	.footer-brand {
		margin-bottom: 20px;
	}

	.footer-brand__logo {
		width: 190px;
	}

	.footer-contact {
		margin-top: 24px;
	}

	.footer-column h3 {
		margin-bottom: 16px;
	}

	.footer-accordion {
		padding: 18px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.footer-accordion:last-of-type {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.footer-accordion summary {
		margin-bottom: 0;
		font-size: 20px;
	}

	.footer-accordion[open] summary {
		margin-bottom: 18px;
	}

	.footer-actions {
		max-width: none;
	}

	.site-footer__bottom {
		margin-top: 48px;
	}
}

@media (min-width: 760px) and (max-width: 1279px) {
	:root {
		--content-gutter: 56px;
	}

	.services-overview__inner {
		width: var(--content-wrap);
		padding: 84px 0 92px;
	}

	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px;
	}

	.mission-panel {
		min-height: 620px;
	}

	.mission-panel__content {
		width: var(--content-wrap);
	}

	.mission-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 34px;
		width: min(100% - 88px, 980px);
		padding: 54px 0 70px;
	}

	.mission-stat,
	.mission-stat:last-child {
		padding: 0;
		border-bottom: 0;
	}

	.mission-stat + .mission-stat {
		padding-top: 0;
	}

	.mission-stat {
		border-left: 1px solid #8398a8;
		padding-left: 30px;
	}

	.mission-stat:first-child {
		border-left: 0;
		padding-left: 0;
	}

	.mission-stat strong {
		font-size: 58px;
	}

	.mission-stat span {
		font-size: 20px;
	}

	.landscaping-services__inner {
		width: var(--content-wrap);
		padding: 84px 0 88px;
	}

	.landscaping-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
		margin-top: 46px;
	}

	.landscape-card {
		min-height: 420px;
	}

	.landscape-card__content {
		width: min(100% - 56px, 320px);
		margin: 138px 28px 28px auto;
	}

	.landscape-card:nth-child(3) {
		grid-column: 1 / -1;
		min-height: 360px;
	}

	.landscape-card:nth-child(3) .landscape-card__content {
		width: min(45%, 340px);
	}

	.landscaping-services__cta {
		margin-top: 36px;
	}

	.latest-projects__inner {
		width: var(--content-wrap);
		padding: 64px 0 84px;
	}

	.latest-projects__track {
		grid-auto-columns: calc((100% - 28px) / 2);
		gap: 28px;
	}

	.latest-projects__control--prev {
		left: -18px;
	}

	.latest-projects__control--next {
		right: -18px;
	}

	.customer-reviews__inner {
		width: var(--content-wrap);
		padding: 70px 0 78px;
	}

	.customer-reviews__widget {
		min-height: 390px;
	}

	.blog-insights__inner {
		width: var(--content-wrap);
		padding: 56px 0 82px;
	}

	.blog-insights__track {
		grid-auto-columns: calc((100% - 28px) / 2);
		gap: 28px;
	}

	.blog-insights__control--prev {
		left: -18px;
	}

	.blog-insights__control--next {
		right: -18px;
	}

	.case-study-detail__inner,
	.case-study-archive-list__inner {
		width: var(--content-wrap);
		padding: 72px 0 94px;
	}

	.case-study-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.case-study-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px;
	}

	.site-footer__inner {
		width: var(--content-wrap);
		padding: 68px 0 38px;
	}

	.site-footer__main {
		grid-template-columns: 1.4fr 1fr 1fr;
		gap: 46px 52px;
	}

	.footer-hours {
		grid-column: span 2;
	}

	.footer-accordion summary {
		pointer-events: none;
	}

	.footer-accordion summary::after {
		display: none;
	}

	.footer-accordion:not([open]) > ul,
	.footer-accordion:not([open]) > .footer-actions {
		display: grid;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr auto;
		align-items: center;
	}

	.footer-go-up {
		grid-column: 1 / -1;
	}
}

@media (max-width: 360px) {
	.utility-bar {
		font-size: 11px;
	}

	.utility-link {
		gap: 7px;
		padding-inline: 8px;
	}
}

.contact-hero {
	position: relative;
	min-height: 500px;
	overflow: hidden;
	background: var(--color-navy);
	color: var(--color-white);
}

.contact-hero__image,
.contact-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.contact-hero__image {
	object-fit: cover;
	object-position: 56% center;
}

.contact-hero__overlay {
	background:
		linear-gradient(90deg, rgba(5, 23, 33, 0.86) 0%, rgba(5, 23, 33, 0.64) 56%, rgba(5, 23, 33, 0.2) 100%),
		linear-gradient(180deg, rgba(5, 23, 33, 0.18) 0%, rgba(5, 23, 33, 0.34) 100%);
}

.contact-hero__content {
	position: relative;
	z-index: 1;
	width: var(--content-wrap);
	margin-inline: auto;
	padding-top: 214px;
}

.contact-hero__eyebrow {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.contact-hero__content h1 {
	max-width: 820px;
	margin: 0;
	color: var(--color-white);
	font-size: clamp(38px, 10vw, 48px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.contact-hero__content > p:not(.contact-hero__eyebrow) {
	max-width: 720px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 19px;
	font-weight: 400;
	line-height: 1.36;
}

.contact-methods,
.quote-request {
	background: #f4f6f7;
	color: var(--color-navy);
}

.contact-methods__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 44px 0 18px;
}

.contact-methods__header {
	max-width: 690px;
}

.contact-methods__header h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(30px, 7.8vw, 40px);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: 0;
}

.contact-methods__header p {
	max-width: 620px;
	margin: 14px 0 0;
	color: #607382;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
}

.contact-methods__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.contact-method-card {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 4px 14px;
	align-items: center;
	min-height: 92px;
	padding: 16px;
	color: var(--color-navy);
	background: var(--color-white);
	border: 1px solid #d7e2ea;
	border-radius: 8px;
	text-decoration: none;
	transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.contact-method-card:hover,
.contact-method-card:focus-visible {
	border-color: #aabac6;
	background: #fbfcfd;
	transform: translateY(-3px);
	outline: none;
}

.contact-method-card__icon {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	background: #eaf2f7;
	border-radius: 10px;
}

.contact-method-card__icon::before {
	content: "";
	width: 18px;
	height: 18px;
	background: var(--color-navy);
}

.contact-method-card--phone .contact-method-card__icon::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 3 3.8 5.4 6.7 6.9l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.3.6 1.3 1.3v3.5c0 .7-.6 1.3-1.3 1.3C10.4 22 2 13.6 2 3.3 2 2.6 2.6 2 3.3 2h3.5c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4 .1.4 0 .8-.3 1.2l-1.8 2.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 3 3.8 5.4 6.7 6.9l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.3.6 1.3 1.3v3.5c0 .7-.6 1.3-1.3 1.3C10.4 22 2 13.6 2 3.3 2 2.6 2.6 2 3.3 2h3.5c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4 .1.4 0 .8-.3 1.2l-1.8 2.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-method-card--whatsapp .contact-method-card__icon::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a9.7 9.7 0 0 0-8.4 14.6L2.4 22l5.5-1.4A9.7 9.7 0 1 0 12 2Zm0 2a7.7 7.7 0 0 1 6.6 11.7 7.7 7.7 0 0 1-9.9 2.9l-.4-.2-3 .8.8-2.9-.3-.5A7.7 7.7 0 0 1 12 4Zm-3.4 4.2c-.2 0-.5.1-.7.4-.2.3-.8.8-.8 2 0 1.1.8 2.2.9 2.4.1.1 1.6 2.6 4 3.6 2 .9 2.4.7 2.9.7.4-.1 1.4-.6 1.6-1.1.2-.6.2-1 .1-1.1l-.5-.3-1.6-.8c-.2-.1-.4-.1-.6.1l-.7.9c-.1.2-.3.2-.5.1-.3-.1-1.1-.4-2-1.2-.8-.7-1.3-1.6-1.4-1.8-.2-.3 0-.4.1-.5l.4-.5c.1-.1.2-.3.3-.5.1-.2.1-.3 0-.5l-.7-1.7c-.2-.4-.4-.4-.6-.4h-.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a9.7 9.7 0 0 0-8.4 14.6L2.4 22l5.5-1.4A9.7 9.7 0 1 0 12 2Zm0 2a7.7 7.7 0 0 1 6.6 11.7 7.7 7.7 0 0 1-9.9 2.9l-.4-.2-3 .8.8-2.9-.3-.5A7.7 7.7 0 0 1 12 4Zm-3.4 4.2c-.2 0-.5.1-.7.4-.2.3-.8.8-.8 2 0 1.1.8 2.2.9 2.4.1.1 1.6 2.6 4 3.6 2 .9 2.4.7 2.9.7.4-.1 1.4-.6 1.6-1.1.2-.6.2-1 .1-1.1l-.5-.3-1.6-.8c-.2-.1-.4-.1-.6.1l-.7.9c-.1.2-.3.2-.5.1-.3-.1-1.1-.4-2-1.2-.8-.7-1.3-1.6-1.4-1.8-.2-.3 0-.4.1-.5l.4-.5c.1-.1.2-.3.3-.5.1-.2.1-.3 0-.5l-.7-1.7c-.2-.4-.4-.4-.6-.4h-.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-method-card--email .contact-method-card__icon::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3.5 5h17c.8 0 1.5.7 1.5 1.5v11c0 .8-.7 1.5-1.5 1.5h-17c-.8 0-1.5-.7-1.5-1.5v-11C2 5.7 2.7 5 3.5 5Zm.5 3.2V17h16V8.2l-7.3 5.1a1.2 1.2 0 0 1-1.4 0L4 8.2Zm14.1-1.2H5.9l6.1 4.3 6.1-4.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3.5 5h17c.8 0 1.5.7 1.5 1.5v11c0 .8-.7 1.5-1.5 1.5h-17c-.8 0-1.5-.7-1.5-1.5v-11C2 5.7 2.7 5 3.5 5Zm.5 3.2V17h16V8.2l-7.3 5.1a1.2 1.2 0 0 1-1.4 0L4 8.2Zm14.1-1.2H5.9l6.1 4.3 6.1-4.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-method-card__label {
	color: var(--color-navy);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.1;
}

.contact-method-card__value {
	color: var(--color-navy);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.quote-request__inner {
	width: var(--content-wrap);
	margin-inline: auto;
	padding: 22px 0 76px;
}

.quote-request__panel {
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	background: var(--color-white);
	border: 1px solid #d7e2ea;
	border-radius: 8px;
}

.quote-request__form-wrap {
	padding: 30px 20px 34px;
	background: var(--color-white);
}

.quote-request__form-wrap h2 {
	margin: 0;
	color: #050505;
	font-size: clamp(34px, 9vw, 44px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.quote-request__form-wrap > p:not(.quote-request__notice) {
	margin: 16px 0 0;
	color: #304453;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.45;
}

.quote-request__notice {
	margin: 22px 0 0;
	padding: 14px 16px;
	border-left: 4px solid #607382;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.quote-request__notice--success {
	background: #eef7f2;
	color: #123c28;
	border-color: #2d8f5a;
}

.quote-request__notice--error {
	background: #fff1ef;
	color: #6f2218;
	border-color: #b94735;
}

.quote-form {
	margin-top: 26px;
}

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

.quote-form__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.quote-form__field {
	display: grid;
	gap: 9px;
	margin: 0;
}

.quote-form label,
.quote-form__upload span {
	color: #050505;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}

.quote-form input,
.quote-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 8px 12px;
	color: var(--color-navy);
	background: transparent;
	border: 0;
	border-bottom: 1px solid #707070;
	border-radius: 0;
	font: inherit;
	font-size: 16px;
	outline: none;
	transition: border-color 160ms ease, background-color 160ms ease;
}

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

.quote-form input::placeholder,
.quote-form textarea::placeholder {
	color: #b8b8b8;
	opacity: 1;
}

.quote-form input:focus,
.quote-form textarea:focus {
	border-color: var(--color-navy);
	background: #f8fbfc;
}

.quote-form__footer {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 26px;
}

.quote-form__upload {
	display: grid;
	gap: 12px;
}

.quote-form__upload label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 44px;
	padding: 11px 18px;
	color: var(--color-navy);
	border: 2px solid #607382;
	cursor: pointer;
}

.quote-form__upload label::before {
	content: "+";
	margin-right: 10px;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
}

.quote-form__upload input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.quote-form__submit {
	width: 100%;
	min-height: 50px;
}

.quote-request__image {
	display: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.94) brightness(1.07);
}

@media (min-width: 760px) {
	.contact-hero {
		min-height: 560px;
	}

	.contact-hero__content {
		padding-top: 250px;
	}

	.contact-hero__content h1 {
		font-size: clamp(48px, 5vw, 64px);
	}

	.contact-methods__inner {
		gap: 28px;
		padding: 56px 0 24px;
	}

	.contact-methods__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.quote-request__inner {
		padding: 30px 0 92px;
	}

	.quote-request__panel {
		grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.76fr);
		min-height: 580px;
	}

	.quote-request__form-wrap {
		padding: 48px;
	}

	.quote-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 24px;
	}

	.quote-form__field--wide {
		grid-column: 1 / -1;
	}

	.quote-form__footer {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 0.95fr);
		align-items: end;
		gap: 28px;
		margin-top: 26px;
	}

	.quote-request__image {
		display: block;
	}
}

@media (min-width: 1280px) {
	.contact-hero {
		min-height: 600px;
	}

	.contact-hero__content {
		padding-top: 268px;
	}

	.contact-methods__inner {
		grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
		align-items: end;
		padding: 64px 0 24px;
	}

	.quote-request__panel {
		grid-template-columns: minmax(0, 1fr) minmax(470px, 0.78fr);
		min-height: 600px;
	}

	.quote-request__form-wrap {
		padding: 58px 58px 50px;
	}
}

@media (max-width: 759px) {
	.contact-methods__inner {
		padding-top: 40px;
	}

	.contact-method-card:hover,
	.contact-method-card:focus-visible {
		transform: none;
	}

	.contact-method-card__label {
		font-size: 20px;
	}

	.quote-request__inner {
		padding-top: 18px;
	}

	.quote-request__panel {
		margin-inline: calc(var(--content-gutter) / -2);
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}
}

.about-hero {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	background: var(--color-navy);
	color: var(--color-white);
}

.about-hero__image,
.about-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.about-hero__image {
	object-fit: cover;
	object-position: 58% center;
}

.about-hero__overlay {
	background:
		linear-gradient(90deg, rgba(5, 23, 33, 0.9) 0%, rgba(5, 23, 33, 0.7) 52%, rgba(5, 23, 33, 0.2) 100%),
		linear-gradient(180deg, rgba(5, 23, 33, 0.16) 0%, rgba(5, 23, 33, 0.38) 100%);
}

.about-hero__content {
	position: relative;
	z-index: 1;
	width: var(--content-wrap);
	margin-inline: auto;
	padding-top: 220px;
	padding-bottom: 72px;
}

.about-hero__eyebrow,
.about-story__eyebrow,
.about-intro__heading p,
.about-cta p {
	margin: 0;
	color: #607382;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.about-hero__eyebrow {
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.78);
}

.about-hero__content h1 {
	max-width: 900px;
	margin: 0;
	color: var(--color-white);
	font-size: clamp(38px, 10vw, 58px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.about-hero__content > p:not(.about-hero__eyebrow) {
	max-width: 760px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 19px;
	font-weight: 400;
	line-height: 1.42;
}

.about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.about-intro,
.about-story,
.about-values,
.about-proof,
.about-cta {
	background: var(--color-white);
	color: var(--color-navy);
}

.about-intro__inner,
.about-story__inner,
.about-values__inner,
.about-proof__inner,
.about-cta__inner {
	width: var(--content-wrap);
	margin-inline: auto;
}

.about-intro__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	padding: 62px 0;
	border-bottom: 1px solid #d9e2e8;
}

.about-intro__heading h2,
.about-story__content h2,
.about-values__header h2,
.about-cta h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(32px, 8vw, 48px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.about-intro__heading h2 {
	max-width: 680px;
	margin-top: 14px;
}

.about-intro__copy {
	display: grid;
	gap: 18px;
}

.about-intro__copy p,
.about-story__content > p,
.about-values__header p,
.about-value p,
.about-cta p {
	margin: 0;
	color: #607382;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.55;
}

.about-story__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	padding: 68px 0;
}

.about-story__media {
	min-height: 360px;
	overflow: hidden;
	background: var(--color-navy);
}

.about-story__media img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: 44% center;
	filter: saturate(0.94) brightness(0.92);
}

.about-story__content {
	display: grid;
	align-content: center;
	gap: 20px;
}

.about-story__content h2 {
	margin-top: -2px;
}

.about-signoff {
	display: grid;
	justify-items: start;
	gap: 16px;
	margin-top: 12px;
}

.about-signoff p {
	margin: 0;
}

.about-signoff strong,
.about-signoff span {
	display: block;
}

.about-signoff strong {
	color: var(--color-navy);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.15;
}

.about-signoff span {
	margin-top: 8px;
	color: #607382;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
}

.about-signoff img {
	width: 112px;
	height: auto;
	filter: invert(1);
}

.about-values {
	background: #f4f6f7;
}

.about-values__inner {
	padding: 64px 0;
}

.about-values__header {
	display: grid;
	gap: 16px;
	max-width: 760px;
}

.about-values__grid {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 38px;
	border-top: 1px solid #cfdbe3;
}

.about-value {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 12px 18px;
	padding: 24px 0;
	border-bottom: 1px solid #cfdbe3;
}

.about-value span {
	color: #607382;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
}

.about-value h3 {
	margin: 0;
	color: var(--color-navy);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
}

.about-value p {
	grid-column: 2;
	max-width: 470px;
	font-size: 16px;
}

.about-proof__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 38px 0;
}

.about-proof__item {
	padding: 0 12px;
	border-left: 1px solid #c4d0d8;
}

.about-proof__item:first-child {
	padding-left: 0;
	border-left: 0;
}

.about-proof__item:last-child {
	padding-right: 0;
}

.about-proof__item strong,
.about-proof__item span {
	display: block;
}

.about-proof__item strong {
	color: var(--color-navy);
	font-size: clamp(31px, 10vw, 58px);
	font-weight: 700;
	line-height: 1;
}

.about-proof__item span {
	margin-top: 10px;
	color: #607382;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.about-cta {
	background: #071b26;
	color: var(--color-white);
}

.about-cta__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
	padding: 58px 0;
}

.about-cta p {
	color: rgba(255, 255, 255, 0.68);
}

.about-cta h2 {
	max-width: 860px;
	margin-top: 12px;
	color: var(--color-white);
}

.about-cta .button {
	width: min(100%, 260px);
}

@media (min-width: 760px) {
	.about-hero {
		min-height: 610px;
	}

	.about-hero__content {
		padding-top: 250px;
		padding-bottom: 88px;
	}

	.about-hero__content h1 {
		font-size: clamp(50px, 5.4vw, 68px);
	}

	.about-intro__inner {
		grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
		gap: 70px;
		align-items: start;
		padding: 84px 0;
	}

	.about-story__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
		gap: 58px;
		padding: 92px 0;
	}

	.about-story__media {
		min-height: 620px;
	}

	.about-values__inner {
		padding: 84px 0;
	}

	.about-values__header {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
		gap: 70px;
		max-width: none;
		align-items: end;
	}

	.about-values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 46px;
		margin-top: 52px;
	}

	.about-value {
		grid-template-columns: 50px 1fr;
		min-height: 188px;
		padding: 32px 0;
	}

	.about-proof__inner {
		padding: 62px 0;
	}

	.about-proof__item {
		padding: 0 40px;
	}

	.about-proof__item strong {
		font-size: 58px;
	}

	.about-proof__item span {
		margin-top: 18px;
		font-size: 19px;
	}

	.about-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 42px;
		padding: 78px 0;
	}
}

@media (min-width: 1280px) {
	.about-hero {
		min-height: 650px;
	}

	.about-hero__content {
		padding-top: 272px;
	}

	.about-intro__inner {
		gap: 104px;
	}

	.about-story__inner {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
		gap: 86px;
	}
}

@media (max-width: 759px) {
	.about-hero__actions .button {
		width: 100%;
	}

	.about-intro__inner,
	.about-story__inner,
	.about-values__inner {
		padding-top: 56px;
		padding-bottom: 60px;
	}

	.about-story__media {
		margin-inline: calc(var(--content-gutter) / -2);
	}

	.about-values__header {
		text-align: left;
	}
}

.product-hero {
	position: relative;
	min-height: 620px;
	overflow: hidden;
	background: var(--color-navy);
	color: var(--color-white);
}

.product-hero__image,
.product-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.product-hero__image {
	object-fit: cover;
	object-position: center;
}

.product-hero__overlay {
	background:
		linear-gradient(90deg, rgba(5, 23, 33, 0.9) 0%, rgba(5, 23, 33, 0.68) 48%, rgba(5, 23, 33, 0.18) 100%),
		linear-gradient(180deg, rgba(5, 23, 33, 0.16) 0%, rgba(5, 23, 33, 0.34) 100%);
}

.product-hero__content {
	position: relative;
	z-index: 1;
	width: var(--content-wrap);
	margin-inline: auto;
	padding-top: 224px;
	padding-bottom: 76px;
}

.product-hero__eyebrow {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.product-hero__content h1 {
	max-width: 820px;
	margin: 0;
	color: var(--color-white);
	font-size: clamp(52px, 14vw, 78px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: 0;
}

.product-hero__content > p:not(.product-hero__eyebrow) {
	max-width: 790px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 19px;
	font-weight: 400;
	line-height: 1.42;
}

.product-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.section-heading {
	display: grid;
	gap: 16px;
	max-width: 820px;
}

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

.section-heading h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(32px, 8vw, 48px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.section-heading p {
	margin: 0;
	color: #607382;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.55;
}

.veranda-types,
.veranda-profiles,
.veranda-features,
.veranda-certifications,
.veranda-faqs,
.other-services {
	background: var(--color-white);
	color: var(--color-navy);
}

.veranda-types__inner,
.veranda-profiles__inner,
.veranda-features__inner,
.veranda-certifications__inner,
.veranda-faqs__inner,
.other-services__inner {
	width: var(--content-wrap);
	margin-inline: auto;
}

.veranda-types__inner {
	padding: 64px 0 72px;
}

.veranda-types__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-top: 42px;
}

.veranda-type-card {
	display: grid;
	gap: 18px;
	color: var(--color-navy);
	text-decoration: none;
}

.veranda-type-card img {
	width: 100%;
	aspect-ratio: 1.72 / 1;
	object-fit: cover;
	background: #e8eef2;
}

.veranda-type-card h3 {
	margin: 0;
	color: var(--color-navy);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.veranda-type-card p {
	margin: 10px 0 0;
	color: #607382;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
}

.veranda-profiles {
	background: #f4f6f7;
}

.veranda-profiles__inner {
	padding: 64px 0 74px;
}

.veranda-profile-nav {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: max-content;
	gap: 10px;
	margin: 34px calc(var(--content-gutter) / -2) 0;
	overflow-x: auto;
	padding: 0 calc(var(--content-gutter) / 2) 14px;
	scrollbar-width: none;
}

.veranda-profile-nav::-webkit-scrollbar {
	display: none;
}

.veranda-profile-nav button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	color: var(--color-navy);
	background: var(--color-white);
	border: 1px solid #d7e2ea;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.veranda-profile-nav button:hover,
.veranda-profile-nav button:focus-visible {
	background: #e9eff3;
	border-color: #aabac6;
	transform: translateY(-2px);
	outline: none;
}

.veranda-profile-nav button[aria-selected="true"] {
	color: var(--color-white);
	background: var(--color-navy);
	border-color: var(--color-navy);
}

.veranda-profile-nav button[aria-selected="true"]:hover,
.veranda-profile-nav button[aria-selected="true"]:focus-visible {
	background: #0d2b3a;
	border-color: #0d2b3a;
}

.veranda-profile-list {
	display: grid;
	gap: 26px;
	margin-top: 28px;
}

.veranda-profile {
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	background: var(--color-white);
	border: 1px solid #d7e2ea;
	border-radius: 8px;
	scroll-margin-top: 120px;
}

.veranda-profile[hidden] {
	display: none;
}

.veranda-profile > img {
	width: 100%;
	height: 100%;
	min-height: 240px;
	object-fit: cover;
	background: #e8eef2;
}

.veranda-profile__content {
	display: grid;
	gap: 22px;
	padding: 24px 20px 28px;
}

.veranda-profile__content h3 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(28px, 7vw, 40px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.veranda-profile__group,
.veranda-profile__best {
	display: grid;
	gap: 10px;
}

.veranda-profile__columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}

.veranda-profile h4 {
	margin: 0;
	color: var(--color-navy);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.veranda-profile p,
.veranda-profile li {
	color: #607382;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.veranda-profile p,
.veranda-profile ul {
	margin: 0;
}

.veranda-profile ul {
	display: grid;
	gap: 8px;
	padding-left: 18px;
}

.veranda-profile__best {
	padding: 18px;
	background: #f4f6f7;
	border-radius: 8px;
}

.veranda-features__inner {
	padding: 64px 0 72px;
}

.veranda-features__ticker {
	position: relative;
	margin-top: 38px;
	margin-inline: calc(var(--content-gutter) / -2);
	overflow: hidden;
}

.veranda-features__ticker::before,
.veranda-features__ticker::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	width: max(42px, var(--content-edge));
	pointer-events: none;
}

.veranda-features__ticker::before {
	left: 0;
	background: linear-gradient(90deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.veranda-features__ticker::after {
	right: 0;
	background: linear-gradient(270deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.veranda-features__track {
	display: flex;
	width: max-content;
	gap: 14px;
	padding: 2px calc(var(--content-gutter) / 2);
	animation: verandaTicker 42s linear infinite;
}

.veranda-features__ticker:hover .veranda-features__track {
	animation-play-state: paused;
}

@keyframes verandaTicker {
	to {
		transform: translateX(calc(-50% - 7px));
	}
}

@media (prefers-reduced-motion: reduce) {
	.veranda-features__track {
		width: auto;
		overflow-x: auto;
		animation: none;
		scrollbar-width: none;
	}

	.veranda-features__track::-webkit-scrollbar {
		display: none;
	}
}

.veranda-certifications {
	background: #f4f6f7;
}

.veranda-certifications__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	padding: 64px 0 72px;
}

.veranda-certifications__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 0;
}

.veranda-certification {
	overflow: hidden;
	background: var(--color-white);
	border: 1px solid #d7e2ea;
	border-radius: 8px;
}

.veranda-certification__head {
	display: grid;
	grid-template-columns: 94px 1fr;
	gap: 20px;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #d7e2ea;
}

.veranda-certification__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 54px;
}

.veranda-certification__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 58px;
	object-fit: contain;
	object-position: left center;
}

.veranda-certification__head p {
	margin: 0 0 7px;
	color: #607382;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.veranda-certification__head h3 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(21px, 5vw, 28px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
}

.veranda-certification__copy {
	display: grid;
	gap: 16px;
	padding: 22px 20px 24px;
}

.veranda-certification__copy p {
	margin: 0;
	color: #607382;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.55;
}

.veranda-feature-card {
	flex: 0 0 210px;
	display: grid;
	align-content: start;
	justify-items: center;
	min-height: 190px;
	padding: 20px 12px;
	text-align: center;
	background: #f4f6f7;
	border-radius: 8px;
	transition: background-color 160ms ease, transform 160ms ease;
}

.veranda-feature-card:hover {
	background: #edf2f5;
	transform: translateY(-3px);
}

.veranda-feature-card img {
	width: 82px;
	height: 82px;
	object-fit: contain;
	margin-bottom: 16px;
}

.veranda-feature-card h3 {
	margin: 0;
	color: var(--color-navy);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: 0;
}

.veranda-feature-card p {
	margin: 8px 0 0;
	color: #607382;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

.latest-projects--white {
	background: var(--color-white);
}

.quote-request--product {
	background: #f4f6f7;
}

.veranda-faqs {
	background: var(--color-white);
}

.veranda-faqs__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 38px;
	padding: 64px 0 72px;
}

.veranda-faqs__list {
	column-count: 1;
	column-gap: 18px;
}

.veranda-faq {
	break-inside: avoid;
	margin: 0 0 12px;
	background: #f4f6f7;
	border: 1px solid #d7e2ea;
	border-radius: 8px;
}

.veranda-faq summary {
	position: relative;
	display: block;
	padding: 20px 54px 20px 20px;
	color: var(--color-navy);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	cursor: pointer;
}

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

.veranda-faq summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: #607382;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
}

.veranda-faq[open] summary::after {
	content: "-";
}

.veranda-faq p {
	margin: 0;
	padding: 0 20px 22px;
	color: #607382;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
}

.other-services {
	background: #f4f6f7;
}

.other-services__inner {
	padding: 64px 0 72px;
}

.other-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 38px;
}

.other-service-card {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 18px;
	align-items: center;
	min-height: 128px;
	padding: 18px;
	color: var(--color-navy);
	background: var(--color-white);
	border: 1px solid #d7e2ea;
	border-radius: 8px;
	text-decoration: none;
	transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.other-service-card:hover,
.other-service-card:focus-visible {
	background: #fbfcfd;
	border-color: #aabac6;
	transform: translateY(-3px);
	outline: none;
}

.other-service-card img {
	width: 88px;
	height: 74px;
	object-fit: contain;
}

.other-service-card span,
.other-service-card strong,
.other-service-card em {
	display: block;
}

.other-service-card strong {
	color: var(--color-navy);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.12;
}

.other-service-card em {
	margin-top: 9px;
	color: #607382;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.42;
}

@media (min-width: 760px) {
	.product-hero {
		min-height: 680px;
	}

	.product-hero__content {
		padding-top: 268px;
		padding-bottom: 96px;
	}

	.product-hero__content h1 {
		font-size: clamp(72px, 7vw, 96px);
	}

	.product-hero__content > p:not(.product-hero__eyebrow) {
		font-size: 24px;
	}

	.veranda-types__inner,
	.veranda-features__inner {
		padding: 86px 0 96px;
	}

	.veranda-certifications__inner,
	.veranda-faqs__inner,
	.other-services__inner {
		padding: 86px 0 96px;
	}

	.veranda-certifications__inner {
		grid-template-columns: 1fr;
		gap: 44px;
		align-items: start;
	}

	.veranda-types__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
		margin-top: 56px;
	}

	.veranda-profiles__inner {
		padding: 86px 0 104px;
	}

	.veranda-profile-nav {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		margin: 38px 0 0;
		overflow: visible;
		padding: 0;
	}

	.veranda-profile-list {
		gap: 32px;
		margin-top: 36px;
	}

	.veranda-profile {
		grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1fr);
	}

	.veranda-profile:nth-child(even) {
		grid-template-columns: minmax(0, 1fr) minmax(290px, 0.78fr);
	}

	.veranda-profile:nth-child(even) > img {
		order: 2;
	}

	.veranda-profile > img {
		min-height: 100%;
	}

	.veranda-profile__content {
		padding: 40px;
	}

	.veranda-profile__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px;
	}

	.veranda-features__ticker {
		margin-top: 52px;
	}

	.veranda-feature-card {
		flex-basis: 260px;
		min-height: 230px;
		padding: 30px 18px;
	}

	.veranda-feature-card img {
		width: 104px;
		height: 104px;
		margin-bottom: 20px;
	}

	.veranda-certifications__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		margin-top: 0;
	}

	.veranda-certification__head {
		grid-template-columns: 142px 1fr;
		padding: 24px 28px;
	}

	.veranda-certification__logo {
		min-height: 68px;
	}

	.veranda-certification__logo img {
		max-height: 76px;
	}

	.veranda-certification__copy {
		padding: 26px 28px 30px;
	}

	.veranda-faqs__inner {
		grid-template-columns: 1fr;
		gap: 46px;
		align-items: start;
	}

	.veranda-faqs__list {
		column-count: 2;
		column-gap: 18px;
	}

	.other-services__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 18px;
		margin-top: 52px;
	}

	.other-service-card {
		grid-template-columns: 1fr;
		align-content: start;
		min-height: 270px;
		padding: 28px 22px;
	}

	.other-service-card img {
		width: 118px;
		height: 96px;
	}
}

@media (min-width: 1280px) {
	.product-hero {
		min-height: 720px;
	}

	.product-hero__content {
		padding-top: 292px;
	}

	.veranda-profile {
		grid-template-columns: minmax(400px, 0.72fr) minmax(0, 1fr);
	}

	.veranda-profile:nth-child(even) {
		grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
	}

	.veranda-profile__content {
		padding: 48px 54px;
	}

	.veranda-certification__copy p {
		font-size: 18px;
	}
}

@media (max-width: 759px) {
	.product-hero__actions .button {
		width: 100%;
	}

	.section-heading--center {
		text-align: left;
	}

	.veranda-type-card {
		grid-template-columns: 112px 1fr;
		align-items: center;
		padding-bottom: 18px;
		border-bottom: 1px solid #d7e2ea;
	}

	.veranda-type-card img {
		aspect-ratio: 1 / 0.82;
	}

	.veranda-profile-nav button:hover,
	.veranda-profile-nav button:focus-visible,
	.veranda-feature-card:hover,
	.other-service-card:hover,
	.other-service-card:focus-visible {
		transform: none;
	}
}
