:root {
	--color-ink: #1c1f24;
	--color-muted: #5c6573;
	--color-paper: #ffffff;
	--color-soft: #f5f7fb;
	--color-line: #e3e7ef;
	--color-brand: #f2a22c;
	--color-brand-strong: #c96e08;
	--color-accent: #14756f;
	--shadow: 0 14px 35px rgba(28, 31, 36, 0.1);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

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

a:hover {
	color: var(--color-brand-strong);
}

.wrap {
	width: min(1120px, calc(100% - 40px));
	margin-inline: auto;
}

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

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

.skip-link:focus {
	z-index: 20;
	top: 12px;
	left: 12px;
	clip: auto;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--color-ink);
	color: #fff;
	border-radius: 6px;
}

.site-header {
	position: sticky;
	z-index: 10;
	top: 0;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--color-line);
	backdrop-filter: blur(12px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0;
}

.brand img {
	width: 58px;
	height: 58px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	font-weight: 650;
	color: #343b46;
}

.site-nav a,
.cities-menu summary {
	cursor: pointer;
	padding-block: 10px;
}

.cities-menu {
	position: relative;
}

.cities-menu summary {
	list-style: none;
}

.cities-menu summary::-webkit-details-marker {
	display: none;
}

.cities-menu summary::after {
	content: "▾";
	margin-left: 6px;
	font-size: 0.78rem;
}

.cities-menu div {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: grid;
	width: min(720px, calc(100vw - 40px));
	max-height: min(70vh, 620px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 8px;
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: auto;
}

.cities-menu:not([open]) div {
	display: none;
}

.cities-menu div a {
	padding: 8px 10px;
	border-radius: 6px;
	white-space: nowrap;
}

.cities-menu div a:hover {
	background: var(--color-soft);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 9px;
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: 6px;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--color-ink);
	border-radius: 99px;
}

.hero {
	padding: 44px 0 56px;
	background:
		linear-gradient(120deg, rgba(242, 162, 44, 0.11), rgba(20, 117, 111, 0.08)),
		var(--color-paper);
}

.local-hero {
	padding: 44px 0 54px;
	background:
		linear-gradient(120deg, rgba(20, 117, 111, 0.09), rgba(242, 162, 44, 0.12)),
		var(--color-paper);
}

.hero-grid,
.local-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
	align-items: center;
	gap: 42px;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--color-brand-strong);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

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

h1 {
	margin-bottom: 18px;
	font-size: clamp(2.05rem, 5vw, 3.55rem);
	line-height: 1.08;
}

h2 {
	margin-bottom: 14px;
	font-size: clamp(1.7rem, 3vw, 2.45rem);
	line-height: 1.14;
}

h3 {
	margin-bottom: 10px;
	font-size: 1.28rem;
	line-height: 1.25;
}

.hero-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.final-cta p {
	color: var(--color-muted);
	font-size: 1.06rem;
}

.hero-media {
	margin: 0;
}

.hero-media img {
	aspect-ratio: 865 / 378;
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	object-fit: cover;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	border: 2px solid transparent;
	border-radius: 6px;
	font-weight: 800;
	line-height: 1.1;
}

.btn-primary {
	background: var(--color-brand-strong);
	color: #fff;
}

.btn-primary:hover {
	background: #a95604;
	color: #fff;
}

.btn-secondary {
	background: #fff;
	color: var(--color-ink);
	border-color: var(--color-line);
}

.features-section,
.products-section,
.page-shell {
	padding: 58px 0;
}

.features-section {
	background: var(--color-paper);
}

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

.local-services {
	padding: 58px 0;
	background: var(--color-soft);
}

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

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

.feature-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 8px 20px rgba(28, 31, 36, 0.05);
}

.feature-card img {
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: cover;
}

.feature-card div {
	padding: 20px;
}

.feature-card strong {
	display: block;
	margin-bottom: 8px;
	color: var(--color-accent);
}

.feature-card p,
.product-card p {
	color: var(--color-muted);
}

.product-list {
	display: grid;
	gap: 18px;
}

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

.product-card,
.local-service {
	display: grid;
	grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.54fr);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 8px 20px rgba(28, 31, 36, 0.04);
}

.product-card img,
.local-service img {
	aspect-ratio: 1024 / 310;
	width: 100%;
	height: 100%;
	min-height: 245px;
	object-fit: cover;
}

.product-content,
.local-service div {
	padding: 24px;
}

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

.local-service img {
	min-height: auto;
}

.local-proof {
	padding: 58px 0;
	background: #fff;
}

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

.local-proof article {
	padding: 26px;
	background: var(--color-soft);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}

.check-list,
.step-list {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--color-muted);
}

.check-list li,
.step-list li {
	margin-bottom: 8px;
}

.product-content ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0;
	padding: 0;
	list-style: none;
}

.product-content li {
	padding: 6px 10px;
	background: #eef7f6;
	color: #145f5a;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 700;
}

.inline-link {
	color: var(--color-brand-strong);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.final-cta {
	padding: 56px 0;
	background: #1f2933;
	color: #fff;
}

.final-cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
}

.final-cta p,
.final-cta .eyebrow {
	color: #f7c978;
}

.site-footer {
	padding: 34px 0 20px;
	background: #111820;
	color: #d8dee7;
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
	gap: 28px;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	color: #fff;
	font-weight: 800;
}

.footer-logo img {
	width: 56px;
	height: 56px;
}

.site-footer p {
	max-width: 560px;
	color: #aeb8c6;
}

address {
	display: grid;
	gap: 8px;
	font-style: normal;
}

address a {
	color: #fff;
	font-weight: 700;
}

.footer-copy {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #aeb8c6;
	font-size: 0.92rem;
}

.content-page {
	padding: 42px;
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}

.entry-content a {
	color: var(--color-brand-strong);
	text-decoration: underline;
}

.post-summary {
	padding: 24px 0;
	border-bottom: 1px solid var(--color-line);
}

.archive-heading {
	margin-bottom: 12px;
}

.post-summary h2 {
	font-size: 1.5rem;
}

@media (max-width: 860px) {
	.header-inner {
		min-height: 72px;
	}

	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		top: 72px;
		right: 20px;
		left: 20px;
		display: none;
		align-items: stretch;
		padding: 14px;
		background: #fff;
		border: 1px solid var(--color-line);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}

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

	.cities-menu div {
		position: static;
		width: 100%;
		max-height: 52vh;
		grid-template-columns: 1fr;
		box-shadow: none;
	}

	.hero-grid,
	.local-hero-grid,
	.product-card,
	.local-service-grid,
	.local-proof-grid,
	.footer-inner,
	.final-cta-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 28px;
	}

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

	.product-card img {
		min-height: auto;
	}
}

@media (max-width: 560px) {
	.wrap,
	.narrow {
		width: min(100% - 28px, 1120px);
	}

	.brand span {
		display: none;
	}

	.hero,
	.features-section,
	.products-section,
	.final-cta,
	.page-shell {
		padding-block: 38px;
	}

	.content-page,
	.product-content,
	.feature-card div {
		padding: 18px;
	}

	.btn {
		width: 100%;
	}
}
