/* Charles Tree Services – Modern UI */

:root {
	--ui-scale: 1.2;
	--green-dark: #1a3c2a;
	--green: #2d6a4f;
	--green-light: #40916c;
	--green-pale: #e8f3ec;
	--gold: #f4c430;
	--text: #1f2937;
	--text-muted: #6b7280;
	--border: #e5e7eb;
	--white: #ffffff;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	--radius: calc(12px * var(--ui-scale));
	--container: calc(1200px * var(--ui-scale));
	--type-eyebrow: clamp(calc(0.95rem * var(--ui-scale)), calc(1.2vw * var(--ui-scale)), calc(1.1rem * var(--ui-scale)));
	--type-hero: clamp(calc(3.75rem * var(--ui-scale)), calc(7.5vw * var(--ui-scale)), calc(6.25rem * var(--ui-scale)));
	--type-page-title: clamp(calc(2.75rem * var(--ui-scale)), calc(5.5vw * var(--ui-scale)), calc(4.25rem * var(--ui-scale)));
	--type-section-title: clamp(calc(2.75rem * var(--ui-scale)), calc(5vw * var(--ui-scale)), calc(4rem * var(--ui-scale)));
	--type-subsection: clamp(calc(1.5rem * var(--ui-scale)), calc(2.8vw * var(--ui-scale)), calc(2rem * var(--ui-scale)));
	--type-card-title: clamp(calc(1.2rem * var(--ui-scale)), calc(2vw * var(--ui-scale)), calc(1.5rem * var(--ui-scale)));
	--type-body: calc(1.0625rem * var(--ui-scale));
	--type-body-lg: clamp(calc(1.05rem * var(--ui-scale)), calc(1.5vw * var(--ui-scale)), calc(1.25rem * var(--ui-scale)));
	--type-small: calc(0.9375rem * var(--ui-scale));
	--btn-padding: calc(18px * var(--ui-scale)) calc(34px * var(--ui-scale));
	--btn-font: calc(15px * var(--ui-scale));
	--section-padding-y: calc(88px * var(--ui-scale));
	--card-image-height: calc(260px * var(--ui-scale));
}

* { box-sizing: border-box; }

body.charles-modern {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: var(--type-body);
	color: var(--text);
	background: var(--white);
	margin: 0;
	line-height: 1.6;
	overflow-x: hidden;
	max-width: 100%;
}

html {
	overflow-x: hidden;
	max-width: 100%;
}

body.charles-modern #container {
	width: 100%;
	max-width: 100%;
	background: #fff;
	overflow-x: hidden;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; }

.container-modern {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 calc(20px * var(--ui-scale));
}

/* ── Header ── */
.site-topbar {
	background: var(--green-dark);
	color: #fff;
	font-size: calc(1.2rem * var(--ui-scale));
	padding: calc(20px * var(--ui-scale)) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(28px * var(--ui-scale));
	flex-wrap: nowrap;
	min-width: 0;
}

.topbar-trust {
	display: flex;
	align-items: center;
	gap: calc(12px * var(--ui-scale));
	color: #f7f1f1;
	font-weight: 600;
	font-size: calc(1.2rem * var(--ui-scale));
	white-space: nowrap;
}

.topbar-trust svg {
	flex-shrink: 0;
	width: calc(26px * var(--ui-scale));
	height: calc(26px * var(--ui-scale));
	opacity: 0.95;
}

.topbar-right {
	display: flex;
	align-items: center;
	gap: calc(28px * var(--ui-scale));
	flex-wrap: nowrap;
	justify-content: flex-end;
	flex-shrink: 0;
}

.topbar-emergency-text {
	color: #fff;
	font-weight: 600;
	font-size: calc(1.2rem * var(--ui-scale));
	white-space: nowrap;
}

.topbar-phone {
	display: inline-flex;
	align-items: center;
	gap: calc(10px * var(--ui-scale));
	color: #fff;
	font-weight: 800;
	font-size: calc(1.35rem * var(--ui-scale));
	white-space: nowrap;
}

.topbar-phone:hover {
	color: var(--gold);
}

.topbar-phone svg {
	flex-shrink: 0;
	width: calc(24px * var(--ui-scale));
	height: calc(24px * var(--ui-scale));
}

.topbar-social {
	display: flex;
	align-items: center;
	gap: calc(12px * var(--ui-scale));
	padding-left: calc(12px * var(--ui-scale));
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.topbar-social a {
	color: #fff;
	opacity: 0.92;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: calc(36px * var(--ui-scale));
	height: calc(36px * var(--ui-scale));
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: background 0.2s ease, opacity 0.2s ease;
}

.topbar-social a svg {
	width: calc(18px * var(--ui-scale));
	height: calc(18px * var(--ui-scale));
}

.topbar-social a:hover {
	opacity: 1;
	color: #fff;
	background: rgba(255, 255, 255, 0.22);
}

.topbar-widget {
	width: 100%;
}

.topbar-widget .widget {
	margin: 0;
	padding: 0;
}

.site-header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding-top: calc(16px * var(--ui-scale));
	padding-bottom: calc(16px * var(--ui-scale));
}

.site-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-logo img {
	height: calc(80px * var(--ui-scale));
	width: auto;
	display: block;
}

.site-nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.site-nav .site-menu,
.site-nav .menu,
.site-nav #menu-head {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav .site-menu > li,
.site-nav .menu > li,
.site-nav #menu-head > li {
	position: relative;
	list-style: none;
}

.site-nav .site-menu > li > a,
.site-nav .menu > li > a,
.site-nav #menu-head > li > a {
	display: block;
	position: relative;
	padding: calc(14px * var(--ui-scale)) calc(20px * var(--ui-scale)) calc(18px * var(--ui-scale));
	color: var(--text);
	font-weight: 700;
	font-size: calc(15px * var(--ui-scale));
	text-transform: capitalize;
	letter-spacing: 0.02em;
	border-radius: 0;
	white-space: nowrap;
	background: transparent;
	transition: color .2s ease;
}

.site-nav .site-menu > li > a::before,
.site-nav .menu > li > a::before,
.site-nav #menu-head > li > a::before {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 8px;
	height: 3px;
	background: var(--green);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.site-nav .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding-right: calc(22px * var(--ui-scale));
}

.site-nav .menu-item-has-children > a::before {
	right: 14px;
}

.site-nav .menu-item-has-children > a::after {
	content: '';
	position: static;
	display: inline-block;
	flex-shrink: 0;
	width: 7px;
	height: 7px;
	margin: 0 0 2px calc(12px * var(--ui-scale));
	border: none;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease, margin 0.2s ease;
	pointer-events: none;
}

.site-nav .menu-item-has-children.is-open > a::after {
	transform: rotate(-135deg);
	margin-bottom: -2px;
}

.site-nav .submenu-toggle {
	display: none;
}

@media (min-width: 993px) {
	.site-nav .menu-item-has-children:hover > .sub-menu {
		display: block;
	}

	.site-nav .menu-item-has-children:hover > a::after {
		transform: rotate(-135deg);
		margin-bottom: -2px;
	}
}

.site-nav .site-menu > li > a:hover,
.site-nav .menu > li > a:hover,
.site-nav #menu-head > li > a:hover,
.site-nav .site-menu > li.current-menu-item > a,
.site-nav .menu > li.current-menu-item > a,
.site-nav #menu-head > li.current-menu-item > a,
.site-nav .site-menu > li.current-menu-ancestor > a,
.site-nav .menu > li.current-menu-ancestor > a,
.site-nav #menu-head > li.current-menu-ancestor > a,
.site-nav .site-menu > li.current-menu-parent > a,
.site-nav .menu > li.current-menu-parent > a,
.site-nav #menu-head > li.current-menu-parent > a,
.site-nav .site-menu > li.current_page_item > a,
.site-nav .menu > li.current_page_item > a,
.site-nav #menu-head > li.current_page_item > a {
	color: var(--green);
	background: transparent;
}

.site-nav .site-menu > li > a:hover::before,
.site-nav .menu > li > a:hover::before,
.site-nav #menu-head > li > a:hover::before,
.site-nav .site-menu > li.current-menu-item > a::before,
.site-nav .menu > li.current-menu-item > a::before,
.site-nav #menu-head > li.current-menu-item > a::before,
.site-nav .site-menu > li.current-menu-ancestor > a::before,
.site-nav .menu > li.current-menu-ancestor > a::before,
.site-nav #menu-head > li.current-menu-ancestor > a::before,
.site-nav .site-menu > li.current-menu-parent > a::before,
.site-nav .menu > li.current-menu-parent > a::before,
.site-nav #menu-head > li.current-menu-parent > a::before,
.site-nav .site-menu > li.current_page_item > a::before,
.site-nav .menu > li.current_page_item > a::before,
.site-nav #menu-head > li.current_page_item > a::before {
	transform: scaleX(1);
}

.site-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(0,0,0,.12);
	padding: 8px;
	z-index: 30;
	list-style: none;
	margin: 0;
}

.site-nav .menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.site-nav .sub-menu li { list-style: none; }

.site-nav .sub-menu a {
	display: block;
	padding: 10px 14px;
	color: var(--text);
	font-size: calc(14px * var(--ui-scale));
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	border-radius: 6px;
	line-height: 1.4;
}

.site-nav .sub-menu a:hover {
	background: var(--green-pale);
	color: var(--green-dark);
}

.site-nav .sub-menu .current-menu-item > a,
.site-nav .sub-menu .current_page_item > a {
	background: var(--green-pale);
	color: var(--green-dark);
	font-weight: 600;
}

.header-cta {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header-cta .btn-primary-modern {
	background: var(--green);
	color: #fff;
	padding: 16px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: calc(14px * var(--ui-scale));
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(45,106,79,.25);
	transition: background .2s ease, transform .2s ease;
}

.header-cta .btn-primary-modern:hover {
	background: var(--green-dark);
	color: #fff;
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: 1px solid var(--border);
	border-radius: 8px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--green-dark);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
	display: inline-block;
	padding: var(--btn-padding);
	border-radius: 999px;
	font-weight: 700;
	font-size: var(--btn-font);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .2s ease;
}

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; }

.btn-outline-white {
	background: transparent;
	color: #fff;
	border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--green-dark); }

.btn-gold {
	background: var(--gold);
	color: var(--green-dark);
}
.btn-gold:hover { background: #e6b800; color: var(--green-dark); }

/* ── Hero ── */
.hero-wrapper {
	position: relative;
	margin-bottom: calc(72px * var(--ui-scale));
}

.hero-modern {
	position: relative;
	min-height: clamp(calc(620px * var(--ui-scale)), 78vh, calc(820px * var(--ui-scale)));
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: var(--green-dark) center/cover no-repeat;
	color: #fff;
	padding-bottom: calc(96px * var(--ui-scale));
}

.hero-modern::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(20, 48, 34, 0.92) 0%, rgba(20, 48, 34, 0.72) 42%, rgba(20, 48, 34, 0.35) 100%);
}

.hero-modern > .container-modern.hero-content {
	margin: 0;
	margin-left: max(calc(20px * var(--ui-scale)), calc((100vw - var(--container)) / 2));
	margin-right: auto;
	text-align: left;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: min(52vw, calc(760px * var(--ui-scale)));
	padding-top: calc(88px * var(--ui-scale));
	padding-bottom: calc(40px * var(--ui-scale));
}

.hero-eyebrow {
	display: block;
	background: none;
	border: none;
	color: #6ee7a8;
	padding: 0;
	border-radius: 0;
	font-size: clamp(calc(1rem * var(--ui-scale)), calc(1.4vw * var(--ui-scale)), calc(1.25rem * var(--ui-scale)));
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 calc(24px * var(--ui-scale));
	line-height: 1.3;
}

.hero-modern h1 {
	font-size: var(--type-hero);
	line-height: 1.02;
	margin: 0 0 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
}

.hero-modern .hero-tagline {
	font-size: var(--type-body-lg);
	line-height: 1.55;
	color: #fff;
	opacity: 1;
	margin: 0 0 40px;
	font-weight: 500;
	max-width: 38rem;
}

.hero-modern .hero-tagline .hero-bullet {
	margin: 0 12px;
	font-weight: 400;
	opacity: 0.9;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 18px;
}

.btn-hero-primary,
.btn-hero-phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: calc(12px * var(--ui-scale));
	padding: var(--btn-padding);
	border-radius: 999px;
	font-weight: 700;
	font-size: var(--btn-font);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: calc(2px * var(--ui-scale)) solid transparent;
	transition: all .2s ease;
}

.btn-hero-primary {
	background: var(--green);
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
	background: var(--green-light);
	color: #fff;
	transform: translateY(-1px);
}

.btn-hero-primary svg,
.btn-hero-phone svg {
	width: calc(20px * var(--ui-scale));
	height: calc(20px * var(--ui-scale));
	flex-shrink: 0;
}

.btn-hero-phone {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.85);
}

.btn-hero-phone:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: #fff;
}

.trust-bar-widget {
	width: 100%;
}

.trust-bar-widget .widget {
	margin: 0;
	padding: 0;
}

/* ── Trust bar (overlapping hero) ── */
.trust-bar-card {
	position: relative;
	z-index: 5;
	margin-top: calc(-88px * var(--ui-scale));
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: calc(14px * var(--ui-scale));
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	gap: calc(12px * var(--ui-scale));
	padding: calc(30px * var(--ui-scale)) calc(20px * var(--ui-scale)) calc(26px * var(--ui-scale));
	background: #fff;
	border: none;
	border-radius: calc(10px * var(--ui-scale));
	box-shadow: 0 calc(6px * var(--ui-scale)) calc(20px * var(--ui-scale)) rgba(0, 0, 0, 0.12);
	min-height: calc(200px * var(--ui-scale));
}

.trust-icon {
	flex-shrink: 0;
	width: auto;
	height: auto;
	min-height: calc(52px * var(--ui-scale));
	background: none;
	color: #1a2332;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: calc(4px * var(--ui-scale));
}

.trust-icon-svg {
	width: calc(44px * var(--ui-scale));
	height: calc(44px * var(--ui-scale));
	display: block;
}

.trust-icon--google .trust-google-logo {
	width: calc(72px * var(--ui-scale));
	height: auto;
	display: block;
}

.trust-google-stars {
	display: block;
	color: var(--gold);
	font-size: calc(13px * var(--ui-scale));
	letter-spacing: calc(3px * var(--ui-scale));
	line-height: 1;
}

.trust-stat {
	font-size: clamp(calc(2.35rem * var(--ui-scale)), calc(3.6vw * var(--ui-scale)), calc(3.25rem * var(--ui-scale)));
	font-weight: 800;
	color: #1a2332;
	line-height: 1;
	letter-spacing: -0.02em;
}

.trust-label {
	font-size: clamp(calc(0.8rem * var(--ui-scale)), calc(1.05vw * var(--ui-scale)), calc(0.95rem * var(--ui-scale)));
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1a2332;
	line-height: 1.35;
	max-width: 16em;
}

.trust-text strong {
	display: block;
	font-size: clamp(calc(1.05rem * var(--ui-scale)), calc(1.5vw * var(--ui-scale)), calc(1.35rem * var(--ui-scale)));
	color: var(--green-dark);
	line-height: 1.25;
	font-weight: 800;
}

.trust-stars {
	display: block;
	color: var(--gold);
	font-size: calc(18px * var(--ui-scale));
	letter-spacing: 2px;
	margin-top: 8px;
}

.stars { color: var(--gold); letter-spacing: 2px; }

/* ── Section headings (unified sitewide) ── */
.section-head {
	text-align: center;
	margin-bottom: 40px;
}

.section-head--left {
	text-align: left;
	margin-bottom: 24px;
}

.charles-modern .eyebrow,
.section-head .eyebrow {
	display: block;
	color: var(--green);
	font-size: var(--type-eyebrow);
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-head h2 {
	margin: 0;
	font-size: var(--type-section-title);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--text);
}

.process-head {
	margin-bottom: 56px;
}

.areas-section .section-head--left {
	margin-bottom: 36px;
}

.quote-section .section-head--left {
	margin-bottom: 20px;
}

.reviews-summary .section-head--left {
	margin-bottom: 18px;
}

.section { padding: calc(24px * var(--ui-scale)) 0 var(--section-padding-y); }
.section-alt { background: #f8faf9; }
#services {
	background: #fff;
}

/* ── Services grid ── */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}

.service-card > a {
	display: block;
	position: relative;
	color: inherit;
	text-decoration: none !important;
}

.service-card > a:hover,
.service-card > a:focus,
.service-card > a:active {
	color: inherit;
	text-decoration: none !important;
}

.service-card > a *,
.service-card > a:hover *,
.service-card > a:focus *,
.service-card > a:active * {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

.service-card:hover {
	transform: scale(1.03) translateY(-6px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.service-card-image {
	height: var(--card-image-height);
	overflow: hidden;
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.service-card:hover .service-card-image img {
	transform: scale(1.08);
}

.service-card-icon {
	position: absolute;
	left: calc(20px * var(--ui-scale));
	top: var(--card-image-height);
	transform: translateY(-50%);
	width: calc(56px * var(--ui-scale));
	height: calc(56px * var(--ui-scale));
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card-icon svg {
	width: calc(26px * var(--ui-scale));
	height: calc(26px * var(--ui-scale));
	display: block;
}

.service-card-icon .charles-leaf-icon {
	width: calc(26px * var(--ui-scale));
	height: calc(26px * var(--ui-scale));
}

.service-card-body { padding: calc(36px * var(--ui-scale)) calc(24px * var(--ui-scale)) calc(28px * var(--ui-scale)); }
.service-card-body h3 {
	margin: 0 0 12px;
	font-size: clamp(calc(1.45rem * var(--ui-scale)), calc(2.15vw * var(--ui-scale)), calc(1.9rem * var(--ui-scale)));
	font-weight: 900;
	color: var(--green) !important;
}
.service-card-body p {
	margin: 0 0 16px;
	color: var(--text-muted);
	font-size: var(--type-body);
}
.service-card:hover .service-card-body h3,
.service-card > a:hover .service-card-body h3 {
	color: var(--green);
	text-decoration: none;
}
.service-card:hover .service-card-body p {
	text-decoration: none;
}
.service-card-body .learn-more {
	font-weight: 700;
	font-size: var(--type-small);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--green);
	text-decoration: none !important;
	border-bottom: none !important;
}
.service-card:hover .service-card-body .learn-more,
.service-card > a:hover .learn-more {
	color: var(--green);
	text-decoration: none !important;
	border-bottom: none !important;
}

.why-choose-widget {
	width: 100%;
}

.why-choose-widget .widget {
	margin: 0;
	padding: 0;
}

/* ── Why choose us ── */
.why-choose-section {
	background: #fff;
	overflow: hidden;
}

.why-choose-layout {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	min-height: clamp(calc(560px * var(--ui-scale)), calc(62vw * var(--ui-scale)), calc(760px * var(--ui-scale)));
}

.why-choose-media {
	grid-area: 1 / 1;
	position: relative;
	z-index: 1;
	width: 72%;
	max-width: calc(920px * var(--ui-scale));
	min-height: inherit;
}

.why-choose-media > img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: clamp(calc(560px * var(--ui-scale)), calc(62vw * var(--ui-scale)), calc(760px * var(--ui-scale)));
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
}

.why-choose-logo-badge {
	position: absolute;
	top: calc(32px * var(--ui-scale));
	right: calc(-48px * var(--ui-scale));
	z-index: 3;
	width: calc(108px * var(--ui-scale));
	height: calc(108px * var(--ui-scale));
	padding: calc(14px * var(--ui-scale));
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 calc(14px * var(--ui-scale)) calc(36px * var(--ui-scale)) rgba(0, 0, 0, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-choose-logo-badge img {
	width: 100%;
	height: auto;
	min-height: 0;
	object-fit: contain;
	border-radius: 0;
	box-shadow: none;
}

.why-choose-panel {
	grid-area: 1 / 1;
	justify-self: end;
	align-self: center;
	width: min(52%, calc(700px * var(--ui-scale)));
	margin-right: 0;
	transform: translateX(calc(80px * var(--ui-scale)));
	background: #fff;
	padding: clamp(calc(48px * var(--ui-scale)), calc(5.5vw * var(--ui-scale)), calc(80px * var(--ui-scale)));
	box-shadow: 0 calc(32px * var(--ui-scale)) calc(80px * var(--ui-scale)) rgba(15, 40, 28, 0.16);
	position: relative;
	z-index: 2;
}

.why-choose-panel .section-head {
	margin-bottom: 32px;
}

.why-choose-panel .section-head--left {
	margin-bottom: 0;
}

.why-choose-panel h2 {
	color: var(--green-dark);
	font-size: clamp(calc(2.5rem * var(--ui-scale)), calc(4.2vw * var(--ui-scale)), calc(3.65rem * var(--ui-scale)));
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.why-choose-panel .eyebrow {
	margin-bottom: calc(14px * var(--ui-scale));
	font-size: clamp(calc(1rem * var(--ui-scale)), calc(1.3vw * var(--ui-scale)), calc(1.15rem * var(--ui-scale)));
}

.split-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.split-image img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	width: 100%;
}

.why-choose-intro {
	margin: 0 0 22px;
	color: var(--text-muted);
	font-size: var(--type-body-lg);
	line-height: 1.7;
	max-width: none;
}

.why-choose-panel .why-choose-intro {
	font-size: clamp(calc(1.1rem * var(--ui-scale)), calc(1.6vw * var(--ui-scale)), calc(1.35rem * var(--ui-scale)));
	line-height: 1.75;
}

.why-choose-intro-secondary {
	margin-bottom: 32px;
}

.why-choose-panel .check-grid {
	gap: 16px 28px;
	margin: 0 0 36px;
}

.why-choose-panel .check-item {
	font-size: clamp(calc(1rem * var(--ui-scale)), calc(1.25vw * var(--ui-scale)), calc(1.125rem * var(--ui-scale)));
	gap: calc(12px * var(--ui-scale));
}

.why-choose-panel .check-item::before {
	width: calc(30px * var(--ui-scale));
	height: calc(30px * var(--ui-scale));
	font-size: calc(14px * var(--ui-scale));
}

.why-choose-panel .btn-about-us {
	padding: calc(20px * var(--ui-scale)) calc(38px * var(--ui-scale));
	font-size: calc(16px * var(--ui-scale));
}

.check-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 32px;
	margin: 0 0 36px;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: var(--type-body);
	font-weight: 600;
	color: var(--text);
	line-height: 1.35;
}

.check-item::before {
	content: '✓';
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: calc(14px * var(--ui-scale));
	font-weight: 800;
	line-height: 1;
}

.btn-about-us {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: var(--btn-padding);
	font-size: var(--btn-font);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 999px;
}

/* ── Before / After (Results) ── */
.before-after-widget {
	width: 100%;
}

.before-after-widget .widget {
	margin: 0;
	padding: 0;
}

.results-section {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: clamp(calc(640px * var(--ui-scale)), 88vh, calc(920px * var(--ui-scale)));
	padding: clamp(calc(56px * var(--ui-scale)), calc(7vw * var(--ui-scale)), calc(96px * var(--ui-scale))) 0;
	background-color: var(--green-dark);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.results-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(20, 48, 34, 0.62);
	z-index: 0;
}

.results-section > .container-modern {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container);
}

.results-section .before-after-widget,
.results-section .before-after-widget .widget {
	width: 100%;
	color: #fff;
}

.results-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
	position: relative;
	z-index: 2;
}

.results-head {
	text-align: left;
}

.results-section .section-head .eyebrow {
	color: #f7d04a;
	opacity: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 2px 10px rgba(0, 0, 0, 0.55);
}

.results-section .section-head h2 {
	color: #ffffff !important;
	opacity: 1;
	text-transform: none !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 3px 14px rgba(0, 0, 0, 0.55);
}

.results-nav {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	position: relative;
	z-index: 3;
}

.results-nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.85);
	background: rgba(20, 48, 34, 0.35);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}

.results-nav-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
}

.results-track-wrap {
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	max-width: 100%;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.results-track-wrap::-webkit-scrollbar {
	display: none;
}

.results-section .gallery-row.results-track {
	display: flex;
	flex-wrap: nowrap;
	gap: calc(32px * var(--ui-scale));
	width: max-content;
}

.results-section .ba-card {
	flex: 0 0 auto;
	min-width: calc(480px * var(--ui-scale));
	border: calc(2px * var(--ui-scale)) solid rgba(255, 255, 255, 0.95);
	border-radius: calc(16px * var(--ui-scale));
	overflow: hidden;
	box-shadow: 0 calc(24px * var(--ui-scale)) calc(56px * var(--ui-scale)) rgba(0, 0, 0, 0.32);
	background: #fff;
	scroll-snap-align: start;
}

.results-nav-btn:disabled,
.results-nav-btn.is-disabled {
	opacity: 0.35;
	cursor: default;
}

.results-section .ba-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: rgba(255, 255, 255, 0.9);
}

.results-section .ba-half {
	position: relative;
	overflow: hidden;
}

.results-section .ba-half img {
	width: 100%;
	height: clamp(calc(300px * var(--ui-scale)), calc(34vw * var(--ui-scale)), calc(420px * var(--ui-scale)));
	object-fit: cover;
	display: block;
}

.results-section .ba-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
	color: #fff;
	font-size: calc(13px * var(--ui-scale));
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1;
}

/* Legacy gallery styles (if used elsewhere) */
.gallery-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ba-card {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.ba-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.ba-images img { width: 100%; height: 200px; object-fit: cover; }

.ba-label {
	position: relative;
}

.ba-label span {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(0,0,0,.65);
	color: #fff;
	font-size: calc(11px * var(--ui-scale));
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}

/* ── Process ── */
.process-section {
	background: #fff;
}

.process-flow {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0;
}

.process-step {
	flex: 1;
	min-width: 0;
	text-align: center;
	padding: 0 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.process-icon {
	width: 124px;
	height: 124px;
	margin: 0 auto 28px;
	border-radius: 50%;
	border: 2px solid #e8ecef;
	background: #f8fafb;
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.process-icon svg {
	width: 52px;
	height: 52px;
	display: block;
}

.process-icon .charles-leaf-icon {
	width: 50px;
	height: 50px;
}

.process-step h4 {
	margin: 0 0 14px;
	font-size: clamp(calc(1.35rem * var(--ui-scale)), calc(2vw * var(--ui-scale)), calc(1.8rem * var(--ui-scale)));
	font-weight: 800 !important;
	color: var(--green) !important;
	line-height: 1.25;
	text-transform: none;
}

.process-step p {
	margin: 0 auto;
	max-width: 260px;
	font-size: clamp(calc(1.05rem * var(--ui-scale)), calc(1.35vw * var(--ui-scale)), calc(1.22rem * var(--ui-scale)));
	line-height: 1.55;
	color: var(--text-muted);
}

.process-line {
	flex: 1 1 90px;
	min-width: 40px;
	max-width: 120px;
	display: flex;
	align-items: center;
	margin-top: 44px;
	padding: 0 4px;
}

.process-line-left,
.process-line-right {
	height: 0;
	border-top: 4px dotted;
}

.process-line-left {
	flex: 0 0 20%;
	border-color: var(--green);
}

.process-line-right {
	flex: 1;
	border-color: #cfd6dc;
}

.process-line-dot {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	background: #b8c2cb;
	border-radius: 50%;
	margin: 0 4px;
}

/* Legacy process grid (if used elsewhere) */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.process-step .step-num {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: calc(20px * var(--ui-scale));
}

/* ── Testimonials ── */
.reviews-section {
	padding: clamp(calc(48px * var(--ui-scale)), calc(6vw * var(--ui-scale)), calc(88px * var(--ui-scale))) 0;
}

.reviews-section .section-head h2 {
	font-size: clamp(calc(3rem * var(--ui-scale)), calc(5.5vw * var(--ui-scale)), calc(4.25rem * var(--ui-scale)));
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.reviews-section .section-head .eyebrow {
	font-size: clamp(calc(1.15rem * var(--ui-scale)), calc(1.8vw * var(--ui-scale)), calc(1.5rem * var(--ui-scale)));
	letter-spacing: 0.14em;
	margin-bottom: calc(16px * var(--ui-scale));
}

.reviews-split {
	display: grid;
	grid-template-columns: minmax(calc(300px * var(--ui-scale)), 0.95fr) minmax(0, 1.75fr);
	gap: clamp(calc(36px * var(--ui-scale)), calc(5vw * var(--ui-scale)), calc(64px * var(--ui-scale)));
	align-items: center;
}

.reviews-summary {
	text-align: left;
}

.reviews-summary .section-head--left {
	margin-bottom: 24px;
}

.reviews-rating-row {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 16px 0 14px;
}

.reviews-section .rating-big {
	font-size: clamp(calc(4.5rem * var(--ui-scale)), calc(8vw * var(--ui-scale)), calc(6.25rem * var(--ui-scale)));
	font-weight: 800;
	color: var(--text);
	line-height: 1;
}

.reviews-section .stars-lg {
	color: var(--gold);
	font-size: clamp(calc(3.5rem * var(--ui-scale)), calc(5.5vw * var(--ui-scale)), calc(4.75rem * var(--ui-scale)));
	letter-spacing: calc(8px * var(--ui-scale));
	line-height: 1;
}

.reviews-count {
	margin: 0;
	font-size: clamp(calc(1.15rem * var(--ui-scale)), calc(1.8vw * var(--ui-scale)), calc(1.45rem * var(--ui-scale)));
	color: var(--text-muted);
	line-height: 1.4;
}

.reviews-count span {
	color: var(--green);
	font-weight: 700;
}

.review-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.review-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: clamp(calc(32px * var(--ui-scale)), calc(3.5vw * var(--ui-scale)), calc(42px * var(--ui-scale))) clamp(calc(30px * var(--ui-scale)), calc(3vw * var(--ui-scale)), calc(38px * var(--ui-scale))) clamp(calc(28px * var(--ui-scale)), calc(3vw * var(--ui-scale)), calc(34px * var(--ui-scale)));
	box-shadow: 0 calc(12px * var(--ui-scale)) calc(32px * var(--ui-scale)) rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	min-height: calc(320px * var(--ui-scale));
	min-width: 0;
}

.review-card-stars {
	color: var(--gold);
	font-size: calc(42px * var(--ui-scale));
	letter-spacing: 6px;
	margin-bottom: 20px;
	line-height: 1;
}

.review-card p {
	margin: 0 0 22px;
	color: var(--text);
	font-size: clamp(calc(1.25rem * var(--ui-scale)), calc(1.9vw * var(--ui-scale)), calc(1.5rem * var(--ui-scale)));
	line-height: 1.7;
	flex: 1;
}

.review-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

.review-card-author {
	font-size: clamp(calc(1.2rem * var(--ui-scale)), calc(1.65vw * var(--ui-scale)), calc(1.4rem * var(--ui-scale)));
	font-weight: 600;
	color: var(--text);
}

.review-card-google {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: calc(40px * var(--ui-scale));
	height: calc(40px * var(--ui-scale));
}

.review-card-google svg {
	width: calc(34px * var(--ui-scale));
	height: calc(34px * var(--ui-scale));
	display: block;
}

.reviews-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}

.reviews-nav-btn {
	width: calc(48px * var(--ui-scale));
	height: calc(48px * var(--ui-scale));
	border-radius: 50%;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--green-dark);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}

.reviews-nav-btn:hover {
	background: var(--green-pale);
	border-color: var(--green);
}

.reviews-nav-btn:disabled,
.reviews-nav-btn.is-disabled {
	opacity: 0.35;
	cursor: default;
}

.reviews-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.reviews-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: #d1d5db;
	cursor: pointer;
}

.reviews-dot.is-active {
	background: var(--green);
}

/* ── Emergency CTA ── */
.emergency-bar {
	position: relative;
	background-color: var(--green-dark);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	padding: 40px 0;
	overflow: hidden;
}

.emergency-bar::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(12, 28, 20, 0.82);
	z-index: 0;
}

.emergency-bar-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.emergency-bar-main {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
	min-width: 0;
}

.emergency-icon {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: #fff;
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.emergency-icon svg,
.emergency-icon .charles-thundercloud-icon {
	width: 38px;
	height: 38px;
	display: block;
}

.emergency-copy {
	flex: 1;
	min-width: 0;
}

.emergency-bar h3 {
	margin: 0 0 8px;
	font-size: var(--type-subsection);
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
}

.emergency-bar p {
	margin: 0;
	font-size: var(--type-body-lg);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
	max-width: 620px;
}

.emergency-phone-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	gap: 12px;
	padding: var(--btn-padding);
	border-radius: 999px;
	font-weight: 800;
	font-size: var(--btn-font);
	color: var(--green-dark);
	white-space: nowrap;
	flex-shrink: 0;
}

.emergency-phone-btn:hover {
	color: var(--green-dark);
}

/* ── Areas ── */
.areas-section {
	padding: 0;
	background: #f8faf9;
	overflow: hidden;
}

.areas-layout {
	display: flex;
	align-items: stretch;
	min-height: 500px;
}

.areas-content {
	flex: 0 0 44%;
	min-width: 0;
	display: flex;
	align-items: center;
	background: #f8faf9;
	padding: 14px 32px 72px max(20px, calc((100vw - var(--container)) / 2 + 20px));
	position: relative;
	z-index: 2;
}

.areas-content-inner {
	width: 100%;
	max-width: 560px;
}

.areas-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px 18px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.areas-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: var(--type-body);
	font-weight: 500;
	color: var(--text);
	line-height: 1.35;
}

.areas-list li::before {
	content: '✓';
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: calc(13px * var(--ui-scale));
	font-weight: 800;
	line-height: 1;
}

.areas-map {
	flex: 1 1 56%;
	position: relative;
	min-height: 500px;
	margin-left: -72px;
	background-color: #e8ede9;
	overflow: hidden;
}

.areas-map-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.areas-map-fade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		#f8faf9 0%,
		rgba(248, 250, 249, 0.96) 6%,
		rgba(248, 250, 249, 0.75) 14%,
		rgba(248, 250, 249, 0.35) 26%,
		rgba(248, 250, 249, 0.08) 40%,
		transparent 55%
	);
	pointer-events: none;
}

/* ── Quote ── */
.quote-section {
	padding: 24px 0 var(--section-padding-y);
	background: #f3f5f4;
}

.quote-section--home {
	background: #fff;
	padding: calc(48px * var(--ui-scale)) 0 calc(80px * var(--ui-scale));
	overflow: visible;
}

.quote-section--home > .container-modern {
	max-width: min(calc(1320px * var(--ui-scale)), 96vw);
}

.quote-home-layout {
	display: flex;
	flex-direction: column;
	gap: calc(40px * var(--ui-scale));
}

.quote-home-frame {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: calc(28px * var(--ui-scale)) calc(48px * var(--ui-scale)) calc(24px * var(--ui-scale));
	overflow: visible;
	background:
		linear-gradient(var(--green), var(--green)) left top / calc(3px * var(--ui-scale)) 100% no-repeat,
		linear-gradient(var(--green), var(--green)) right top / calc(3px * var(--ui-scale)) 100% no-repeat,
		linear-gradient(var(--green), var(--green)) left top / calc(36px * var(--ui-scale)) calc(3px * var(--ui-scale)) no-repeat,
		linear-gradient(var(--green), var(--green)) right top / calc(36px * var(--ui-scale)) calc(3px * var(--ui-scale)) no-repeat;
}

.quote-home-frame::before,
.quote-home-frame::after {
	content: none;
}

.quote-home-header {
	text-align: center;
	margin-bottom: calc(44px * var(--ui-scale));
	padding-top: calc(8px * var(--ui-scale));
}

.quote-home-title {
	margin: 0 auto calc(28px * var(--ui-scale));
	max-width: 14ch;
	font-size: clamp(calc(2.85rem * var(--ui-scale)), calc(5.8vw * var(--ui-scale)), calc(4.5rem * var(--ui-scale)));
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.025em;
	color: #1e2d3b;
}

.quote-home-lead {
	margin: 0 auto calc(36px * var(--ui-scale));
	max-width: 36em;
	font-size: clamp(calc(1.15rem * var(--ui-scale)), calc(1.75vw * var(--ui-scale)), calc(1.45rem * var(--ui-scale)));
	line-height: 1.6;
	color: #707070;
	font-weight: 400;
}

.quote-home-factors-title {
	margin: 0 auto calc(28px * var(--ui-scale));
	max-width: 36em;
	font-size: clamp(calc(1.15rem * var(--ui-scale)), calc(1.75vw * var(--ui-scale)), calc(1.45rem * var(--ui-scale)));
	line-height: 1.45;
	color: #5f6b63;
	font-weight: 700;
	text-align: center;
}

.quote-home-points li strong {
	color: inherit;
	font-weight: 700;
}

.quote-home-points {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: min(100%, calc(900px * var(--ui-scale)));
	display: grid;
	gap: calc(28px * var(--ui-scale));
	text-align: left;
}

.quote-home-points li {
	display: flex;
	align-items: flex-start;
	gap: calc(20px * var(--ui-scale));
	font-size: clamp(calc(1.05rem * var(--ui-scale)), calc(1.55vw * var(--ui-scale)), calc(1.3rem * var(--ui-scale)));
	line-height: 1.65;
	color: #707070;
	font-weight: 400;
}

.quote-home-points li::before {
	content: '';
	flex-shrink: 0;
	width: calc(32px * var(--ui-scale));
	height: calc(32px * var(--ui-scale));
	border-radius: 50%;
	background-color: var(--green);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h12M13 7l5 5-5 5'/%3E%3C/svg%3E");
	background-size: calc(14px * var(--ui-scale));
	background-position: center;
	background-repeat: no-repeat;
	margin-top: max(0px, calc((1lh - calc(32px * var(--ui-scale))) / 2));
}

.quote-section--home .quote-form-card {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	justify-self: stretch;
}

.quote-section--home .quote-form-card #FSContact1,
.quote-section--home .quote-form-card form,
.quote-section--home .quote-form-card #fscf_form1 {
	width: 100% !important;
	max-width: none !important;
}

.quote-section--home .quote-form-card #fscf_form1,
.quote-section--home .quote-form-card #fscf_form1.quote-home-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 20px !important;
	margin: 0;
	align-items: stretch;
	width: 100% !important;
	max-width: none !important;
}

.quote-section--home .quote-form-card #fscf_form1 > div:not([id^="fscf_div_clear"]):not(#fscf_submit_div1):not([id^="fscf_form_error"]) {
	display: none !important;
}

.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"] {
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	align-self: stretch;
}

.quote-section--home .quote-form-card #fscf_form1 > #fscf_form_error1 {
	grid-column: 1 / -1;
}

.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1) {
	grid-row: 1;
	grid-column: 1;
}

.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Phone"]) {
	grid-row: 1;
	grid-column: 2;
}

.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1) {
	grid-row: 2;
	grid-column: 1;
}

.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="subject"]) {
	display: none !important;
}

.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Suburb"]) {
	grid-row: 2;
	grid-column: 2;
}

.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(textarea[name="message"]) {
	grid-row: 3;
	grid-column: 1 / -1;
}

.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Upload-File"]),
.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(input[type="file"]) {
	grid-row: 4;
	grid-column: 1 / -1;
}

.quote-section--home .quote-form-card #fscf_submit_div1 {
	grid-row: 5;
	grid-column: 1 / -1;
	display: block;
	margin: 4px 0 0;
	padding-bottom: 8px;
}

.quote-section--home .quote-form-card input:not([type="submit"]):not([type="hidden"]):not([type="file"]),
.quote-section--home .quote-form-card textarea,
.quote-section--home .quote-form-card select {
	background: #ececec !important;
	border: 1px solid #3a3a3a !important;
	border-radius: 0 !important;
	padding: 16px 18px !important;
	font-size: calc(1.25rem * var(--ui-scale)) !important;
	line-height: 1.4;
	min-height: 54px;
	box-sizing: border-box;
	color: var(--text) !important;
}

.quote-section--home .quote-form-card input::placeholder,
.quote-section--home .quote-form-card textarea::placeholder {
	color: #6b6b6b;
	opacity: 1;
	font-size: calc(1.25rem * var(--ui-scale));
}

.quote-section--home .quote-form-card textarea[name="message"] {
	min-height: 140px;
	height: auto;
	resize: vertical;
}

.quote-section--home .quote-form-card .quote-upload-dropzone {
	min-height: 80px;
	padding: 16px 18px;
	border-radius: 0;
	border: 1px solid #3a3a3a;
	background: #ececec;
}

.quote-section--home .quote-form-card .fscf-button,
.quote-section--home .quote-form-card input[type="submit"] {
	width: auto !important;
	max-width: max-content;
	min-width: calc(280px * var(--ui-scale));
	background: var(--green) !important;
	margin-top: 4px;
	padding: 18px 24px !important;
	font-size: calc(1.35rem * var(--ui-scale)) !important;
	font-weight: 800 !important;
	letter-spacing: 0.1em;
	border-radius: 999px !important;
	box-sizing: border-box;
	text-transform: uppercase;
	justify-self: center;
}

.quote-section--home .quote-form-card .fscf-button:hover,
.quote-section--home .quote-form-card input[type="submit"]:hover {
	background: var(--green-dark) !important;
}

.quote-home-photo {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	line-height: 0;
	background: #000;
}

.quote-home-photo img {
	display: block;
	width: 100%;
	height: auto;
	max-height: clamp(320px, 48vw, 600px);
	object-fit: contain;
	object-position: center center;
}

.quote-split {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(0, 480px);
	gap: 48px;
	align-items: center;
}

.quote-info {
	display: flex;
	align-items: center;
	gap: 28px;
}

.quote-info-copy {
	flex: 1;
	min-width: 0;
}

.quote-icon {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: #eef2ef;
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
}

.quote-icon svg {
	width: 46px;
	height: 46px;
	display: block;
}

.quote-intro {
	margin: 0 0 32px;
	color: var(--text-muted);
	font-size: var(--type-body-lg);
	line-height: 1.6;
	max-width: 400px;
}

.quote-benefits {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}

.quote-benefits li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: var(--type-body);
	font-weight: 500;
	color: var(--text);
}

.quote-benefits li::before {
	content: '✓';
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: calc(11px * var(--ui-scale));
	font-weight: 800;
	line-height: 1;
}

.quote-form-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 22px 24px 24px;
	box-shadow: var(--shadow);
	max-width: 480px;
	width: 100%;
	justify-self: end;
}

.quote-form-card > p,
.quote-form-card > .fscf-div-clear,
.quote-form-card > div.fscf-div-clear {
	display: none !important;
}

.quote-form-card #fscf_form1 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	align-items: end;
}

.quote-form-card #FSContact1 {
	display: block;
}

/* Reset plugin floats/widths that break the grid layout */
.quote-form-card [id^="fscf_div_clear"],
.quote-form-card [id^="fscf_div_field"],
.quote-form-card .fscf-div-field,
.quote-form-card .fscf-div-field-left,
.quote-form-card .fscf-div-field-prefollow,
.quote-form-card .fscf-div-field-follow {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	min-width: 0;
}

.quote-form-card .fscf-div-label,
.quote-form-card [id^="fscf_label"],
.quote-form-card [id^="fscf_hint_file_types"],
.quote-form-card #fscf_form1 > .fscf-div-clear:not([id^="fscf_div_clear"]),
.quote-form-card #fscf_form1 > div[style*="display:none"],
.quote-form-card .fscf-clear,
.quote-form-card br,
.quote-form-card [id^="fscf_captcha"],
.quote-form-card div:has([id^="fscf_captcha"]),
.quote-form-card #fscf_required1,
.quote-form-card form > p {
	display: none !important;
}

.quote-form-card #fscf_form1 > #fscf_form_error1 {
	grid-row: 1;
	grid-column: 1 / -1;
	display: block !important;
	margin: 0 0 4px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	font-size: calc(14px * var(--ui-scale));
	line-height: 1.4;
}

.quote-form-card [id^="fscf_div_field"] .fscf-div-error {
	display: block !important;
	margin: 0 0 6px;
	color: #dc2626;
	font-size: calc(13px * var(--ui-scale));
	line-height: 1.3;
}

.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1),
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1),
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Phone"]) {
	align-self: end;
}

/* Plugin leaves an empty title wrapper on standard name/email fields. */
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1) [id^="fscf_div_field"] > div:first-child,
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1) [id^="fscf_div_field"] > div:first-child {
	display: none !important;
}

.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1) {
	grid-row: 2;
	grid-column: 1;
}
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1) {
	grid-row: 2;
	grid-column: 2;
}
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Phone"]) {
	grid-row: 2;
	grid-column: 3;
}
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Suburb"]) {
	grid-row: 3;
	grid-column: 1 / -1;
}
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="subject"]) {
	grid-row: 4;
	grid-column: 1 / -1;
}
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(textarea[name="message"]) {
	grid-row: 5;
	grid-column: 1 / -1;
}

.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Upload-File"]),
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(input[type="file"]) {
	grid-row: 6;
	grid-column: 1 / -1;
	display: block !important;
	visibility: visible !important;
	min-height: 0;
}

.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Upload-File"]) .fscf-div-field,
.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(input[type="file"]) .fscf-div-field {
	display: block !important;
	width: 100% !important;
}

.quote-form-card #fscf_submit_div1 {
	grid-row: 7;
	grid-column: 1 / -1;
	margin: 0;
}

.quote-form-card input[type="file"].quote-upload-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.quote-form-card .quote-upload-dropzone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 100%;
	min-height: 92px;
	padding: 18px 16px;
	border: 1px dashed #d1d5db;
	border-radius: 10px;
	background: #fff;
	color: #6b7280;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.quote-form-card .quote-upload-dropzone:hover,
.quote-form-card .quote-upload-dropzone.is-dragover {
	border-color: #9ca3af;
	background: #fafafa;
	color: #4b5563;
}

.quote-form-card .quote-upload-dropzone.has-file {
	border-style: solid;
	border-color: #86efac;
	background: #f0fdf4;
	color: #166534;
}

.quote-form-card .quote-upload-dropzone.is-invalid {
	border-color: #dc2626 !important;
	background: #fef2f2;
	color: #b91c1c;
	box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.12);
}

.quote-form-card .quote-upload-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-bottom: 2px;
	color: inherit;
}

.quote-form-card .quote-upload-icon svg {
	width: 24px;
	height: 24px;
}

.quote-form-card .quote-upload-title {
	font-size: var(--type-body);
	font-weight: 500;
	line-height: 1.3;
	color: #374151;
}

.quote-form-card .quote-upload-dropzone.has-file .quote-upload-title {
	color: #166534;
}

.quote-form-card .quote-upload-note,
.quote-form-card .quote-upload-filename {
	font-size: calc(12px * var(--ui-scale));
	line-height: 1.3;
	color: #9ca3af;
}

.quote-form-card .quote-upload-filename {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #15803d;
}

.quote-form-card .quote-upload-error {
	margin: 8px 0 0;
	text-align: center;
}

.quote-form-card input:not([type="submit"]):not([type="hidden"]):not([type="file"]),
.quote-form-card textarea,
.quote-form-card select {
	width: 100% !important;
	max-width: none !important;
	padding: 15px 16px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-family: inherit;
	font-size: calc(1.25rem * var(--ui-scale));
	line-height: 1.4;
	margin: 0 !important;
	background: #fff !important;
	color: var(--text) !important;
	box-sizing: border-box;
	pointer-events: auto;
	cursor: text;
	display: block;
}

.quote-form-card input::placeholder,
.quote-form-card textarea::placeholder {
	color: #9ca3af;
	font-size: calc(1.25rem * var(--ui-scale));
}

.quote-form-card input.is-invalid,
.quote-form-card textarea.is-invalid {
	border-color: #dc2626 !important;
	box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.quote-form-card textarea[name="message"] {
	min-height: 46px;
	height: 46px;
	max-height: none;
	resize: vertical;
	line-height: 1.4;
	overflow: auto;
}

.quote-form-card .fscf-button,
.quote-form-card input[type="submit"] {
	grid-column: 1 / -1;
	background: var(--green-dark) !important;
	color: #fff !important;
	border: none !important;
	padding: var(--btn-padding) !important;
	border-radius: 999px !important;
	font-weight: 800 !important;
	font-size: calc(1.25rem * var(--ui-scale)) !important;
	letter-spacing: 0.06em;
	cursor: pointer;
	width: auto !important;
	max-width: max-content;
	min-width: calc(280px * var(--ui-scale));
	text-transform: uppercase;
	margin-top: 8px;
	justify-self: center;
}

.quote-form-card .fscf-button:hover,
.quote-form-card input[type="submit"]:hover {
	background: var(--green) !important;
}

.quote-form-card .fscf-button.is-submitting,
.quote-form-card input[type="submit"].is-submitting,
.quote-form-card .fscf-button:disabled,
.quote-form-card input[type="submit"]:disabled,
.contact-form-wrap .fscf-button.is-submitting,
.contact-form-wrap input[type="submit"].is-submitting,
.contact-form-wrap .fscf-button:disabled,
.contact-form-wrap input[type="submit"]:disabled,
.charles-contact-page .quote-form-card .fscf-button.is-submitting,
.charles-contact-page .quote-form-card input[type="submit"].is-submitting {
	opacity: 0.92;
	cursor: not-allowed !important;
	pointer-events: none;
	color: transparent !important;
	position: relative;
}

.quote-form-card .fscf-button.is-submitting::after,
.quote-form-card input[type="submit"].is-submitting::after,
.contact-form-wrap .fscf-button.is-submitting::after,
.contact-form-wrap input[type="submit"].is-submitting::after,
.charles-contact-page .quote-form-card .fscf-button.is-submitting::after,
.charles-contact-page .quote-form-card input[type="submit"].is-submitting::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: charles-btn-spin 0.65s linear infinite;
}

@keyframes charles-btn-spin {
	to {
		transform: rotate(360deg);
	}
}

.quote-form-card p:has(.fscf-button),
.quote-form-card div:has(> .fscf-button),
.quote-form-card div:has(> input[type="submit"]) {
	grid-column: 1 / -1;
	margin: 0;
}

/* ── Contact (legacy) ── */
.contact-split {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 40px;
	align-items: start;
}

.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
}

.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-family: inherit;
	font-size: calc(1.25rem * var(--ui-scale));
	margin-bottom: 12px;
}

.contact-form-wrap .fscf-button,
.contact-form-wrap input[type=submit] {
	background: var(--green) !important;
	color: #fff !important;
	border: none !important;
	padding: 14px 24px !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	cursor: pointer;
	width: 100%;
	text-transform: uppercase;
}

/* ── Contact page ── */
.contact-page-hero {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: clamp(calc(340px * var(--ui-scale)), 42vh, calc(480px * var(--ui-scale)));
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	background: var(--green-dark) center right / cover no-repeat;
	color: #fff;
	overflow: hidden;
}

.contact-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(20, 48, 34, 0.92) 0%, rgba(20, 48, 34, 0.72) 42%, rgba(20, 48, 34, 0.35) 100%);
}

.contact-page-hero > .container-modern.contact-page-hero-inner {
	margin: 0;
	margin-left: max(20px, calc((100vw - var(--container)) / 2));
	margin-right: auto;
	width: 100%;
	max-width: var(--container);
	padding-left: 20px;
	padding-right: 20px;
}

.contact-page-hero-inner {
	position: relative;
	z-index: 1;
	padding: 72px 0 56px;
	max-width: 760px;
}

.contact-page-hero .contact-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 14px;
	font-size: var(--type-small);
	font-weight: 500;
}

.contact-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
	font-size: calc(13px * var(--ui-scale));
	font-weight: 500;
}

.contact-breadcrumb a {
	color: #6ee7a8;
	text-decoration: none;
}

.contact-breadcrumb a:hover {
	color: #fff;
	text-decoration: underline;
}

.contact-page-hero .contact-breadcrumb-sep {
	color: #6ee7a8;
	font-size: calc(11px * var(--ui-scale));
	line-height: 1;
}

.contact-breadcrumb [aria-current="page"] {
	color: #3dd68c;
}

.contact-page-hero h1 {
	margin: 0 0 14px;
	font-size: var(--type-page-title);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.03em;
	color: #fff;
}

.contact-page-hero-lead {
	margin: 0;
	max-width: 620px;
	font-size: var(--type-body-lg);
	line-height: 1.55;
	font-weight: 400;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.92);
}

.contact-page-section {
	padding: var(--section-padding-y) 0 calc(var(--section-padding-y) + 16px);
	background: #fff;
}

.charles-contact-page .contact-split {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(calc(32px * var(--ui-scale)), calc(5vw * var(--ui-scale)), calc(64px * var(--ui-scale)));
	align-items: start;
}

.contact-details .section-head--left {
	margin-bottom: 20px;
}

.contact-details .eyebrow {
	font-size: calc(13px * var(--ui-scale));
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--green-dark);
	margin-bottom: 10px;
}

.contact-details .section-head h2 {
	font-size: var(--type-section-title);
}

.contact-details-intro {
	margin: 16px 0 0;
	max-width: 580px;
	font-size: var(--type-body-lg);
	line-height: 1.65;
	color: var(--text);
}

.contact-detail-list {
	list-style: none;
	padding: 0;
	margin: 40px 0 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid var(--border);
}

.contact-detail-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
}

.contact-detail-icon {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--green-pale);
	border: 1px solid rgba(45, 106, 79, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-dark);
}

.contact-detail-body {
	flex: 1;
	min-width: 0;
}

.contact-detail-item h3 {
	margin: 0 0 6px;
	font-size: var(--type-card-title);
	font-weight: 700;
	color: var(--text);
	line-height: 1.3;
}

.contact-detail-value {
	margin: 0;
	font-size: var(--type-body-lg);
	font-weight: 700;
	line-height: 1.35;
	color: var(--text);
}

.contact-detail-item a {
	color: var(--text);
	font-weight: 700;
	text-decoration: none;
}

.contact-detail-item a:hover {
	color: var(--green-dark);
	text-decoration: underline;
}

.contact-detail-note {
	margin: 4px 0 0 !important;
	font-size: calc(13px * var(--ui-scale)) !important;
	line-height: 1.5;
	color: var(--text-muted) !important;
}

.contact-follow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 36px;
	padding-top: 8px;
}

.contact-follow-label {
	font-size: calc(13px * var(--ui-scale));
	font-weight: 800;
	color: var(--green-dark);
}

.contact-social {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.contact-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background 0.2s ease, transform 0.2s ease;
}

.contact-social a:hover {
	background: var(--green);
	color: #fff;
	transform: translateY(-1px);
}

.contact-social a svg {
	display: block;
}

.contact-form-intro {
	margin-bottom: 28px;
}

.contact-form-intro h3 {
	margin: 0 0 10px;
	font-size: clamp(calc(1.25rem * var(--ui-scale)), calc(2vw * var(--ui-scale)), calc(1.5rem * var(--ui-scale)));
	font-weight: 800;
	color: var(--green-dark);
	letter-spacing: -0.02em;
}

.contact-form-intro p {
	margin: 0;
	font-size: calc(14px * var(--ui-scale));
	line-height: 1.6;
	color: var(--text-muted);
}

.charles-contact-page .contact-form-column .quote-form-card {
	max-width: none;
	justify-self: stretch;
	padding: 36px 40px 40px;
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.charles-contact-page .contact-form-intro {
	margin-bottom: 28px;
	padding: 0;
	text-align: center;
}

.charles-contact-page .contact-form-intro h3 {
	font-size: clamp(calc(1.75rem * var(--ui-scale)), calc(3vw * var(--ui-scale)), calc(2.25rem * var(--ui-scale)));
	margin: 0 0 12px;
	line-height: 1.15;
	text-align: center;
}

.charles-contact-page .contact-form-intro p {
	font-size: calc(16px * var(--ui-scale));
	line-height: 1.6;
	margin: 0 auto;
	max-width: 420px;
	text-align: center;
}

.charles-contact-page .quote-form-card #FSContact1,
.charles-contact-page .quote-form-card #fscf_form1 {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.charles-contact-page .quote-form-card #fscf_form1 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: end;
}

.charles-contact-page .quote-form-card [id^="fscf_div_clear"],
.charles-contact-page .quote-form-card [id^="fscf_div_field"],
.charles-contact-page .quote-form-card .fscf-div-field,
.charles-contact-page .quote-form-card .fscf-div-field-left,
.charles-contact-page .quote-form-card .fscf-div-field-prefollow,
.charles-contact-page .quote-form-card .fscf-div-field-follow {
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1) {
	grid-row: 2;
	grid-column: 1;
}

.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Phone"]) {
	grid-row: 2;
	grid-column: 2;
}

.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1) {
	grid-row: 3;
	grid-column: 1 / -1;
}

.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Suburb"]) {
	grid-row: 4;
	grid-column: 1 / -1;
}

.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="subject"]) {
	grid-row: 5;
	grid-column: 1 / -1;
}

.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(textarea[name="message"]) {
	grid-row: 6;
	grid-column: 1 / -1;
}

.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(input[type="file"]) {
	grid-row: 7;
	grid-column: 1 / -1;
	display: block !important;
}

.charles-contact-page .quote-form-card #fscf_submit_div1 {
	grid-row: 8;
	grid-column: 1 / -1;
}

.charles-contact-page .quote-form-card input:not([type="submit"]):not([type="hidden"]),
.charles-contact-page .quote-form-card textarea,
.charles-contact-page .quote-form-card select {
	padding: 15px 16px;
	font-size: calc(1.25rem * var(--ui-scale));
	border-radius: 10px;
}

.charles-contact-page .quote-form-card textarea[name="message"] {
	min-height: 120px;
	height: auto;
}

.charles-contact-page .quote-form-card .fscf-button,
.charles-contact-page .quote-form-card input[type="submit"] {
	padding: 18px 24px !important;
	font-size: calc(14px * var(--ui-scale)) !important;
	border-radius: 10px !important;
	margin-top: 8px;
}

/* ── Intro content from WP ── */
.intro-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	color: var(--text-muted);
}
.intro-content h2 { color: var(--text); }

/* ── About page ── */
.about-page-section {
	padding-top: 56px;
	padding-bottom: 56px;
}

.about-page-split {
	align-items: start;
}

.about-page-content .section-head {
	margin-bottom: 20px;
}

.about-intro {
	text-align: left;
	max-width: none;
}

.about-page-editor-content {
	color: var(--text-muted);
	font-size: calc(15px * var(--ui-scale));
	line-height: 1.7;
}

.about-page-editor-content p {
	margin: 0 0 16px;
}

.about-page-checks {
	display: grid;
	grid-template-columns: repeat(2, max-content);
	justify-content: center;
	column-gap: 48px;
	row-gap: 16px;
	max-width: none;
	margin: 0 auto 32px;
}

.about-page-cta {
	text-align: center;
	margin-top: 8px;
}

.charles-about-page .about-page-hero-lead {
	max-width: 520px;
}

.charles-about-page .about-page-hero {
	background-position: center right;
	min-height: 300px;
}

.charles-about-page .about-page-hero::before {
	background: linear-gradient(105deg, rgba(20, 48, 34, 0.94) 0%, rgba(20, 48, 34, 0.78) 45%, rgba(20, 48, 34, 0.25) 72%, rgba(20, 48, 34, 0.1) 100%);
}

.about-faq-section {
	padding-top: 56px;
	padding-bottom: 56px;
}

.about-faq-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: stretch;
}

.about-faq-content {
	display: flex;
	flex-direction: column;
}

.about-faq-content .section-head {
	margin-bottom: 24px;
}

.about-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.about-faq-item {
	border: 1px solid #e4e8e4;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.about-faq-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: var(--text);
}

.about-faq-question {
	font-size: var(--type-body-lg);
	font-weight: 600;
	line-height: 1.4;
}

.about-faq-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #d7ddd7;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: calc(18px * var(--ui-scale));
	line-height: 1;
	color: var(--text-muted);
}

.about-faq-item.is-open .about-faq-icon {
	color: var(--green-dark);
	border-color: #b9d4c3;
}

.about-faq-panel {
	padding: 0 20px 18px;
	color: var(--text-muted);
	font-size: var(--type-body);
	line-height: 1.65;
}

.about-faq-panel p {
	margin: 0;
}

.about-faq-image {
	min-height: 100%;
	display: flex;
}

.about-faq-image img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: block;
	object-fit: cover;
	object-position: center;
}

/* ── Service detail pages ── */
.service-page-hero {
	justify-content: center;
	text-align: center;
	color: #fff;
	min-height: clamp(calc(340px * var(--ui-scale)), 42vh, calc(480px * var(--ui-scale)));
}

.service-page-hero::before {
	background: linear-gradient(180deg, rgba(16, 40, 28, 0.94) 0%, rgba(16, 40, 28, 0.82) 50%, rgba(16, 40, 28, 0.7) 100%);
}

.service-page-hero > .container-modern.service-page-hero-inner {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	max-width: 820px;
}

.service-page-hero-inner {
	padding: 72px 0 56px;
}

.service-page-hero .contact-breadcrumb {
	justify-content: center;
	font-size: var(--type-small);
	margin-bottom: 16px;
}

.service-page-hero .contact-breadcrumb a {
	color: #8ef0b8;
}

.service-page-hero .contact-breadcrumb a:hover {
	color: #fff;
}

.service-page-hero .contact-breadcrumb-sep {
	color: #8ef0b8;
	font-size: calc(13px * var(--ui-scale));
}

.service-page-hero .contact-breadcrumb [aria-current="page"] {
	color: #fff;
	font-weight: 600;
}

.service-page-hero h1 {
	margin-left: auto;
	margin-right: auto;
	font-size: var(--type-page-title);
	color: #fff;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.service-page-hero-lead {
	margin: 0 auto;
	max-width: 760px;
	font-size: var(--type-body-lg);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.service-detail-section {
	padding: var(--section-padding-y) 0 64px;
}

.service-detail-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.service-detail-image img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	width: 100%;
	display: block;
}

.service-detail-intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
}

.service-detail-intro-content {
	width: 100%;
	color: var(--text-muted);
	font-size: var(--type-body-lg);
	line-height: 1.75;
}

.service-detail-intro-content h2 {
	margin: 0 0 18px;
	font-size: var(--type-subsection);
	font-weight: 800;
	color: var(--green-dark);
	line-height: 1.2;
}

.service-detail-intro-content p {
	margin: 0 0 16px;
}

.service-detail-intro-content p:last-child {
	margin-bottom: 0;
}

.service-detail-more {
	padding: 64px 0 72px;
}

.service-detail-body {
	max-width: 900px;
	margin: 0 auto;
	text-align: left;
	color: var(--text-muted);
	font-size: var(--type-body-lg);
	line-height: 1.75;
}

.service-detail-body h2 {
	margin: 0 0 16px;
	font-size: clamp(calc(1.5rem * var(--ui-scale)), calc(2.5vw * var(--ui-scale)), calc(1.85rem * var(--ui-scale)));
	font-weight: 800;
	color: var(--green-dark);
	line-height: 1.2;
}

.service-detail-body h2:not(:first-child) {
	margin-top: 32px;
}

.service-detail-body p {
	margin: 0 0 18px;
}

.service-detail-body p:last-child {
	margin-bottom: 0;
}

.generic-page-section {
	padding: 120px 0 72px;
}

.generic-page-content {
	max-width: 820px;
	margin: 24px auto 0;
}

/* ── Gallery page ── */
.gallery-page-section {
	padding: 24px 0 var(--section-padding-y);
}

.gallery-page-content {
	margin: 0 auto;
	max-width: 1100px;
}

/* ── Projects page ── */
.projects-page-section {
	padding: 24px 0 var(--section-padding-y);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.project-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.project-card-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f3f4f6;
}

.project-card-image-trigger {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
	text-align: left;
}

.project-card-image-trigger:hover img {
	transform: scale(1.04);
}

.project-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.project-card-body {
	padding: 20px 22px 22px;
}

.project-card-title {
	margin: 0 0 10px;
	font-size: var(--type-card-title);
	font-weight: 700;
	color: var(--green-dark);
}

.project-card-caption {
	margin: 0;
	font-size: var(--type-body);
	line-height: 1.55;
	color: var(--text-muted);
}

.projects-empty {
	margin: 0;
	padding: 24px;
	text-align: center;
	color: var(--text-muted);
	background: var(--green-pale);
	border-radius: var(--radius);
}

.projects-pagination {
	margin-top: 36px;
}

.projects-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0 4px;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--green-dark);
	font-weight: 600;
	font-size: calc(14px * var(--ui-scale));
	text-decoration: none;
	background: #fff;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.projects-pagination .page-numbers:hover,
.projects-pagination .page-numbers.current {
	background: var(--green);
	border-color: var(--green);
	color: #fff;
}

.projects-pagination ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.projects-pagination li {
	list-style: none;
}

.charles-gallery-page .foogallery-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 0 auto;
	max-width: 1100px;
}

.charles-gallery-page .foogallery-container a {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 0 !important;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.charles-gallery-page .foogallery-container a:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.charles-gallery-page .foogallery-container a::before {
	display: none !important;
}

.charles-gallery-page .foogallery-container img {
	display: block;
	width: 340px !important;
	height: 255px !important;
	max-width: none !important;
	object-fit: cover;
	transition: none !important;
	transform: none !important;
}

.charles-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.charles-gallery-lightbox.is-open {
	display: flex;
}

.charles-gallery-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 24, 17, 0.92);
}

.charles-gallery-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: calc(30px * var(--ui-scale));
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.charles-gallery-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.28);
}

.charles-gallery-lightbox-content {
	position: relative;
	z-index: 1;
	max-width: min(92vw, 1100px);
	max-height: calc(100vh - 48px);
}

.charles-gallery-lightbox-content img {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 48px);
	width: auto;
	height: auto;
	margin: 0 auto;
	border-radius: 10px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

body.charles-gallery-lightbox-open {
	overflow: hidden;
}

.about-cards-section {
	padding-top: 72px;
	padding-bottom: 56px;
}

.about-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: calc(32px * var(--ui-scale));
	padding-top: 36px;
}

.about-card {
	background: #f7f8f7;
	border: 1px solid #e4e8e4;
	border-radius: var(--radius);
	padding: 48px 32px 36px;
	text-align: center;
}

.about-card-icon {
	width: 64px;
	height: 64px;
	margin: -68px auto 20px;
	border-radius: 50%;
	background: var(--green-dark);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-card-icon svg {
	width: 28px;
	height: 28px;
}

.about-card-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.about-card-title {
	margin: 0 0 18px;
	font-size: var(--type-card-title);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--green-dark);
}

.about-card-text {
	margin: 0;
	color: var(--text-muted);
	font-size: var(--type-body-lg);
	line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
	background: var(--green-dark);
	color: #cfe8d8;
	padding: 72px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
	gap: calc(32px * var(--ui-scale));
}

.site-footer h4 {
	color: #fff;
	margin: 0 0 18px;
	font-size: clamp(calc(1.45rem * var(--ui-scale)), calc(2vw * var(--ui-scale)), calc(1.9rem * var(--ui-scale)));
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.site-footer p,
.site-footer li { font-size: clamp(calc(1.05rem * var(--ui-scale)), calc(1.35vw * var(--ui-scale)), calc(1.25rem * var(--ui-scale))); line-height: 1.7; }

.site-footer a { color: #cfe8d8; }
.site-footer a:hover { color: #fff; }

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: calc(14px * var(--ui-scale));
	transition: background .2s ease, transform .2s ease;
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	transform: translateY(-1px);
}

.footer-social a svg {
	display: block;
}

.footer-bottom {
	margin-top: 48px;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.12);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	font-size: calc(1rem * var(--ui-scale));
}

.footer-powered {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
}

.footer-powered strong {
	color: #fff;
	font-weight: 800;
}

.footer-powered a {
	color: inherit;
	text-decoration: none;
}

.footer-powered a:hover strong {
	text-decoration: underline;
}

.floating-call {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
	display: flex;
	align-items: center;
	justify-content: center;
}
.floating-call img { width: 28px; }

/* ── Inner pages ── */
body.charles-modern .main__middle__container,
body.charles-modern .normal.main__middle__container {
	padding: 120px 20px 60px;
	max-width: var(--container);
	margin: 0 auto;
}

/* Hide old header/footer chrome on modern layout */
body.charles-modern #main__header.main__header { display: none; }
body.charles-modern #mobilemenu { display: none; }
body.charles-modern .phone-phone { display: none; }

/* ── Responsive ── */
@media (max-width: 992px) {
	.container-modern {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.site-topbar,
	.hero-wrapper,
	.hero-modern {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	.site-header {
		width: 100%;
		max-width: 100%;
		overflow: visible;
	}

	.results-section,
	.quote-home-photo {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.quote-section--home > .container-modern {
		max-width: 100%;
		width: 100%;
	}

	.header-inner {
		grid-template-columns: auto 1fr auto auto;
		grid-template-areas:
			'logo . cta toggle'
			'nav nav nav nav';
		gap: 10px;
		padding-top: 12px;
		padding-bottom: 12px;
		overflow: visible;
	}

	.site-logo {
		grid-area: logo;
	}

	.header-cta {
		grid-area: cta;
		justify-self: end;
	}

	.menu-toggle {
		grid-area: toggle;
		justify-self: end;
		display: flex;
	}

	.site-logo img {
		height: 56px;
		width: auto;
		max-width: min(42vw, 160px);
		object-fit: contain;
	}

	.site-header {
		overflow: visible !important;
	}

	.site-nav {
		display: none;
		grid-area: nav;
		position: static;
		width: 100%;
		z-index: 1;
		background: #fff;
		border-top: 1px solid var(--border);
		box-shadow: none;
		padding: 8px 0 12px;
		max-height: none;
		overflow: visible;
	}

	.site-nav.is-open {
		display: block !important;
	}

	.site-nav .site-menu,
	.site-nav .menu,
	.site-nav #menu-head {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.site-nav .site-menu > li,
	.site-nav .menu > li,
	.site-nav #menu-head > li {
		width: 100%;
		border-bottom: 1px solid var(--border);
	}

	.site-nav .site-menu > li:last-child,
	.site-nav .menu > li:last-child,
	.site-nav #menu-head > li:last-child {
		border-bottom: none;
	}

	.site-nav .site-menu > li > a,
	.site-nav .menu > li > a,
	.site-nav #menu-head > li > a {
		display: block !important;
		padding: 14px 4px;
		white-space: normal;
		color: var(--text) !important;
	}

	.site-nav .site-menu > li > a::before,
	.site-nav .menu > li > a::before,
	.site-nav #menu-head > li > a::before {
		display: none;
	}

	.site-nav .sub-menu {
		position: static;
		box-shadow: none;
		border: none;
		padding: 0 0 8px 12px;
		background: transparent;
	}

	.site-nav .menu-item-has-children:not(.is-open) > .sub-menu {
		display: none !important;
	}

	.site-nav .menu-item-has-children > a::after {
		display: none;
	}

	.site-nav .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
	}

	.site-nav .menu-item-has-children > a {
		flex: 1 1 auto;
		padding-right: 12px;
	}

	.site-nav .submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 44px;
		width: 44px;
		margin: 0;
		padding: 0;
		border: none;
		border-left: 1px solid var(--border);
		background: transparent;
		color: inherit;
		cursor: pointer;
	}

	.site-nav .submenu-toggle::after {
		content: '';
		display: inline-block;
		width: 7px;
		height: 7px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
	}

	.site-nav .menu-item-has-children.is-open > .submenu-toggle::after {
		transform: rotate(-135deg);
	}

	.site-nav .menu-item-has-children > .sub-menu {
		width: 100%;
	}

	.header-cta .btn-primary-modern {
		padding: 10px 12px;
		font-size: calc(10px * var(--ui-scale));
		white-space: nowrap;
		max-width: 42vw;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.hero-wrapper {
		margin-bottom: 40px;
	}

	.hero-modern {
		min-height: clamp(calc(520px * var(--ui-scale)), 72vh, calc(680px * var(--ui-scale)));
		padding-bottom: calc(72px * var(--ui-scale));
	}

	.hero-modern > .container-modern.hero-content {
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		padding-left: 24px;
		padding-right: 24px;
	}

	.hero-content {
		padding-top: 56px;
		padding-bottom: 32px;
		max-width: 100%;
	}

	.hero-eyebrow {
		font-size: calc(13px * var(--ui-scale));
		margin-bottom: 18px;
	}

	.hero-modern h1 {
		font-size: clamp(calc(2.5rem * var(--ui-scale)), calc(9vw * var(--ui-scale)), calc(3.75rem * var(--ui-scale)));
		margin-bottom: 20px;
		line-height: 1.05;
		padding-right: 8px;
	}

	.hero-modern .hero-tagline {
		font-size: clamp(calc(0.95rem * var(--ui-scale)), calc(3.5vw * var(--ui-scale)), calc(1.15rem * var(--ui-scale)));
		margin-bottom: 32px;
		line-height: 1.55;
		padding-right: 8px;
	}

	.hero-modern .hero-tagline .hero-bullet {
		margin: 0 6px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		width: 100%;
		max-width: 100%;
	}

	.btn-hero-primary,
	.btn-hero-phone {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
		padding: 16px 22px;
		font-size: calc(13px * var(--ui-scale));
		gap: 10px;
		justify-content: center;
	}

	.btn-hero-primary svg,
	.btn-hero-phone svg {
		width: 16px;
		height: 16px;
		flex-shrink: 0;
	}

	.trust-bar-card {
		margin-top: calc(-56px * var(--ui-scale));
		padding: 0;
	}

	.trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: calc(10px * var(--ui-scale));
	}

	.trust-item {
		padding: calc(22px * var(--ui-scale)) calc(16px * var(--ui-scale)) calc(20px * var(--ui-scale));
		min-height: calc(165px * var(--ui-scale));
		border: none;
	}

	.trust-icon-svg {
		width: calc(36px * var(--ui-scale));
		height: calc(36px * var(--ui-scale));
	}

	.trust-stat {
		font-size: clamp(calc(1.85rem * var(--ui-scale)), calc(5.5vw * var(--ui-scale)), calc(2.35rem * var(--ui-scale)));
	}

	.trust-label {
		font-size: clamp(calc(0.72rem * var(--ui-scale)), calc(2.8vw * var(--ui-scale)), calc(0.85rem * var(--ui-scale)));
	}

	.why-choose-layout {
		display: flex;
		flex-direction: column;
		min-height: 0;
		gap: 0;
	}

	.why-choose-media {
		width: 100%;
		max-width: none;
		min-height: 0;
	}

	.why-choose-media > img {
		min-height: 340px;
		max-height: 440px;
	}

	.why-choose-logo-badge {
		top: 20px;
		right: 20px;
		width: 84px;
		height: 84px;
		padding: 12px;
	}

	.why-choose-panel {
		width: calc(100% - 40px);
		margin: -48px 20px 0;
		padding: 36px 28px 40px;
		justify-self: center;
		align-self: auto;
		transform: none;
	}

	.why-choose-panel h2 {
		font-size: clamp(calc(2rem * var(--ui-scale)), calc(7.5vw * var(--ui-scale)), calc(2.85rem * var(--ui-scale)));
	}

	.why-choose-panel .why-choose-intro {
		font-size: clamp(calc(1.05rem * var(--ui-scale)), calc(3.8vw * var(--ui-scale)), calc(1.2rem * var(--ui-scale)));
	}

	.why-choose-panel .check-item {
		font-size: 1rem;
	}

	.why-choose-panel .check-grid {
		grid-template-columns: 1fr;
	}

	.topbar-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 8px;
		row-gap: 6px;
	}

	.site-topbar {
		padding: calc(14px * var(--ui-scale)) 0;
		font-size: calc(15px * var(--ui-scale));
		overflow-x: hidden;
	}

	.site-topbar::-webkit-scrollbar {
		display: none;
	}

	.site-topbar .container-modern {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.topbar-trust {
		flex-shrink: 0;
		gap: calc(8px * var(--ui-scale));
		font-size: calc(14px * var(--ui-scale));
	}

	.topbar-trust svg {
		width: calc(18px * var(--ui-scale));
		height: calc(18px * var(--ui-scale));
	}

	.topbar-right {
		width: auto;
		flex-shrink: 0;
		justify-content: flex-end;
		flex-wrap: nowrap;
		gap: 8px;
	}

	.topbar-emergency-text {
		font-size: calc(14px * var(--ui-scale));
	}

	.topbar-phone {
		font-size: calc(16px * var(--ui-scale));
		gap: calc(6px * var(--ui-scale));
	}

	.topbar-phone svg {
		width: calc(18px * var(--ui-scale));
		height: calc(18px * var(--ui-scale));
	}

	.topbar-social {
		border-left: 1px solid rgba(255, 255, 255, 0.2);
		padding-left: 8px;
		gap: 5px;
		flex-shrink: 0;
	}

	.topbar-social a {
		width: calc(30px * var(--ui-scale));
		height: calc(30px * var(--ui-scale));
	}

	.topbar-social a svg {
		width: calc(14px * var(--ui-scale));
		height: calc(14px * var(--ui-scale));
	}

	.trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: calc(12px * var(--ui-scale)); }
	.trust-bar-card { margin-top: calc(-64px * var(--ui-scale)); }

	.hero-wrapper .container-modern {
		width: 100%;
		max-width: 100%;
	}
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.projects-grid { grid-template-columns: repeat(2, 1fr); }
	.check-grid { grid-template-columns: 1fr; }
	.split-section,
	.reviews-split,
	.quote-split,
	.contact-split,
	.about-faq-split,
	.about-cards-grid,
	.service-detail-split,
	.footer-grid { grid-template-columns: 1fr; }
	.service-page-hero {
		min-height: 240px;
	}
	.service-page-hero-inner {
		padding: 48px 0 36px;
	}
	.about-faq-image {
		min-height: 0;
	}
	.about-faq-image img {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 3;
		max-height: 420px;
	}
	.areas-layout {
		flex-direction: column;
		min-height: 0;
	}
	.areas-content {
		flex: 1 1 auto;
		max-width: none;
		padding: 14px 20px 48px;
	}
	.areas-map {
		flex: 1 1 auto;
		min-height: 320px;
		margin-left: 0;
	}
	.process-flow { flex-wrap: wrap; justify-content: center; row-gap: 32px; }
	.process-line { display: none; }
	.process-step { flex: 0 0 calc(50% - 16px); max-width: 280px; }
	.results-section .ba-card { flex: 0 0 auto; min-width: calc(320px * var(--ui-scale)); }
	.results-section .ba-half img { height: 280px; }
	.results-header { align-items: flex-start; flex-direction: column; }
	.results-nav { align-self: flex-end; }
	.review-cards { grid-template-columns: 1fr; }
	.emergency-bar-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.emergency-bar-main {
		align-items: center;
	}
	.emergency-phone-btn { width: 100%; }
}

@media (max-width: 900px) {
	.areas-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.quote-form-card #fscf_form1 {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
	}

	.quote-section--home .quote-form-card #fscf_form1 {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 20px !important;
	}

	.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"],
	.quote-section--home .quote-form-card #fscf_submit_div1 {
		flex: unset !important;
		order: unset !important;
		min-width: 0 !important;
	}

	.quote-form-card #fscf_form1 > #fscf_form_error1 {
		flex: 1 1 100%;
		order: 0;
	}

	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1) {
		flex: 1 1 calc(50% - 6px);
		min-width: min(100%, 140px);
		order: 1;
	}
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Phone"]) {
		flex: 1 1 calc(50% - 6px);
		min-width: min(100%, 140px);
		order: 2;
	}
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1) {
		flex: 1 1 100%;
		order: 3;
	}
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Suburb"]) {
		flex: 1 1 100%;
		order: 4;
	}
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="subject"]) {
		flex: 1 1 100%;
		order: 5;
	}
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(textarea[name="message"]) {
		flex: 1 1 100%;
		order: 6;
	}
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(input[type="file"]) {
		flex: 1 1 100%;
		order: 7;
		display: block !important;
	}
	.quote-form-card #fscf_submit_div1 {
		flex: 1 1 100%;
		order: 8;
		margin: 0;
	}
}

@media (max-width: 768px) {
	/* AddToAny floating share bar overlaps content on narrow screens */
	.a2a_floating_style.a2a_vertical_style {
		display: none !important;
	}

	.quote-section--home {
		padding: calc(32px * var(--ui-scale)) 0 calc(64px * var(--ui-scale));
	}

	.quote-home-frame {
		padding: calc(20px * var(--ui-scale)) calc(20px * var(--ui-scale)) calc(16px * var(--ui-scale));
		background:
			linear-gradient(var(--green), var(--green)) left top / calc(2px * var(--ui-scale)) 100% no-repeat,
			linear-gradient(var(--green), var(--green)) right top / calc(2px * var(--ui-scale)) 100% no-repeat,
			linear-gradient(var(--green), var(--green)) left top / calc(24px * var(--ui-scale)) calc(2px * var(--ui-scale)) no-repeat,
			linear-gradient(var(--green), var(--green)) right top / calc(24px * var(--ui-scale)) calc(2px * var(--ui-scale)) no-repeat;
	}

	.quote-home-title {
		max-width: none;
	}

	.quote-section--home .quote-form-card #fscf_form1 {
		grid-template-columns: 1fr !important;
	}

	.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1),
	.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Phone"]),
	.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1),
	.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Suburb"]),
	.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(textarea[name="message"]),
	.quote-section--home .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(input[type="file"]),
	.quote-section--home .quote-form-card #fscf_submit_div1 {
		grid-column: 1 / -1;
	}

	.quote-section--home .quote-form-card .fscf-button,
	.quote-section--home .quote-form-card input[type="submit"] {
		width: 100%;
	}

	.quote-section {
		padding: 14px 0 56px;
	}

	.quote-split {
		gap: 36px;
	}

	.quote-form-card {
		max-width: 100%;
		justify-self: stretch;
	}

	.quote-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.quote-intro {
		max-width: none;
	}

	.charles-contact-page .contact-split {
		grid-template-columns: 1fr;
	}

	.charles-contact-page .contact-form-column .quote-form-card {
		padding: 28px 24px 32px;
	}

	.charles-contact-page .quote-form-card #fscf_form1 {
		display: flex;
		flex-wrap: wrap;
		gap: 14px;
	}

	.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1),
	.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Phone"]) {
		flex: 1 1 calc(50% - 7px);
		min-width: min(100%, 140px);
	}

	.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1),
	.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Suburb"]),
	.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="subject"]),
	.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(textarea[name="message"]),
	.charles-contact-page .quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(input[type="file"]),
	.charles-contact-page .quote-form-card #fscf_submit_div1 {
		flex: 1 1 100%;
	}

	.contact-page-hero {
		min-height: 230px;
	}

	.contact-page-hero-inner {
		padding: 52px 0 36px;
	}

	.gallery-page-section {
		padding: 2px 0 40px;
	}

	.charles-gallery-page .foogallery-container {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		width: 100%;
	}

	.charles-gallery-page .foogallery-default.spacing-width-10 a,
	.charles-gallery-page .foogallery-container a {
		width: 100%;
		margin: 0 !important;
	}

	.charles-gallery-page .foogallery-container img {
		width: 100% !important;
		height: auto !important;
		max-width: 100% !important;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 600px) {
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_name1),
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Phone"]),
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(#fscf_email1),
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="Suburb"]),
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has([name="subject"]),
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(textarea[name="message"]),
	.quote-form-card #fscf_form1 > [id^="fscf_div_clear"]:has(input[type="file"]),
	.quote-form-card #fscf_submit_div1 {
		flex: 1 1 100%;
		min-width: 0;
	}

	.quote-form-card {
		padding: 20px 18px 24px;
	}

	.quote-icon {
		width: 72px;
		height: 72px;
	}

	.quote-icon svg {
		width: 34px;
		height: 34px;
	}
	.trust-grid,
	.services-grid,
	.projects-grid,
	.areas-list { grid-template-columns: 1fr; }
	.process-step { flex: 0 0 100%; max-width: 320px; }
	.trust-item { justify-content: flex-start; }
	.hero-modern > .container-modern.hero-content {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hero-modern .hero-tagline {
		margin-bottom: 28px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.hero-actions .btn-hero-primary,
	.hero-actions .btn-hero-phone {
		width: 100%;
		flex: 1 1 auto;
		min-width: 0;
		padding: 15px 18px;
		font-size: calc(12px * var(--ui-scale));
	}

	.check-grid { grid-template-columns: 1fr; }
	.about-page-checks {
		grid-template-columns: max-content;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	body.charles-modern .header-cta {
		display: none;
	}

	body.charles-modern .header-inner {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			'logo toggle'
			'nav nav';
		gap: 8px;
	}

	body.charles-modern .site-logo {
		grid-area: logo;
	}

	body.charles-modern .menu-toggle {
		grid-area: toggle;
	}

	body.charles-modern .topbar-emergency-text,
	body.charles-modern .topbar-social {
		display: none;
	}

	body.charles-modern .topbar-inner {
		justify-content: center;
	}

	body.charles-modern .hero-modern > .container-modern.hero-content {
		padding-left: 18px;
		padding-right: 18px;
	}

	body.charles-modern .hero-modern h1 {
		font-size: clamp(calc(2rem * var(--ui-scale)), calc(8.5vw * var(--ui-scale)), calc(2.75rem * var(--ui-scale)));
		margin-bottom: 16px;
	}

	body.charles-modern .hero-modern .hero-tagline {
		margin-bottom: 26px;
	}

	body.charles-modern .hero-actions {
		gap: 12px;
	}
}

/* Neutralize legacy style.css rules that break mobile layout */
body.charles-modern .carousel-inner > .item > img,
body.charles-modern .carousel-inner > .item > a > img {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	left: auto !important;
	position: static !important;
}


/* ── Sitewide large scale (forms & shared content) ── */
body.charles-modern .quote-form-card,
body.charles-modern .contact-form-wrap {
	font-size: var(--type-body);
}

body.charles-modern .quote-form-card input,
body.charles-modern .quote-form-card textarea,
body.charles-modern .quote-form-card select,
body.charles-modern .contact-form-wrap input,
body.charles-modern .contact-form-wrap textarea,
body.charles-modern .contact-form-wrap select {
	font-size: calc(1.25rem * var(--ui-scale));
}

body.charles-modern .quote-form-card #fscf_submit1,
body.charles-modern .contact-form-wrap .fscf-button,
body.charles-modern .contact-form-wrap input[type=submit] {
	padding: var(--btn-padding) !important;
	font-size: calc(1.25rem * var(--ui-scale)) !important;
	border-radius: 999px !important;
}

body.charles-modern .quote-section--home .quote-form-card input,
body.charles-modern .quote-section--home .quote-form-card textarea,
body.charles-modern .quote-section--home .quote-form-card select {
	font-size: calc(1.25rem * var(--ui-scale)) !important;
}

body.charles-modern .quote-section--home .quote-form-card #fscf_submit1,
body.charles-modern .quote-section--home .quote-form-card input[type="submit"] {
	padding: 18px 24px !important;
	font-size: calc(1.35rem * var(--ui-scale)) !important;
	width: auto !important;
	max-width: max-content !important;
	min-width: calc(230px * var(--ui-scale)) !important;
	border-radius: 999px !important;
}

body.charles-modern .useful-links-list a,
body.charles-modern .service-areas-list a,
body.charles-modern .intro-content,
body.charles-modern .service-detail-body h2,
body.charles-modern .service-detail-body h3 {
	font-size: inherit;
}

body.charles-modern .service-detail-body h2 {
	font-size: var(--type-subsection);
}

body.charles-modern .projects-pagination .page-numbers {
	min-width: 48px;
	height: 48px;
	font-size: var(--type-body);
}

body.charles-modern .projects-empty {
	font-size: var(--type-body-lg);
	padding: 32px;
}


/* Gallery image overrides (must win over FooGallery defaults) */
body.charles-modern.charles-gallery-page .foogallery-container a {
	display: block;
}

body.charles-modern.charles-gallery-page .foogallery-container img {
	width: 340px !important;
	height: 255px !important;
	max-width: none !important;
	object-fit: cover;
}

@media (max-width: 768px) {
	body.charles-modern.charles-gallery-page .foogallery-container img {
		width: 100% !important;
		height: auto !important;
		max-width: 100% !important;
		aspect-ratio: 4 / 3;
	}
}

/* SI Contact Form: override plugin inline width/float constraints */
.quote-section--home .quote-form-card #FSContact1,
.charles-contact-page .quote-form-card #FSContact1 {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}

.quote-section--home .quote-form-card #fscf_form1 {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 20px;
	width: 100% !important;
	max-width: none !important;
}

.charles-contact-page .quote-form-card #fscf_form1 {
	display: grid !important;
	width: 100% !important;
	max-width: none !important;
}

.quote-section--home .quote-form-card [id^="fscf_div_clear"],
.quote-section--home .quote-form-card [id^="fscf_div_field"],
.quote-section--home .quote-form-card .fscf-div-field,
.quote-section--home .quote-form-card .fscf-div-field-left,
.quote-section--home .quote-form-card .fscf-div-field-prefollow,
.quote-section--home .quote-form-card .fscf-div-field-follow,
.quote-section--home .quote-form-card .fscf-div-field > div,
.charles-contact-page .quote-form-card [id^="fscf_div_clear"],
.charles-contact-page .quote-form-card [id^="fscf_div_field"],
.charles-contact-page .quote-form-card .fscf-div-field,
.charles-contact-page .quote-form-card .fscf-div-field-left {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
}

.quote-section--home .quote-form-card input:not([type="submit"]):not([type="hidden"]):not([type="file"]),
.quote-section--home .quote-form-card textarea,
.quote-section--home .quote-form-card select,
.charles-contact-page .quote-form-card input:not([type="submit"]):not([type="hidden"]):not([type="file"]),
.charles-contact-page .quote-form-card textarea,
.charles-contact-page .quote-form-card select {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	box-sizing: border-box;
}

.quote-section--home .quote-form-card #fscf_submit_div1,
.charles-contact-page .quote-form-card #fscf_submit_div1 {
	width: 100% !important;
	max-width: none !important;
	text-align: center !important;
	padding-bottom: 12px !important;
}

@media (max-width: 900px) {
	.quote-section--home .quote-form-card #fscf_form1 {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}
