:root {
	--brand: #10a552;
	--brand-dark: #144a2c;
	--brand-deep: #092b18;
	--brand-soft: #e9f7ef;
	--ink: #142019;
	--muted: #5b6960;
	--line: #dce6df;
	--surface: #fff;
	--canvas: #f6f8f5;
	--container: 1240px;
	--content: 760px;
	--shadow: 0 22px 60px rgba(12, 45, 26, 0.12);
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--transition: 180ms ease;
	--heading-h1: clamp(2.55rem, calc(2.16vw + 2.4rem), 3.75rem);
}

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

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

body {
	margin: 0;
	background: var(--surface);
	color: var(--ink);
	font-family: "Segoe UI", Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

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

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

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

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

.section {
	padding-block: clamp(4.75rem, 8vw, 8rem);
}

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

.section--dark {
	background: var(--brand-deep);
	color: #fff;
}

.skip-link {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 999;
	padding: 0.75rem 1rem;
	background: var(--brand-deep);
	color: #fff;
	transform: translateY(-160%);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(20, 74, 44, 0.1);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 82px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

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

.site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(1rem, 2.2vw, 2rem);
	flex: 1;
}

.site-nav__list,
.site-nav__actions,
.nav-dropdown__menu,
.site-footer__links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.7rem, 1.6vw, 1.35rem);
}

.site-nav__list > li > a,
.nav-dropdown__trigger > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: #294034;
	font-size: 0.91rem;
	font-weight: 650;
	text-decoration: none;
}

.site-nav__list > li > a::after,
.nav-dropdown__trigger > a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 2px;
	background: var(--brand);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition);
}

.site-nav__list > li > a:hover::after,
.nav-dropdown__trigger > a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-nav__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0.45rem 0.8rem;
	border: 1px solid rgba(16, 165, 82, 0.34);
	border-radius: 999px;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 0.94rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-nav__phone:hover {
	border-color: var(--brand);
	background: #dff3e7;
	box-shadow: 0 7px 18px rgba(12, 82, 42, 0.12);
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown__trigger {
	display: flex;
	align-items: center;
}

.nav-dropdown__trigger button {
	display: inline-grid;
	width: 32px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--brand-dark);
	place-items: center;
	cursor: pointer;
}

.nav-dropdown__trigger svg {
	width: 11px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform var(--transition);
}

.nav-dropdown__menu {
	position: absolute;
	top: calc(100% + 12px);
	left: -1rem;
	width: 290px;
	padding: 0.65rem;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown__menu::before {
	position: absolute;
	top: -18px;
	right: 0;
	left: 0;
	height: 18px;
	content: "";
}

.nav-dropdown__menu a {
	display: block;
	padding: 0.7rem 0.8rem;
	border-radius: 8px;
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
}

.nav-dropdown__menu a:hover {
	background: var(--brand-soft);
	color: var(--brand-dark);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-dropdown.is-open .nav-dropdown__trigger svg {
	transform: rotate(180deg);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.7rem;
	margin-left: auto;
	padding: 0.5rem;
	border: 0;
	background: transparent;
	color: var(--brand-dark);
	cursor: pointer;
}

.menu-toggle__label {
	font-size: 0.85rem;
	font-weight: 750;
}

.menu-toggle__icon {
	display: grid;
	gap: 4px;
	width: 24px;
}

.menu-toggle__icon span {
	display: block;
	height: 2px;
	border-radius: 4px;
	background: currentColor;
	transition: transform var(--transition), opacity var(--transition);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	min-height: 54px;
	padding: 0.85rem 1.35rem;
	border: 2px solid var(--brand-dark);
	border-radius: var(--radius-sm);
	background: var(--brand-dark);
	color: #fff;
	font-size: 0.94rem;
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover {
	border-color: var(--brand-deep);
	background: var(--brand-deep);
}

.button svg {
	width: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.button--small {
	min-height: 44px;
	padding: 0.65rem 1rem;
	font-size: 0.86rem;
}

.button--outline {
	background: transparent;
	color: var(--brand-dark);
}

.button--outline:hover {
	color: #fff;
}

.button--light {
	border-color: #fff;
	background: #fff;
	color: var(--brand-deep);
}

.button--light:hover {
	border-color: var(--brand-soft);
	background: var(--brand-soft);
	color: var(--brand-deep);
}

.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 2rem;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 1rem;
	color: var(--brand-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 25px;
	height: 2px;
	background: var(--brand);
}

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

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

h1,
h2,
h3 {
	color: inherit;
	font-family: "Soin Sans Neue", "Segoe UI", Arial, sans-serif;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 {
	margin-bottom: 1.5rem;
	font-size: var(--heading-h1);
}

.hero h1 {
	font-size: var(--heading-h1);
	letter-spacing: -0.025em;
	line-height: 1.18;
}

h2 {
	margin-bottom: 1.3rem;
	font-size: clamp(2rem, 3.8vw, 3.5rem);
}

h3 {
	margin-bottom: 0.75rem;
	font-size: clamp(1.18rem, 1.8vw, 1.46rem);
}

.section-lead {
	color: #34463b;
	font-size: clamp(1.08rem, 1.5vw, 1.22rem);
	line-height: 1.65;
}

.hero {
	position: relative;
	overflow: hidden;
	padding-top: clamp(3.5rem, 7vw, 7rem);
	background:
		radial-gradient(circle at 5% 20%, rgba(16, 165, 82, 0.1), transparent 28rem),
		linear-gradient(180deg, #fbfdfb, #fff);
}

.hero::after {
	position: absolute;
	right: -160px;
	bottom: -300px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(16, 165, 82, 0.15);
	border-radius: 50%;
	content: "";
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.hero__lead {
	max-width: 680px;
	margin-bottom: 0;
	color: #4c5c52;
	font-size: clamp(1.05rem, 1.5vw, 1.22rem);
	line-height: 1.72;
}

.hero__area {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	max-width: 610px;
	margin: 1.35rem 0 0;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.5;
}

.hero__area svg {
	flex: 0 0 19px;
	width: 19px;
	fill: none;
	stroke: var(--brand);
	stroke-width: 1.8;
}

.hero__media {
	position: relative;
	padding: 0 0 2.5rem 1.25rem;
}

.hero__image-wrap {
	position: relative;
	overflow: hidden;
	min-height: 570px;
	border-radius: 3px 3px 84px 3px;
	background: var(--brand-soft);
	box-shadow: var(--shadow);
}

.hero__image-wrap::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 65%, rgba(6, 42, 22, 0.12));
	content: "";
}

.hero__image-wrap img {
	width: 100%;
	height: 100%;
	min-height: 570px;
	object-fit: cover;
	object-position: 54% center;
}

.hero__media::before {
	position: absolute;
	top: -24px;
	right: -24px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(var(--brand) 1.5px, transparent 1.5px);
	background-size: 12px 12px;
	content: "";
	opacity: 0.42;
}

.hero__note {
	position: absolute;
	right: -25px;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	max-width: 310px;
	padding: 1rem 1.2rem;
	border-left: 4px solid var(--brand);
	background: #fff;
	box-shadow: 0 18px 50px rgba(12, 45, 26, 0.15);
}

.hero__note-icon {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--brand-soft);
	color: var(--brand-dark);
	place-items: center;
}

.hero__note-icon svg {
	width: 25px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.hero__note span:last-child {
	display: grid;
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.4;
}

.hero__note strong {
	color: var(--ink);
	font-size: 0.94rem;
}

.trust-strip {
	border-block: 1px solid var(--line);
	background: #fff;
}

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

.trust-strip__grid > div {
	display: grid;
	gap: 0.1rem;
	padding: 1.55rem 2rem;
	border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
	border-left: 1px solid var(--line);
}

.trust-strip strong {
	color: var(--brand-dark);
	font-size: 1.2rem;
	font-weight: 850;
	letter-spacing: -0.02em;
}

.trust-strip span {
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.35;
}

.section-heading {
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
	align-items: end;
	gap: clamp(2rem, 8vw, 8rem);
}

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

.section-heading--split > p {
	margin-bottom: 0.15rem;
	color: var(--muted);
}

.section-heading--center {
	max-width: 750px;
	margin-inline: auto;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.section-heading--center > p:last-child {
	color: var(--muted);
	font-size: 1.05rem;
}

.section-heading--light > p {
	color: rgba(255, 255, 255, 0.7);
}

.section-heading--light .eyebrow {
	color: #bfe8ce;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
}

.service-card {
	position: relative;
	display: flex;
	grid-column: span 2;
	flex-direction: column;
	min-height: 390px;
	padding: clamp(1.5rem, 3vw, 2.2rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	color: inherit;
	text-decoration: none;
	transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
	border-color: rgba(16, 165, 82, 0.45);
	box-shadow: 0 18px 45px rgba(10, 42, 21, 0.08);
	transform: translateY(-4px);
}

.service-card:focus-visible {
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(16, 165, 82, 0.18), 0 18px 45px rgba(10, 42, 21, 0.1);
	outline: none;
}

.service-card--wide {
	grid-column: span 3;
	min-height: 340px;
}

.service-card--featured {
	background: var(--brand-soft);
}

.service-card--dark {
	border-color: var(--brand-dark);
	background: var(--brand-dark);
	color: #fff;
}

.service-card--dark:hover {
	border-color: var(--brand);
	box-shadow: 0 20px 55px rgba(10, 42, 21, 0.2);
}

.service-card__number {
	position: absolute;
	top: 1.6rem;
	right: 1.8rem;
	margin: 0;
	color: #9bad9f;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.service-card--dark .service-card__number {
	color: rgba(255, 255, 255, 0.52);
}

.service-card__icon {
	display: grid;
	width: 68px;
	height: 68px;
	margin-bottom: auto;
	border-radius: 16px;
	background: var(--brand-soft);
	color: var(--brand-dark);
	place-items: center;
}

.service-card--featured .service-card__icon {
	background: #fff;
}

.service-card--dark .service-card__icon {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.service-card__icon svg {
	width: 43px;
	height: 43px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
}

.service-card h3 {
	margin-top: 2.5rem;
}

.service-card > p:not(.service-card__number) {
	color: var(--muted);
	font-size: 0.94rem;
}

.service-card--dark > p:not(.service-card__number) {
	color: rgba(255, 255, 255, 0.72);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	margin-top: auto;
	color: var(--brand-dark);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.text-link span {
	transition: transform var(--transition);
}

.text-link:hover span,
.service-card:hover .text-link span {
	transform: translateX(4px);
}

.service-card--dark .text-link {
	color: #fff;
}

.why-us__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 8rem);
}

.why-us__media {
	position: relative;
	align-self: stretch;
	min-height: 690px;
}

.why-us__media img {
	width: 100%;
	height: 100%;
	min-height: 690px;
	border-radius: var(--radius-lg) 3px var(--radius-lg) 3px;
	object-fit: cover;
}

.why-us__media::before {
	position: absolute;
	top: -18px;
	left: -18px;
	z-index: -1;
	width: 58%;
	height: 44%;
	border-radius: var(--radius-lg) 0 0;
	background: var(--brand);
	content: "";
}

.why-us__media-caption {
	position: absolute;
	right: -34px;
	bottom: 34px;
	display: grid;
	max-width: 305px;
	padding: 1.1rem 1.25rem;
	border-left: 4px solid var(--brand);
	background: #fff;
	box-shadow: var(--shadow);
}

.why-us__media-caption span {
	color: var(--muted);
	font-size: 0.8rem;
}

.benefits-list {
	display: grid;
	margin-top: 2.2rem;
}

.benefits-list article {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 1rem;
	padding: 1.25rem 0;
	border-top: 1px solid var(--line);
}

.benefits-list article:last-child {
	border-bottom: 1px solid var(--line);
}

.benefits-list article > span {
	color: var(--brand);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.benefits-list h3 {
	margin-bottom: 0.4rem;
	font-size: 1.08rem;
	letter-spacing: -0.015em;
}

.benefits-list p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.process-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.process-list--five {
	grid-template-columns: repeat(5, 1fr);
}

.process-list::before {
	position: absolute;
	top: 33px;
	right: 12%;
	left: 12%;
	height: 1px;
	background: var(--line);
	content: "";
}

.process-list li {
	position: relative;
	padding: 0 1rem;
	text-align: center;
}

.process-list__number {
	position: relative;
	z-index: 1;
	display: grid;
	width: 66px;
	height: 66px;
	margin: 0 auto 1.5rem;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	color: var(--brand-dark);
	font-size: 0.82rem;
	font-weight: 850;
	place-items: center;
}

.process-list li:hover .process-list__number {
	border-color: var(--brand);
	background: var(--brand-soft);
}

.process-list h3 {
	font-size: 1.1rem;
}

.process-list p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.section-action {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.projects {
	position: relative;
	overflow: hidden;
}

.projects::before {
	position: absolute;
	top: -280px;
	left: -220px;
	width: 600px;
	height: 600px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
}

.projects-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	grid-template-rows: repeat(2, minmax(250px, 1fr));
	gap: 1rem;
}

.project-card {
	position: relative;
	overflow: hidden;
	min-height: 270px;
	margin: 0;
	border-radius: 3px 20px 3px 20px;
	background: #123722;
}

.project-card--large {
	grid-row: span 2;
}

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

.project-card--large img {
	object-position: center;
}

.before-after-comparison {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3px;
	background: #fff;
}

.before-after-comparison__panel {
	position: relative;
	overflow: hidden;
	min-width: 0;
	background: #123722;
}

.before-after-comparison__panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.before-after-comparison__panel--before img {
	height: 132%;
	object-position: center top;
}

.before-after-comparison__panel--after img {
	object-position: center;
}

.before-after-comparison__label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	padding: 0.55rem 0.75rem;
	border-radius: 3px 10px 3px 10px;
	background: var(--brand-deep);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 8px 22px rgba(5, 29, 15, 0.2);
}

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

.project-card:hover .before-after-comparison img,
.service-project:hover .before-after-comparison img {
	transform: none;
}

.project-card::after {
	position: absolute;
	inset: 42% 0 0;
	background: linear-gradient(transparent, rgba(5, 29, 15, 0.86));
	content: "";
}

.project-card figcaption {
	position: absolute;
	right: 1.5rem;
	bottom: 1.4rem;
	left: 1.5rem;
	z-index: 1;
	display: grid;
	gap: 0.25rem;
}

.project-card figcaption span {
	color: #a6dfbb;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.project-card figcaption strong {
	font-size: 1.05rem;
}

.section-action--light .button {
	min-width: 290px;
}

.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.75fr);
	align-items: start;
	gap: clamp(3rem, 9vw, 9rem);
}

.about__content > p:not(.eyebrow) {
	max-width: 670px;
	color: var(--muted);
}

.about__content .section-lead {
	color: #34463b;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.about-stats div {
	display: flex;
	min-height: 185px;
	padding: 1.5rem;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	flex-direction: column;
	justify-content: flex-end;
}

.about-stats dt {
	margin-bottom: 0.45rem;
	color: var(--brand-dark);
	font-size: clamp(1.75rem, 3vw, 2.6rem);
	font-weight: 850;
	letter-spacing: -0.04em;
	line-height: 1;
}

.about-stats dd {
	margin: 0;
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.5;
}

.coverage__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 8rem);
}

.coverage__content .button {
	margin-top: 0.8rem;
}

.coverage-map {
	position: relative;
	min-height: 430px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(rgba(20, 74, 44, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 74, 44, 0.035) 1px, transparent 1px),
		#fff;
	background-size: 34px 34px;
	box-shadow: 0 20px 55px rgba(10, 42, 21, 0.08);
}

.coverage-map__route {
	position: absolute;
	inset: 8% 4%;
	width: 92%;
	height: 84%;
	fill: rgba(16, 165, 82, 0.08);
	stroke: var(--brand);
	stroke-dasharray: 6 8;
	stroke-linejoin: round;
	stroke-width: 2;
}

.coverage-map__inner {
	fill: none;
	stroke: rgba(20, 74, 44, 0.18);
	stroke-dasharray: none;
	stroke-width: 18;
}

.coverage-map__city {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.84rem;
}

.coverage-map__city i {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--brand);
	box-shadow: 0 0 0 2px rgba(16, 165, 82, 0.25), 0 5px 16px rgba(10, 42, 21, 0.22);
}

.coverage-map__city--warsaw {
	top: 30%;
	left: 17%;
}

.coverage-map__city--bialystok {
	top: 20%;
	right: 12%;
}

.coverage-map__city--lublin {
	right: 24%;
	bottom: 15%;
}

.coverage-map__badge {
	position: absolute;
	top: var(--coverage-badge-y, 57%);
	left: var(--coverage-badge-x, 55.5%);
	display: grid;
	width: 104px;
	height: 104px;
	padding: 0;
	border: 0;
	appearance: none;
	border-radius: 50%;
	background: var(--brand-dark);
	color: #fff;
	font: inherit;
	place-content: center;
	text-align: center;
	transform: translate(-50%, -50%);
	box-shadow: 0 14px 35px rgba(20, 74, 44, 0.24);
}

@media (hover: hover) and (pointer: fine) and (min-width: 921px) {
	.coverage-map[data-coverage-map] {
		cursor: none;
	}

	.coverage-map[data-coverage-map] .coverage-map__badge {
		pointer-events: none;
		will-change: transform;
	}

	.coverage-map[data-coverage-map].has-custom-badge-position .coverage-map__badge {
		top: 0;
		left: 0;
		transform: translate3d(var(--coverage-badge-x), var(--coverage-badge-y), 0) translate(-50%, -50%);
	}

	.coverage-map[data-coverage-map].is-tracking .coverage-map__badge {
		box-shadow: 0 18px 42px rgba(20, 74, 44, 0.3);
	}

	.coverage-map[data-coverage-map].is-pinned {
		cursor: default;
	}

	.coverage-map[data-coverage-map].is-pinned .coverage-map__badge {
		pointer-events: auto;
		cursor: pointer;
		box-shadow: 0 18px 42px rgba(20, 74, 44, 0.34), 0 0 0 4px rgba(255, 255, 255, 0.72);
	}
}

.coverage-map__badge strong {
	font-size: 1.65rem;
	line-height: 1;
}

.coverage-map__badge span {
	font-size: 0.7rem;
}

.faq__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(3rem, 9vw, 9rem);
}

.faq__intro {
	position: sticky;
	top: 125px;
}

.faq__intro > p:not(.eyebrow) {
	color: var(--muted);
}

.faq__intro .text-link {
	margin-top: 1rem;
}

.faq-list {
	border-top: 1px solid var(--line);
}

.faq-list details {
	border-bottom: 1px solid var(--line);
}

.faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.35rem 0;
	font-weight: 750;
	line-height: 1.4;
	list-style: none;
	cursor: pointer;
}

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

.faq-list summary span {
	position: relative;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--brand-soft);
}

.faq-list summary span::before,
.faq-list summary span::after {
	position: absolute;
	top: 15px;
	left: 10px;
	width: 12px;
	height: 2px;
	background: var(--brand-dark);
	content: "";
	transition: transform var(--transition);
}

.faq-list summary span::after {
	transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
	transform: rotate(0);
}

.faq-list details.is-closing summary span::after {
	transform: rotate(90deg);
}

.faq-list details p {
	max-width: 720px;
	padding: 0 3.5rem 1.4rem 0;
	color: var(--muted);
	font-size: 0.94rem;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 220ms ease, transform 280ms ease;
}

.faq-list details[open] p {
	opacity: 1;
	transform: translateY(0);
}

.faq-list details.is-closing p {
	opacity: 0;
	transform: translateY(-6px);
}

.final-cta {
	padding-top: 0;
}

.final-cta__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 3rem;
	overflow: hidden;
	padding: clamp(2.5rem, 5vw, 4.5rem);
	border-radius: 3px 36px 3px 36px;
	background: var(--brand-dark);
	color: #fff;
}

.final-cta__panel::after {
	position: absolute;
	top: -160px;
	right: -110px;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	content: "";
}

.final-cta__mark {
	position: absolute;
	right: 31%;
	bottom: -8px;
	opacity: 0.08;
}

.final-cta__mark img {
	width: 190px;
	filter: brightness(0) invert(1);
}

.final-cta__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.final-cta__content h2 {
	margin-bottom: 1rem;
}

.final-cta__content > p:last-child {
	max-width: 660px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
}

.final-cta__actions {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.8rem;
	justify-items: center;
}

.final-cta__phone {
	display: inline-flex;
	align-items: baseline;
	gap: 0.35rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.8rem;
	text-decoration: none;
}

.final-cta__phone strong {
	color: #fff;
}

.site-footer {
	padding: 5rem 0 1.5rem;
	background: #071f12;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr repeat(3, 0.7fr);
	gap: clamp(2rem, 5vw, 5rem);
}

.site-footer__brand img {
	width: 205px;
	margin-bottom: 1.5rem;
}

.site-footer__brand p {
	max-width: 310px;
	font-size: 0.86rem;
}

.site-footer__heading {
	margin: 0 0 1.1rem;
	color: #fff;
	font-family: inherit;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__links {
	display: grid;
	gap: 0.6rem;
	font-size: 0.84rem;
}

.site-footer__links a {
	text-decoration: none;
}

.site-footer__links a:hover {
	color: #fff;
	text-decoration: underline;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 4rem;
	padding-top: 1.3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.75rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom a {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 700;
	text-decoration-color: rgba(255, 255, 255, 0.4);
	text-underline-offset: 0.2em;
}

.site-footer__bottom a:hover {
	color: #fff;
	text-decoration-color: currentColor;
}

/* Service pages */
.breadcrumbs {
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.breadcrumbs .container {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	min-height: 48px;
	color: var(--muted);
	font-size: 0.78rem;
}

.breadcrumbs a {
	color: var(--brand-dark);
	font-weight: 700;
	text-decoration: none;
}

.service-hero {
	position: relative;
	overflow: hidden;
	padding-top: clamp(2.25rem, 3.5vw, 3.5rem);
	background:
		radial-gradient(circle at 4% 16%, rgba(16, 165, 82, 0.1), transparent 25rem),
		linear-gradient(180deg, #fbfdfb, #fff);
}

.service-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.service-hero h1 {
	max-width: 800px;
	font-size: var(--heading-h1);
}

.service-hero__microcopy {
	max-width: 640px;
	margin: 1.35rem 0 0;
	color: var(--muted);
	font-size: 0.86rem;
}

.service-hero__media {
	position: relative;
	min-height: 570px;
	margin: 0;
}

.service-hero__media::before {
	position: absolute;
	top: -22px;
	right: -22px;
	width: 118px;
	height: 118px;
	background-image: radial-gradient(var(--brand) 1.5px, transparent 1.5px);
	background-size: 12px 12px;
	content: "";
	opacity: 0.42;
}

.service-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px 3px 84px 3px;
	box-shadow: var(--shadow);
	object-fit: cover;
	object-position: center;
}

.service-hero__badge {
	position: absolute;
	right: -24px;
	bottom: 28px;
	display: grid;
	gap: 0.15rem;
	max-width: 315px;
	padding: 1.15rem 1.3rem;
	border-left: 4px solid var(--brand);
	background: #fff;
	box-shadow: 0 18px 50px rgba(12, 45, 26, 0.16);
}

.service-hero__badge strong {
	color: var(--brand-dark);
	font-size: 1rem;
}

.service-hero__badge span {
	color: var(--muted);
	font-size: 0.78rem;
}

.service-image-label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	background: rgba(8, 38, 21, 0.82);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.scenario-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	margin-top: 3.5rem;
}

.scenario-card {
	position: relative;
	display: flex;
	min-height: 310px;
	padding: 2.2rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: #fff;
	flex-direction: column;
	transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.scenario-card:hover {
	border-color: rgba(16, 165, 82, 0.45);
	box-shadow: 0 18px 45px rgba(12, 45, 26, 0.08);
	transform: translateY(-4px);
}

.scenario-card--accent {
	border-color: var(--brand-dark);
	background: var(--brand-dark);
	color: #fff;
}

.scenario-card__number {
	display: grid;
	width: 46px;
	height: 46px;
	margin-bottom: auto;
	border: 1px solid rgba(16, 165, 82, 0.35);
	border-radius: 50%;
	color: var(--brand-dark);
	font-size: 0.78rem;
	font-weight: 850;
	place-items: center;
}

.scenario-card--accent .scenario-card__number {
	border-color: rgba(255, 255, 255, 0.25);
	color: #bfe8ce;
}

.scenario-card h3 {
	margin-top: 2.4rem;
}

.scenario-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.scenario-card--accent p {
	color: #cfe0d5;
}

.scenario-card .text-link {
	margin-top: 1.4rem;
	color: #fff;
}

.service-scope__grid {
	display: grid;
	grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.service-scope__media {
	position: relative;
	min-height: 650px;
}

.service-scope__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px 52px 3px 3px;
	box-shadow: var(--shadow);
	object-fit: cover;
	object-position: center;
}

.service-scope__caption {
	position: absolute;
	right: -28px;
	bottom: 32px;
	display: grid;
	gap: 0.15rem;
	max-width: 300px;
	padding: 1rem 1.2rem;
	border-left: 4px solid var(--brand);
	background: #fff;
	box-shadow: var(--shadow);
}

.service-scope__caption span {
	color: var(--muted);
	font-size: 0.76rem;
}

.scope-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem 1.4rem;
	margin: 2rem 0 1.5rem;
	padding: 0;
	list-style: none;
}

.scope-list li {
	position: relative;
	padding: 0.8rem 0 0.8rem 1.8rem;
	border-bottom: 1px solid var(--line);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.45;
}

.scope-list li::before {
	position: absolute;
	top: 0.98rem;
	left: 0;
	display: grid;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 0.68rem;
	content: "✓";
	place-items: center;
}

.service-scope__note {
	margin-bottom: 0;
	padding: 1rem 1.1rem;
	border-left: 3px solid var(--brand);
	background: #fff;
	color: var(--muted);
	font-size: 0.84rem;
}

.method-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 3.5rem;
}

.method-grid article {
	padding: 2rem 1.6rem;
	border-top: 3px solid var(--brand);
	background: var(--canvas);
}

.method-grid__icon {
	display: inline-flex;
	margin-bottom: 2rem;
	color: var(--brand);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.method-grid article p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.service-benefits__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
	align-items: start;
	gap: clamp(3rem, 8vw, 8rem);
}

.service-benefits__intro {
	position: sticky;
	top: 120px;
}

.service-benefits__intro .button {
	margin-top: 1.2rem;
}

.service-projects-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	grid-template-rows: repeat(2, minmax(230px, 1fr));
	gap: 1rem;
	margin-top: 3.5rem;
}

.service-project {
	position: relative;
	overflow: hidden;
	min-height: 270px;
	margin: 0;
	border-radius: var(--radius-sm);
	background: #153b26;
}

.service-project--wide {
	grid-row: span 2;
}

.service-project img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

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

.service-project::after {
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(transparent, rgba(4, 26, 13, 0.84));
	content: "";
}

.service-project figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: grid;
	gap: 0.2rem;
	padding: 1.4rem;
}

.service-project figcaption span {
	color: #a9e2bd;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.service-project figcaption strong {
	font-size: 1.05rem;
}

.service-pricing__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 8rem);
}

.pricing-factors {
	padding: clamp(1.8rem, 4vw, 3rem);
	border-radius: var(--radius-md);
	background: var(--brand-deep);
	color: #fff;
	box-shadow: var(--shadow);
}

.pricing-factors h3 {
	margin-bottom: 1.4rem;
	font-size: 1.35rem;
}

.pricing-factors ul {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pricing-factors li {
	position: relative;
	padding: 0.65rem 0 0.65rem 1.65rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: #d7e7dd;
	font-size: 0.88rem;
}

.pricing-factors li::before {
	position: absolute;
	top: 0.72rem;
	left: 0;
	color: #65cf8a;
	content: "+";
	font-weight: 900;
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem;
	margin-top: 3.5rem;
}

.choice-card {
	padding: clamp(1.8rem, 4vw, 3rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: #fff;
}

.choice-card--paint {
	border-color: var(--brand-dark);
	background: var(--brand-dark);
	color: #fff;
}

.choice-card__heading {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.7rem;
}

.choice-card__heading span {
	display: grid;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 0.74rem;
	font-weight: 850;
	place-items: center;
}

.choice-card--paint .choice-card__heading span {
	background: rgba(255, 255, 255, 0.12);
	color: #c5efd3;
}

.choice-card__heading h3 {
	margin: 0;
	font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.choice-card ul,
.painting-list {
	display: grid;
	gap: 0.8rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.choice-card li,
.painting-list li {
	position: relative;
	padding: 0.75rem 0 0.75rem 1.8rem;
	border-bottom: 1px solid var(--line);
	color: #3e5045;
	font-size: 0.92rem;
}

.choice-card--paint li {
	border-color: rgba(255, 255, 255, 0.14);
	color: #d8e8de;
}

.choice-card li::before,
.painting-list li::before {
	position: absolute;
	top: 0.78rem;
	left: 0;
	color: var(--brand);
	content: "✓";
	font-weight: 900;
}

.choice-note {
	max-width: 900px;
	margin: 2rem auto 0;
	padding: 1rem 1.2rem;
	border-left: 3px solid var(--brand);
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 0.9rem;
	font-weight: 650;
	text-align: center;
}

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

.contaminant-grid article {
	padding: 1.6rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: #fff;
}

.contaminant-grid article > span {
	display: inline-flex;
	margin-bottom: 1.5rem;
	color: var(--brand);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.contaminant-grid article p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.88rem;
}

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

.painting-section__grid {
	display: grid;
	grid-template-columns: minmax(440px, 1fr) minmax(0, 0.9fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.painting-section__media {
	position: relative;
	overflow: hidden;
	min-height: 590px;
	margin: 0;
	border-radius: 3px 52px 3px 3px;
	background: #173b27;
}

.painting-section__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.painting-section__content .section-lead {
	color: #d5e4da;
}

.painting-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 2rem;
}

.painting-list li {
	border-color: rgba(255, 255, 255, 0.14);
	color: #d7e7dd;
}

.future-gallery {
	padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.future-gallery__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(2rem, 6vw, 6rem);
}

.future-gallery__panel h2 {
	max-width: 850px;
	font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.future-gallery__panel p:last-child {
	max-width: 800px;
	margin-bottom: 0;
	color: #cfe0d5;
}

/* Contact and quote page */
.contact-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4.5rem, 8vw, 7.5rem);
	background:
		radial-gradient(circle at 88% 18%, rgba(16, 165, 82, 0.15), transparent 27rem),
		linear-gradient(145deg, #fbfdfb 0%, #f0f8f3 100%);
}

.contact-hero::after {
	position: absolute;
	right: -110px;
	bottom: -230px;
	width: 480px;
	height: 480px;
	border: 1px solid rgba(16, 165, 82, 0.18);
	border-radius: 50%;
	content: "";
}

.contact-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.contact-hero h1 {
	max-width: 900px;
	font-size: var(--heading-h1);
}

.contact-hero__note {
	padding: clamp(2rem, 4vw, 3rem);
	border-top: 5px solid var(--brand);
	border-radius: 3px 3px var(--radius-lg) 3px;
	background: #fff;
	box-shadow: var(--shadow);
}

.contact-hero__note > strong {
	display: block;
	margin-bottom: 0.65rem;
	color: var(--brand-dark);
	font-size: 1.35rem;
}

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

.check-list {
	display: grid;
	gap: 0.75rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 1.8rem;
	font-weight: 700;
}

.check-list li::before {
	position: absolute;
	top: 0.12rem;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 0.72rem;
	content: "✓";
	place-items: center;
}

.contact-info-strip {
	border-block: 1px solid var(--line);
	background: #fff;
}

.contact-info-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.contact-info-strip__grid > div {
	display: grid;
	gap: 0.12rem;
	padding: 1.5rem 2rem;
	border-right: 1px solid var(--line);
}

.contact-info-strip__grid > div:first-child {
	border-left: 1px solid var(--line);
}

.contact-info-strip strong {
	color: var(--brand-dark);
	font-size: 1.05rem;
}

.contact-info-strip span {
	color: var(--muted);
	font-size: 0.78rem;
}

.contact-form-section {
	background: var(--canvas);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.6fr);
	align-items: start;
	gap: clamp(2rem, 4vw, 3.5rem);
}

.quote-form-card {
	padding: clamp(2rem, 3vw, 3rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: 0 16px 55px rgba(12, 45, 26, 0.08);
}

.quote-form-card h2 {
	font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.quote-form-card__intro {
	max-width: 740px;
	margin-bottom: 2.2rem;
	color: var(--muted);
	font-size: 1.04rem;
}

.quote-form-shell,
.wpcf7-form {
	display: grid;
	gap: 1.35rem;
}

.quote-form-shell fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.quote-form-shell legend,
.quote-form-shell__heading {
	margin-bottom: 0.8rem;
	font-size: 1rem;
	font-weight: 800;
}

.quote-services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.quote-services .wpcf7-form-control-wrap,
.quote-services .wpcf7-checkbox {
	grid-column: 1 / -1;
	width: 100%;
}

.quote-services > p,
.quote-upload__fields > p {
	display: contents;
}

.quote-services br,
.quote-upload__fields br {
	display: none;
}

.quote-services .wpcf7-checkbox {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.quote-services .wpcf7-list-item {
	margin: 0;
}

.quote-services label {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	height: 100%;
	min-height: 64px;
	padding: 1rem 1.1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: #fbfdfb;
	font-size: 0.89rem;
	font-weight: 650;
	line-height: 1.4;
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition);
}

.quote-services .wpcf7-list-item:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.quote-services label:hover,
.quote-services label:has(input:checked) {
	border-color: var(--brand);
	background: var(--brand-soft);
}

.quote-services input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 0.1rem;
	accent-color: var(--brand-dark);
}

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

.quote-field,
.quote-field--full {
	display: grid;
	gap: 0.45rem;
}

.quote-field--full {
	grid-column: 1 / -1;
}

.quote-field > label,
.quote-field--full > label,
.quote-upload__label {
	font-size: 0.88rem;
	font-weight: 750;
}

.quote-field__help,
.quote-form-note {
	margin: 0;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.5;
}

.wpcf7-form-control-wrap {
	display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select,
.quote-form-shell input[type="text"],
.quote-form-shell input[type="email"],
.quote-form-shell input[type="tel"],
.quote-form-shell textarea {
	width: 100%;
	min-height: 54px;
	padding: 0.8rem 0.95rem;
	border: 1px solid #bdcbc1;
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.wpcf7 textarea,
.quote-form-shell textarea {
	height: 150px;
	min-height: 150px;
	max-height: 320px;
	resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus,
.quote-form-shell input:focus,
.quote-form-shell textarea:focus {
	border-color: var(--brand-dark);
	box-shadow: 0 0 0 3px rgba(16, 165, 82, 0.14);
	outline: 0;
}

.quote-upload {
	display: block;
	padding: 1.2rem;
	border: 1px dashed #99b5a2;
	border-radius: var(--radius-sm);
	background: #f8fcf9;
}

.quote-upload > legend {
	float: left;
	width: 100%;
	margin: 0 0 0.45rem;
	padding: 0;
}

.quote-upload > legend + .quote-field__help {
	clear: both;
	margin-bottom: 0.9rem;
}

.quote-upload__fields {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
	width: 100%;
}

.quote-upload__fields > label,
.quote-upload__field {
	display: grid;
	min-width: 0;
	gap: 0.35rem;
	padding: 0.75rem;
	border: 1px solid transparent;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.62);
	font-size: 0.8rem;
	font-weight: 750;
	transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.quote-upload__field > label {
	display: grid;
	gap: 0.35rem;
}

.quote-upload__fields > label:focus-within,
.quote-upload__fields > label.has-file,
.quote-upload__field:focus-within,
.quote-upload__field.has-file {
	border-color: var(--brand);
	background: #fff;
	box-shadow: 0 8px 24px rgba(12, 45, 26, 0.08);
}

.quote-upload__field.has-file-error {
	border-color: #a22626;
	background: #fff8f8;
}

.quote-upload input[type="file"] {
	width: 100%;
	padding: 0.55rem;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--muted);
	font-size: 0.76rem;
}

.quote-upload input[type="file"]::file-selector-button {
	margin-right: 0.5rem;
	padding: 0.45rem 0.6rem;
	border: 0;
	border-radius: 6px;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-weight: 750;
	cursor: pointer;
}

.quote-upload__status {
	min-height: 1.1em;
	color: var(--brand-dark);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.4;
}

.quote-upload__field.has-file-error .quote-upload__status {
	color: #8b1f1f;
}

.quote-upload__actions {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
}

.quote-upload__remove {
	flex: 0 0 auto;
	padding: 0.25rem 0.45rem;
	border: 0;
	border-radius: 5px;
	background: transparent;
	color: #8b1f1f;
	font-size: 0.72rem;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	cursor: pointer;
}

.quote-upload__remove[hidden] {
	display: none;
}

.quote-upload__remove:hover {
	background: #fdecec;
}

.quote-consent .wpcf7-list-item,
.quote-consent label {
	margin: 0;
}

.quote-consent label {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 0.7rem;
	align-items: start;
	color: #44554a;
	font-size: 0.8rem;
	line-height: 1.55;
}

.quote-consent input {
	width: 18px;
	height: 18px;
	margin-top: 0.12rem;
	accent-color: var(--brand-dark);
}

.quote-form-hp {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.quote-turnstile {
	min-height: 1px;
}

.wpcf7-submit,
.quote-form-shell .quote-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0.9rem 1.5rem;
	border: 2px solid var(--brand-dark);
	border-radius: var(--radius-sm);
	background: var(--brand-dark);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition);
}

.wpcf7-submit:hover,
.quote-form-shell .quote-form-submit:hover {
	border-color: var(--brand-deep);
	background: var(--brand-deep);
}

.wpcf7-submit:disabled {
	opacity: 0.58;
	cursor: wait;
}

.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
	border-color: #a22626;
}

.wpcf7-not-valid-tip {
	margin-top: 0.3rem;
	color: #a22626;
	font-size: 0.78rem;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 0.85rem 1rem;
	border-width: 1px;
	border-radius: 8px;
}

.wpcf7-spinner {
	margin: 0 0.5rem;
}

.quote-form-disclaimer {
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.55;
}

.quote-form-setup-notice,
.quote-form-fallback {
	padding: 1rem 1.2rem;
	border: 1px solid #e3b341;
	border-radius: 8px;
	background: #fff9e8;
}

.quote-form-setup-notice p,
.quote-form-fallback p {
	margin: 0.3rem 0 0;
}

.contact-sidebar {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 1.2rem;
}

.contact-card {
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: #fff;
}

.contact-card--dark {
	border-color: var(--brand-deep);
	background: var(--brand-deep);
	color: #fff;
}

.contact-card h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-card > p:not(.eyebrow) {
	color: #cfe0d5;
}

.contact-card__link {
	display: grid;
	gap: 0.1rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	text-decoration: none;
}

.contact-card__link span {
	color: #a9c5b3;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-card__link strong {
	overflow-wrap: anywhere;
	font-size: 1rem;
}

.contact-photo-tips {
	display: grid;
	gap: 0.7rem;
	margin: 1.2rem 0;
	padding-left: 1.4rem;
	color: #34463b;
}

.contact-card .contact-card__small {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.78rem;
}

.contact-area__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
	align-items: start;
	gap: clamp(3rem, 8vw, 8rem);
}

.contact-area__grid .button {
	margin-top: 1rem;
}

.mobile-actions {
	display: none;
}

@media (max-width: 1120px) {
	.container {
		width: min(calc(100% - 40px), var(--container));
	}

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

	.site-nav {
		gap: 0.8rem;
	}

	.site-nav__actions .site-nav__phone {
		display: none;
	}

	.hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
		gap: 3rem;
	}

	.hero__image-wrap,
	.hero__image-wrap img {
		min-height: 500px;
	}

	.why-us__media-caption {
		right: -10px;
	}
}

@media (max-width: 920px) {
	.site-header__inner {
		min-height: 70px;
	}

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

	.menu-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		top: 70px;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		flex: none;
		height: calc(100dvh - 70px);
		overflow-y: auto;
		padding: 1.25rem 20px 7rem;
		background: #fff;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity var(--transition), transform var(--transition);
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-nav__list {
		display: block;
	}

	.site-nav__list > li {
		border-bottom: 1px solid var(--line);
	}

	.site-nav__list > li > a,
	.nav-dropdown__trigger > a {
		min-height: 58px;
		font-size: 1rem;
	}

	.nav-dropdown__trigger {
		justify-content: space-between;
	}

	.nav-dropdown__trigger button {
		width: 48px;
		height: 58px;
	}

	.nav-dropdown__menu {
		position: static;
		display: none;
		width: auto;
		padding: 0 0 0.8rem 0.75rem;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.nav-dropdown.is-open .nav-dropdown__menu {
		display: block;
	}

	.nav-dropdown__menu a {
		padding: 0.75rem;
	}

	.site-nav__actions {
		display: grid;
		margin-top: 1.5rem;
	}

	.site-nav__actions .site-nav__phone {
		display: flex;
		padding: 0.8rem 1rem;
		text-align: center;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.hero__grid,
	.why-us__grid,
	.about__grid,
	.coverage__grid {
		grid-template-columns: 1fr;
	}

	.hero__content {
		max-width: 760px;
	}

	.hero__media {
		width: min(100%, 720px);
		padding-left: 0;
	}

	.hero__note {
		right: -8px;
	}

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

	.trust-strip__grid > div:nth-child(2) {
		border-right: 1px solid var(--line);
	}

	.trust-strip__grid > div:nth-child(3) {
		border-left: 1px solid var(--line);
		border-top: 1px solid var(--line);
	}

	.trust-strip__grid > div:nth-child(4) {
		border-top: 1px solid var(--line);
	}

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

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

	.service-card,
	.service-card--wide {
		grid-column: span 1;
	}

	.service-card:last-child {
		grid-column: 1 / -1;
	}

	.why-us__grid {
		gap: 4rem;
	}

	.why-us__media {
		width: min(100% - 20px, 680px);
		min-height: 520px;
	}

	.why-us__media img {
		min-height: 520px;
	}

	.process-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1rem;
	}

	.process-list::before {
		display: none;
	}

	.about__grid {
		gap: 3rem;
	}

	.coverage__grid {
		gap: 3rem;
	}

	.coverage-map {
		min-height: 400px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	body {
		padding-bottom: 72px;
	}

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

	.section {
		padding-block: 4.5rem;
	}

	h1 {
		font-size: var(--heading-h1);
	}

	.hero h1 {
		font-size: var(--heading-h1);
		letter-spacing: -0.035em;
		line-height: 1.08;
	}

	h2 {
		font-size: clamp(1.85rem, 9vw, 2.7rem);
	}

	.button-group {
		display: grid;
	}

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

	.hero {
		padding-top: 3.5rem;
	}

	.hero__grid {
		gap: 2.5rem;
	}

	.hero__media {
		padding-bottom: 2.25rem;
	}

	.hero__media::before {
		right: -12px;
	}

	.hero__image-wrap,
	.hero__image-wrap img {
		min-height: 380px;
	}

	.hero__image-wrap {
		border-radius: 3px 3px 48px 3px;
	}

	.hero__note {
		right: 8px;
		bottom: 0;
		left: 20px;
		max-width: none;
	}

	.trust-strip__grid > div {
		padding: 1.2rem 1rem;
	}

	.services-grid,
	.process-list,
	.about-stats,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.service-card,
	.service-card--wide,
	.service-card:last-child {
		grid-column: auto;
		min-height: 330px;
	}

	.why-us__media {
		min-height: 430px;
	}

	.why-us__media img {
		min-height: 430px;
	}

	.why-us__media-caption {
		right: -12px;
		bottom: 20px;
		left: 20px;
	}

	.benefits-list article {
		grid-template-columns: 34px 1fr;
	}

	.process-list {
		gap: 0;
	}

	.process-list li {
		display: grid;
		grid-template-columns: 52px 1fr;
		gap: 0 1rem;
		padding: 1.3rem 0;
		border-top: 1px solid var(--line);
		text-align: left;
	}

	.process-list li:last-child {
		border-bottom: 1px solid var(--line);
	}

	.process-list__number {
		grid-row: span 2;
		width: 52px;
		height: 52px;
		margin: 0;
	}

	.process-list h3 {
		margin-bottom: 0.35rem;
	}

	.projects-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.project-card,
	.project-card--large {
		grid-row: auto;
		min-height: 340px;
	}

	.about-stats div {
		min-height: 140px;
	}

	.coverage-map {
		min-height: 360px;
	}

	.coverage-map__city {
		font-size: 0.74rem;
	}

	.coverage-map__city--warsaw {
		left: 8%;
	}

	.coverage-map__city--bialystok {
		right: 5%;
	}

	.coverage-map__badge {
		top: 57.5%;
		left: 52%;
		width: 90px;
		height: 90px;
	}

	.faq__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.faq__intro {
		position: static;
	}

	.final-cta__panel {
		grid-template-columns: 1fr;
		gap: 1.7rem;
		padding: 2.3rem 1.5rem;
	}

	.final-cta__actions {
		justify-items: stretch;
	}

	.final-cta__phone {
		text-align: center;
	}

	.site-footer {
		padding-top: 4rem;
	}

	.site-footer__grid {
		gap: 2.5rem;
	}

	.site-footer__bottom {
		display: grid;
		margin-top: 3rem;
	}

	.mobile-actions {
		position: fixed;
		right: 10px;
		bottom: max(8px, env(safe-area-inset-bottom));
		left: 10px;
		z-index: 99;
		display: grid;
		grid-template-columns: 0.9fr 1.1fr;
		gap: 7px;
		padding: 6px;
		border: 1px solid rgba(11, 85, 43, 0.12);
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.94);
		box-shadow: 0 12px 34px rgba(5, 29, 15, 0.22);
		backdrop-filter: blur(12px);
		transition: transform var(--transition);
	}

	.page-contact {
		padding-bottom: 0;
	}

	.mobile-actions.is-hidden {
		transform: translateY(100%);
	}

	.mobile-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.4rem;
		min-height: 44px;
		padding: 0.55rem 0.65rem;
		border-radius: 11px;
		font-size: 0.8rem;
		font-weight: 800;
		text-decoration: none;
	}

	.mobile-actions__call {
		border: 1px solid rgba(11, 85, 43, 0.16);
		background: #f8fcf9;
		box-shadow: 0 4px 12px rgba(5, 29, 15, 0.08);
		color: var(--brand-dark);
	}

	.mobile-actions__call svg {
		width: 18px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 1.7;
	}

	.mobile-actions__quote {
		background: var(--brand-dark);
		box-shadow: 0 7px 16px rgba(5, 65, 30, 0.25);
		color: #fff;
	}
}

@media (max-width: 920px) {
	.service-hero__grid,
	.service-scope__grid,
	.service-benefits__grid,
	.service-pricing__grid {
		grid-template-columns: 1fr;
	}

	.service-hero__media {
		min-height: 520px;
	}

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

	.scenario-card {
		min-height: 250px;
	}

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

	.service-benefits__intro {
		position: static;
	}

	.painting-section__grid,
	.future-gallery__panel {
		grid-template-columns: 1fr;
	}

	.painting-section__media {
		min-height: 520px;
	}

	.contact-hero__grid,
	.contact-layout,
	.contact-area__grid {
		grid-template-columns: 1fr;
	}

	.contact-hero__note {
		max-width: 650px;
	}

	.contact-info-strip__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-info-strip__grid > div:nth-child(3) {
		border-left: 1px solid var(--line);
	}

	.contact-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.breadcrumbs .container {
		overflow: hidden;
		white-space: nowrap;
	}

	.service-hero {
		padding-top: 3rem;
	}

	.service-hero__grid {
		gap: 2.5rem;
	}

	.service-hero__media {
		min-height: 390px;
	}

	.service-hero__media img {
		border-radius: 3px 3px 48px 3px;
	}

	.service-hero__badge {
		right: 8px;
		bottom: -20px;
		left: 20px;
		max-width: none;
	}

	.scenario-grid {
		margin-top: 2.5rem;
	}

	.scenario-card {
		min-height: 275px;
		padding: 1.5rem;
	}

	.service-scope__media {
		min-height: 450px;
	}

	.service-scope__caption {
		right: -10px;
		bottom: 20px;
		left: 20px;
	}

	.scope-list,
	.method-grid,
	.service-projects-grid,
	.choice-grid,
	.contaminant-grid,
	.method-grid--three,
	.painting-list {
		grid-template-columns: 1fr;
	}

	.choice-card {
		padding: 1.5rem;
	}

	.painting-section__media {
		min-height: 410px;
	}

	.future-gallery__panel .button {
		width: 100%;
	}

	.service-image-label {
		top: 0.7rem;
		left: 0.7rem;
	}

	.method-grid {
		margin-top: 2.5rem;
	}

	.service-projects-grid {
		grid-template-rows: none;
	}

	.service-project,
	.service-project--wide {
		grid-row: auto;
		min-height: 330px;
	}

	.contact-hero {
		padding-block: 3.5rem 4rem;
	}

	.contact-hero__grid {
		gap: 2.5rem;
	}

	.contact-hero__note,
	.quote-form-card {
		padding: 1.5rem;
	}

	.contact-info-strip__grid,
	.contact-sidebar,
	.quote-services,
	.quote-services .wpcf7-checkbox,
	.quote-field-grid,
	.quote-upload__fields {
		grid-template-columns: 1fr;
	}

	.contact-info-strip__grid > div,
	.contact-info-strip__grid > div:first-child,
	.contact-info-strip__grid > div:nth-child(3) {
		padding: 1rem 1.2rem;
		border-right: 1px solid var(--line);
		border-left: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}

	.contact-info-strip__grid > div:last-child {
		border-bottom: 0;
	}

	.quote-field--full {
		grid-column: auto;
	}

	.quote-upload input[type="file"] {
		font-size: 0.72rem;
	}
}

@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;
	}
}
