/* ==========================================================================
   8B Lawn and Garden — Main Stylesheet
   Brand Colors:
     Rich Green:  #2D5016
     Terracotta:  #C85A17
     Cream:       #F5F3F0
     Gray:        #8B8B8B
     Gold:        #D4A574
     Leaf Green:  #7FB069
   Fonts: Montserrat (headings), Open Sans (body), Lora (accents/quotes)
   ========================================================================== */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #333;
	background: #fff;
	overflow-x: hidden;
}

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

a {
	color: #2D5016;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #C85A17;
}

ul, ol {
	list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	line-height: 1.25;
	color: #2D5016;
	margin-bottom: 0.5em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
	margin-bottom: 1rem;
}

blockquote {
	font-family: 'Lora', Georgia, serif;
	font-style: italic;
	font-size: 1.2rem;
	color: #555;
}

.lead {
	font-size: 1.2rem;
	line-height: 1.8;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---- Layout ---- */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

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

.mt-3 {
	margin-top: 2rem;
}

.grid {
	display: grid;
	gap: 2rem;
}

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

/* ---- Buttons ---- */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 0.85rem 2rem;
	border-radius: 6px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.25s ease;
	border: 2px solid transparent;
}

.btn-primary {
	background: #C85A17;
	color: #fff;
	border-color: #C85A17;
}

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

.btn-secondary {
	background: transparent;
	color: #2D5016;
	border-color: #2D5016;
}

.btn-secondary:hover {
	background: #2D5016;
	color: #fff;
}

/* ---- Top Bar ---- */
.top-bar {
	background: #2D5016;
	color: #fff;
	font-size: 0.85rem;
	padding: 0.4rem 0;
}

.top-bar-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1.5rem;
}

.top-bar-item {
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.top-bar-item:hover {
	color: #D4A574;
}

.top-bar-icon {
	font-size: 1rem;
}

/* ---- Navigation ---- */
.nav-primary {
	background: #fff;
	border-bottom: 1px solid #e8e5e0;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled .nav-primary {
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 72px;
}

.site-branding {
	flex-shrink: 0;
}

.site-title-link {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	text-decoration: none;
}

.site-title {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	color: #2D5016;
}

.site-title-sub {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 0.85rem;
	color: #8B8B8B;
	font-weight: 400;
}

.nav-menu-wrapper {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.nav-menu li a {
	padding: 0.5rem 0.85rem;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: 'Montserrat', Arial, sans-serif;
	color: #333;
	border-radius: 4px;
	transition: color 0.2s, background 0.2s;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
	color: #2D5016;
	background: #F5F3F0;
}

.nav-cta {
	margin-left: 0.75rem;
	white-space: nowrap;
}

/* Hamburger */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	flex-direction: column;
	gap: 5px;
}

.hamburger-line {
	display: block;
	width: 26px;
	height: 3px;
	background: #2D5016;
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-active .hamburger-line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ---- Hero Sections ---- */
.hero-section {
	background: linear-gradient(135deg, #2D5016 0%, #3a6b1e 50%, #7FB069 100%);
	color: #fff;
	padding: 5rem 0 4rem;
}

.hero-home {
	padding: 6rem 0 5rem;
}

.hero-section h1 {
	color: #fff;
	margin-bottom: 1rem;
}

.hero-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 650px;
	margin: 0 auto 2rem;
	line-height: 1.7;
}

.hero-interior {
	padding: 3.5rem 0 3rem;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ---- Trust Bar ---- */
.trust-bar {
	background: #F5F3F0;
	padding: 1rem 0;
	border-bottom: 1px solid #e8e5e0;
}

.trust-bar-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.trust-item {
	font-weight: 600;
	font-size: 0.9rem;
	color: #2D5016;
	font-family: 'Montserrat', Arial, sans-serif;
}

.trust-divider {
	width: 4px;
	height: 4px;
	background: #D4A574;
	border-radius: 50%;
}

/* ---- Sections ---- */
section {
	padding: 4.5rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 2.5rem;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #C85A17;
	margin: 0.75rem auto 0;
	border-radius: 2px;
}

/* ---- Service Cards (front page) ---- */
.card-service {
	background: #fff;
	border: 1px solid #e8e5e0;
	border-radius: 10px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.card-service:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(45, 80, 22, 0.1);
}

.card-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

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

.card-link:hover {
	color: #2D5016;
}

/* ---- Difference Section ---- */
.section-difference {
	background: #F5F3F0;
}

.difference-text p {
	font-size: 1.05rem;
	color: #555;
	margin-bottom: 1.25rem;
}

.difference-text .btn-secondary {
	margin-top: 0.5rem;
}

/* ---- Package Cards (front page) ---- */
.section-packages {
	background: #fff;
}

.card-package {
	background: #fff;
	border: 2px solid #e8e5e0;
	border-radius: 12px;
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	transition: transform 0.3s, box-shadow 0.3s;
}

.card-package:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(45, 80, 22, 0.1);
}

.package-name {
	margin-bottom: 0.5rem;
}

.package-price {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #C85A17;
	margin-bottom: 1.5rem;
}

.package-features {
	text-align: left;
	margin-bottom: 2rem;
}

.package-features li {
	padding: 0.4rem 0;
	padding-left: 1.5rem;
	position: relative;
	font-size: 0.95rem;
	color: #555;
}

.package-features li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #7FB069;
	font-weight: 700;
}

.badge-popular {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #C85A17;
	color: #fff;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	font-family: 'Montserrat', Arial, sans-serif;
	white-space: nowrap;
}

/* ---- Story Section ---- */
.section-story {
	background: #2D5016;
	color: #fff;
}

.section-story .section-title {
	color: #fff;
}

.section-story .section-title::after {
	background: #D4A574;
}

.story-quote p {
	font-size: 1.25rem;
	color: #e8e5e0;
	max-width: 800px;
	margin: 0 auto 2rem;
	line-height: 1.8;
}

.section-story .btn-secondary {
	color: #fff;
	border-color: #fff;
}

.section-story .btn-secondary:hover {
	background: #fff;
	color: #2D5016;
}

/* ---- Testimonials ---- */
.section-testimonials {
	background: #F5F3F0;
}

.card-testimonial {
	background: #fff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.card-testimonial blockquote p {
	font-size: 1rem;
	color: #555;
	margin-bottom: 1rem;
}

.card-testimonial cite {
	font-style: normal;
	font-weight: 600;
	color: #2D5016;
	font-size: 0.9rem;
}

/* ---- Lead Magnet CTA ---- */
.cta-lead-magnet {
	background: linear-gradient(135deg, #C85A17 0%, #D4A574 100%);
	color: #fff;
}

.cta-lead-magnet h2 {
	color: #fff;
}

.cta-lead-magnet p {
	max-width: 600px;
	margin: 0 auto 1.5rem;
	opacity: 0.95;
}

.cta-form {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	max-width: 500px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.cta-input {
	flex: 1;
	min-width: 200px;
	padding: 0.85rem 1.25rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 1rem;
}

.cta-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.cta-input:focus {
	outline: none;
	border-color: #fff;
	background: rgba(255, 255, 255, 0.25);
}

.cta-lead-magnet .btn-primary {
	background: #fff;
	color: #C85A17;
	border-color: #fff;
}

.cta-lead-magnet .btn-primary:hover {
	background: #F5F3F0;
}

/* ---- Blog Cards ---- */
.card-post {
	background: #fff;
	border: 1px solid #e8e5e0;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.card-post:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(45, 80, 22, 0.1);
}

.card-post-image img,
.card-post-image .image-placeholder {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.card-post-content {
	padding: 1.5rem;
}

.card-post-date {
	font-size: 0.8rem;
	color: #8B8B8B;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.card-post-title {
	margin: 0.5rem 0;
}

.card-post-title a {
	color: #2D5016;
}

.card-post-title a:hover {
	color: #C85A17;
}

.card-post-excerpt {
	font-size: 0.95rem;
	color: #666;
}

.read-more {
	font-weight: 600;
	font-size: 0.9rem;
	color: #C85A17;
}

.placeholder-card {
	background: #F5F3F0;
	border-color: #e8e5e0;
}

/* ---- Section CTA (generic) ---- */
.section-cta {
	background: #F5F3F0;
	padding: 4rem 0;
}

.section-cta h2 {
	margin-bottom: 0.75rem;
}

.section-cta p {
	max-width: 600px;
	margin: 0 auto 1.5rem;
	color: #555;
}

/* ---- Image Placeholders ---- */
.image-placeholder {
	background: #e8e5e0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	color: #8B8B8B;
	font-style: italic;
}

/* ---- Pagination ---- */
.pagination {
	margin-top: 3rem;
	text-align: center;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	font-weight: 600;
	border: 1px solid #e8e5e0;
	color: #333;
	transition: all 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: #2D5016;
	color: #fff;
	border-color: #2D5016;
}

.pagination .prev,
.pagination .next {
	width: auto;
	padding: 0 1rem;
}

/* ---- Blog Index / Archive ---- */
.section-blog-index {
	padding-top: 3rem;
}

.no-posts {
	text-align: center;
	padding: 3rem 0;
	color: #8B8B8B;
}

/* ---- Single Post ---- */
.single-post-content {
	max-width: 800px;
	margin: 0 auto;
}

.post-meta {
	display: flex;
	gap: 1.5rem;
	color: #8B8B8B;
	font-size: 0.9rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.featured-image {
	margin-bottom: 2rem;
	border-radius: 10px;
	overflow: hidden;
}

.post-content {
	font-size: 1.05rem;
	line-height: 1.8;
}

.post-content h2 { margin-top: 2rem; }
.post-content h3 { margin-top: 1.5rem; }

.post-content ul,
.post-content ol {
	margin: 1rem 0 1rem 1.5rem;
	list-style: disc;
}

.post-content ol {
	list-style: decimal;
}

.post-content li {
	margin-bottom: 0.5rem;
}

.post-content img {
	border-radius: 8px;
	margin: 1.5rem 0;
}

.post-content a {
	color: #C85A17;
	text-decoration: underline;
}

.cta-banner {
	background: #F5F3F0;
	border-radius: 10px;
	padding: 2.5rem;
	text-align: center;
	margin-top: 3rem;
}

/* ---- Page Template ---- */
.page-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem 0;
}

.page-content h2 { margin-top: 2rem; }
.page-content h3 { margin-top: 1.5rem; }

.page-content ul,
.page-content ol {
	margin: 1rem 0 1rem 1.5rem;
	list-style: disc;
}

.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 0.5rem; }

/* ---- About Page ---- */
.section-about-origin {
	padding-top: 4rem;
}

.about-text h2 {
	margin-bottom: 1.25rem;
}

.about-text p {
	color: #555;
	line-height: 1.8;
}

.about-text-wide {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-text-wide p {
	color: #555;
	line-height: 1.8;
}

.section-about-pivot {
	background: #F5F3F0;
}

.section-about-name {
	padding: 4.5rem 0;
}

.section-about-name p {
	color: #555;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

/* Value Cards */
.card-value {
	background: #fff;
	border: 1px solid #e8e5e0;
	border-radius: 10px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.card-value:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(45, 80, 22, 0.08);
}

.section-about-values {
	background: #F5F3F0;
}

/* ---- Services Page ---- */
.service-detail-card {
	padding: 3rem 0;
	border-bottom: 1px solid #e8e5e0;
}

.service-detail-card:last-child {
	border-bottom: none;
}

.service-detail-text h2 {
	margin-bottom: 1rem;
}

.service-detail-text p {
	color: #555;
	margin-bottom: 1.25rem;
}

.service-features {
	margin: 1rem 0;
}

.service-features li {
	padding: 0.35rem 0 0.35rem 1.5rem;
	position: relative;
	color: #555;
}

.service-features li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #7FB069;
	font-weight: 700;
}

.service-price {
	margin-top: 1rem;
	font-weight: 600;
	color: #C85A17;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 0.95rem;
}

/* Process Steps */
.process-step {
	text-align: center;
	padding: 1.5rem;
}

.step-number {
	width: 56px;
	height: 56px;
	background: #2D5016;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1rem;
}

.section-process {
	background: #F5F3F0;
}

/* ---- Packages Page ---- */
.package-full-card {
	background: #fff;
	border: 2px solid #e8e5e0;
	border-radius: 12px;
	padding: 2.5rem;
	margin-bottom: 2.5rem;
	position: relative;
}

.package-full-card.package-featured {
	border-color: #C85A17;
	box-shadow: 0 8px 32px rgba(200, 90, 23, 0.12);
}

.package-full-header {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e8e5e0;
}

.package-price-large {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	color: #C85A17;
	margin: 0.5rem 0;
}

.package-tagline {
	color: #8B8B8B;
	font-size: 1.05rem;
}

.package-full-details h3,
.package-full-info h3 {
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
	color: #2D5016;
}

.package-addons {
	margin: 0.75rem 0 1.5rem;
}

.package-addons li {
	padding: 0.25rem 0;
	font-size: 0.9rem;
	color: #666;
}

.package-note {
	background: #F5F3F0;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 1.5rem;
}

/* Guarantees */
.card-guarantee {
	background: #fff;
	border: 1px solid #e8e5e0;
	border-radius: 10px;
	padding: 2rem 1.5rem;
	text-align: center;
}

.section-guarantees {
	background: #F5F3F0;
}

/* Comparison Table */
.table-responsive {
	overflow-x: auto;
	margin: 0 -1.5rem;
	padding: 0 1.5rem;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
	padding: 0.75rem 1rem;
	text-align: center;
	border-bottom: 1px solid #e8e5e0;
}

.comparison-table th {
	background: #2D5016;
	color: #fff;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
	text-align: left;
	font-weight: 600;
}

.comparison-table th small {
	display: block;
	font-weight: 400;
	opacity: 0.8;
	font-size: 0.75rem;
}

.col-featured {
	background: rgba(200, 90, 23, 0.06);
}

.comparison-table th.col-featured {
	background: #C85A17;
}

.comparison-table tbody tr:hover {
	background: #F5F3F0;
}

/* ---- Contact Page ---- */
.section-contact {
	padding-top: 3rem;
}

.contact-form-wrapper h2 {
	margin-bottom: 0.5rem;
}

.contact-form {
	margin-top: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
	color: #333;
}

.required {
	color: #C85A17;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #e8e5e0;
	border-radius: 6px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 0.95rem;
	color: #333;
	background: #fff;
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #7FB069;
}

.contact-info-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info-card {
	background: #F5F3F0;
	border-radius: 10px;
	padding: 2rem;
}

.contact-info-card h3 {
	margin-bottom: 1rem;
}

.contact-details li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #e8e5e0;
}

.contact-details li:last-child {
	border-bottom: none;
}

.contact-details strong {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #8B8B8B;
	margin-bottom: 0.15rem;
}

.contact-details a {
	color: #2D5016;
	font-weight: 600;
}

.service-area-list {
	column-count: 2;
	gap: 0.5rem;
}

.service-area-list li {
	padding: 0.2rem 0;
	color: #555;
}

/* FAQ Accordion */
.contact-faq h3 {
	margin-bottom: 1rem;
}

.faq-item {
	border-bottom: 1px solid #e8e5e0;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1rem 0;
	background: none;
	border: none;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	text-align: left;
}

.faq-icon {
	font-size: 1.25rem;
	color: #C85A17;
	transition: transform 0.3s;
	flex-shrink: 0;
	margin-left: 1rem;
}

.faq-item.is-open .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
	max-height: 300px;
	padding-bottom: 1rem;
}

.faq-answer p {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.7;
}

/* ---- Resources Page ---- */
.card-resource {
	background: #fff;
	border: 2px solid #e8e5e0;
	border-radius: 12px;
	padding: 2.5rem;
	transition: transform 0.3s, box-shadow 0.3s;
}

.card-resource:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(45, 80, 22, 0.08);
}

.resource-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.resource-includes {
	margin: 1rem 0 1.5rem;
}

.resource-includes li {
	padding: 0.3rem 0 0.3rem 1.5rem;
	position: relative;
	font-size: 0.9rem;
	color: #555;
}

.resource-includes li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #7FB069;
	font-weight: 700;
}

.resource-form {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.resource-form .cta-input {
	flex: 1;
	min-width: 150px;
	background: #F5F3F0;
	color: #333;
	border-color: #e8e5e0;
}

.resource-form .cta-input::placeholder {
	color: #8B8B8B;
}

.resource-form .cta-input:focus {
	border-color: #7FB069;
}

.section-resources-blog {
	background: #F5F3F0;
	padding: 3rem 0;
}

/* ---- 404 Page ---- */
.section-404 {
	padding: 3rem 0 5rem;
}

.section-404 .lead {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.section-404 .search-form {
	max-width: 500px;
	margin: 2rem auto;
}

.helpful-links {
	margin-top: 2.5rem;
}

.helpful-links h3 {
	margin-bottom: 0.75rem;
}

.helpful-links ul {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.helpful-links a {
	font-weight: 600;
	color: #C85A17;
}

/* ---- Search Form ---- */
.search-form {
	display: flex;
	gap: 0.5rem;
}

.search-input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 2px solid #e8e5e0;
	border-radius: 6px;
	font-size: 1rem;
	font-family: 'Open Sans', Arial, sans-serif;
}

.search-input:focus {
	outline: none;
	border-color: #7FB069;
}

.search-submit {
	border: none;
}

/* ---- Sidebar ---- */
.site-sidebar .widget {
	background: #F5F3F0;
	padding: 1.5rem;
	border-radius: 10px;
	margin-bottom: 1.5rem;
}

.widget-title {
	margin-bottom: 0.75rem;
}

/* ---- Footer ---- */
.site-footer {
	background: #1a3009;
	color: #ccc;
}

.footer-widgets {
	padding: 3.5rem 0 2rem;
}

.footer-col h4,
.footer-col .widget-title {
	color: #fff;
	margin-bottom: 1rem;
}

.footer-tagline {
	color: #D4A574;
	font-family: 'Lora', Georgia, serif;
	font-style: italic;
	margin-bottom: 0.75rem;
}

.footer-links li {
	padding: 0.3rem 0;
}

.footer-links a {
	color: #ccc;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: #D4A574;
}

.footer-contact li {
	padding: 0.3rem 0;
	color: #ccc;
}

.footer-contact a {
	color: #ccc;
}

.footer-contact a:hover {
	color: #D4A574;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 0;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.copyright {
	font-size: 0.85rem;
	color: #999;
	margin: 0;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-icon {
	color: #ccc;
	transition: color 0.2s;
}

.social-icon:hover {
	color: #D4A574;
}

/* ---- Animations ---- */
.fade-in-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger cards */
.grid .fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.grid .fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.grid .fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.grid .fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.grid .fade-in-up:nth-child(6) { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	h1 { font-size: 2.25rem; }
}

@media (max-width: 768px) {
	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}

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

	h1 { font-size: 2rem; }
	h2 { font-size: 1.5rem; }

	.hero-home { padding: 4rem 0 3rem; }
	.hero-interior { padding: 2.5rem 0 2rem; }

	section { padding: 3rem 0; }

	/* Mobile Nav */
	.menu-toggle {
		display: flex;
	}

	.nav-menu-wrapper {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 320px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		padding: 5rem 2rem 2rem;
		gap: 0;
		box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
		transition: right 0.35s ease;
		z-index: 999;
		overflow-y: auto;
	}

	.nav-menu-wrapper.is-open {
		right: 0;
	}

	.nav-menu {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	.nav-menu li {
		width: 100%;
	}

	.nav-menu li a {
		display: block;
		padding: 0.85rem 0;
		border-bottom: 1px solid #F5F3F0;
	}

	.nav-cta {
		margin: 1.5rem 0 0;
		width: 100%;
		text-align: center;
	}

	body.menu-open {
		overflow: hidden;
	}

	/* Trust bar */
	.trust-bar-inner {
		flex-direction: column;
		gap: 0.5rem;
	}

	.trust-divider { display: none; }

	/* Top bar */
	.top-bar-inner {
		justify-content: center;
		font-size: 0.8rem;
	}

	/* Footer */
	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	/* Form */
	.form-row {
		grid-template-columns: 1fr;
	}

	/* Comparison table */
	.comparison-table {
		font-size: 0.8rem;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 0.5rem;
	}

	/* Package cards */
	.package-full-card {
		padding: 1.5rem;
	}

	.package-price-large {
		font-size: 1.75rem;
	}
}

@media (max-width: 480px) {
	h1 { font-size: 1.75rem; }

	.container { padding: 0 1rem; }

	.btn-primary,
	.btn-secondary {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-form {
		flex-direction: column;
	}

	.resource-form {
		flex-direction: column;
	}
}

/* ---- Print ---- */
@media print {
	.top-bar,
	.menu-toggle,
	.nav-cta,
	.social-links,
	.cta-lead-magnet,
	.section-cta {
		display: none;
	}

	body { font-size: 12pt; color: #000; }

	a { color: #000; text-decoration: underline; }

	.fade-in-up { opacity: 1; transform: none; }
}
