* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: #3a2f28;
	background: #faf7f0;
	line-height: 1.6;
}

h1, h2, h3 {
	font-family: Georgia, "Times New Roman", serif;
	margin: 0 0 12px;
	color: #2d4a2e;
}

a {
	color: #2d4a2e;
	text-decoration: none;
}

header {
	background: #faf7f0;
	border-bottom: 1px solid #e6ddc9;
	padding: 18px 32px;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo a {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
	font-weight: bold;
	color: #2d4a2e;
}

.logo .dot {
	color: #c98a2c;
}

nav a {
	font-weight: 600;
	color: #3a2f28;
	margin-left: 20px;
}

nav a.nav-cta {
	background: #c98a2c;
	color: #fff;
	padding: 8px 16px;
	border-radius: 6px;
	margin-left: 20px;
}

nav a.nav-cta:hover {
	background: #b3781f;
}

.hero {
	position: relative;
	min-height: 560px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 30, 15, 0.75) 0%, rgba(20, 30, 15, 0.25) 55%, rgba(20, 30, 15, 0.05) 100%);
}

.hero-content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 32px;
	color: #fff;
}

.hero-content h1 {
	color: #fff;
	font-size: 2.6rem;
	max-width: 700px;
}

.hero-content .tagline {
	font-size: 1.2rem;
	max-width: 560px;
	color: #f2ead9;
	margin: 0;
}

.section {
	padding: 56px 32px;
}

.section-content {
	max-width: 1200px;
	margin: 0 auto;
}

.section.intro {
	background: #fff;
	border-bottom: 1px solid #e6ddc9;
}

.breadcrumb {
	margin: 0 0 18px;
	font-size: 0.9rem;
	color: #8a7a63;
}

.breadcrumb a {
	color: #8a7a63;
	text-decoration: underline;
}

.section-content p:not(.breadcrumb) a,
.quick-answer a {
	color: #c98a2c;
	text-decoration: underline;
	font-weight: 600;
}

.section-content p:not(.breadcrumb) a:hover,
.quick-answer a:hover {
	color: #b3781f;
}

.section.intro h2 {
	font-size: 1.6rem;
	max-width: 780px;
}

.section.intro p {
	max-width: 780px;
	font-size: 1.05rem;
}

.section.categories h2 {
	font-size: 1.6rem;
	margin-bottom: 24px;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.category-card {
	background: #fff;
	border: 1px solid #e6ddc9;
	border-radius: 10px;
	padding: 22px 24px;
}

.category-card h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.category-card p {
	margin: 0;
	color: #5a4d40;
	font-size: 0.95rem;
}

.card-link {
	display: inline-block;
	margin-top: 10px;
	font-weight: 600;
	font-size: 0.9rem;
	color: #c98a2c;
}

.category-card.is-built {
	border-color: #c98a2c;
	border-width: 2px;
	overflow: hidden;
	padding: 0;
}

.category-card.is-built .card-thumb {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
}

.category-card.is-built .card-body {
	padding: 18px 20px;
}

.category-card .product-img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 12px;
}

.deterrent-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.deterrent-row {
	display: flex;
	gap: 24px;
	align-items: center;
	background: #fff;
	border: 1px solid #e6ddc9;
	border-radius: 10px;
	padding: 20px;
}

.deterrent-row .product-img {
	flex: 0 0 220px;
	width: 220px;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
	margin: 0;
}

.deterrent-row .product-img.square {
	flex: 0 0 160px;
	width: 160px;
	height: 160px;
}

.deterrent-content {
	flex: 1;
	min-width: 0;
}

.deterrent-content h3 {
	margin-bottom: 6px;
}

.deterrent-content p {
	margin: 0 0 10px;
	color: #5a4d40;
}

@media (max-width: 640px) {
	.deterrent-row {
		flex-direction: column;
		align-items: stretch;
	}
	.deterrent-row .product-img {
		width: 100%;
		flex: none;
		height: 180px;
	}
	.deterrent-row .product-img.square {
		height: 220px;
	}
}

.shop-link {
	display: inline-block;
	margin-top: 10px;
	padding: 8px 16px;
	background: #2d4a2e;
	color: #fff;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
}

.shop-link:hover {
	background: #23391f;
}

.quick-answer {
	background: #eef4ea;
	border-left: 4px solid #2d4a2e;
	border-radius: 6px;
	padding: 16px 20px;
	margin: 0 0 24px;
}

.quick-answer p {
	margin: 0;
	font-size: 1rem;
}

.quick-answer strong {
	color: #2d4a2e;
}

.source-citation {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
	padding: 14px 18px;
	background: #f2ead9;
	border-radius: 8px;
	border: 1px solid #e6ddc9;
}

.source-citation img {
	width: 40px;
	height: auto;
	flex: 0 0 auto;
}

.source-citation span {
	font-size: 0.9rem;
	color: #5a4d40;
}

.disclosure-note {
	font-size: 0.85rem;
	color: #8a7a63;
	font-style: italic;
	margin-top: 4px;
}

.coming-soon-note {
	margin-top: 28px;
	color: #8a7a63;
	font-style: italic;
}

.signup {
	background: #2d4a2e;
	color: #f2ead9;
	text-align: center;
	padding: 40px 32px;
}

.signup h2 {
	color: #fff;
	font-size: 1.4rem;
}

.signup p {
	margin: 0 0 18px;
	color: #d9d2bf;
}

.signup form {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	max-width: 480px;
	margin: 0 auto;
}

.signup input[type="email"] {
	flex: 1 1 260px;
	padding: 12px 14px;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
}

.signup input[type="submit"] {
	padding: 12px 22px;
	background: #c98a2c;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
}

.signup input[type="submit"]:hover {
	background: #b3781f;
}

footer {
	background: #2d4a2e;
	color: #d9d2bf;
	text-align: center;
	padding: 24px 32px;
	font-size: 0.9rem;
}

footer a {
	color: #f2ead9;
}

@media (max-width: 640px) {
	.hero-content h1 { font-size: 1.9rem; }
	.hero { min-height: 420px; }
}

/* Spec comparison bars (grass requirement levels) */
.spec-panel {
	background: #fff;
	border: 1px solid #e6ddc9;
	border-radius: 10px;
	padding: 20px 24px;
	margin: 20px 0;
}

.spec-panel h3, .spec-panel h4 {
	margin: 0 0 16px;
	color: #2d4a2e;
}

.spec-row {
	margin-bottom: 14px;
}

.spec-row:last-child {
	margin-bottom: 0;
}

.spec-row-top {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 6px;
	gap: 10px;
}

.spec-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #5a4d40;
}

.spec-track {
	width: 100%;
	height: 10px;
	background: #f0ebdd;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.spec-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: #c98a2c;
	border-radius: 5px;
}

.spec-range {
	position: absolute;
	top: 0;
	height: 100%;
	background: #2d4a2e;
	border-radius: 5px;
}

.spec-fill.sun {
	background: #d97e2c;
}

.spec-fill.water {
	background: #3d7a9e;
}

.spec-range.mowing {
	background: #2d4a2e;
}

.spec-range.ph {
	background: #7a4f8f;
}

.spec-value {
	font-size: 0.85rem;
	color: #5a4d40;
	text-align: right;
	white-space: nowrap;
}

.deterrent-row .spec-mini {
	flex: 0 0 200px;
	width: 200px;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.spec-mini .spec-row {
	margin-bottom: 10px;
}

.spec-mini .spec-label {
	font-size: 0.75rem;
}

.spec-mini .spec-value {
	font-size: 0.75rem;
}

.spec-mini .spec-track {
	height: 7px;
}

@media (max-width: 640px) {
	.deterrent-row .spec-mini {
		width: 100%;
		flex: none;
	}
	.spec-label, .spec-value { font-size: 0.8rem; }
}

.sitemap-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sitemap-list li {
	padding: 8px 0;
	border-bottom: 1px solid #e6ddc9;
}

.sitemap-list li:last-child {
	border-bottom: none;
}

.sitemap-list a {
	color: #2d4a2e;
	font-weight: 600;
	text-decoration: none;
}

.sitemap-list a:hover {
	color: #c98a2c;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-width: 520px;
}

.contact-form label {
	font-weight: 600;
	font-size: 0.9rem;
	color: #2d4a2e;
	margin-top: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	padding: 12px 14px;
	border: 1px solid #e6ddc9;
	border-radius: 6px;
	font-size: 1rem;
	font-family: inherit;
}

.contact-form textarea {
	resize: vertical;
}

.contact-form input[type="submit"] {
	margin-top: 16px;
	padding: 12px 22px;
	background: #c98a2c;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	align-self: flex-start;
}

.contact-form input[type="submit"]:hover {
	background: #b3781f;
}

.hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 84px;
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 52px;
	line-height: 1;
	text-decoration: none;
	opacity: 0.85;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	transition: opacity 0.2s ease, background 0.2s ease;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-nav:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.45);
	text-decoration: none;
}

.hero-nav-prev {
	left: 16px;
}

.hero-nav-next {
	right: 16px;
}

@media (max-width: 768px) {
	.hero-nav {
		width: 60px;
		height: 60px;
		font-size: 38px;
	}
}
