:root {
	--green: #087a3e;
	--green-strong: #056432;
	--green-dark: #073f2b;
	--green-deep: #052e21;
	--red: #d71920;
	--red-dark: #b81218;
	--ink: #17201c;
	--ink-soft: #3f4b45;
	--muted: #68756e;
	--line: #dce3df;
	--surface: #f4f7f5;
	--surface-warm: #f8f7f3;
	--white: #ffffff;
	--shadow-sm: 0 10px 30px rgba(5, 46, 33, 0.08);
	--shadow-md: 0 20px 55px rgba(5, 46, 33, 0.14);
	--radius: 6px;
	--container: 1240px;
	--header-height: 82px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 124px;
}

body,
button,
input,
select,
textarea {
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	letter-spacing: 0;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
figure {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--ink);
	font-weight: 760;
	line-height: 1.12;
	letter-spacing: 0;
}

h1 {
	font-size: 58px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 24px;
}

p:last-child {
	margin-bottom: 0;
}

::selection {
	color: var(--white);
	background: var(--green);
}

:focus-visible {
	outline: 3px solid #f2b544;
	outline-offset: 3px;
}

.site-container {
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
}

.site-main {
	min-height: 50vh;
}

.section {
	padding-block: 104px;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99999;
	padding: 10px 14px;
	color: var(--white);
	background: var(--green-dark);
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.icon {
	display: inline-block;
	flex: 0 0 auto;
	vertical-align: middle;
}

.eyebrow {
	display: block;
	margin-bottom: 14px;
	color: var(--green);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: uppercase;
}

.eyebrow--light {
	color: #a9e5c2;
}

.section-lead {
	color: var(--ink-soft);
	font-size: 19px;
	line-height: 1.65;
}

.section-heading {
	margin-bottom: 44px;
}

.section-heading h2 {
	max-width: 720px;
	margin-bottom: 0;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
	align-items: end;
	gap: 64px;
}

.section-heading--split > p {
	margin-bottom: 3px;
	color: var(--muted);
	font-size: 17px;
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 720;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--large {
	min-height: 56px;
	padding-inline: 24px;
	font-size: 16px;
}

.button--small {
	min-height: 40px;
	padding: 8px 14px;
	font-size: 14px;
}

.button--full {
	width: 100%;
}

.button--primary {
	color: var(--white);
	background: var(--red);
	border-color: var(--red);
}

.button--primary:hover {
	color: var(--white);
	background: var(--red-dark);
	border-color: var(--red-dark);
}

.button--white {
	color: var(--green-dark);
	background: var(--white);
	border-color: var(--white);
}

.button--white:hover {
	color: var(--green-dark);
	background: #edf5f0;
	border-color: #edf5f0;
}

.button--ghost {
	color: var(--green-dark);
	background: transparent;
	border-color: #a9b9b0;
}

.button--ghost:hover {
	color: var(--white);
	background: var(--green-dark);
	border-color: var(--green-dark);
}

.button--outline-light {
	color: var(--white);
	background: rgba(5, 46, 33, 0.18);
	border-color: rgba(255, 255, 255, 0.62);
	backdrop-filter: blur(8px);
}

.button--outline-light:hover {
	color: var(--green-dark);
	background: var(--white);
	border-color: var(--white);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--green-strong);
	font-weight: 730;
}

.text-link:hover {
	color: var(--red);
}

.link-button {
	padding: 0;
	border: 0;
	color: inherit;
	background: none;
	cursor: pointer;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	box-shadow: 0 1px 0 rgba(7, 63, 43, 0.09);
}

.utility-bar {
	min-height: 36px;
	color: #d9e9e0;
	background: var(--green-deep);
	font-size: 12px;
}

.utility-bar__inner,
.utility-bar p,
.utility-links,
.utility-links a {
	display: flex;
	align-items: center;
}

.utility-bar__inner {
	min-height: 36px;
	justify-content: space-between;
	gap: 24px;
}

.utility-bar p {
	gap: 8px;
	margin: 0;
}

.utility-bar p span + span::before {
	content: "•";
	margin-right: 8px;
	color: #6ea889;
}

.utility-links {
	gap: 24px;
}

.utility-links a {
	gap: 6px;
}

.utility-links a:hover {
	color: var(--white);
}

.main-header {
	background: rgba(255, 255, 255, 0.98);
}

.main-header__inner {
	display: flex;
	min-height: var(--header-height);
	align-items: center;
	gap: 28px;
}

.site-brand {
	display: block;
	flex: 0 0 268px;
}

.site-brand img {
	width: 268px;
	height: auto;
}

.primary-nav {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 24px;
	margin-left: auto;
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav .menu-item {
	position: relative;
	margin: 0;
}

.primary-nav .menu-item > a {
	display: flex;
	min-height: 46px;
	align-items: center;
	padding: 9px 11px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 680;
}

.primary-nav .menu-item > a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a {
	color: var(--green);
}

.primary-nav .menu-item-has-children > a::after {
	width: 7px;
	height: 7px;
	margin: -4px 0 0 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	width: 270px;
	margin: 0;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-md);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.primary-nav .menu-item:hover > .sub-menu,
.primary-nav .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-nav .sub-menu a {
	min-height: 40px;
	padding: 8px 10px;
	border-radius: 4px;
}

.primary-nav .sub-menu a:hover {
	background: var(--surface);
}

.header-cta {
	white-space: nowrap;
}

.header-phone {
	display: none;
	align-items: center;
	gap: 9px;
	color: var(--green-dark);
}

.header-phone span {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.25;
}

.header-phone small {
	color: var(--muted);
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 5px;
	color: var(--green-dark);
	background: var(--white);
	cursor: pointer;
}

.nav-toggle__close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
	display: inline-flex;
}

/* Hero */
.hero {
	position: relative;
	min-height: 680px;
	overflow: hidden;
	color: var(--white);
	background: var(--green-dark);
}

.hero__media,
.hero__media img,
.hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__media img {
	object-fit: cover;
	object-position: center;
}

.hero__shade {
	background: linear-gradient(90deg, rgba(2, 24, 17, 0.92) 0%, rgba(2, 28, 19, 0.8) 37%, rgba(2, 28, 19, 0.25) 66%, rgba(2, 28, 19, 0.08) 100%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 680px;
	align-items: center;
	padding-block: 64px 82px;
}

.hero__content {
	width: min(650px, 58%);
}

.hero__credential {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 20px;
	padding: 8px 11px;
	border: 1px solid rgba(188, 227, 204, 0.45);
	border-radius: 4px;
	color: #dff4e7;
	background: rgba(5, 46, 33, 0.44);
	font-size: 13px;
	font-weight: 720;
}

.hero h1 {
	max-width: 650px;
	margin-bottom: 22px;
	color: var(--white);
	font-size: 64px;
}

.hero__lead {
	max-width: 600px;
	margin-bottom: 30px;
	color: #e8efeb;
	font-size: 21px;
	line-height: 1.55;
}

.hero__actions,
.reviews-actions,
.service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__proofs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin: 30px 0 0;
	padding: 0;
	color: #dce9e1;
	font-size: 14px;
	font-weight: 600;
	list-style: none;
}

.hero__proofs li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.hero__proofs .icon {
	color: #79cf9c;
}

.hero__disclaimer {
	position: absolute;
	right: 14px;
	bottom: 10px;
	z-index: 2;
	color: rgba(255, 255, 255, 0.66);
	font-size: 10px;
}

@media (min-width: 1101px) and (max-height: 800px) {
	.hero,
	.hero__inner {
		min-height: 560px;
	}

	.hero__inner {
		padding-block: 34px 42px;
	}

	.hero h1 {
		margin-bottom: 18px;
		font-size: 58px;
	}

	.hero__lead {
		margin-bottom: 24px;
		font-size: 19px;
	}

	.hero__proofs {
		margin-top: 24px;
	}
}

/* Trust band */
.trust-band {
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.trust-band__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-band__grid > div {
	display: flex;
	min-height: 108px;
	align-items: center;
	gap: 14px;
	padding: 22px 24px;
	border-right: 1px solid var(--line);
}

.trust-band__grid > div:first-child {
	padding-left: 0;
}

.trust-band__grid > div:last-child {
	padding-right: 0;
	border-right: 0;
}

.trust-band__grid .icon {
	color: var(--green);
}

.trust-band__grid span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.45;
}

.trust-band__grid strong {
	margin-bottom: 2px;
	color: var(--ink);
	font-size: 14px;
}

.trust-band__grid a {
	color: var(--green-strong);
	font-weight: 700;
}

/* Quote form */
.quote-section {
	background: var(--surface-warm);
}

.quote-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
	align-items: start;
	gap: 88px;
}

.quote-intro {
	padding-top: 24px;
}

.quote-intro h2 {
	margin-bottom: 22px;
}

.quote-intro__steps {
	display: grid;
	gap: 0;
	margin: 34px 0 28px;
}

.quote-intro__steps > div {
	display: grid;
	grid-template-columns: 44px 1fr;
	padding: 18px 0;
	border-top: 1px solid #d8ded9;
}

.quote-intro__steps > div:last-child {
	border-bottom: 1px solid #d8ded9;
}

.quote-intro__steps span {
	grid-row: 1 / 3;
	color: var(--red);
	font-size: 13px;
	font-weight: 780;
}

.quote-intro__steps strong {
	margin-bottom: 3px;
	font-size: 16px;
}

.quote-intro__steps p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.quote-form-wrap {
	padding: 38px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.quote-form-heading h2 {
	margin-bottom: 8px;
	font-size: 30px;
}

.quote-form-heading p {
	margin-bottom: 24px;
	color: var(--muted);
}

.quote-form,
.quote-form label {
	display: grid;
}

.quote-form {
	gap: 17px;
}

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

.quote-form label {
	gap: 7px;
	color: var(--ink-soft);
	font-size: 13px;
	font-weight: 680;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #cbd5cf;
	border-radius: 4px;
	color: var(--ink);
	background: var(--white);
	font-size: 15px;
	font-weight: 450;
	outline: none;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(8, 122, 62, 0.12);
}

.quote-form .form-consent {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 10px;
	font-size: 12px;
	font-weight: 450;
	line-height: 1.55;
}

.form-consent input {
	width: 18px;
	min-height: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--green);
}

.form-consent a {
	color: var(--green-strong);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.form-footnote {
	margin: -5px 0 0;
	color: var(--muted);
	font-size: 11px;
	text-align: center;
}

.form-honeypot {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.form-notice {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 18px;
	padding: 12px 14px;
	border-radius: 4px;
	font-size: 13px;
}

.form-notice--success {
	color: #07532c;
	background: #e4f5eb;
}

.form-notice--error {
	color: #8d1519;
	background: #fbe8e8;
}

/* Services */
.services-section {
	background: var(--white);
}

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

.solution-story {
	position: relative;
	min-height: 420px;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--green-dark);
}

.solution-story::after {
	position: absolute;
	inset: 38% 0 0;
	background: linear-gradient(0deg, rgba(2, 25, 17, 0.92), rgba(2, 25, 17, 0));
	content: "";
}

.solution-story img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.solution-story:hover img {
	transform: scale(1.025);
}

.solution-story > div {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 46px;
	align-items: end;
	gap: 6px 16px;
}

.solution-story > div > span {
	grid-column: 1 / -1;
	color: #b5dfc7;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.solution-story h3 {
	margin: 0;
	color: var(--white);
	font-size: 23px;
}

.solution-story a {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 50%;
	color: var(--green-dark);
	background: var(--white);
}

.visual-note {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 11px;
	text-align: right;
}

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

.service-card {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 28px;
	align-items: center;
	gap: 17px;
	min-height: 118px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
	border-color: #9dc6ae;
	box-shadow: var(--shadow-sm);
	transform: translateY(-2px);
}

.service-card__icon {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border-radius: 50%;
	color: var(--green);
	background: #e9f5ee;
}

.service-card__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.service-card__body strong {
	font-size: 17px;
}

.service-card__body small {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
}

.service-card__arrow {
	color: var(--green);
}

/* Process */
.process-section {
	background: var(--surface);
}

.process-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 86px;
}

.process-visual {
	position: relative;
	min-height: 640px;
}

.process-visual > img {
	width: 100%;
	height: 640px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.process-credential {
	position: absolute;
	right: -24px;
	bottom: 34px;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 230px;
	padding: 17px 19px;
	border-radius: 5px;
	color: var(--white);
	background: var(--green-dark);
	box-shadow: var(--shadow-md);
}

.process-credential span {
	display: flex;
	flex-direction: column;
	font-size: 12px;
}

.process-credential strong {
	font-size: 15px;
}

.process-content h2 {
	margin-bottom: 18px;
}

.process-list {
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.process-list li {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 16px;
	padding: 19px 0;
	border-top: 1px solid #d4ddd8;
}

.process-list li:last-child {
	border-bottom: 1px solid #d4ddd8;
}

.process-list > li > span {
	color: var(--red);
	font-size: 13px;
	font-weight: 800;
}

.process-list strong {
	display: block;
	margin-bottom: 3px;
	font-size: 17px;
}

.process-list p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

/* Authority */
.authority-section {
	color: #dcece3;
	background: var(--green-dark);
}

.authority-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
	align-items: center;
	gap: 92px;
}

.authority-section h2 {
	margin-bottom: 20px;
	color: var(--white);
}

.authority-section p {
	max-width: 690px;
	margin-bottom: 30px;
	font-size: 18px;
}

.authority-facts {
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.authority-facts > div {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.authority-facts dt {
	color: #a7cab6;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.authority-facts dd {
	margin: 0;
	color: var(--white);
	font-weight: 680;
}

/* Projects */
.project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.project-card {
	position: relative;
	min-height: 340px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--green-deep);
}

.project-card::after {
	position: absolute;
	inset: 40% 0 0;
	background: linear-gradient(0deg, rgba(2, 25, 17, 0.94), rgba(2, 25, 17, 0));
	content: "";
}

.project-card > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.project-card:hover > img {
	transform: scale(1.025);
}

.project-card > span {
	position: absolute;
	right: 22px;
	bottom: 22px;
	left: 22px;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 24px;
	align-items: end;
	gap: 3px 12px;
	color: var(--white);
}

.project-card small {
	grid-column: 1 / -1;
	color: #b0dbc2;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.project-card strong {
	font-size: 20px;
}

.project-empty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px 30px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--green);
	border-radius: var(--radius);
	background: var(--surface);
}

.project-empty > div {
	display: flex;
	align-items: center;
	gap: 15px;
}

.project-empty .icon {
	color: var(--green);
}

.project-empty span {
	display: flex;
	flex-direction: column;
}

.project-empty small {
	color: var(--muted);
}

/* Brands */
.brands-section {
	padding-block: 74px;
	border-block: 1px solid var(--line);
	background: var(--surface-warm);
}

.brands-intro {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	align-items: end;
	gap: 12px 72px;
	margin-bottom: 32px;
}

.brands-intro .eyebrow {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.brands-intro h2 {
	margin-bottom: 0;
	font-size: 31px;
}

.brands-intro p {
	margin: 0;
	color: var(--muted);
}

.brand-list {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 1px;
	margin: 0;
	padding: 1px;
	background: #d9dfdb;
	list-style: none;
}

.brand-list li {
	display: grid;
	min-height: 76px;
	place-items: center;
	padding: 10px;
	color: #4e5d55;
	background: var(--white);
	font-size: 15px;
	font-weight: 760;
	text-align: center;
}

/* Reviews */
.reviews-section {
	background: var(--white);
}

.reviews-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
	align-items: center;
	gap: 92px;
}

.reviews-section h2 {
	max-width: 760px;
	margin-bottom: 20px;
}

.reviews-actions {
	margin-top: 30px;
}

.review-score {
	padding: 36px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.review-score > span {
	color: #4267b2;
	font-weight: 760;
}

.review-score > strong {
	display: block;
	margin: 12px 0 2px;
	color: var(--ink);
	font-size: 68px;
	line-height: 1;
}

.review-score > strong small {
	color: var(--muted);
	font-size: 23px;
}

.review-score > div {
	position: relative;
	display: inline-block;
	color: #f3b61f;
	font-size: 23px;
	letter-spacing: 0;
}

.review-score p {
	margin: 8px 0 3px;
	font-weight: 700;
}

.review-score > small {
	color: var(--muted);
	font-size: 10px;
}

/* FAQ */
.faq-section {
	background: var(--surface);
}

.faq-section__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: 92px;
}

.faq-intro {
	position: sticky;
	top: 148px;
}

.faq-intro h2 {
	margin-bottom: 18px;
}

.faq-intro p {
	margin-bottom: 24px;
	color: var(--muted);
}

.faq-list {
	border-top: 1px solid #cfd8d3;
}

.faq-list details {
	border-bottom: 1px solid #cfd8d3;
}

.faq-list summary {
	display: grid;
	grid-template-columns: 1fr 24px;
	align-items: center;
	gap: 18px;
	padding: 24px 0;
	font-size: 17px;
	font-weight: 720;
	cursor: pointer;
	list-style: none;
}

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

.faq-list summary .icon {
	color: var(--green);
	transition: transform 180ms ease;
}

.faq-list details[open] summary .icon {
	transform: rotate(180deg);
}

.faq-list details p {
	max-width: 750px;
	margin: -5px 46px 24px 0;
	color: var(--muted);
}

/* Blog */
.blog-section {
	background: var(--white);
}

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

.post-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.post-card__media {
	display: block;
	height: 220px;
	overflow: hidden;
	background: #e8f1ec;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.post-card:hover .post-card__media img {
	transform: scale(1.025);
}

.post-card__media > span {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--green);
}

.post-card__body {
	padding: 24px;
}

.post-card__body > small {
	color: var(--green);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.post-card h2,
.post-card h3 {
	margin: 9px 0 12px;
	font-size: 21px;
}

.post-card h2 a:hover,
.post-card h3 a:hover {
	color: var(--green);
}

.post-card p {
	margin-bottom: 18px;
	color: var(--muted);
	font-size: 14px;
}

/* Location */
.location-section {
	padding-top: 0;
	background: var(--white);
}

.location-section__grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
	min-height: 560px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.location-details {
	padding: 54px;
	background: var(--surface-warm);
}

.location-details h2 {
	margin-bottom: 18px;
}

.location-details > p {
	color: var(--muted);
}

.location-details ul {
	display: grid;
	gap: 18px;
	margin: 28px 0 30px;
	padding: 0;
	list-style: none;
}

.location-details li {
	display: grid;
	grid-template-columns: 25px 1fr;
	gap: 11px;
}

.location-details li > .icon {
	margin-top: 3px;
	color: var(--green);
}

.location-details li > span {
	display: flex;
	flex-wrap: wrap;
	gap: 2px 7px;
	color: var(--ink-soft);
	font-size: 14px;
}

.location-details li strong {
	width: 100%;
	color: var(--ink);
}

.location-details li a {
	color: var(--green-strong);
	font-weight: 670;
}

.map-shell {
	position: relative;
	min-height: 460px;
	background: #e6ece8;
}

.map-shell iframe {
	width: 100%;
	height: 100%;
	min-height: 460px;
	border: 0;
}

.map-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	justify-items: center;
	padding: 30px;
	color: var(--green-dark);
	background-color: #e7eeea;
	background-image: linear-gradient(#d9e4de 1px, transparent 1px), linear-gradient(90deg, #d9e4de 1px, transparent 1px);
	background-size: 34px 34px;
	text-align: center;
}

.map-placeholder::before {
	position: absolute;
	inset: 0;
	background: rgba(231, 238, 234, 0.76);
	content: "";
}

.map-placeholder > * {
	position: relative;
}

.map-placeholder strong {
	margin-top: 14px;
	font-size: 19px;
}

.map-placeholder p {
	margin: 4px 0 18px;
	color: var(--muted);
}

/* Footer */
.footer-cta {
	padding-block: 58px;
	color: #d8eae0;
	background: var(--green-strong);
}

.footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.footer-cta h2 {
	margin-bottom: 7px;
	color: var(--white);
	font-size: 36px;
}

.footer-cta p {
	margin: 0;
}

.footer-cta__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
}

.site-footer {
	color: #c7d4cd;
	background: #111914;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.9fr 0.75fr 1.2fr;
	gap: 56px;
	padding-block: 72px 58px;
}

.footer-brand img {
	width: 255px;
	padding: 8px 10px;
	border-radius: 4px;
	background: var(--white);
}

.footer-brand > p {
	max-width: 330px;
	margin: 22px 0;
	font-size: 14px;
}

.site-footer h2 {
	margin-bottom: 20px;
	color: var(--white);
	font-size: 15px;
}

.footer-links {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	font-size: 13px;
	list-style: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover,
.footer-bottom button:hover {
	color: var(--white);
}

.social-links {
	display: flex;
	gap: 8px;
}

.social-links a {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid #536159;
	border-radius: 50%;
	color: var(--white);
	font-size: 13px;
	font-weight: 800;
}

.social-links a:hover {
	background: var(--green);
	border-color: var(--green);
}

.footer-contact {
	display: grid;
	align-content: start;
	gap: 16px;
}

.footer-contact h2 {
	margin-bottom: 4px;
}

.footer-contact > a {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 10px;
	font-size: 13px;
}

.footer-contact .icon {
	margin-top: 3px;
	color: #7dc69a;
}

.footer-contact span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow-wrap: anywhere;
}

.footer-contact small {
	color: #7f8d85;
	font-size: 10px;
	text-transform: uppercase;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 66px;
	border-top: 1px solid #313d36;
	font-size: 11px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom > div {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.mobile-actions {
	display: none;
}

/* Page and service headers */
.breadcrumbs {
	margin-bottom: 28px;
	font-size: 12px;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li {
	display: flex;
	gap: 6px;
}

.breadcrumbs a {
	color: inherit;
	opacity: 0.75;
}

.breadcrumbs a:hover {
	opacity: 1;
}

.page-hero {
	color: #d7e6de;
	background: var(--green-dark);
}

.page-hero--compact {
	padding-block: 58px 68px;
}

.page-hero .breadcrumbs {
	color: #cfe1d7;
}

.page-hero h1 {
	max-width: 880px;
	margin-bottom: 14px;
	color: var(--white);
	font-size: 50px;
}

.page-hero p {
	max-width: 720px;
	margin: 0;
	font-size: 18px;
}

.service-hero {
	padding-block: 46px 74px;
	background: var(--surface-warm);
}

.service-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
	align-items: center;
	gap: 74px;
}

.service-hero__icon {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	margin-bottom: 24px;
	border-radius: 50%;
	color: var(--green);
	background: #dcefe4;
}

.service-hero h1 {
	margin-bottom: 20px;
	font-size: 54px;
}

.service-hero__content > p {
	margin-bottom: 28px;
	color: var(--ink-soft);
	font-size: 19px;
}

.service-hero__media {
	position: relative;
	margin: 0;
}

.service-hero__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.service-hero__media figcaption {
	position: absolute;
	right: 10px;
	bottom: 7px;
	padding: 3px 6px;
	border-radius: 2px;
	color: rgba(255, 255, 255, 0.78);
	background: rgba(5, 46, 33, 0.58);
	font-size: 9px;
}

.service-benefits {
	padding-block: 88px;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-block: 1px solid var(--line);
}

.benefit-item {
	position: relative;
	display: grid;
	min-height: 170px;
	align-content: center;
	gap: 10px;
	padding: 28px;
	border-right: 1px solid var(--line);
}

.benefit-item:last-child {
	border-right: 0;
}

.benefit-item > span {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #cbd6d0;
	font-size: 12px;
	font-weight: 800;
}

.benefit-item .icon {
	color: var(--green);
}

.benefit-item strong {
	font-size: 16px;
}

.service-detail {
	background: var(--surface);
}

.service-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: start;
	gap: 86px;
}

.service-copy h2 {
	max-width: 740px;
	margin-bottom: 24px;
}

.service-copy > p {
	color: var(--ink-soft);
	font-size: 17px;
}

.service-callout {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 15px;
	margin-top: 34px;
	padding: 24px;
	border-left: 4px solid var(--green);
	background: var(--white);
}

.service-callout .icon {
	color: var(--green);
}

.service-callout strong {
	display: block;
	margin-bottom: 4px;
}

.service-callout p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.service-sidebar {
	position: sticky;
	top: 144px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.service-sidebar ol {
	display: grid;
	gap: 0;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.service-sidebar li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 12px;
	padding: 14px 0;
	border-top: 1px solid var(--line);
}

.service-sidebar li > span {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	color: var(--green);
	background: #e8f3ed;
	font-size: 11px;
	font-weight: 800;
}

.service-sidebar strong,
.service-sidebar small {
	display: block;
}

.service-sidebar small {
	color: var(--muted);
}

.faq-section--service {
	background: var(--white);
}

.inline-cta {
	padding-block: 58px;
	color: var(--white);
	background: var(--green-strong);
}

.inline-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.inline-cta h2 {
	max-width: 780px;
	margin: 0;
	color: var(--white);
	font-size: 34px;
}

/* Service index */
.service-index-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.service-index-card {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	min-height: 280px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.service-index-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-index-card__body {
	padding: 28px;
}

.service-index-card__body > span {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	color: var(--green);
	background: #e8f4ed;
}

.service-index-card h2 {
	margin: 16px 0 10px;
	font-size: 23px;
}

.service-index-card p {
	color: var(--muted);
	font-size: 14px;
}

/* Generic content */
.content-page__inner {
	width: min(100%, 860px);
	margin-inline: auto;
	color: var(--ink-soft);
	font-size: 17px;
}

.content-page__inner h2 {
	margin: 48px 0 18px;
	font-size: 32px;
}

.content-page__inner h3 {
	margin: 34px 0 14px;
	font-size: 23px;
}

.content-page__inner a {
	color: var(--green-strong);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.content-page__inner ul,
.content-page__inner ol {
	padding-left: 22px;
}

.content-page__inner li {
	margin-bottom: 8px;
}

.content-page__inner blockquote {
	margin: 34px 0;
	padding: 22px 26px;
	border-left: 4px solid var(--green);
	background: var(--surface);
}

.content-page__inner .project-source-note {
	margin-top: 34px;
	color: var(--muted);
	font-size: 13px;
}

/* Contact */
.contact-page {
	background: var(--surface-warm);
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(340px, 0.78fr) minmax(480px, 1.22fr);
	align-items: start;
	gap: 72px;
}

.contact-panel {
	padding-top: 24px;
}

.contact-panel h2 {
	font-size: 34px;
}

.contact-panel > p {
	color: var(--muted);
}

.contact-list {
	display: grid;
	margin-top: 30px;
	border-top: 1px solid #d6ddd9;
}

.contact-list > a {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 13px;
	padding: 18px 0;
	border-bottom: 1px solid #d6ddd9;
}

.contact-list .icon {
	margin-top: 5px;
	color: var(--green);
}

.contact-list span,
.contact-list strong,
.contact-list small {
	display: block;
}

.contact-list small {
	color: var(--muted);
	font-size: 11px;
	text-transform: uppercase;
}

.contact-list strong {
	color: var(--ink);
	font-size: 15px;
	overflow-wrap: anywhere;
}

.contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 24px;
}

.contact-social a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--green-strong);
	font-weight: 700;
}

.contact-map-section {
	padding-block: 0 96px;
	background: var(--surface-warm);
}

.map-shell--wide {
	min-height: 520px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.map-shell--wide iframe {
	min-height: 520px;
}

/* Article */
.article-header {
	padding-block: 54px 78px;
	color: #d6e5dd;
	background: var(--green-dark);
}

.article-header .breadcrumbs {
	color: #cfe1d7;
}

.article-header h1 {
	max-width: 920px;
	margin-bottom: 20px;
	color: var(--white);
	font-size: 50px;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	font-size: 12px;
}

.article-meta span {
	display: flex;
	align-items: center;
	gap: 7px;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
	gap: 78px;
	padding-block: 78px 110px;
}

.article-content {
	color: var(--ink-soft);
	font-size: 17px;
}

.article-content h2 {
	margin: 46px 0 16px;
	font-size: 32px;
}

.article-content h3 {
	margin: 32px 0 13px;
	font-size: 23px;
}

.article-content li {
	margin-bottom: 9px;
}

.article-content a {
	color: var(--green-strong);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-cover {
	margin-bottom: 34px;
}

.article-cover img {
	width: 100%;
	border-radius: var(--radius);
}

.article-aside {
	position: sticky;
	top: 144px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.article-aside h2 {
	margin-bottom: 13px;
	font-size: 25px;
}

.article-aside p {
	color: var(--muted);
	font-size: 14px;
}

.aside-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	color: var(--green-strong);
	font-weight: 750;
}

.pagination {
	margin-top: 44px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 7px;
}

.pagination .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	padding-inline: 10px;
	border: 1px solid var(--line);
	border-radius: 4px;
}

.pagination .current,
.pagination a:hover {
	color: var(--white);
	background: var(--green);
	border-color: var(--green);
}

.project-page__content > figure {
	width: min(100%, 980px);
	margin: 0 auto 44px;
}

.project-page__content > figure img {
	width: 100%;
	border-radius: var(--radius);
}

.not-found {
	text-align: center;
}

.not-found span {
	color: var(--green);
	font-size: 80px;
	font-weight: 800;
}

.not-found h1 {
	font-size: 42px;
}

.not-found p {
	color: var(--muted);
}

.not-found > div > div {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

/* Consent */
.consent-banner[hidden],
.consent-modal[hidden],
.map-shell iframe[hidden] {
	display: none !important;
}

.consent-banner {
	position: fixed;
	right: 20px;
	bottom: 20px;
	left: 20px;
	z-index: 3000;
	display: flex;
	max-width: 1120px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-inline: auto;
	padding: 18px 20px;
	border: 1px solid #3a493f;
	border-radius: var(--radius);
	color: #dce7e1;
	background: #111a15;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.consent-banner strong {
	display: block;
	margin-bottom: 2px;
	color: var(--white);
}

.consent-banner p {
	margin: 0;
	font-size: 12px;
}

.consent-banner__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.consent-banner .button--ghost {
	color: var(--white);
	border-color: #66756d;
}

.consent-banner .button--ghost:hover {
	background: #34433a;
}

.consent-modal {
	position: fixed;
	inset: 0;
	z-index: 4000;
	display: grid;
	place-items: center;
	padding: 24px;
}

.consent-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 15, 10, 0.72);
}

.consent-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 580px);
	max-height: min(760px, calc(100vh - 48px));
	overflow-y: auto;
	padding: 28px;
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.consent-modal__dialog > header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.consent-modal h2 {
	margin: 0;
	font-size: 30px;
}

.consent-modal__dialog > p {
	color: var(--muted);
}

.icon-button {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--ink);
	background: var(--white);
	cursor: pointer;
}

.consent-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 19px 0;
	border-top: 1px solid var(--line);
}

.consent-option > div {
	display: flex;
	flex-direction: column;
}

.consent-option > div span {
	color: var(--muted);
	font-size: 12px;
}

.switch {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.switch input {
	position: absolute;
	opacity: 0;
}

.switch > span {
	position: relative;
	display: block;
	width: 44px;
	height: 24px;
	border-radius: 20px;
	background: #a9b2ad;
	transition: background 160ms ease;
}

.switch > span::after {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--white);
	content: "";
	transition: transform 160ms ease;
}

.switch input:checked + span {
	background: var(--green);
}

.switch input:checked + span::after {
	transform: translateX(20px);
}

.switch input:focus-visible + span {
	outline: 3px solid #f2b544;
	outline-offset: 3px;
}

.switch em {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.consent-modal__dialog > footer {
	display: flex;
	justify-content: flex-end;
	gap: 9px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

@media (max-width: 1180px) {
	.site-brand {
		flex-basis: 230px;
	}

	.site-brand img {
		width: 230px;
	}

	.primary-nav {
		gap: 12px;
	}

	.primary-nav .menu-item > a {
		padding-inline: 8px;
		font-size: 13px;
	}

	.header-phone {
		display: none;
	}

	.quote-section__grid,
	.process-section__grid,
	.authority-section__grid,
	.reviews-section__grid,
	.faq-section__grid {
		gap: 56px;
	}

	.brand-list {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
		gap: 34px;
	}
}

@media (max-width: 1024px) {
	:root {
		--header-height: 74px;
	}

	h1 {
		font-size: 48px;
	}

	h2 {
		font-size: 36px;
	}

	.section {
		padding-block: 84px;
	}

	.utility-bar {
		display: none;
	}

	.main-header__inner {
		min-height: var(--header-height);
	}

	.site-brand {
		flex-basis: 235px;
	}

	.site-brand img {
		width: 235px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: fixed;
		top: var(--header-height);
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 22px 24px 38px;
		overflow-y: auto;
		background: var(--white);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.primary-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-nav .menu {
		display: block;
		width: min(100%, 620px);
		margin-inline: auto;
		border-top: 1px solid var(--line);
	}

	.primary-nav .menu-item > a {
		min-height: 52px;
		padding: 12px 4px;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
	}

	.primary-nav .sub-menu {
		position: static;
		display: block;
		width: auto;
		padding: 0 0 0 18px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-nav .sub-menu a {
		font-size: 14px;
	}

	.primary-nav .menu-item-has-children > a::after {
		display: none;
	}

	.header-cta {
		display: flex;
		width: min(100%, 620px);
		margin: 22px auto 0;
	}

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

	.hero h1 {
		font-size: 52px;
	}

	.hero__content {
		width: 68%;
	}

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

	.trust-band__grid > div,
	.trust-band__grid > div:first-child,
	.trust-band__grid > div:last-child {
		min-height: 94px;
		padding: 18px 20px;
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}

	.trust-band__grid > div:nth-child(2n) {
		border-right: 0;
	}

	.trust-band__grid > div:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.quote-section__grid,
	.contact-page__grid {
		grid-template-columns: 1fr;
	}

	.quote-intro {
		padding-top: 0;
	}

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

	.solution-story:last-child {
		grid-column: 1 / -1;
		min-height: 380px;
	}

	.process-section__grid,
	.authority-section__grid,
	.reviews-section__grid,
	.faq-section__grid,
	.location-section__grid,
	.service-hero__grid,
	.service-detail__grid,
	.article-layout {
		grid-template-columns: 1fr;
	}

	.process-visual {
		min-height: 500px;
	}

	.process-visual > img {
		height: 500px;
	}

	.process-credential {
		right: 24px;
	}

	.authority-section__grid {
		gap: 44px;
	}

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

	.brand-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.faq-intro,
	.service-sidebar,
	.article-aside {
		position: static;
	}

	.location-section__grid {
		min-height: 0;
	}

	.map-shell,
	.map-shell iframe {
		min-height: 480px;
	}

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

	.service-hero__grid {
		gap: 42px;
	}

	.service-hero__content {
		max-width: 780px;
	}

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

	.benefit-item:nth-child(2) {
		border-right: 0;
	}

	.benefit-item:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

	.service-index-grid {
		grid-template-columns: 1fr;
	}

	.article-aside {
		max-width: 500px;
	}
}

@media (max-width: 767px) {
	:root {
		--header-height: 68px;
	}

	html {
		scroll-padding-top: 78px;
	}

	body {
		padding-bottom: 64px;
		font-size: 15px;
	}

	h1 {
		font-size: 38px;
	}

	h2 {
		font-size: 31px;
	}

	h3 {
		font-size: 21px;
	}

	.site-container {
		width: min(100% - 32px, var(--container));
	}

	.section {
		padding-block: 68px;
	}

	.section-heading--split {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.section-heading {
		margin-bottom: 30px;
	}

	.section-heading--split > p,
	.section-lead {
		font-size: 16px;
	}

	.site-brand,
	.site-brand img {
		width: 204px;
		flex-basis: 204px;
	}

	.nav-toggle {
		width: 42px;
		height: 42px;
	}

	.hero,
	.hero__inner {
		min-height: 594px;
	}

	.hero__media img {
		object-position: 68% center;
	}

	.hero__shade {
		background: linear-gradient(90deg, rgba(2, 24, 17, 0.96) 0%, rgba(2, 24, 17, 0.82) 58%, rgba(2, 24, 17, 0.48) 100%);
	}

	.hero__inner {
		align-items: flex-end;
		padding-block: 54px 58px;
	}

	.hero__content {
		width: 100%;
	}

	.hero__credential {
		margin-bottom: 16px;
		font-size: 11px;
	}

	.hero h1 {
		max-width: 540px;
		margin-bottom: 17px;
		font-size: 40px;
	}

	.hero__lead {
		max-width: 520px;
		margin-bottom: 24px;
		font-size: 17px;
	}

	.hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 430px;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__proofs {
		display: grid;
		gap: 7px;
		margin-top: 22px;
		font-size: 12px;
	}

	.hero__disclaimer {
		font-size: 8px;
	}

	.trust-band__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.trust-band__grid::-webkit-scrollbar {
		display: none;
	}

	.trust-band__grid > div,
	.trust-band__grid > div:first-child,
	.trust-band__grid > div:last-child {
		min-width: 84%;
		min-height: 88px;
		padding: 16px;
		border-right: 1px solid var(--line);
		border-bottom: 0;
		scroll-snap-align: start;
	}

	.quote-section__grid {
		gap: 44px;
	}

	.quote-intro__steps > div {
		grid-template-columns: 38px 1fr;
	}

	.quote-form-wrap {
		padding: 24px 18px;
	}

	.quote-form-heading h2 {
		font-size: 26px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.solution-stories,
	.service-grid,
	.project-grid,
	.post-grid,
	.service-index-grid {
		grid-template-columns: 1fr;
	}

	.solution-story,
	.solution-story:last-child {
		grid-column: auto;
		min-height: 380px;
	}

	.solution-story > div {
		right: 18px;
		bottom: 18px;
		left: 18px;
	}

	.service-card {
		grid-template-columns: 46px minmax(0, 1fr) 22px;
		gap: 12px;
		min-height: 106px;
		padding: 16px;
	}

	.service-card__icon {
		width: 46px;
		height: 46px;
	}

	.process-section__grid {
		gap: 48px;
	}

	.process-visual,
	.process-visual > img {
		min-height: 410px;
		height: 410px;
	}

	.process-credential {
		right: 12px;
		bottom: 14px;
		left: 12px;
		min-width: 0;
	}

	.process-list li {
		grid-template-columns: 40px 1fr;
	}

	.authority-section__grid {
		gap: 38px;
	}

	.authority-facts > div {
		grid-template-columns: 100px 1fr;
		gap: 14px;
	}

	.project-card {
		min-height: 330px;
	}

	.project-empty {
		align-items: stretch;
		flex-direction: column;
		padding: 22px;
	}

	.project-empty > div {
		align-items: flex-start;
	}

	.brands-section {
		padding-block: 58px;
	}

	.brands-intro {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.brands-intro .eyebrow {
		grid-column: auto;
	}

	.brands-intro h2 {
		font-size: 27px;
	}

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

	.brand-list li {
		min-height: 64px;
		font-size: 13px;
	}

	.reviews-section__grid {
		gap: 42px;
	}

	.reviews-actions,
	.service-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.review-score {
		padding: 28px;
	}

	.review-score > strong {
		font-size: 56px;
	}

	.faq-section__grid {
		gap: 36px;
	}

	.faq-list summary {
		padding: 20px 0;
		font-size: 15px;
	}

	.faq-list details p {
		margin-right: 30px;
		font-size: 14px;
	}

	.post-card__media {
		height: 210px;
	}

	.location-section {
		padding-top: 0;
	}

	.location-section__grid {
		width: 100%;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.location-details {
		padding: 42px 24px;
	}

	.map-shell,
	.map-shell iframe {
		min-height: 390px;
	}

	.footer-cta {
		padding-block: 46px;
	}

	.footer-cta__inner,
	.inline-cta__inner {
		align-items: stretch;
		flex-direction: column;
		gap: 26px;
	}

	.footer-cta h2,
	.inline-cta h2 {
		font-size: 29px;
	}

	.footer-cta__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-block: 56px 44px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 18px;
	}

	.mobile-actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 2000;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		height: 64px;
		padding-bottom: env(safe-area-inset-bottom);
		border-top: 1px solid #d6ded9;
		background: var(--white);
		box-shadow: 0 -8px 28px rgba(5, 46, 33, 0.12);
	}

	.mobile-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 7px;
		border-right: 1px solid var(--line);
		color: var(--green-dark);
		font-size: 12px;
		font-weight: 750;
	}

	.mobile-actions a:nth-child(2) {
		color: var(--white);
		background: var(--green);
	}

	.mobile-actions a:last-child {
		border-right: 0;
	}

	.page-hero--compact {
		padding-block: 42px 52px;
	}

	.page-hero h1,
	.article-header h1 {
		font-size: 38px;
	}

	.page-hero p {
		font-size: 16px;
	}

	.service-hero {
		padding-block: 30px 54px;
	}

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

	.service-hero__content > p {
		font-size: 16px;
	}

	.service-hero__icon {
		width: 54px;
		height: 54px;
	}

	.service-benefits {
		padding-block: 62px;
	}

	.benefit-grid {
		grid-template-columns: 1fr;
	}

	.benefit-item,
	.benefit-item:nth-child(2) {
		min-height: 120px;
		padding: 22px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.benefit-item:last-child {
		border-bottom: 0;
	}

	.service-detail__grid {
		gap: 44px;
	}

	.service-copy > p,
	.content-page__inner,
	.article-content {
		font-size: 16px;
	}

	.service-sidebar {
		padding: 24px 20px;
	}

	.service-index-card {
		grid-template-columns: 1fr;
	}

	.service-index-card__media {
		height: 230px;
	}

	.service-index-card__body {
		padding: 24px;
	}

	.contact-page__grid {
		gap: 42px;
	}

	.contact-map-section {
		padding-bottom: 68px;
	}

	.article-header {
		padding-block: 40px 54px;
	}

	.article-layout {
		gap: 44px;
		padding-block: 56px 76px;
	}

	.article-content h2,
	.content-page__inner h2 {
		font-size: 27px;
	}

	.article-aside {
		padding: 24px 20px;
	}

	.consent-banner {
		right: 10px;
		bottom: 74px;
		left: 10px;
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
		padding: 16px;
	}

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

	.consent-banner .button {
		min-width: 0;
		padding-inline: 8px;
		font-size: 11px;
	}

	.consent-modal {
		padding: 10px;
	}

	.consent-modal__dialog {
		max-height: calc(100vh - 20px);
		padding: 22px 18px;
	}

	.consent-option {
		gap: 14px;
	}

	.consent-modal__dialog > footer {
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	.site-brand,
	.site-brand img {
		width: 180px;
		flex-basis: 180px;
	}

	.hero h1 {
		font-size: 35px;
	}

	.hero__lead {
		font-size: 16px;
	}

	.authority-facts > div {
		grid-template-columns: 1fr;
		gap: 3px;
	}

}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.site-header,
	.footer-cta,
	.site-footer,
	.mobile-actions,
	.consent-banner,
	.consent-modal,
	.button {
		display: none !important;
	}

	body {
		padding: 0;
		color: #000;
	}
}
