:root {
	--forest: #176b35;
	--forest-dark: #0e4624;
	--grass: #43b047;
	--mint: #e8f7df;
	--sun: #ffc94a;
	--sky: #dff5ff;
	--ink: #183528;
	--muted: #5f7568;
	--paper: #fffdf4;
	--line: #cfe6c5;
	--shadow: 0 18px 45px rgba(24, 53, 40, 0.14);
}

html {
	font-size: 16px;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
}

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

a:hover {
	color: var(--forest-dark);
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 253, 244, 0.96);
	border-bottom: 3px solid var(--line);
	backdrop-filter: blur(8px);
}

.navbar-toggler {
	border: 2px solid var(--forest);
	border-radius: 8px;
}

.brand-lockup {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--forest-dark);
	font-weight: 900;
}

.brand-lockup:hover {
	color: var(--forest-dark);
}

.brand-mark {
	display: inline-grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 3px solid var(--forest-dark);
	border-radius: 50%;
	background: var(--sun);
	box-shadow: 4px 4px 0 var(--forest);
	font-size: 1rem;
	line-height: 1;
}

.brand-name,
.brand-domain {
	display: block;
	line-height: 1.1;
}

.brand-name {
	font-size: 1.18rem;
}

.brand-domain {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
}

.site-nav .nav-link {
	color: var(--ink);
	font-weight: 800;
	padding: 0.55rem 0.85rem;
}

.site-nav .nav-link:hover {
	color: var(--forest);
}

.btn {
	border-radius: 8px;
	font-weight: 900;
}

.btn-forest {
	background: var(--forest);
	border-color: var(--forest);
	color: #fff;
	box-shadow: 4px 4px 0 var(--sun);
}

.btn-forest:hover,
.btn-forest:focus {
	background: var(--forest-dark);
	border-color: var(--forest-dark);
	color: #fff;
}

.btn-outline-forest {
	border: 2px solid var(--forest);
	color: var(--forest-dark);
	background: #fff;
}

.btn-outline-forest:hover,
.btn-outline-forest:focus {
	background: var(--mint);
	border-color: var(--forest-dark);
	color: var(--forest-dark);
}

.btn-sunshine {
	background: var(--sun);
	border: 2px solid var(--forest-dark);
	color: var(--forest-dark);
	box-shadow: 3px 3px 0 var(--forest);
}

.btn-sunshine:hover,
.btn-sunshine:focus {
	background: #ffe081;
	color: var(--forest-dark);
}

.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 16%, rgba(255, 201, 74, 0.45), transparent 22rem),
		linear-gradient(180deg, var(--sky), var(--mint) 76%, var(--paper));
}

.hero::after {
	content: "";
	position: absolute;
	right: -8vw;
	bottom: -5rem;
	width: 55vw;
	height: 12rem;
	background: rgba(67, 176, 71, 0.35);
	border-radius: 50% 0 0 0;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	gap: 2rem;
	align-items: center;
	min-height: 540px;
	padding-top: 2.5rem;
	padding-bottom: 3rem;
}

.hero-copy h1,
.page-hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--forest-dark);
	font-size: clamp(2.4rem, 5vw, 4.35rem);
	font-weight: 900;
	line-height: 0.95;
}

.hero-lede {
	max-width: 620px;
	margin: 1.1rem 0 0;
	color: var(--muted);
	font-size: 1.16rem;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}

.hero-art img {
	display: block;
	width: 100%;
	max-height: 430px;
	object-fit: cover;
	border: 5px solid #fff;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.eyebrow {
	margin: 0 0 0.8rem;
	color: var(--forest);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.section-pad {
	padding: 5rem 0;
}

.section-mint {
	background: var(--mint);
	border-top: 3px solid var(--line);
	border-bottom: 3px solid var(--line);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.section-heading h2,
.cta-content h2 {
	margin: 0;
	color: var(--forest-dark);
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 900;
	line-height: 1.05;
}

.section-heading p {
	color: var(--muted);
	font-size: 1.08rem;
}

.feature-grid,
.review-grid,
.info-grid,
.why-grid {
	display: grid;
	gap: 1.2rem;
}

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

.service-updates-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 60rem;
	margin: 0 auto;
}

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

.feature-card,
.review-card,
.info-card,
.why-grid article,
.contact-card,
.form-card,
.pricing-panel {
	border: 3px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 8px 8px 0 rgba(67, 176, 71, 0.14);
}

.feature-card,
.review-card,
.info-card,
.why-grid article,
.contact-card,
.form-card {
	padding: 1.5rem;
}

.feature-card h3,
.review-card strong,
.info-card h2,
.why-grid h2,
.contact-card h2,
.narrow-content h2 {
	color: var(--forest-dark);
	font-weight: 900;
}

.feature-card h3,
.info-card h2,
.why-grid h2,
.contact-card h2 {
	font-size: 1.25rem;
}

.feature-card p,
.review-card p,
.info-card p,
.why-grid p,
.contact-card p,
.narrow-content p {
	color: var(--muted);
	line-height: 1.65;
}

.town-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.town-list span {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0.45rem 0.9rem;
	border: 2px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--forest-dark);
	font-weight: 800;
}

.cta-band {
	padding: 3.5rem 0;
	background: var(--forest);
	color: #fff;
}

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

.cta-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.page-hero {
	background:
		radial-gradient(circle at 16% 20%, rgba(255, 201, 74, 0.42), transparent 20rem),
		linear-gradient(180deg, var(--sky), var(--mint));
	border-bottom: 3px solid var(--line);
}

.page-hero.compact {
	padding: 4.5rem 0;
}

.page-hero p:not(.eyebrow) {
	max-width: 700px;
	margin: 1rem 0 0;
	color: var(--muted);
	font-size: 1.2rem;
}

.pricing-panel {
	overflow: hidden;
}

.pricing-table {
	margin: 0;
}

.pricing-table thead th {
	background: var(--forest);
	color: #fff;
	border: 0;
	font-size: 1rem;
}

.pricing-table th,
.pricing-table td {
	padding: 1.1rem;
	border-color: var(--line);
}

.pricing-table tbody th {
	color: var(--forest-dark);
}

.fine-print {
	margin-top: 1.5rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.offer-highlight {
	display: inline-block;
	padding: 0.08rem 0.38rem;
	border-radius: 4px;
	background: var(--sun);
	color: var(--forest-dark);
	font-weight: 900;
}

.fine-print p {
	margin-bottom: 0.35rem;
}

.narrow-content {
	max-width: 820px;
}

.narrow-content h2 {
	margin-top: 2rem;
	font-size: 1.45rem;
}

.narrow-content h2:first-child {
	margin-top: 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
	gap: 1.5rem;
	align-items: start;
}

.form-label {
	color: var(--forest-dark);
	font-weight: 900;
}

.form-control {
	border: 2px solid var(--line);
	border-radius: 8px;
	padding: 0.8rem 0.9rem;
}

.form-control:focus {
	border-color: var(--grass);
	box-shadow: 0 0 0 0.25rem rgba(67, 176, 71, 0.2);
}

.validation-summary ul {
	margin-bottom: 1rem;
}

.center-action {
	margin-top: 2rem;
	text-align: center;
}

.site-footer {
	padding: 3rem 0 1.5rem;
	background: var(--forest-dark);
	color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
	display: block;
	color: #fff;
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--sun);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 2rem;
}

.footer-brand {
	margin-bottom: 0.7rem;
	font-size: 1.4rem;
	font-weight: 900;
}

.site-footer h2 {
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
	text-transform: uppercase;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.9rem;
}

@media (max-width: 991.98px) {
	.nav-phone {
		margin-top: 0.75rem;
	}

	.hero-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		min-height: auto;
		padding-top: 2.5rem;
	}

	.hero-copy h1,
	.page-hero h1 {
		font-size: clamp(2.25rem, 10vw, 3.8rem);
	}

	.feature-grid,
	.review-grid,
	.info-grid,
	.why-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767.98px) {
	.section-pad {
		padding: 3.5rem 0;
	}

	.feature-grid,
	.review-grid,
	.info-grid,
	.why-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-actions,
	.cta-content,
	.footer-bottom {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .btn,
	.cta-content .btn {
		width: 100%;
	}

	.hero-art img {
		max-height: none;
	}
}
