:root {
	--color-ink: #102118;
	--color-muted: #4a5d52;
	--color-line: #dbe8d8;
	--color-paper: #fbfff7;
	--color-surface: #ffffff;
	--color-cream: #fffdf3;
	--color-forest: #06281a;
	--color-forest-2: #0c6b37;
	--color-leaf: #18b85a;
	--color-lime: #a7cf3d;
	--color-gold: #ffd238;
	--color-amber: #f6a31e;
	--color-copper: #b05327;
	--color-sky: #0d8fa6;
	--shadow-soft: 0 18px 50px rgba(6, 40, 26, 0.13);
	--shadow-strong: 0 28px 90px rgba(4, 18, 12, 0.38);
	--shadow-card: 0 18px 44px rgba(6, 40, 26, 0.11);
	--shadow-gold: 0 18px 48px rgba(246, 163, 30, 0.24);
	--layout: 1440px;
	--header-height: 96px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(180deg, #ffffff 0, #f8fff2 340px, #fffdf3 100%);
	color: var(--color-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

body::selection {
	background: var(--color-gold);
	color: var(--color-forest);
}

img,
picture,
video {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

.site-main > .section-band:not(.hero) {
	content-visibility: auto;
	contain-intrinsic-size: 900px;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
	font: inherit;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid #c8d4cc;
	border-radius: 8px;
	background: #fff;
	color: var(--color-ink);
	padding: 13px 14px;
}

textarea {
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(250, 197, 45, 0.85);
	outline-offset: 3px;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.04;
	letter-spacing: 0;
}

h1 {
	max-width: 860px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 76px;
	font-weight: 700;
}

h2 {
	max-width: 780px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 46px;
	font-weight: 700;
}

h3 {
	font-size: 22px;
}

p {
	color: var(--color-muted);
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	border-radius: 8px;
	background: #fff;
	color: var(--color-forest);
	padding: 12px 16px;
	box-shadow: var(--shadow-soft);
}

.layout {
	width: min(100% - clamp(32px, 5vw, 72px), var(--layout));
	margin-inline: auto;
}

.section-band {
	padding: 86px 0;
	background: linear-gradient(180deg, #fbfff7 0%, var(--color-paper) 100%);
}

.section-band--light {
	background:
		linear-gradient(135deg, rgba(153, 198, 61, 0.14) 0%, rgba(250, 197, 45, 0.12) 42%, rgba(255, 253, 243, 0.96) 100%),
		var(--color-cream);
}

.section-band--dark {
	background: var(--color-forest);
	color: #fff;
}

.section-band--dark p {
	color: rgba(255, 255, 255, 0.78);
}

.section-band--split {
	background: linear-gradient(90deg, #fbfff7 0%, #fbfff7 47%, #e7f6df 47%, #e7f6df 100%);
}

.quote-response {
	scroll-margin-top: calc(var(--header-height) + 28px);
	border-bottom: 1px solid rgba(6, 40, 26, 0.16);
	background:
		linear-gradient(135deg, rgba(255, 210, 56, 0.22), rgba(24, 184, 90, 0.12)),
		#fbfff7;
	padding: 28px 0;
}

.quote-response--error {
	background:
		linear-gradient(135deg, rgba(176, 83, 39, 0.14), rgba(255, 210, 56, 0.16)),
		#fffdf3;
}

.quote-response__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
}

.quote-response h2 {
	max-width: 760px;
	margin-bottom: 8px;
	font-size: clamp(30px, 4vw, 46px);
}

.quote-response p {
	max-width: 720px;
	margin-bottom: 0;
	font-weight: 650;
}

[id] {
	scroll-margin-top: calc(var(--header-height) + 24px);
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid rgba(6, 40, 26, 0.12);
	box-shadow: 0 10px 34px rgba(6, 40, 26, 0.08);
	backdrop-filter: blur(20px);
}

.site-header::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--color-leaf), var(--color-gold), var(--color-amber), var(--color-leaf));
	content: "";
}

.site-header__bar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	min-height: 34px;
	background: linear-gradient(90deg, var(--color-forest) 0%, #084224 45%, var(--color-forest-2) 100%);
	color: #fff;
	font-size: 14px;
}

.site-header__bar p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 750;
}

.site-header__bar a {
	color: var(--color-gold);
	font-weight: 800;
	text-decoration: none;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	width: min(100% - clamp(32px, 5vw, 72px), var(--layout));
	min-height: 72px;
	margin-inline: auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--color-forest);
	text-decoration: none;
}

.brand__logo {
	width: 210px;
	height: auto;
	max-height: 64px;
	object-fit: contain;
}

.brand__logo-shell {
	display: inline-flex;
	align-items: center;
	border-radius: 8px;
	background: #fff;
	padding: 8px 10px;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.brand__tagline {
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.site-nav {
	justify-self: end;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__item {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 72px;
}

.site-nav__item--mega {
	position: static;
}

.site-nav__list a,
.site-nav__trigger {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 40px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--color-ink);
	padding: 9px 11px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav__list a:hover,
.site-nav__trigger:hover,
.site-nav__item:focus-within > .site-nav__trigger,
.site-nav__item.is-open > .site-nav__trigger {
	background: rgba(255, 210, 56, 0.16);
	color: var(--color-leaf);
	box-shadow: inset 0 0 0 1px rgba(250, 197, 45, 0.26);
}

.site-nav__trigger::after {
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: translateY(-2px) rotate(45deg);
	transition: transform 180ms ease;
}

.site-nav__item.is-open > .site-nav__trigger::after,
.site-nav__item:focus-within > .site-nav__trigger::after,
.site-nav__item:hover > .site-nav__trigger::after {
	transform: translateY(1px) rotate(225deg);
}

.mega-menu {
	position: absolute;
	z-index: 120;
	top: calc(100% - 1px);
	left: 50%;
	display: grid;
	grid-template-columns: minmax(270px, 0.48fr) minmax(0, 1fr);
	gap: 18px;
	width: min(1040px, calc(100vw - 48px));
	max-height: calc(100vh - 116px);
	overflow-y: auto;
	overscroll-behavior: contain;
	border: 1px solid rgba(12, 107, 55, 0.2);
	border-radius: 8px;
	background:
		linear-gradient(135deg, #ffffff 0%, #fbfff7 58%, #fffdf3 100%),
		var(--color-surface);
	padding: 18px;
	box-shadow: 0 28px 80px rgba(4, 18, 12, 0.2);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
	visibility: hidden;
}

.mega-menu::before {
	position: absolute;
	top: -22px;
	right: 0;
	left: 0;
	height: 22px;
	content: "";
}

.site-nav__item:hover > .mega-menu,
.site-nav__item:focus-within > .mega-menu,
.site-nav__item.is-open > .mega-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

body.is-nav-scrolling .site-nav__item:hover > .mega-menu {
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 0);
	visibility: hidden;
}

.mega-menu__feature {
	display: grid;
	align-content: space-between;
	min-height: 250px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 210, 56, 0.18), rgba(13, 143, 166, 0.2)),
		linear-gradient(145deg, #041b10 0%, #0a4f2c 68%, #0d8fa6 100%);
	color: #fff;
	padding: 22px;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mega-menu__eyebrow {
	margin-bottom: 10px;
	color: var(--color-gold);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.mega-menu__feature strong {
	display: block;
	max-width: 330px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1.12;
}

.mega-menu__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 24px;
}

.site-nav__list .mega-menu__actions a {
	min-height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding-inline: 12px;
	box-shadow: none;
}

.site-nav__list .mega-menu__actions a:first-child {
	border-color: var(--color-gold);
	background: var(--color-gold);
	color: var(--color-forest);
}

.mega-menu__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.site-nav__list .mega-menu__link {
	display: grid;
	align-items: start;
	gap: 6px;
	min-height: 96px;
	border: 1px solid rgba(12, 107, 55, 0.14);
	border-radius: 8px;
	background: linear-gradient(180deg, #fff 0%, #fbfff7 100%);
	color: var(--color-ink);
	padding: 14px;
	line-height: 1.25;
	box-shadow: 0 12px 30px rgba(6, 40, 26, 0.06);
}

.site-nav__list .mega-menu__link:hover {
	border-color: rgba(24, 184, 90, 0.42);
	background: #fffdf3;
	color: var(--color-forest);
	box-shadow: 0 16px 34px rgba(6, 40, 26, 0.1);
}

.mega-menu__link span {
	color: var(--color-forest);
	font-size: 14px;
	font-weight: 950;
}

.mega-menu__link small {
	color: var(--color-muted);
	font-size: 12px;
	line-height: 1.38;
}

.mega-menu__areas {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	align-content: start;
}

.site-nav__list .mega-menu__areas a {
	justify-content: center;
	min-height: 58px;
	border: 1px solid rgba(12, 107, 55, 0.14);
	border-radius: 8px;
	background: linear-gradient(180deg, #fff 0%, #f8fff4 100%);
	color: var(--color-forest);
	font-weight: 900;
	text-align: center;
	box-shadow: 0 10px 24px rgba(6, 40, 26, 0.05);
}

.site-nav__list .mega-menu__areas a:hover {
	border-color: rgba(255, 210, 56, 0.65);
	background: linear-gradient(135deg, rgba(255, 210, 56, 0.26), rgba(24, 184, 90, 0.1));
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	background: #fff;
	color: var(--color-forest);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	display: block;
	width: 18px;
	height: 2px;
	margin-inline: auto;
	background: currentColor;
	content: "";
}

.nav-toggle__line::before {
	transform: translateY(-6px);
}

.nav-toggle__line::after {
	transform: translateY(4px);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 13px 20px;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
	background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-amber) 100%);
	color: var(--color-forest);
	box-shadow: var(--shadow-gold);
}

.button--ghost {
	border-color: rgba(250, 197, 45, 0.6);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button--header {
	background: linear-gradient(135deg, var(--color-leaf), var(--color-forest-2));
	color: #fff;
	box-shadow: 0 14px 34px rgba(21, 166, 75, 0.25);
}

.button--footer {
	width: fit-content;
	margin-top: 14px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
	color: var(--color-forest);
	box-shadow: 0 14px 30px rgba(250, 197, 45, 0.24);
}

.hero {
	position: relative;
	min-height: 740px;
	padding: 0;
	overflow: hidden;
	isolation: isolate;
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(3, 19, 11, 0.46) 0%, rgba(6, 64, 34, 0.27) 48%, rgba(6, 40, 26, 0.02) 100%),
		linear-gradient(180deg, rgba(255, 210, 56, 0.1) 0%, rgba(4, 28, 17, 0.22) 100%);
	content: "";
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	height: 8px;
	background: linear-gradient(90deg, var(--color-leaf), var(--color-lime), var(--color-gold), var(--color-amber));
	content: "";
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: var(--color-forest);
}

.hero__video,
.hero__image {
	width: 100%;
	height: 100%;
}

.hero__video {
	object-fit: cover;
	object-position: center;
	filter: saturate(1.25) contrast(1.04) brightness(1.24);
}

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

.hero__content {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.56fr);
	gap: clamp(44px, 5vw, 96px);
	align-items: center;
	justify-content: center;
	min-height: 740px;
	padding-top: 86px;
	padding-bottom: 82px;
}

.hero__copy {
	max-width: 860px;
	text-shadow: 0 3px 24px rgba(2, 12, 7, 0.38);
}

.eyebrow {
	margin-bottom: 16px;
	color: var(--color-leaf);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.hero .eyebrow {
	color: var(--color-gold);
}

.hero h1 {
	margin-bottom: 20px;
	color: #fff;
	letter-spacing: 0;
	text-shadow: 0 5px 38px rgba(2, 12, 7, 0.44);
}

.hero__lead {
	max-width: 760px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.42;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 42px;
}

.hero__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	width: min(100%, 660px);
	margin: 0;
	padding: 0;
	border: 1px solid rgba(250, 197, 45, 0.34);
	border-radius: 8px;
	overflow: hidden;
	list-style: none;
	background: rgba(4, 32, 19, 0.42);
	box-shadow: var(--shadow-strong);
	backdrop-filter: blur(16px);
}

.hero__proof li {
	display: grid;
	gap: 4px;
	min-height: 96px;
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
		rgba(255, 255, 255, 0.14);
}

.hero__proof strong {
	color: #fff;
	font-size: 20px;
	line-height: 1;
}

.hero__proof span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 700;
}

.hero__panel {
	position: relative;
	align-self: end;
	border: 1px solid rgba(255, 210, 56, 0.45);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 253, 243, 0.96)),
		var(--color-cream);
	color: var(--color-forest);
	padding: 30px;
	box-shadow: 0 30px 82px rgba(4, 18, 12, 0.28);
	overflow: hidden;
}

.hero__panel::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--color-leaf), var(--color-gold), var(--color-amber));
	content: "";
}

.hero__panel-kicker {
	display: inline-flex;
	margin-bottom: 16px;
	color: var(--color-forest-2);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.hero__panel strong {
	display: block;
	margin-bottom: 14px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	line-height: 1.02;
}

.hero__panel p {
	margin-bottom: 22px;
	color: var(--color-muted);
	font-weight: 650;
}

.hero__panel--form {
	align-self: center;
	padding: 26px;
}

.hero__panel--form strong {
	font-size: 27px;
	line-height: 1.08;
}

.hero-lead-form {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.hero-lead-form label {
	display: grid;
	gap: 6px;
	color: var(--color-forest);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.hero-lead-form input,
.hero-lead-form select,
.hero-lead-form textarea {
	border-color: rgba(12, 107, 55, 0.22);
	padding: 11px 12px;
}

.hero-lead-form textarea {
	resize: vertical;
}

.hero-lead-form .button {
	width: 100%;
	min-height: 48px;
	margin-top: 2px;
}

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

.hero__mini-grid span {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	border: 1px solid rgba(21, 166, 75, 0.2);
	border-radius: 8px;
	background: rgba(21, 166, 75, 0.08);
	color: var(--color-forest);
	padding: 8px 10px;
	font-size: 13px;
	font-weight: 900;
}

.intro-band {
	position: relative;
	padding: 54px 0 38px;
	border-bottom: 1px solid var(--color-line);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(251, 255, 247, 0.98) 58%, rgba(255, 244, 185, 0.22) 100%),
		#fff;
}

.intro-band::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--color-leaf), var(--color-gold), var(--color-amber));
	content: "";
}

.intro-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
	gap: clamp(32px, 4vw, 68px);
	align-items: center;
}

.intro-band h2 {
	max-width: 640px;
	margin-bottom: 18px;
	font-size: clamp(38px, 3.8vw, 54px);
	line-height: 1.02;
}

.intro-band__lead {
	max-width: 660px;
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 18px;
	font-weight: 760;
	line-height: 1.55;
}

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

.intro-cards div {
	display: grid;
	align-content: start;
	min-height: 112px;
	border: 1px solid rgba(12, 107, 55, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #ffffff, #fbfff7);
	padding: 22px;
	box-shadow: 0 14px 34px rgba(6, 40, 26, 0.08);
}

.intro-band + #services {
	position: relative;
	padding-top: 58px;
	background:
		linear-gradient(180deg, #fbfff7 0%, #fbfff7 68%, var(--color-paper) 100%);
}

.intro-band + #services::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(12, 107, 55, 0.18), transparent);
	content: "";
}

.intro-cards strong,
.intro-cards span {
	display: block;
}

.intro-cards strong {
	margin-bottom: 8px;
	color: var(--color-forest-2);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 31px;
	line-height: 1;
}

.intro-cards span {
	color: var(--color-muted);
	font-weight: 850;
}

.section-heading {
	max-width: 850px;
	margin-bottom: 34px;
}

.section-heading h2 {
	max-width: 760px;
}

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

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

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 28px);
	counter-reset: service;
}

.service-card {
	position: relative;
	display: grid;
	counter-increment: service;
	min-height: 100%;
	border: 1px solid rgba(12, 107, 55, 0.16);
	border-radius: 8px;
	overflow: hidden;
	background:
		linear-gradient(180deg, #ffffff 0%, #fbfff7 72%, #fff7cf 100%);
	box-shadow: var(--shadow-card);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: 5px;
	background: linear-gradient(90deg, var(--color-leaf), var(--color-gold));
	content: "";
}

.service-card::after {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 3;
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.64);
	border-radius: 999px;
	background: rgba(6, 40, 26, 0.68);
	color: #fff;
	box-shadow: 0 10px 28px rgba(3, 16, 10, 0.22);
	content: "0" counter(service);
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
}

.service-card:hover {
	border-color: rgba(246, 163, 30, 0.44);
	box-shadow: 0 24px 64px rgba(6, 40, 26, 0.19), 0 12px 34px rgba(246, 163, 30, 0.12);
	transform: translateY(-3px);
}

.service-card__image {
	position: relative;
	aspect-ratio: 5 / 4;
	background:
		linear-gradient(135deg, rgba(24, 184, 90, 0.26), rgba(255, 210, 56, 0.24)),
		#e8f5df;
	overflow: hidden;
}

.service-card__image::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 210, 56, 0.04), rgba(6, 40, 26, 0.18)),
		linear-gradient(90deg, rgba(6, 40, 26, 0.06), rgba(255, 255, 255, 0));
	content: "";
	pointer-events: none;
}

.service-card__image picture,
.service-card__image img {
	width: 100%;
	height: 100%;
}

.service-card__image img {
	object-fit: cover;
	transition: transform 420ms ease;
}

.service-card:hover .service-card__image img {
	transform: scale(1.035);
}

.service-card__body {
	position: relative;
	display: grid;
	align-content: start;
	padding: 24px;
}

.service-card__body h3 {
	margin-bottom: 12px;
	font-size: 20px;
	line-height: 1.12;
}

.service-card__body h2 {
	margin-bottom: 10px;
	font-family: inherit;
	font-size: 22px;
	line-height: 1.15;
}

.service-card__body a {
	color: var(--color-forest-2);
	text-decoration: none;
}

.service-card__body p {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.55;
}

.premium-standard {
	position: relative;
	background:
		linear-gradient(115deg, rgba(6, 40, 26, 0.98) 0%, rgba(12, 107, 55, 0.94) 50%, rgba(246, 163, 30, 0.86) 100%),
		var(--color-forest);
	color: #fff;
	overflow: hidden;
}

.premium-standard::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 210, 56, 0.12), transparent 42%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%);
	content: "";
	pointer-events: none;
}

.premium-standard__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	gap: 54px;
	align-items: center;
}

.premium-standard__copy h2,
.premium-standard__copy p,
.premium-standard .eyebrow {
	color: #fff;
}

.premium-standard__copy p {
	max-width: 620px;
	font-size: 18px;
}

.premium-standard__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.premium-standard__cards article {
	position: relative;
	min-height: 220px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
		rgba(3, 23, 15, 0.34);
	padding: 26px;
	box-shadow: 0 22px 58px rgba(3, 17, 11, 0.28);
	backdrop-filter: blur(14px);
}

.premium-standard__cards article::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-gold), var(--color-leaf));
	content: "";
}

.premium-standard__cards span {
	display: inline-flex;
	margin-bottom: 28px;
	color: var(--color-gold);
	font-size: 13px;
	font-weight: 950;
}

.premium-standard__cards h3 {
	margin-bottom: 12px;
	color: #fff;
}

.premium-standard__cards p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.77);
}

.split-feature {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
	gap: clamp(44px, 5vw, 90px);
	align-items: center;
}

.split-feature--reverse {
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
}

.split-feature--reverse .split-feature__media {
	order: 2;
}

.split-feature__media {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 22px 58px rgba(6, 40, 26, 0.16);
}

.split-feature__media::after {
	position: absolute;
	inset: 10px;
	border: 1px solid rgba(250, 197, 45, 0.55);
	border-radius: 6px;
	content: "";
	pointer-events: none;
}

.split-feature__media picture,
.split-feature__media img {
	width: 100%;
	height: 100%;
}

.split-feature__media img {
	object-fit: cover;
}

.split-feature__content p {
	font-size: 18px;
}

.check-list {
	display: grid;
	gap: 11px;
	margin: 26px 0 30px;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 30px;
	font-weight: 750;
}

.check-list li::before {
	position: absolute;
	top: 9px;
	left: 0;
	width: 16px;
	height: 16px;
	border: 4px solid var(--color-gold);
	border-radius: 50%;
	background: var(--color-leaf);
	content: "";
}

.metric-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.metric-row div {
	min-height: 116px;
	border: 1px solid rgba(12, 107, 55, 0.15);
	border-radius: 8px;
	background: #fff;
	padding: 20px;
	box-shadow: 0 12px 30px rgba(6, 40, 26, 0.08);
}

.metric-row strong,
.metric-row span {
	display: block;
}

.metric-row strong {
	margin-bottom: 8px;
	color: var(--color-forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
}

.project-strip {
	display: grid;
	grid-template-columns: 1.2fr 1.2fr 0.8fr;
	gap: 18px;
}

.project-strip figure {
	position: relative;
	min-height: 360px;
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #dcefd7;
	box-shadow: 0 18px 46px rgba(6, 40, 26, 0.12);
}

.project-strip picture,
.project-strip img {
	width: 100%;
	height: 100%;
}

.project-strip img {
	object-fit: cover;
}

.project-strip figcaption {
	position: absolute;
	right: 14px;
	bottom: 14px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 202, 0.94));
	color: var(--color-forest);
	padding: 9px 12px;
	font-size: 13px;
	font-weight: 900;
}

.service-area-band {
	background:
		linear-gradient(120deg, rgba(6, 40, 26, 0.98) 0%, rgba(12, 107, 55, 0.92) 58%, rgba(176, 83, 39, 0.86) 100%),
		var(--color-forest);
}

.service-area-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
	gap: clamp(42px, 5vw, 88px);
	align-items: start;
}

.service-area-band h2 {
	color: #fff;
}

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

.area-list li {
	border: 1px solid rgba(250, 197, 45, 0.28);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding: 14px 16px;
	font-weight: 850;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.area-list a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.local-hero {
	position: relative;
	overflow: hidden;
	padding: 150px 0 92px;
	background:
		linear-gradient(120deg, rgba(6, 40, 26, 0.98) 0%, rgba(12, 107, 55, 0.93) 52%, rgba(13, 143, 166, 0.72) 100%),
		var(--color-forest);
}

.local-hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 7px;
	background: linear-gradient(90deg, var(--color-leaf), var(--color-gold), var(--color-copper), var(--color-sky));
	content: "";
}

.local-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
	gap: clamp(36px, 6vw, 90px);
	align-items: end;
}

.local-hero h1,
.local-hero p {
	color: #fff;
}

.local-hero h1 {
	max-width: 900px;
	font-size: clamp(46px, 6vw, 92px);
	line-height: 0.94;
}

.local-hero__lead {
	max-width: 780px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(18px, 1.7vw, 24px);
	font-weight: 750;
	line-height: 1.45;
}

.local-hero__panel {
	border: 1px solid rgba(250, 197, 45, 0.34);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 255, 247, 0.92));
	color: var(--color-forest);
	padding: 28px;
	box-shadow: var(--shadow-strong);
}

.local-hero__panel > span {
	display: block;
	margin-bottom: 10px;
	color: var(--color-leaf);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.local-hero__panel > strong {
	display: block;
	margin-bottom: 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	line-height: 1.05;
}

.local-proof {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.local-proof li {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	border: 1px solid rgba(12, 107, 55, 0.12);
	border-radius: 8px;
	background: #fff;
	padding: 12px;
}

.local-proof b {
	color: var(--color-forest-2);
	font-size: 22px;
	line-height: 1;
}

.local-proof small,
.local-proof a {
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.local-intro {
	background:
		linear-gradient(135deg, #ffffff 0%, #fbfff7 64%, rgba(255, 210, 56, 0.16) 100%);
}

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

.local-answer-grid article {
	display: grid;
	gap: 10px;
	border: 1px solid rgba(12, 107, 55, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff, #fbfff7);
	padding: 24px;
	box-shadow: 0 16px 38px rgba(6, 40, 26, 0.08);
}

.local-answer-grid span {
	color: var(--color-leaf);
	font-size: 13px;
	font-weight: 950;
}

.local-answer-grid h3 {
	margin: 0;
	font-size: 24px;
}

.local-answer-grid p {
	margin: 0;
}

.local-service-grid .service-card__body h3 a {
	text-decoration: none;
}

.local-map-band {
	background:
		linear-gradient(135deg, rgba(6, 40, 26, 0.04), rgba(13, 143, 166, 0.08)),
		#fff;
}

.local-map-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
	gap: clamp(34px, 5vw, 78px);
	align-items: center;
}

.local-nap {
	display: grid;
	gap: 8px;
	max-width: 470px;
	margin-top: 24px;
	border-left: 5px solid var(--color-gold);
	background: #fff;
	padding: 20px 22px;
	box-shadow: 0 16px 40px rgba(6, 40, 26, 0.09);
}

.local-nap strong {
	color: var(--color-forest);
	font-size: 21px;
}

.local-nap a {
	color: var(--color-forest-2);
	font-weight: 900;
	text-decoration: none;
}

.local-map {
	overflow: hidden;
	min-height: 430px;
	border: 1px solid rgba(12, 107, 55, 0.16);
	border-radius: 8px;
	background: #e8f2e8;
	box-shadow: var(--shadow-card);
}

.local-map iframe {
	display: block;
	width: 100%;
	height: 430px;
	border: 0;
}

.local-link-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
	gap: clamp(36px, 5vw, 80px);
	align-items: start;
}

.local-pill-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.local-pill-grid a {
	display: flex;
	align-items: center;
	min-height: 56px;
	border: 1px solid rgba(12, 107, 55, 0.15);
	border-radius: 8px;
	background: #fff;
	color: var(--color-forest);
	padding: 12px 14px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(6, 40, 26, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.local-pill-grid a:hover,
.local-pill-grid a:focus-visible {
	border-color: rgba(24, 184, 90, 0.42);
	box-shadow: 0 18px 42px rgba(6, 40, 26, 0.12);
	transform: translateY(-2px);
}

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

.process-grid div {
	border-top: 4px solid var(--color-gold);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 253, 243, 0.9), #fff),
		#fff;
	padding: 28px;
	box-shadow: 0 18px 46px rgba(6, 40, 26, 0.1);
}

.process-grid span {
	display: block;
	margin-bottom: 34px;
	color: var(--color-leaf);
	font-size: 14px;
	font-weight: 950;
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
	gap: 56px;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	border: 1px solid rgba(12, 107, 55, 0.15);
	border-radius: 8px;
	background: #fff;
	padding: 20px 22px;
	box-shadow: 0 12px 32px rgba(6, 40, 26, 0.07);
}

.faq-list summary {
	cursor: pointer;
	color: var(--color-forest-2);
	font-size: 18px;
	font-weight: 900;
}

.faq-list p {
	margin: 14px 0 0;
}

.estimate-band {
	background:
		linear-gradient(135deg, rgba(6, 40, 26, 0.96) 0%, rgba(12, 107, 55, 0.9) 52%, rgba(250, 197, 45, 0.72) 100%),
		var(--color-forest);
	color: #fff;
}

.estimate-band h2,
.estimate-band p,
.estimate-band .eyebrow {
	color: #fff;
}

.estimate-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
	gap: 54px;
	align-items: start;
}

.estimate-layout__copy {
	position: sticky;
	top: 132px;
}

.estimate-layout__copy a {
	display: inline-flex;
	margin-top: 18px;
	color: var(--color-gold);
	font-size: 24px;
	font-weight: 950;
	text-decoration: none;
}

.lead-form {
	display: grid;
	gap: 18px;
	border: 1px solid rgba(250, 197, 45, 0.36);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	padding: 28px;
	box-shadow: var(--shadow-strong);
}

.lead-form label {
	display: grid;
	gap: 7px;
	color: var(--color-forest);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

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

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

.lead-form__notice {
	margin: 0;
	border-radius: 8px;
	background: #e4f4e8;
	color: var(--color-forest);
	padding: 12px 14px;
	font-weight: 800;
}

.lead-form__notice--error {
	background: #fff0ec;
	color: #8a2f1a;
}

.page-hero {
	padding-top: 120px;
	padding-bottom: 70px;
	background: var(--color-forest);
	color: #fff;
}

.page-hero h1,
.page-hero p {
	color: #fff;
}

.content-layout {
	max-width: 860px;
}

.entry {
	border-radius: 8px;
	background: #fff;
	padding: 34px;
	box-shadow: var(--shadow-soft);
}

.entry + .entry {
	margin-top: 22px;
}

.entry a {
	color: var(--color-forest);
}

.entry__content > *:last-child {
	margin-bottom: 0;
}

.entry__image {
	margin: -34px -34px 30px;
	border-radius: 8px 8px 0 0;
	overflow: hidden;
}

.site-footer {
	background:
		linear-gradient(180deg, #06281a 0%, #03170f 100%);
	color: #fff;
}

.site-footer p,
.site-footer li,
.site-footer a {
	color: rgba(255, 255, 255, 0.75);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.35fr 0.8fr 0.8fr 0.9fr;
	gap: 36px;
	width: min(100% - clamp(32px, 5vw, 72px), var(--layout));
	margin-inline: auto;
	padding: 70px 0 64px;
}

.site-footer h2 {
	margin-bottom: 16px;
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	text-transform: uppercase;
}

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

.site-footer__brand p {
	max-width: 440px;
	margin-top: 18px;
}

.brand--footer {
	display: grid;
	justify-items: start;
	gap: 12px;
	color: #fff;
}

.brand--footer .brand__logo {
	width: 230px;
	max-height: 76px;
}

.brand--footer .brand__tagline {
	color: var(--color-gold);
}

.site-footer__contact {
	display: grid;
	justify-items: start;
}

.site-footer__contact p {
	margin-bottom: 4px;
}

.site-footer__contact > a:not(.button) {
	margin-top: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	text-decoration: none;
}

.site-footer .button--footer {
	color: var(--color-forest);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	width: min(100% - clamp(32px, 5vw, 72px), var(--layout));
	margin-inline: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	padding: 18px 0;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 13px;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-credit {
	color: rgba(255, 255, 255, 0.76);
	font-size: 13px;
}

.site-credit a {
	color: var(--color-gold);
	font-weight: 900;
	text-decoration: none;
}

@media (max-width: 1040px) {
	h1 {
		font-size: 56px;
	}

	h2 {
		font-size: 38px;
	}

	.button--header {
		display: none;
	}

	.site-header__inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.nav-toggle {
		display: inline-grid;
		place-items: center;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 20px;
		left: 20px;
		display: none;
		max-height: calc(100vh - 118px);
		overflow-y: auto;
		border: 1px solid var(--color-line);
		border-radius: 8px;
		background: #fff;
		box-shadow: var(--shadow-soft);
	}

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

	.site-nav__list {
		display: grid;
		gap: 0;
		padding: 10px;
	}

	.site-nav__item {
		display: block;
		min-height: 0;
		border-bottom: 1px solid rgba(12, 107, 55, 0.1);
	}

	.site-nav__item:last-child {
		border-bottom: 0;
	}

	.site-nav__list a,
	.site-nav__trigger {
		justify-content: space-between;
		width: 100%;
		min-height: 48px;
		padding: 13px 12px;
	}

	.mega-menu {
		position: static;
		display: none;
		grid-template-columns: 1fr;
		width: auto;
		margin: 0 4px 12px;
		border-color: rgba(12, 107, 55, 0.14);
		background: #fbfff7;
		padding: 10px;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.mega-menu::before {
		display: none;
	}

	.site-nav__item:hover > .mega-menu,
	.site-nav__item:focus-within > .mega-menu {
		transform: none;
	}

	.site-nav__item.is-open > .mega-menu {
		display: grid;
	}

	.mega-menu__feature {
		min-height: 0;
		padding: 18px;
	}

	.mega-menu__grid,
	.mega-menu__areas {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.split-feature,
	.split-feature--reverse,
	.hero__content,
	.local-hero__grid,
	.intro-band__grid,
	.premium-standard__grid,
	.faq-layout,
	.estimate-layout,
	.service-area-band__grid,
	.local-map-grid,
	.local-link-grid,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.split-feature--reverse .split-feature__media {
		order: 0;
	}

	.estimate-layout__copy {
		position: static;
	}

	.project-strip {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.layout,
	.site-header__inner,
	.site-footer__inner,
	.site-footer__bottom {
		width: min(100% - 28px, var(--layout));
	}

	.section-band {
		padding: 62px 0;
	}

	.quote-response {
		padding: 22px 0;
	}

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

	.quote-response .button {
		width: 100%;
	}

	.intro-band {
		padding: 42px 0 30px;
	}

	.intro-band + #services {
		padding-top: 44px;
	}

	.site-header__bar {
		display: none;
	}

	.brand {
		gap: 8px;
	}

	.brand__logo {
		width: 178px;
		max-height: 54px;
	}

	.brand__tagline {
		display: none;
	}

	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 32px;
	}

	.hero,
	.hero__content {
		min-height: 620px;
	}

	.hero__content {
		padding-top: 44px;
		padding-bottom: 36px;
		align-items: end;
		gap: 26px;
	}

	.hero::before {
		background: linear-gradient(180deg, rgba(3, 16, 10, 0.44) 0%, rgba(6, 40, 26, 0.36) 54%, rgba(3, 16, 10, 0.5) 100%);
	}

	.hero__lead {
		font-size: 18px;
	}

	.hero__panel {
		padding: 22px;
	}

	.hero__panel strong {
		font-size: 26px;
	}

	.hero__proof,
	.intro-cards,
	.local-answer-grid,
	.metric-row,
	.premium-standard__cards,
	.mega-menu__grid,
	.mega-menu__areas,
	.service-grid,
	.process-grid,
	.project-strip,
	.area-list,
	.local-pill-grid,
	.field-grid {
		grid-template-columns: 1fr;
	}

	.local-hero {
		padding: 96px 0 62px;
	}

	.local-hero h1 {
		font-size: 40px;
	}

	.local-hero__panel {
		padding: 22px;
	}

	.local-map,
	.local-map iframe {
		min-height: 340px;
		height: 340px;
	}

	.service-card__body {
		padding: 22px;
	}

	.hero__proof {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.intro-cards div {
		min-height: 0;
		padding: 18px;
	}

	.hero__proof li {
		min-height: 86px;
		padding: 12px;
	}

	.hero__proof strong {
		font-size: 16px;
	}

	.hero__proof span {
		font-size: 12px;
	}

	.project-strip figure {
		min-height: 280px;
	}

	.lead-form,
	.entry {
		padding: 22px;
	}

	.entry__image {
		margin: -22px -22px 24px;
	}

	.site-footer__bottom {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
