/* ===== EXISTING DARK THEME ===== */
/* ===== LEVEL HOME DFW - DARK THEME ===== */
/* Body & site background */
body, .wp-site-blocks, main {
	background-color: #0a1628 !important;
	color: #e0e0e0 !important;
}

/* Header */
header.wp-block-template-part {
	background-color: #0a1628 !important;
}

/* Footer */
footer.wp-block-template-part {
	background-color: #060d18 !important;
	color: #e0e0e0 !important;
}

/* Gold headings */
h1, h2, h3, h4, h5, h6 {
	color: #c9a227 !important;
}

/* Gold links */
a:not(.wp-block-button__link) {
	color: #c9a227 !important;
}

a:not(.wp-block-button__link):hover {
	color: #d4af37 !important;
}

/* Body text */
p, li, td, th, span:not(.wp-block-navigation-item__label) {
	color: #e0e0e0;
}

/* Navigation links in header */
.wp-block-navigation-item__label {
	color: #ffffff !important;
}

/* Mobile nav overlay */
.wp-block-navigation__responsive-container.is-menu-open {
	background-color: #0a1628 !important;
}

.wp-block-navigation__responsive-container.is-menu-open a,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__label {
	color: #ffffff !important;
}

.wp-block-navigation__responsive-container-close svg {
	fill: #ffffff !important;
}

/* Submenu dropdowns */
.wp-block-navigation__submenu-container {
	background-color: #0f1d33 !important;
	border: 1px solid #1a2a44 !important;
}

/* Buttons */
.wp-block-button__link {
	background-color: #c9a227 !important;
	color: #0a1628 !important;
}

.wp-block-button__link:hover {
	background-color: #d4af37 !important;
}

/* Hamburger menu icon */
.wp-block-navigation__responsive-container-open svg {
	fill: #ffffff !important;
}

/* Page Not Found fix */
.error404 h1, .error404 p {
	color: #e0e0e0 !important;
}

/* Separators */
hr, .wp-block-separator {
	border-color: #1a2a44 !important;
}

/* ===== HOMEPAGE DESIGN ===== */
/* === HIDE WP THEME CHROME (homepage only) === */
body.page-template-template-blank .wp-site-blocks > header,
body.page-template-template-blank .wp-site-blocks > footer,
body.page-template-template-blank header.wp-block-template-part,
body.page-template-template-blank footer.wp-block-template-part,
body.page-template-template-blank .has-global-padding > header,
body.page-template-template-blank .has-global-padding > footer {
	display: none !important;
}

body.page-template-template-blank .wp-site-blocks {
	padding-top: 0 !important;
}

body.page-template-template-blank .entry-content,
body.page-template-template-blank .wp-block-post-content {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.page-template-template-blank .wp-site-blocks > main {
	padding: 0 !important;
	margin: 0 !important;
}

body.page-template-template-blank {
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-template-blank .page .entry-title,
body.page-template-template-blank .page-title,
body.page-template-template-blank h1.wp-block-post-title {
	display: none !important;
}

body.page-template-template-blank * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
}

html {
	scroll-behavior: smooth;
}

body.page-template-template-blank {
	font-family: 'Inter', sans-serif;
	background: var(--navy);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.6;
}

/* NAV */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(12,26,46,0.95);
	border-bottom: 1px solid rgba(201,151,58,0.12);
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	padding: 0;
}

.nav-logo img {
	height: 48px;
	width: auto;
}

/* NAV DROPDOWNS */
.nav-menu {
	display: flex;
	gap: 4px;
	align-items: center;
	list-style: none;
}

.nav-item {
	position: relative;
}

.nav-item > a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color .3s;
	padding: 24px 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-item > a:hover,.nav-item:hover > a {
	color: var(--gold);
}

.nav-item > a .caret {
	font-size: 10px;
	transition: transform .3s;
}

.nav-item:hover > a .caret {
	transform: rotate(180deg);
}

/* Dropdown panel */
.dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--navy-light);
	border: 1px solid rgba(201,151,58,0.15);
	border-radius: 12px;
	padding: 12px 0;
	min-width: 240px;
	opacity: 0;
	visibility: hidden;
	transition: all .25s;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
	pointer-events: none;
}

.nav-item:hover .dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.dropdown a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	color: var(--text);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: all .2s;
}

.dropdown a:hover {
	background: var(--gold-dim);
	color: var(--gold);
}

.dropdown a i {
	width: 16px;
	text-align: center;
	color: var(--gold);
	font-size: 12px;
	opacity: .7;
}

/* Mega dropdown for cities */
.dropdown-mega {
	min-width: 680px;
	padding: 20px 24px;
}

.dropdown-mega-title {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
	margin-bottom: 10px;
	padding: 0 0 8px;
	border-bottom: 1px solid rgba(201,151,58,0.15);
}

.dropdown-mega-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
}

.dropdown-mega-grid a {
	padding: 7px 10px;
	font-size: 13px;
	border-radius: 6px;
}

.dropdown-mega-grid a:hover {
	background: var(--gold-dim);
}

.dropdown-mega-section {
	margin-top: 16px;
}

.nav-cta {
	background: var(--gold);
	color: var(--navy);
	padding: 10px 24px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all .3s;
	white-space: nowrap;
}

.nav-cta:hover {
	background: var(--gold-light);
	transform: translateY(-1px);
}

/* HERO — video background */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 40px 80px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	background: linear-gradient(135deg,rgba(12,26,46,0.97) 0%,rgba(26,52,86,0.95) 40%,rgba(12,26,46,0.98) 100%);
	z-index: 1;
}

.hero-inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 2;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gold-dim);
	border: 1px solid rgba(201,151,58,0.3);
	border-radius: 99px;
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 24px;
}

.hero-badge i {
	font-size: 10px;
}

.hero-logo-large {
	display: none;
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 56px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--white);
	max-width: 900px;
}

.hero h1 span {
	color: var(--gold);
}

.hero-sub {
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 36px;
	line-height: 1.7;
	max-width: 680px;
}

.hero-stats {
	display: flex;
	gap: 60px;
	margin-bottom: 40px;
	justify-content: center;
}

.hero-stat .num {
	font-size: 36px;
	font-weight: 800;
	color: var(--gold);
	font-family: 'Playfair Display', serif;
}

.hero-stat .label {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 2px;
}

.hero-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.btn-gold {
	background: var(--gold);
	color: var(--navy);
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-gold:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(201,151,58,0.3);
}

.btn-outline {
	background: transparent;
	color: var(--gold);
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid rgba(201,151,58,0.4);
	cursor: pointer;
	transition: all .3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-outline:hover {
	border-color: var(--gold);
	background: var(--gold-dim);
}

/* TRUST BAR */
.trust-bar {
	background: var(--navy-light);
	border-top: 1px solid rgba(201,151,58,0.08);
	border-bottom: 1px solid rgba(201,151,58,0.08);
	padding: 40px;
}

.trust-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.trust-icon {
	width: 44px;
	height: 44px;
	background: var(--gold-dim);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 18px;
}

.trust-text {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
}

.trust-text span {
	display: block;
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 400;
	margin-top: 1px;
}

/* SECTIONS */
.section {
	padding: 80px 40px;
}

.section-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--gold-dim);
	border: 1px solid rgba(201,151,58,0.25);
	border-radius: 99px;
	padding: 5px 14px;
	font-size: 11px;
	font-weight: 700;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 16px;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 12px;
	line-height: 1.15;
}

.section-title span {
	color: var(--gold);
}

.section-sub {
	font-size: 16px;
	color: var(--text-muted);
	max-width: 600px;
	margin-bottom: 48px;
	line-height: 1.7;
}

/* SERVICES PREVIEW */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 20px;
}

.service-card {
	background: var(--navy-light);
	border: 1px solid rgba(201,151,58,0.1);
	border-radius: 14px;
	padding: 28px 24px;
	transition: all .3s;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.service-card:hover {
	border-color: rgba(201,151,58,0.35);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-icon {
	width: 48px;
	height: 48px;
	background: var(--gold-dim);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 20px;
	margin-bottom: 16px;
}

.service-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 8px;
}

.service-card p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

.service-card .learn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--gold);
	text-decoration: none;
}

/* WHY US */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}

.why-card {
	background: var(--navy-light);
	border: 1px solid rgba(201,151,58,0.1);
	border-radius: 14px;
	padding: 28px;
	transition: all .3s;
}

.why-card:hover {
	border-color: rgba(201,151,58,0.3);
}

.why-num {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 900;
	color: rgba(201,151,58,0.2);
	margin-bottom: 8px;
}

.why-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 8px;
}

.why-card p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* PROCESS */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 24px;
}

.process-step {
	text-align: center;
	position: relative;
}

.process-step::after {
	content: '';
	position: absolute;
	top: 28px;
	left: calc(50% + 30px);
	width: calc(100% - 60px);
	height: 2px;
	background: linear-gradient(90deg,var(--gold),rgba(201,151,58,0.1));
	display: block;
}

.process-step:last-child::after {
	display: none;
}

.process-num {
	width: 56px;
	height: 56px;
	background: var(--gold-dim);
	border: 2px solid rgba(201,151,58,0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 900;
	color: var(--gold);
	margin: 0 auto 16px;
}

.process-step h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 6px;
}

.process-step p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* PRICE CALCULATOR — standalone section */
.calc-section {
	background: var(--navy);
	position: relative;
	overflow: hidden;
}

.calc-section::before {
	content: '';
	position: absolute;
	background: radial-gradient(ellipse at 50% 50%,rgba(201,151,58,0.04) 0%,transparent 70%);
}

.calc-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.calc-info h2 {
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 16px;
	line-height: 1.15;
}

.calc-info h2 span {
	color: var(--gold);
}

.calc-info p {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 24px;
}

.calc-benefits {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.calc-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: var(--text);
}

.calc-benefits li i {
	color: var(--gold);
	margin-top: 3px;
	font-size: 14px;
	min-width: 18px;
}

.calculator-card {
	background: var(--navy-light);
	border: 1px solid rgba(201,151,58,0.15);
	border-radius: 16px;
	padding: 36px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.calc-title {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 4px;
}

.calc-subtitle {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.calc-field {
	margin-bottom: 16px;
}

.calc-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--slate);
	margin-bottom: 6px;
}

.calc-field select,.calc-field input {
	width: 100%;
	padding: 12px 16px;
	background: var(--navy);
	border: 1px solid rgba(201,151,58,0.2);
	border-radius: 8px;
	color: var(--white);
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: border-color .3s;
	-webkit-appearance: none;
	appearance: none;
}

.calc-field select {
	background-image: ;
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.calc-field select:focus,.calc-field input:focus {
	border-color: var(--gold);
}

.calc-result {
	background: linear-gradient(135deg,rgba(201,151,58,0.12),rgba(201,151,58,0.04));
	border: 1px solid rgba(201,151,58,0.25);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	margin-top: 20px;
}

.calc-result-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--slate);
	margin-bottom: 4px;
}

.calc-result-range {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 900;
	color: var(--gold);
}

.calc-result-note {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 6px;
}

.calc-cta {
	width: 100%;
	margin-top: 16px;
	text-align: center;
	justify-content: center;
}

/* SOIL SCIENCE TEASER */
.soil-teaser {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.soil-fact {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
	align-items: flex-start;
}

.soil-fact-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: var(--gold-dim);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 16px;
}

.soil-fact h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 4px;
}

.soil-fact p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

.soil-visual {
	background: var(--navy-light);
	border: 1px solid rgba(201,151,58,0.12);
	border-radius: 16px;
	padding: 40px;
	text-align: center;
}

.soil-visual-title {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 8px;
}

.soil-visual-sub {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.soil-layers {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.soil-layer {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
}

.soil-layer:nth-child(1) {
	background: rgba(139,90,43,0.25);
	color: #d4a76a;
}

.soil-layer:nth-child(2) {
	background: rgba(120,80,50,0.3);
	color: #c9973a;
}

.soil-layer:nth-child(3) {
	background: rgba(100,70,45,0.35);
	color: #b88a3a;
}

.soil-layer:nth-child(4) {
	background: rgba(80,60,40,0.4);
	color: #a07830;
}

.soil-layer .depth {
	margin-left: auto;
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 400;
}

/* REVIEWS TEASER */
.reviews-teaser {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.review-card {
	background: var(--navy-light);
	border: 1px solid rgba(201,151,58,0.1);
	border-radius: 14px;
	padding: 28px;
}

.review-stars {
	color: var(--gold);
	font-size: 14px;
	margin-bottom: 12px;
	letter-spacing: 2px;
}

.review-text {
	font-size: 14px;
	color: var(--text);
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 16px;
}

.review-author {
	font-size: 13px;
	font-weight: 600;
	color: var(--white);
}

.review-loc {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 2px;
}

.review-aggregate {
	text-align: center;
	margin-bottom: 40px;
}

.review-aggregate .big-num {
	font-family: 'Playfair Display', serif;
	font-size: 64px;
	font-weight: 900;
	color: var(--gold);
}

.review-aggregate .stars {
	color: var(--gold);
	font-size: 22px;
	letter-spacing: 3px;
	margin: 4px 0 8px;
}

.review-aggregate .count {
	font-size: 14px;
	color: var(--text-muted);
}

/* CTA BANNER */
.cta-banner {
	background: linear-gradient(135deg,rgba(201,151,58,0.12),rgba(201,151,58,0.04));
	border: 1px solid rgba(201,151,58,0.2);
	border-radius: 20px;
	padding: 60px;
	text-align: center;
	margin: 0 auto;
	max-width: 900px;
}

.cta-banner h2 {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 12px;
}

.cta-banner p {
	font-size: 16px;
	color: var(--text-muted);
	margin-bottom: 28px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.cta-banner .btn-row {
	display: flex;
	gap: 16px;
	justify-content: center;
}

/* FOOTER */
.footer {
	background: var(--navy-light);
	border-top: 1px solid rgba(201,151,58,0.1);
	padding: 60px 40px 24px;
}

.footer-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand {
	max-width: 300px;
}

.footer-brand img {
	height: 50px;
	width: auto;
	margin-bottom: 12px;
}

.footer-brand p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-top: 12px;
}

.footer-col h4 {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
	margin-bottom: 16px;
}

.footer-col a {
	display: block;
	font-size: 13px;
	color: var(--text-muted);
	text-decoration: none;
	padding: 4px 0;
	transition: color .2s;
}

.footer-col a:hover {
	color: var(--gold);
}

.footer-bottom {
	border-top: 1px solid rgba(201,151,58,0.08);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--text-muted);
}

/* PAGE INDICATOR */
.page-indicator {
	background: var(--navy-mid);
	border: 1px solid rgba(201,151,58,0.15);
	border-radius: 10px;
	padding: 20px 28px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 48px;
	max-width: 600px;
}

.page-indicator i {
	color: var(--gold);
	font-size: 16px;
}

.page-indicator p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.5;
}

.page-indicator strong {
	color: var(--gold);
}

/* RESPONSIVE */
@media(max-width:1024px) {
	.hero h1 {
		font-size: 42px;
	}
	
	.hero-stats {
		gap: 40px;
	}
	
	.services-grid {
		grid-template-columns: repeat(2,1fr);
	}
	
	.why-grid {
		grid-template-columns: repeat(2,1fr);
	}
	
	.process-steps {
		grid-template-columns: repeat(2,1fr);
	}
	
	.process-step::after {
		display: none;
	}
	
	.calc-layout {
		grid-template-columns: 1fr;
	}
	
	.soil-teaser {
		grid-template-columns: 1fr;
	}
	
	.reviews-teaser {
		grid-template-columns: 1fr;
	}
	
	.footer-grid {
		grid-template-columns: repeat(2,1fr);
	}
	
	.dropdown-mega {
		min-width: 420px;
	}
	
	.dropdown-mega-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:768px) {
	.nav {
		padding: 0 20px;
	}
	
	.nav-menu {
		display: none;
	}
	
	.section {
		padding: 60px 20px;
	}
	
	.hero {
		padding: 100px 20px 60px;
	}
	
	.hero h1 {
		font-size: 34px;
	}
	
	.hero-stats {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}
	
	.hero-logo-large {
		display: none;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.why-grid {
		grid-template-columns: 1fr;
	}
	
	.trust-inner {
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
	}
	
	.cta-banner {
		padding: 40px 24px;
	}
	
	.cta-banner .btn-row {
		flex-direction: column;
		align-items: center;
	}
	
	.hero-btns {
		flex-direction: column;
		align-items: center;
	}
}

/* === INNER PAGE DESKTOP LAYOUT === */
/* Apply to all non-homepage pages to give them the dark professional theme */

/* Widen content area on inner pages */
body:not(.home) .wp-block-post-content.is-layout-constrained {
  --wp--style--global--content-size: 960px !important;
}

body:not(.home) .wp-block-post-content > * {
  max-width: 960px !important;
}

/* Dark background for entire page */
body:not(.home) {
  background: #0c1a2e !important;
  color: #dce4ed !important;
}

body:not(.home) .wp-site-blocks {
  background: #0c1a2e !important;
}

/* Style the header on inner pages */
body:not(.home) .wp-block-template-part:first-child {
  background: rgba(12,26,46,0.95) !important;
  border-bottom: 1px solid rgba(201,151,58,0.12) !important;
  backdrop-filter: blur(20px);
}

body:not(.home) header.wp-block-template-part a,
body:not(.home) header.wp-block-template-part {
  color: #dce4ed !important;
}

body:not(.home) header.wp-block-template-part .wp-block-site-title a {
  color: #c9973a !important;
  font-weight: 700;
}

/* Style the footer on inner pages */
body:not(.home) footer.wp-block-template-part {
  background: #132640 !important;
  border-top: 1px solid rgba(201,151,58,0.1) !important;
  color: #7a8b9e !important;
}

body:not(.home) footer.wp-block-template-part a {
  color: #8a9bae !important;
}

body:not(.home) footer.wp-block-template-part a:hover {
  color: #c9973a !important;
}

/* Page title / H1 styling */
body:not(.home) .wp-block-post-content h1,
body:not(.home) .entry-content h1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #c9973a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

/* H2 styling */
body:not(.home) .wp-block-post-content h2,
body:not(.home) .entry-content h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #c9973a;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,151,58,0.15);
}

/* H3 styling */
body:not(.home) .wp-block-post-content h3,
body:not(.home) .entry-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #ddb354;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* H4 styling */
body:not(.home) .wp-block-post-content h4,
body:not(.home) .entry-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #dce4ed;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Paragraph styling */
body:not(.home) .wp-block-post-content p,
body:not(.home) .entry-content p {
  color: #dce4ed;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Bold text gold accent */
body:not(.home) .wp-block-post-content strong, body:not(.home) .entry-content strong {
  color: #1D2327 !important;
  font-weight: 600;
}

/* Links gold */
body:not(.home) .wp-block-post-content a,
body:not(.home) .entry-content a {
  color: #c9973a;
  text-decoration: underline;
  text-decoration-color: rgba(201,151,58,0.3);
  text-underline-offset: 3px;
  transition: all 0.2s;
}

body:not(.home) .wp-block-post-content a:hover,
body:not(.home) .entry-content a:hover {
  color: #ddb354;
  text-decoration-color: #ddb354;
}

/* Lists styling */
body:not(.home) .wp-block-post-content ul,
body:not(.home) .entry-content ul,
body:not(.home) .wp-block-post-content ol,
body:not(.home) .entry-content ol {
  color: #dce4ed;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

body:not(.home) .wp-block-post-content li,
body:not(.home) .entry-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

body:not(.home) .wp-block-post-content ul li::marker {
  color: #c9973a;
}

body:not(.home) .wp-block-post-content ol li::marker {
  color: #c9973a;
  font-weight: 600;
}

/* Featured image styling */
body:not(.home) .wp-block-post-featured-image img {
  border-radius: 12px;
  border: 1px solid rgba(201,151,58,0.15);
}

/* Blockquote */
body:not(.home) .wp-block-post-content blockquote,
body:not(.home) .entry-content blockquote {
  border-left: 4px solid #c9973a;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(19,38,64,0.5);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #8a9bae;
}

/* Main content area padding */
body:not(.home) main.wp-block-group {
  padding: 0 2rem;
}

body:not(.home) .wp-block-post-content,
body:not(.home) .entry-content {
  padding: 2rem 0 4rem;
}

/* Navigation/menu button styling */
body:not(.home) .wp-block-navigation__responsive-container-open {
  color: #dce4ed !important;
}

body:not(.home) .wp-block-navigation a {
  color: #dce4ed !important;
}

body:not(.home) .wp-block-navigation a:hover {
  color: #c9973a !important;
}

/* Responsive inner page content */
@media (max-width: 768px) {
  body:not(.home) .wp-block-post-content > * {
    max-width: 100% !important;
  }
  body:not(.home) main.wp-block-group {
    padding: 0 1rem;
  }
}

/* ===== INNER PAGES - PREMIUM LIGHT THEME ===== */
/* Scope: all pages EXCEPT homepage (template-blank) */

/* Light background for inner pages */
body:not(.page-template-template-blank),
body:not(.page-template-template-blank) .wp-site-blocks,
body:not(.page-template-template-blank) main {
	background-color: #ffffff !important;
	color: #2d2d2d !important;
}

/* Keep header dark on inner pages */
body:not(.page-template-template-blank) header.wp-block-template-part {
	background-color: #0a1628 !important;
}

/* Inner page headings - dark with gold accents */
body:not(.page-template-template-blank) main h1 {
	color: #1a1a2e !important;
	font-family: 'Playfair Display', Georgia, serif !important;
	font-size: 42px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	margin-bottom: 16px !important;
}

body:not(.page-template-template-blank) main h2 {
	color: #1a1a2e !important;
	font-family: 'Playfair Display', Georgia, serif !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	margin-top: 48px !important;
	margin-bottom: 16px !important;
}

body:not(.page-template-template-blank) main h3 {
	color: #1a1a2e !important;
	font-family: 'Playfair Display', Georgia, serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	margin-top: 32px !important;
	margin-bottom: 12px !important;
}

body:not(.page-template-template-blank) main h4,
body:not(.page-template-template-blank) main h5,
body:not(.page-template-template-blank) main h6 {
	color: #1a1a2e !important;
	font-family: 'Inter', sans-serif !important;
}

/* Body text */
body:not(.page-template-template-blank) main p,
body:not(.page-template-template-blank) main li,
body:not(.page-template-template-blank) main td,
body:not(.page-template-template-blank) main th,
body:not(.page-template-template-blank) main span:not(.wp-block-navigation-item__label) {
	color: #444444 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	line-height: 1.8 !important;
}

/* Links on inner pages */
body:not(.page-template-template-blank) main a:not(.wp-block-button__link) {
	color: #b8860b !important;
	text-decoration: none !important;
	border-bottom: 1px solid transparent !important;
	transition: all 0.3s ease !important;
}

body:not(.page-template-template-blank) main a:not(.wp-block-button__link):hover {
	color: #c9a227 !important;
	border-bottom-color: #c9a227 !important;
}

/* Inner page content container */
body:not(.page-template-template-blank) .entry-content,
body:not(.page-template-template-blank) .wp-block-post-content {
	max-width: 900px !important;
	margin: 0 auto !important;
	padding: 60px 24px 80px !important;
}

/* Gold accent bar under page title */
body:not(.page-template-template-blank) main h1.wp-block-post-title {
	color: #1a1a2e !important;
	font-family: 'Playfair Display', Georgia, serif !important;
	font-size: 42px !important;
	font-weight: 700 !important;
	text-align: center !important;
	margin-bottom: 8px !important;
	padding-top: 40px !important;
}

body:not(.page-template-template-blank) main h1.wp-block-post-title::after {
	content: '' !important;
	display: block !important;
	width: 80px !important;
	height: 3px !important;
	background: linear-gradient(90deg, #c9a227, #d4af37) !important;
	margin: 16px auto 40px !important;
	border-radius: 2px !important;
}

/* Premium section images */
body:not(.page-template-template-blank) main .wp-block-image {
	margin: 40px 0 !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

body:not(.page-template-template-blank) main .wp-block-image img {
	width: 100% !important;
	height: auto !important;
	display: block !important;
	border-radius: 12px !important;
}

/* Buttons on inner pages */
body:not(.page-template-template-blank) main .wp-block-button__link {
	background: linear-gradient(135deg, #c9a227, #d4af37) !important;
	color: #ffffff !important;
	border-radius: 8px !important;
	padding: 14px 32px !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	text-transform: none !important;
	letter-spacing: 0.3px !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 15px rgba(201,162,39,0.3) !important;
}

body:not(.page-template-template-blank) main .wp-block-button__link:hover {
	background: linear-gradient(135deg, #d4af37, #e0c050) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(201,162,39,0.4) !important;
}

/* Separators */
body:not(.page-template-template-blank) main hr,
body:not(.page-template-template-blank) main .wp-block-separator {
	border-color: #e8e0d0 !important;
	margin: 48px auto !important;
	max-width: 200px !important;
}

/* Alternating content sections via inner-page HTML classes */
.lh-section {
	padding: 60px 0;
}

.lh-section--gray {
	background: #f8f6f2;
	margin: 0 -24px;
	padding: 60px 24px;
}

.lh-section--dark {
	background: #1D2327;
	margin: 0 -24px;
	padding: 60px 24px;
	color: #e0e0e0;
}

.lh-section--dark h2,
.lh-section--dark h3 {
	color: #c9a227 !important;
}

.lh-section--dark p,
.lh-section--dark li {
	color: #e0e0e0 !important;
}

/* Gold section labels */
.lh-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #c9a227;
	margin-bottom: 12px;
}

/* Image with text side-by-side layout */
.lh-split {
	display: flex;
	gap: 40px;
	align-items: center;
	margin: 40px 0;
}

.lh-split--reverse {
	flex-direction: row-reverse;
}

.lh-split img {
	width: 45%;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.lh-split-content {
	flex: 1;
}

/* Lists styling */
body:not(.page-template-template-blank) main ul {
	list-style: none !important;
	padding-left: 0 !important;
}

body:not(.page-template-template-blank) main ul li {
	position: relative !important;
	padding-left: 24px !important;
	margin-bottom: 10px !important;
}

body:not(.page-template-template-blank) main ul li::before {
	content: '✓' !important;
	position: absolute !important;
	left: 0 !important;
	color: #c9a227 !important;
	font-weight: 700 !important;
}

/* Blockquotes / testimonial styling */
body:not(.page-template-template-blank) main blockquote {
	border-left: 4px solid #c9a227 !important;
	background: #f8f6f2 !important;
	padding: 24px 28px !important;
	margin: 32px 0 !important;
	border-radius: 0 12px 12px 0 !important;
	font-style: italic !important;
}

body:not(.page-template-template-blank) main blockquote p {
	color: #333 !important;
	font-size: 17px !important;
}

/* Footer stays dark */
body:not(.page-template-template-blank) footer.wp-block-template-part {
	background-color: #060d18 !important;
	color: #e0e0e0 !important;
}

body:not(.page-template-template-blank) footer.wp-block-template-part h1,
body:not(.page-template-template-blank) footer.wp-block-template-part h2,
body:not(.page-template-template-blank) footer.wp-block-template-part h3,
body:not(.page-template-template-blank) footer.wp-block-template-part h4 {
	color: #c9a227 !important;
}

body:not(.page-template-template-blank) footer.wp-block-template-part p,
body:not(.page-template-template-blank) footer.wp-block-template-part li,
body:not(.page-template-template-blank) footer.wp-block-template-part span,
body:not(.page-template-template-blank) footer.wp-block-template-part a {
	color: #e0e0e0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
	body:not(.page-template-template-blank) main h1,
	body:not(.page-template-template-blank) main h1.wp-block-post-title {
		font-size: 32px !important;
	}
	
	body:not(.page-template-template-blank) main h2 {
		font-size: 26px !important;
	}
	
	body:not(.page-template-template-blank) .entry-content,
	body:not(.page-template-template-blank) .wp-block-post-content {
		padding: 40px 16px 60px !important;
	}
	
	.lh-split {
		flex-direction: column !important;
	}
	
	.lh-split--reverse {
		flex-direction: column !important;
	}
	
	.lh-split img {
		width: 100% !important;
	}
}

/* ===== END INNER PAGES ===== */

/* ===== HEADER FIX - LIGHTER BACKGROUND ON INNER PAGES ===== */
body:not(.page-template-template-blank):not(.home) .site-header,
body:not(.page-template-template-blank):not(.home) header.wp-block-template-part {
  background-color: #f8f8f8 !important;
  border-bottom: 1px solid #e0e0e0 !important;
}
body:not(.page-template-template-blank):not(.home) .site-header a,
body:not(.page-template-template-blank):not(.home) header.wp-block-template-part a {
  color: #1D2327 !important;
}
body:not(.page-template-template-blank):not(.home) .site-header .wp-block-navigation a,
body:not(.page-template-template-blank):not(.home) header .wp-block-navigation a {
  color: #1D2327 !important;
}
body:not(.page-template-template-blank):not(.home) .site-header .wp-block-button a,
body:not(.page-template-template-blank):not(.home) header .wp-block-button a {
  color: #fff !important;
  background-color: #C9A84C !important;
}

/* ===== CTA SECTION BLOCKS ===== */
.lh-cta-section {
  background: linear-gradient(135deg, #1D2327 0%, #2a3036 100%) !important;
  padding: 50px 30px !important;
  margin: 40px 0 !important;
  border-radius: 12px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}
.lh-cta-section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, #C9A84C, #e8d48b, #C9A84C) !important;
}
.lh-cta-section h3 {
  color: #C9A84C !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 28px !important;
  margin-bottom: 15px !important;
}
.lh-cta-section p {
  color: #e0e0e0 !important;
  font-size: 17px !important;
  max-width: 600px !important;
  margin: 0 auto 25px !important;
  line-height: 1.6 !important;
}
.lh-cta-btn {
  display: inline-block !important;
  background: #C9A84C !important;
  color: #1D2327 !important;
  padding: 14px 36px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  margin: 5px !important;
}
.lh-cta-btn:hover {
  background: #e8d48b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4) !important;
}
.lh-cta-btn.lh-cta-btn-outline {
  background: transparent !important;
  border: 2px solid #C9A84C !important;
  color: #C9A84C !important;
}
.lh-cta-btn.lh-cta-btn-outline:hover {
  background: #C9A84C !important;
  color: #1D2327 !important;
}

/* ===== REVIEW SECTION ===== */
.lh-reviews-section {
  background: #f5f3ee !important;
  padding: 50px 30px !important;
  margin: 40px 0 !important;
  border-radius: 12px !important;
  text-align: center !important;
}
.lh-reviews-section h3 {
  color: #1D2327 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 26px !important;
  margin-bottom: 8px !important;
}
.lh-reviews-section .lh-reviews-subtitle {
  color: #C9A84C !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  margin-bottom: 30px !important;
}
.lh-reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 20px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}
.lh-review-card {
  background: #fff !important;
  padding: 25px !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
  text-align: left !important;
  border-top: 3px solid #C9A84C !important;
}
.lh-review-stars {
  color: #C9A84C !important;
  font-size: 18px !important;
  margin-bottom: 12px !important;
}
.lh-review-card p {
  color: #444 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  font-style: italic !important;
  margin-bottom: 12px !important;
}
.lh-review-author {
  color: #1D2327 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.lh-review-source {
  color: #888 !important;
  font-size: 12px !important;
}

/* ===== FREE INSPECTION FORM ===== */
.lh-form-section {
  background: #fff !important;
  border: 2px solid #C9A84C !important;
  padding: 40px 30px !important;
  margin: 40px 0 !important;
  border-radius: 12px !important;
  text-align: center !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.12) !important;
}
.lh-form-section h3 {
  color: #1D2327 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 26px !important;
  margin-bottom: 8px !important;
}
.lh-form-section .lh-form-subtitle {
  color: #666 !important;
  font-size: 15px !important;
  margin-bottom: 25px !important;
}
.lh-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 15px !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}
.lh-form-grid input,
.lh-form-grid textarea,
.lh-form-grid select {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-family: 'Inter', sans-serif !important;
  background: #fafafa !important;
  transition: border-color 0.3s !important;
  box-sizing: border-box !important;
}
.lh-form-grid input:focus,
.lh-form-grid textarea:focus {
  border-color: #C9A84C !important;
  outline: none !important;
  background: #fff !important;
}
.lh-form-grid .lh-form-full {
  grid-column: 1 / -1 !important;
}
.lh-form-grid textarea {
  min-height: 80px !important;
  resize: vertical !important;
}
.lh-form-submit {
  grid-column: 1 / -1 !important;
  background: #C9A84C !important;
  color: #1D2327 !important;
  padding: 14px 36px !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}
.lh-form-submit:hover {
  background: #e8d48b !important;
  transform: translateY(-2px) !important;
}
@media (max-width: 600px) {
  .lh-form-grid {
    grid-template-columns: 1fr !important;
  }
  .lh-reviews-grid {
    grid-template-columns: 1fr !important;
  }
}
