:root {
	--green-950: #0f2b20;
	--green-900: #16382b;
	--green-700: #1f5a42;
	--green-600: #2a7a58;
	--green-100: #e3efe8;
	--cream: #faf8f3;
	--ink: #24292c;
	--muted: #5c6b64;
	--line: #dfe6e1;
	--gold: #d9a441;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition: none !important; }
}
body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); }
a:focus-visible, button:focus-visible, summary:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 2px;
}
.skip-link {
	position: absolute;
	left: -9999px;
	background: var(--gold);
	color: var(--green-950);
	padding: .6rem 1rem;
	z-index: 100;
}
.skip-link:focus { left: .5rem; top: .5rem; }
.wrap { max-width: 68rem; margin: 0 auto; padding: 0 1.25rem; }

/* Header / nav */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--green-950);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 4rem;
	flex-wrap: wrap;
	padding-top: .4rem;
	padding-bottom: .4rem;
}
.brand {
	display: flex;
	align-items: center;
	gap: .65rem;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .02em;
}
.brand img { width: 34px; height: 42px; }
.site-nav a {
	color: #e8efe9;
	text-decoration: none;
	font-size: .95rem;
	padding: .35rem .6rem;
	border-radius: .35rem;
}
.site-nav a:hover { background: rgba(255,255,255,.12); }
.nav-call {
	background: var(--gold);
	color: var(--green-950) !important;
	font-weight: 700;
	white-space: nowrap;
}
.nav-call:hover { filter: brightness(1.08); }

/* Hero */
.hero {
	background: linear-gradient(160deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-700) 100%);
	color: #fff;
	text-align: center;
	padding: 4.5rem 0 5rem;
}
.hero img.logo { width: 120px; height: 148px; margin: 0 auto 1.5rem; }
.hero h1 {
	font-size: clamp(1.75rem, 4.5vw, 2.75rem);
	line-height: 1.2;
	max-width: 46rem;
	margin: 0 auto .9rem;
}
.hero p.lede {
	max-width: 44rem;
	margin: 0 auto 2rem;
	font-size: 1.1rem;
	color: #d7e4db;
}
.cta-row {
	display: flex;
	gap: .9rem;
	justify-content: center;
	flex-wrap: wrap;
}
.btn {
	display: inline-block;
	padding: .85rem 1.6rem;
	border-radius: .5rem;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05rem;
}
.btn-gold { background: var(--gold); color: var(--green-950); }
.btn-gold:hover { filter: brightness(1.08); }
.btn-ghost { border: 2px solid #ffffff88; color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero .sub-contact { margin-top: 1.6rem; font-size: .98rem; color: #b9cec1; }
.hero .sub-contact a { color: #fff; }

/* Sections */
section { padding: 3.75rem 0; }
section:nth-of-type(even) { background: #fff; }
h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--green-900);
	margin-bottom: .5rem;
}
.section-intro { max-width: 46rem; color: var(--muted); margin-bottom: 2rem; }
h3 { color: var(--green-700); margin-bottom: .4rem; font-size: 1.15rem; }

/* Services */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
	gap: 1.25rem;
}
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: .75rem;
	padding: 1.5rem;
}
section:nth-of-type(even) .card { background: var(--cream); }
.card p { font-size: .97rem; color: #3c4844; }
.photo-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
}
.photo-row figure { border-radius: .75rem; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.photo-row img { width: 100%; height: 15rem; object-fit: cover; }
.photo-row figcaption { padding: .6rem 1rem; font-size: .88rem; color: var(--muted); }

/* Steps */
.steps { list-style: none; counter-reset: step; display: grid; gap: 1rem; max-width: 46rem; }
.steps li {
	counter-increment: step;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: .75rem;
	padding: 1.1rem 1.25rem 1.1rem 4rem;
	position: relative;
}
section:nth-of-type(even) .steps li { background: var(--cream); }
.steps li::before {
	content: counter(step);
	position: absolute;
	left: 1.1rem;
	top: 1.05rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--green-700);
	color: #fff;
	font-weight: 700;
	display: grid;
	place-items: center;
}

/* Service area */
.area-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
	gap: 1.5rem;
}
.area-grid img { max-height: 11rem; width: auto; margin-bottom: .75rem; }
.towns { font-size: .95rem; color: #3c4844; }

/* FAQ */
.faq details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: .6rem;
	margin-bottom: .7rem;
}
section:nth-of-type(even) .faq details { background: var(--cream); }
.faq summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--green-900);
	padding: .95rem 1.15rem;
	list-style-position: inside;
}
.faq details p { padding: 0 1.15rem 1rem; color: #3c4844; }

/* Contact */
.contact {
	background: linear-gradient(160deg, var(--green-900), var(--green-700));
	color: #fff;
	text-align: center;
}
.contact h2 { color: #fff; }
.contact p { max-width: 42rem; margin: 0 auto 1.5rem; color: #d7e4db; }
.contact .phone-big {
	display: inline-block;
	font-size: clamp(1.6rem, 4vw, 2.3rem);
	font-weight: 800;
	color: #fff;
	text-decoration: none;
	margin-bottom: .4rem;
}
.contact .email-line a { color: #fff; }

/* Footer */
footer {
	background: var(--green-950);
	color: #b9cec1;
	padding: 2rem 0;
	text-align: center;
	font-size: .9rem;
}
footer .socials {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	margin-bottom: 1rem;
}
footer .socials a { color: #e8efe9; display: inline-flex; }
footer .socials svg { width: 26px; height: 26px; fill: currentColor; }
footer .socials a:hover { color: var(--gold); }
/* ---- Service-area pages ---- */
.breadcrumb {
	background: #fff;
	border-bottom: 1px solid var(--line);
	font-size: .88rem;
	padding: .55rem 0;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; }
.breadcrumb li + li::before { content: "›"; margin-right: .35rem; color: var(--muted); }
.breadcrumb a { color: var(--green-700); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--muted); }

.town-hero {
	background: linear-gradient(160deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-700) 100%);
	color: #fff;
	padding: 3rem 0 3.25rem;
}
.town-hero h1 {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	line-height: 1.2;
	max-width: 46rem;
	margin-bottom: .8rem;
}
.town-hero p.lede { max-width: 44rem; color: #d7e4db; margin-bottom: 1.6rem; }
.town-hero .cta-row { justify-content: flex-start; }

.cta-band {
	background: linear-gradient(160deg, var(--green-900), var(--green-700));
	color: #fff;
	border-radius: .9rem;
	padding: 1.75rem 1.5rem;
	text-align: center;
	margin-top: 2.5rem;
}
.cta-band p { color: #d7e4db; margin-bottom: 1rem; }
.cta-band strong { color: #fff; }

.service-bullets { margin: .75rem 0 0 1.25rem; color: #3c4844; }
.service-bullets li { margin-bottom: .35rem; }

.steps-mini { list-style: decimal; margin-left: 1.4rem; color: #3c4844; max-width: 44rem; }
.steps-mini li { margin-bottom: .4rem; }

.nearby-grid {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	margin-top: 1rem;
}
.nearby-grid a {
	display: inline-block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 2rem;
	padding: .45rem 1rem;
	font-size: .92rem;
	text-decoration: none;
	color: var(--green-700);
}
.nearby-grid a:hover { border-color: var(--green-600); background: var(--green-100); }

.towns a { color: var(--green-700); text-decoration: none; }
.towns a:hover { text-decoration: underline; }
.area-more { margin-top: 1.5rem; font-weight: 700; }

.county-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
	gap: .5rem .9rem;
	list-style: none;
	margin-top: .9rem;
}
.county-grid a { text-decoration: none; color: var(--green-700); }
.county-grid a:hover { text-decoration: underline; }
.county-block { margin-bottom: 2.25rem; }
.county-block p { color: var(--muted); max-width: 46rem; }

.h2-gap { margin-top: 2.5rem; }
.more-link { margin-top: .9rem; }
footer .footer-link { color: #e8efe9; }
