/* ==========================================================================
   Dynaspan Custom Theme — Main Stylesheet v2.0
   Dark theme — #d4a017 gold accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	--gold: #d4a017;
	--gold-hover: #be9015;
	--gold-glow: rgba(212, 160, 23, 0.25);
	--dark: #1a1a1a;
	--charcoal: #222;
	--charcoal-light: #2a2a2a;
	--white: #ffffff;
	--gray-light: #bbb;
	--gray-mid: #888;
	--gray-dark: #666;
	--border: #333;
	--border-light: #444;
	--sh: 0 4px 24px rgba(0, 0, 0, 0.3);
	--sh2: 0 8px 40px rgba(0, 0, 0, 0.5);
	--r: 4px;
	--font-heading: 'Oswald', sans-serif;
	--font-body: 'Open Sans', sans-serif;
	--container: 1200px;
	--container-narrow: 820px;
}

/* --------------------------------------------------------------------------
   WordPress Block Editor colour palette (background + text)
   -------------------------------------------------------------------------- */
.has-accent-primary-background-color { background-color: var(--gold, #d4a017); }
.has-bg-dark-background-color { background-color: var(--dark, #1a1a1a); }
.has-bg-light-background-color { background-color: var(--bg-light, #f5f5f0); }
.has-white-background-color { background-color: #fff; }
.has-dark-gray-color { color: #1a1a1a; }
.has-medium-gray-color { color: #6b6b6b; }
.has-light-gray-color { color: #e0e0e0; }
.has-accent-primary-color { color: var(--gold, #d4a017); }
.has-white-color { color: #fff; }
.has-bg-dark-color { color: #1a1a1a; }
.has-dark-color { color: #1a1a1a; }

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

body {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	color: var(--gray-light);
	background: var(--dark);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.15;
	color: var(--white);
}

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

a {
	color: var(--gold);
	text-decoration: none;
	transition: color 0.2s;
}

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

ul, ol {
	list-style: none;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.container-narrow {
	max-width: var(--container-narrow);
}

.section-pad {
	padding: 60px 0;
}

.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 12px;
}

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

.section-subtitle {
	text-align: center;
	font-size: 15px;
	color: #bbb;
	margin-bottom: 32px;
}

.section-subtitle .fa-star {
	color: var(--gold);
	font-size: 18px;
	margin: 0 1px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	padding: 12px 28px;
	border-radius: var(--r);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-lg {
	padding: 14px 32px;
	font-size: 15px;
}

.btn-primary {
	background: var(--gold);
	color: #1a1a1a !important;
	border-color: var(--gold);
}

.btn-primary:hover {
	background: var(--gold-hover);
	border-color: var(--gold-hover);
	color: #1a1a1a !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px var(--gold-glow);
}

.btn-dark {
	background: var(--charcoal);
	color: var(--white);
	border-color: var(--border);
}

.btn-dark:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-outline-light {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.3);
}

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
	background: rgba(26, 26, 26, 0.95);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 3px solid var(--gold);
	transition: background 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
	background: rgba(26, 26, 26, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.admin-bar .site-header {
	top: 32px;
}

/* -- Top Bar -- */
.header-topbar {
	background: var(--charcoal);
	border-bottom: 1px solid var(--border);
	font-size: 12px;
	transition: max-height 0.3s, opacity 0.3s, padding 0.3s;
	max-height: 50px;
	overflow: hidden;
}

.site-header.scrolled .header-topbar {
	max-height: 0;
	opacity: 0;
	padding: 0;
	border-bottom: none;
}

.header-topbar-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 6px 24px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}

.topbar-link {
	color: var(--gray-light);
	text-decoration: none;
	font-family: var(--font-body);
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s;
}

.topbar-link:hover {
	color: var(--gold);
}

.topbar-link i {
	font-size: 11px;
	color: var(--gold);
}

/* -- Main Header -- */
.header-main {
	transition: padding 0.3s;
}

.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
}

.header-logo a {
	display: flex;
	align-items: center;
}

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

.site-title-link {
	text-decoration: none;
}

.site-title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 14px;
}

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

.main-nav .nav-menu li {
	position: relative;
}

.main-nav .nav-menu a {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 8px 13px;
	border-radius: var(--r);
	transition: all 0.2s;
	display: block;
	text-decoration: none;
}

.main-nav .nav-menu a:hover,
.main-nav .nav-menu .current-menu-item > a,
.main-nav .nav-menu .current_page_item > a {
	color: var(--gold);
	background: rgba(255, 255, 255, 0.05);
}

/* -- Submenu -- */
.main-nav .nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 220px;
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	box-shadow: var(--sh2);
	padding: 8px 0;
	z-index: 100;
	margin-top: 8px;
}

.main-nav .nav-menu li:hover > .sub-menu {
	display: block;
}

.main-nav .nav-menu .sub-menu a {
	color: var(--gray-light);
	font-size: 12px;
	padding: 8px 18px;
	border-radius: 0;
}

.main-nav .nav-menu .sub-menu a:hover {
	background: rgba(212, 160, 23, 0.1);
	color: var(--gold);
}

/* -- Header Contact -- */
.header-phone {
	color: var(--gold);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.header-phone:hover {
	color: var(--gold-hover);
}

.header-cta {
	font-size: 12px;
	padding: 8px 16px;
}

/* -- Hamburger Toggle -- */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 10001;
	position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	transition: all 0.3s;
}

.hamburger {
	position: relative;
}

.hamburger::before,
.hamburger::after {
	content: '';
	position: absolute;
	left: 0;
}

.hamburger::before {
	top: -7px;
}

.hamburger::after {
	top: 7px;
}

.nav-open .hamburger {
	background: transparent;
}

.nav-open .hamburger::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-open .hamburger::after {
	top: 0;
	transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-bg .hero-img,
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.3);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(26, 26, 26, 0.7) 100%);
}

.hero-pattern {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 40px,
		rgba(212, 160, 23, 0.03) 40px,
		rgba(212, 160, 23, 0.03) 80px
	);
	animation: drift 25s linear infinite;
}

@keyframes drift {
	0% { transform: translate(0, 0); }
	100% { transform: translate(80px, 80px); }
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 60px 24px;
}

.hero-sub {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

.hero h1 {
	font-size: 56px;
	color: var(--white);
	margin-bottom: 16px;
	line-height: 1.1;
}

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

.hero-desc {
	color: var(--gray-light);
	font-size: 17px;
	max-width: 560px;
	margin: 0 auto 28px;
	line-height: 1.6;
}

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

.hero-btns .btn i {
	margin-right: 6px;
}

/* --------------------------------------------------------------------------
   Trust Badges
   -------------------------------------------------------------------------- */
.trust-badges {
	background: var(--charcoal);
	padding: 32px 24px;
	border-bottom: 1px solid var(--border);
	border-top: 1px solid var(--border);
}

.badges-grid {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.badge-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.badge-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--gold);
}

.badge-item h3 {
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.3;
}

.badge-item p {
	color: var(--gray-mid);
	font-size: 12px;
	line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services {
	background: var(--dark);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 28px;
}

.service-card {
	background: var(--charcoal);
	border: 2px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	transition: all 0.3s;
}

.service-card:hover {
	border-color: var(--gold);
	box-shadow: 0 0 30px var(--gold-glow);
	transform: translateY(-4px);
}

.service-img {
	position: relative;
	overflow: hidden;
}

.service-img img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform 0.6s;
}

.service-card:hover .service-img img {
	transform: scale(1.04);
}

.service-label {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 14px;
	border-radius: var(--r);
}

.service-body {
	padding: 24px;
}

.service-body h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--white);
}

.service-body p {
	font-size: 14px;
	color: var(--gray-mid);
	line-height: 1.6;
	margin-bottom: 16px;
}

.service-body .btn {
	font-size: 12px;
	padding: 8px 20px;
}

/* --------------------------------------------------------------------------
   Why Choose Us
   -------------------------------------------------------------------------- */
.why-us {
	background: var(--charcoal);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.why-us-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 28px;
	text-align: center;
}

.why-us-item {
	padding: 28px 20px;
	background: var(--dark);
	border: 1px solid var(--border);
	border-radius: var(--r);
	transition: all 0.3s;
}

.why-us-item:hover {
	border-color: var(--gold);
	box-shadow: 0 0 20px var(--gold-glow);
}

.why-us-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 24px;
	color: var(--gold);
	background: rgba(212, 160, 23, 0.1);
	border-radius: 50%;
}

.why-us-item h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--white);
}

.why-us-item p {
	font-size: 13px;
	color: var(--gray-mid);
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */
.cta-band {
	background: var(--gold);
	padding: 48px 24px;
	text-align: center;
}

.cta-band h2 {
	font-size: 32px;
	color: var(--dark);
	margin-bottom: 8px;
}

.cta-band p {
	color: #333;
	font-size: 15px;
	margin-bottom: 24px;
}

.cta-band .btn {
	background: var(--dark);
	color: var(--white);
	border-color: var(--dark);
}

.cta-band .btn:hover {
	background: var(--charcoal);
	border-color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   Google Reviews — Trustindex
   -------------------------------------------------------------------------- */
.reviews-section {
	background: var(--dark);
}

.reviews-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 8px;
}

/* Override Trustindex default styles for dark background */
.reviews-section .ti-widget {
	background: transparent !important;
}

.reviews-section .ti-review-item {
	background: var(--charcoal) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--r) !important;
}

.reviews-section .ti-review-item:hover {
	border-color: var(--gold) !important;
	box-shadow: 0 0 20px var(--gold-glow) !important;
}

.reviews-section .ti-review-body,
.reviews-section .ti-review-text {
	color: var(--gray-light) !important;
}

.reviews-section .ti-reviewer-name,
.reviews-section .ti-profile-name {
	color: #fff !important;
}

.reviews-section .ti-stars .ti-star,
.reviews-section .ti-rating-stars {
	color: var(--gold) !important;
}

/* --------------------------------------------------------------------------
   Lead Magnet / Free Guide
   -------------------------------------------------------------------------- */
.lead-magnet {
	background: #1a1a1a;
	padding: 72px 24px;
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.lead-magnet::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 40px,
		rgba(255, 255, 255, 0.015) 40px,
		rgba(255, 255, 255, 0.015) 80px
	);
	pointer-events: none;
}

.lead-magnet-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 48px;
	align-items: center;
	position: relative;
}

.lead-magnet-badge {
	display: inline-block;
	background: #d43333;
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 6px 18px;
	border-radius: 30px;
	margin-bottom: 18px;
}

.lead-magnet-sub {
	color: var(--gold);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
}

.lead-magnet-content h2 {
	color: var(--white);
	font-size: 34px;
	line-height: 1.15;
	margin-bottom: 16px;
}

.lead-magnet-content h2 span {
	color: var(--gold);
}

.lead-magnet-content > p {
	color: var(--gray-mid);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 24px;
}

.lead-magnet-checklist {
	list-style: none;
	margin-bottom: 28px;
}

.lead-magnet-checklist li {
	color: var(--gray-light);
	font-size: 14px;
	line-height: 1.6;
	padding: 6px 0;
}

.lead-magnet-checklist .fa-check {
	color: var(--gold);
	margin-right: 8px;
	font-weight: 700;
}

.lead-magnet-trust {
	color: var(--gray-dark);
	font-size: 12px;
	margin-top: 12px;
}

.lead-magnet-image img {
	width: 100%;
	max-width: 380px;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	border: 1px solid var(--border);
	margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Portfolio / Gallery — Charcoal background, location labels on hover
   -------------------------------------------------------------------------- */
.portfolio {
	background: var(--charcoal);
	border-top: 1px solid var(--border);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--r);
}

.portfolio-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.4s;
}

.portfolio-item:hover img {
	transform: scale(1.05);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 40%, rgba(26, 26, 26, 0.85));
	display: flex;
	align-items: flex-end;
	padding: 16px;
	opacity: 0;
	transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-overlay span {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: rgba(212, 160, 23, 0.15);
	padding: 4px 12px;
	border-radius: var(--r);
	border-left: 3px solid var(--gold);
}

/* --------------------------------------------------------------------------
   Partners / Logos — Dark background, greyscale to colour on hover
   -------------------------------------------------------------------------- */
.partners {
	background: #1a1a1a;
	padding: 28px 0;
	border-top: 1px solid var(--border);
}

.partner-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.partner-logos img {
	height: 44px;
	width: auto;
	opacity: 0.75;
	transition: all 0.3s;
}

.partner-logos img:hover {
	opacity: 1;
}

.logo-lighten {
	mix-blend-mode: lighten;
	opacity: 0.85;
	transition: all 0.3s;
}

.logo-lighten:hover {
	opacity: 1;
}

/* --------------------------------------------------------------------------
   Page Banner (Inner Pages)
   -------------------------------------------------------------------------- */
.page-banner {
	position: relative;
	overflow: hidden;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dark);
}

.page-banner-bg {
	position: absolute;
	inset: 0;
}

.page-banner-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.3);
}

.page-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.5));
}

.page-banner-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 60px 24px;
}

.page-banner-content h1,
.page-banner-content .page-banner-title {
	font-size: 42px;
	color: var(--white);
}

.page-banner-content h1 span,
.page-banner-content .page-banner-title span {
	color: var(--gold);
}

.page-banner-content p {
	color: var(--gray-light);
	font-size: 16px;
	max-width: 600px;
	margin: 12px auto 0;
	line-height: 1.6;
}

.page-banner-content .btn {
	margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Page Content (Inner Pages) — Dark background
   -------------------------------------------------------------------------- */
.page-main {
	padding: 48px 0 60px;
	background: var(--dark);
}

.entry-content h2 {
	font-size: 24px;
	margin: 36px 0 14px;
	color: var(--white);
}

.entry-content h2 span {
	color: var(--gold);
}

.entry-content h3 {
	font-size: 19px;
	margin: 28px 0 10px;
	color: var(--white);
}

.entry-content p {
	font-size: 15px;
	line-height: 1.85;
	color: #e0e0e0 !important;
	margin-bottom: 16px;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 18px 24px;
	color: #e0e0e0 !important;
	font-size: 15px;
	line-height: 1.85;
}

.entry-content ul {
	list-style: disc;
}

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

.entry-content li {
	margin-bottom: 6px;
}

.entry-content blockquote {
	border-left: 4px solid var(--gold);
	padding: 16px 20px;
	background: var(--charcoal);
	margin: 24px 0;
	border-radius: 0 var(--r) var(--r) 0;
}

.entry-content blockquote p {
	color: var(--gray-mid);
	font-style: italic;
	margin-bottom: 0;
}

.entry-content img {
	border-radius: var(--r);
	margin: 24px 0;
}

.entry-content a:not(.wp-block-button__link) {
	color: var(--gold);
	text-decoration: underline;
}

.entry-content a:hover {
	color: var(--gold-hover);
}

/* WordPress block alignment */
.entry-content .alignwide {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

.entry-content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
}

.entry-content .aligncenter {
	text-align: center;
}

.entry-content strong {
	color: #fff;
}

/* Default: light text on dark .page-main background (exclude buttons) */
.entry-content .has-dark-gray-color,
.entry-content .has-medium-gray-color,
.entry-content [class*="has-"][class*="-color"]:not(.wp-block-button__link) {
	color: #e0e0e0 !important;
}

/* Buttons preserve their explicit colours */
.entry-content .wp-block-button__link.has-accent-primary-background-color {
	background-color: var(--gold, #d4a017) !important;
}
.entry-content .wp-block-button__link.has-bg-dark-color,
.entry-content .wp-block-button__link.has-dark-color {
	color: #1a1a1a !important;
}
.entry-content .wp-block-button__link.has-white-color {
	color: #fff !important;
}
.entry-content .wp-block-button__link.has-bg-dark-background-color {
	background-color: var(--dark, #1a1a1a) !important;
}

/* Restore correct colours inside blocks with light/white backgrounds.
   Double .entry-content for extra specificity to beat the blanket override. */
.entry-content .has-bg-light-background-color p[class*="has-"][class*="-color"],
.entry-content .has-bg-light-background-color .wp-block-group p[class*="has-"][class*="-color"],
.entry-content .has-accent-primary-background-color p[class*="has-"][class*="-color"],
.entry-content .has-background[style*="background-color:#ffffff"] p[class*="has-"][class*="-color"],
.entry-content .has-background[style*="background-color: #fff"] p[class*="has-"][class*="-color"] {
	color: initial !important;
}

.page-article .entry-content .has-bg-light-background-color .has-dark-gray-color,
.page-article .entry-content .has-accent-primary-background-color .has-dark-gray-color,
.page-article .entry-content .has-background[style*="background-color:#ffffff"] .has-dark-gray-color {
	color: #1a1a1a !important;
}

.page-article .entry-content .has-bg-light-background-color .has-medium-gray-color,
.page-article .entry-content .has-accent-primary-background-color .has-medium-gray-color,
.page-article .entry-content .has-background[style*="background-color:#ffffff"] .has-medium-gray-color {
	color: #555 !important;
}

.page-article .entry-content .has-bg-light-background-color .has-accent-primary-color,
.page-article .entry-content .has-accent-primary-background-color .has-accent-primary-color,
.page-article .entry-content .has-background[style*="background-color:#ffffff"] .has-accent-primary-color {
	color: var(--accent, #e8b931) !important;
}

.page-article .entry-content .has-bg-light-background-color strong,
.page-article .entry-content .has-accent-primary-background-color strong,
.page-article .entry-content .has-background[style*="background-color:#ffffff"] strong {
	color: inherit !important;
}

/* Fix button styling on gold CTA band */
.entry-content .has-accent-primary-background-color .wp-block-button__link {
	text-decoration: none;
}

/* Landing page / installation page overrides */
.lp-art-body p,
.lp-art-body li,
.lp-art-body td {
	color: #e0e0e0 !important;
}

.lp-art-body strong {
	color: #fff !important;
}

.lp-art-body a:not(.lp-btn-p):not(.lp-btn-o):not(.lp-btn-d) {
	color: #e8b931 !important;
}

/* Landing page buttons */
a.lp-btn-p,
.lp-art-cta .lp-btn-p,
.lp-hero-btns .lp-btn-p {
	display: inline-block;
	background: var(--gold) !important;
	color: #1a1a1a !important;
	padding: 14px 32px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none !important;
	border-radius: 4px;
	transition: all 0.2s;
}

.lp-btn-p:hover {
	background: var(--gold-hover) !important;
	color: #1a1a1a !important;
	transform: translateY(-2px);
}

.lp-btn-o {
	display: inline-block;
	background: transparent;
	color: #fff !important;
	border: 2px solid #fff;
	padding: 12px 28px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none !important;
	border-radius: 4px;
	transition: all 0.2s;
}

.lp-btn-o:hover {
	background: rgba(255,255,255,0.1);
	color: #fff !important;
}

.lp-btn-d {
	display: inline-block;
	background: var(--dark);
	color: #fff !important;
	padding: 14px 32px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none !important;
	border-radius: 4px;
	transition: all 0.2s;
}

.lp-btn-d:hover {
	background: var(--charcoal);
	color: #fff !important;
}

/* Landing page CTA band */
.lp-cta-band {
	background: var(--charcoal);
	padding: 48px 24px;
	text-align: center;
}

.lp-cta-band h2 {
	color: #fff;
	font-size: 28px;
	margin-bottom: 12px;
}

.lp-cta-band p {
	color: #ccc;
	margin-bottom: 20px;
}

/* Landing page partner logos */
.lp-partners {
	background: #1a1a1a;
	padding: 32px 24px;
	text-align: center;
}

.lp-plogos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.lp-plogos img {
	height: 36px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Blog Article Styles
   -------------------------------------------------------------------------- */
.art-wrap {
	background: var(--dark);
	padding: 48px 24px 60px;
}

.art-container {
	max-width: var(--container-narrow);
	margin: 0 auto;
}

.art-back {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold);
	text-decoration: none;
	margin-bottom: 28px;
	transition: color 0.2s;
}

.art-back:hover {
	color: var(--gold-hover);
}

.art-meta {
	font-size: 13px;
	color: var(--gray-mid);
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}

.art-author {
	color: var(--gold);
	font-weight: 600;
}

.art-sep {
	margin: 0 8px;
	color: var(--gray-dark);
}

/* Article body — inherits from .entry-content patterns */
.art-body h2 {
	font-size: 24px;
	margin: 36px 0 14px;
	color: var(--white);
}

.art-body h2 span {
	color: var(--gold);
}

.art-body h3 {
	font-size: 19px;
	margin: 28px 0 10px;
	color: var(--white);
}

.art-body p {
	font-size: 15px;
	line-height: 1.85;
	color: var(--gray-light);
	margin-bottom: 16px;
}

.art-body ul,
.art-body ol {
	margin: 0 0 18px 24px;
	color: var(--gray-light);
	font-size: 15px;
	line-height: 1.85;
}

.art-body ul {
	list-style: disc;
}

.art-body ol {
	list-style: decimal;
}

.art-body li {
	margin-bottom: 6px;
}

.art-body blockquote {
	border-left: 4px solid var(--gold);
	padding: 16px 20px;
	background: var(--charcoal);
	margin: 24px 0;
	border-radius: 0 var(--r) var(--r) 0;
}

.art-body blockquote p {
	color: var(--gray-mid);
	font-style: italic;
	margin-bottom: 0;
}

.art-body a {
	color: var(--gold);
	text-decoration: underline;
}

.art-body a:hover {
	color: var(--gold-hover);
}

.art-body img {
	border-radius: var(--r);
	margin: 24px 0;
}

/* Tip box */
.art-body .tip,
.entry-content .tip {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 20px 24px;
	margin: 24px 0;
}

.art-body .tip-head,
.entry-content .tip-head {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 6px;
}

.art-body .tip p,
.entry-content .tip p {
	color: var(--gray-light);
	margin-bottom: 0;
}

/* CTA block at end of post */
.art-cta {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 36px;
	text-align: center;
	margin: 40px 0;
}

.art-cta h3 {
	font-family: var(--font-heading);
	font-size: 24px;
	color: var(--gold);
	margin-bottom: 10px;
}

.art-cta p {
	color: var(--gray-mid);
	font-size: 14px;
	margin-bottom: 20px;
}

/* Free Guide CTA variant */
.art-cta-guide {
	background: var(--dark);
	border: 1px solid var(--border);
}

/* Tags */
.art-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}

.art-tag {
	display: inline-block;
	background: var(--charcoal);
	color: var(--gray-mid);
	font-size: 12px;
	font-family: var(--font-heading);
	text-transform: uppercase;
	padding: 6px 14px;
	border: 1px solid var(--border);
	border-radius: var(--r);
	text-decoration: none;
	transition: all 0.2s;
}

.art-tag:hover {
	background: var(--gold);
	color: var(--dark);
	border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Type Cards (Sheds / Patios inner pages)
   -------------------------------------------------------------------------- */
.type-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 24px;
}

.type-card {
	background: var(--charcoal);
	border: 2px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	transition: all 0.3s;
}

.type-card:hover {
	border-color: var(--gold);
	box-shadow: 0 0 30px var(--gold-glow);
	transform: translateY(-4px);
}

.type-card-img {
	position: relative;
	overflow: hidden;
}

.type-card-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.6s;
}

.type-card:hover .type-card-img img {
	transform: scale(1.04);
}

.type-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 12px;
	border-radius: var(--r);
}

.type-card-body {
	padding: 20px;
}

.type-card-body h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--white);
}

.type-card-body p {
	font-size: 13px;
	color: #bbb;
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Value Block (inner pages — complete solution sections)
   -------------------------------------------------------------------------- */
.value-block {
	background: var(--charcoal);
	padding: 60px 24px;
	text-align: center;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.value-block h2 {
	font-size: 30px;
	margin-bottom: 16px;
	color: var(--white);
}

.value-block h2 span {
	color: var(--gold);
}

.value-block p {
	max-width: 700px;
	margin: 0 auto;
	font-size: 15px;
	color: #e0e0e0;
	line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Sub-service Cards (inner pages)
   -------------------------------------------------------------------------- */
.subservice-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 800px;
	margin: 0 auto;
}

.subservice-grid.wide {
	max-width: var(--container, 1200px);
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.subservice-card {
	background: var(--charcoal);
	border: 2px solid var(--border);
	border-radius: var(--r);
	padding: 32px;
	transition: all 0.3s;
}

.subservice-card:hover {
	border-color: var(--gold);
	box-shadow: 0 0 20px var(--gold-glow);
}

.subservice-card h3 {
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--white);
}

.subservice-card p {
	font-size: 14px;
	color: #bbb;
	line-height: 1.7;
	margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Bottom CTA (inner pages)
   -------------------------------------------------------------------------- */
.bottom-cta {
	background: var(--gold);
	padding: 60px 24px;
	text-align: center;
}

.bottom-cta h2 {
	font-size: 32px;
	color: var(--dark);
	margin-bottom: 10px;
}

.bottom-cta h2 span {
	color: var(--dark);
}

.bottom-cta p {
	color: #333;
	font-size: 15px;
	margin-bottom: 24px;
}

.bottom-cta .btn-primary {
	background: var(--dark);
	color: #ffffff !important;
	border-color: var(--dark);
}

.bottom-cta .btn-primary:hover {
	background: var(--charcoal);
	border-color: var(--charcoal);
	box-shadow: none;
	transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Before & After Grid (Design page)
   -------------------------------------------------------------------------- */
.ba-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.ba-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--r);
	border: 1px solid var(--border);
}

.ba-item img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.4s;
}

.ba-item:hover img {
	transform: scale(1.03);
}

.ba-label {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 14px;
	border-radius: var(--r);
}

/* --------------------------------------------------------------------------
   Quote Page & Contact Page — Dark form theme
   -------------------------------------------------------------------------- */
.qtrust {
	background: var(--charcoal);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	padding: 18px 24px;
	border-bottom: 1px solid var(--border);
}

.qtrust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--gray-light);
	font-weight: 600;
}

.qtrust-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(212, 160, 23, 0.15);
	border-radius: 50%;
	color: var(--gold);
	font-size: 12px;
}

.qpage {
	background: var(--dark);
	padding: 40px 24px 60px;
}

.qlayout {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
}

/* -- Form sections -- */
.qform-wrap {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
}

.qsec {
	padding: 28px;
	border-bottom: 1px solid var(--border);
}

.qsec:last-child {
	border-bottom: none;
}

.qsec-head {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.qnum {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
}

.qrow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.qrow3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.qfg {
	margin-bottom: 16px;
}

.qfg label {
	display: block;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
	color: var(--gray-light);
}

.req {
	color: var(--gold);
}

.qfg input[type="text"],
.qfg input[type="email"],
.qfg input[type="tel"],
.qfg textarea,
.qfg select {
	background: var(--dark);
	border: 2px solid var(--border);
	color: var(--white);
}

.qfg input:focus,
.qfg textarea:focus,
.qfg select:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.qfg input::placeholder,
.qfg textarea::placeholder {
	color: var(--gray-dark);
}

.qfg textarea {
	min-height: 120px;
	resize: vertical;
}

.qhelp {
	font-size: 12px;
	color: var(--gray-dark);
	font-style: italic;
	margin-top: 16px;
}

.qfg-icon {
	color: var(--gold);
	margin-right: 6px;
}

.qfg-text {
	color: var(--gray-light);
	font-size: 14px;
	margin-top: 4px;
}

.qfg-link {
	color: var(--gold);
	text-decoration: none;
}

.qfg-link:hover {
	color: var(--gold-hover);
}

/* Contact page items */
.contact-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--gray-light);
}

.contact-item a {
	color: var(--gold);
	text-decoration: none;
	font-weight: 600;
}

.contact-item a:hover {
	color: var(--gold-hover);
}

.contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	background: rgba(212, 160, 23, 0.15);
	border-radius: 50%;
	color: var(--gold);
}

.contact-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 8px;
	background: var(--accent, #e8b931);
	color: #1a1a1a;
	padding: 12px 24px;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	text-decoration: none;
	border-radius: 4px;
	transition: .2s;
	margin-bottom: 12px;
}

.contact-btn:hover {
	background: #d4a52a;
	color: #1a1a1a;
}

.contact-social {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.contact-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--dark);
	border: 1px solid var(--border);
	color: var(--gray-mid);
	font-size: 16px;
	transition: all 0.2s;
	text-decoration: none;
}

.contact-social a:hover {
	border-color: var(--gold);
	color: var(--gold);
}

/* -- Checkbox grid -- */
.qcheck-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.qcheck {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--gray-light);
	cursor: pointer;
	padding: 8px 12px;
	background: var(--dark);
	border: 1px solid var(--border);
	border-radius: var(--r);
	transition: all 0.2s;
}

.qcheck:hover {
	border-color: var(--gold);
}

.qcheck input[type="checkbox"] {
	accent-color: var(--gold);
	width: 16px;
	height: 16px;
}

/* -- File upload zone -- */
.qfile {
	border: 2px dashed var(--border);
	border-radius: var(--r);
	padding: 28px;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s;
	background: var(--dark);
}

.qfile:hover {
	border-color: var(--gold);
}

.qfile-icon {
	font-size: 24px;
	color: var(--gold);
	margin-bottom: 8px;
}

.qfile-txt {
	font-size: 13px;
	color: var(--gray-mid);
	line-height: 1.5;
}

/* -- Submit section -- */
.qsec-submit {
	text-align: center;
	padding: 28px;
}

.qsubmit-btn {
	width: 100%;
	max-width: 400px;
	padding: 16px 32px;
	font-size: 16px;
}

.qconsent {
	font-size: 11px;
	color: var(--gray-dark);
	max-width: 400px;
	margin: 12px auto 0;
	line-height: 1.5;
}

/* -- Sidebar -- */
.qside {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 140px;
}

.qside-cta {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 24px;
	text-align: center;
}

.qside-cta p {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--gray-light);
	margin-bottom: 8px;
}

.qside-cta a {
	display: block;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 4px;
}

.qside-cta small {
	font-size: 12px;
	color: var(--gray-dark);
}

.qside-card {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 24px;
}

.qside-card h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	margin-bottom: 16px;
}

.qside-card h4 span {
	color: var(--gold);
}

.qside-item {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	align-items: flex-start;
}

.qside-item:last-child {
	margin-bottom: 0;
}

.qside-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 2px;
}

.qside-check {
	background: rgba(212, 160, 23, 0.15);
	color: var(--gold);
}

.qside-item div {
	font-size: 13px;
	color: var(--gray-light);
	line-height: 1.4;
}

.qside-item div strong {
	color: var(--white);
	display: block;
	margin-bottom: 2px;
}

.qside-logos {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.qside-logos img {
	height: 40px;
	width: auto;
	opacity: 0.75;
	transition: all 0.3s;
}

.qside-logos img:hover {
	opacity: 1;
}

/* --------------------------------------------------------------------------
   Footer — Dark 4-column layout
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--charcoal);
	color: var(--white);
	border-top: 3px solid var(--gold);
}

.footer-main {
	padding: 60px 0 40px;
}

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

.footer-logo {
	margin-bottom: 16px;
}

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

.footer-site-name {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-mission {
	font-size: 13px;
	color: var(--gray-mid);
	line-height: 1.7;
}

.footer-heading {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
	color: var(--white);
}

.footer-menu {
	list-style: none;
}

.footer-menu li {
	margin-bottom: 8px;
}

.footer-menu a {
	color: var(--gray-mid);
	font-size: 13px;
	transition: color 0.2s;
	text-decoration: none;
}

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

.footer-contact-list {
	list-style: none;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 13px;
	color: var(--gray-mid);
}

.footer-contact-list li i {
	color: var(--gold);
	font-size: 14px;
	margin-top: 2px;
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}

.footer-contact-list a {
	color: var(--gray-mid);
	text-decoration: none;
}

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

.social-links {
	display: flex;
	gap: 10px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border-radius: var(--r);
	font-size: 16px;
	transition: all 0.2s;
	text-decoration: none;
}

.social-links a:hover {
	background: var(--gold);
	color: var(--dark);
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding: 20px 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 12px;
	color: var(--gray-dark);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	width: 56px;
	height: 56px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
	color: var(--white);
	font-size: 28px;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
.anim {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.anim.visible {
	opacity: 1;
	transform: translateY(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   WordPress Core Block Styles — Dark
   -------------------------------------------------------------------------- */
.wp-block-button__link {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 12px 28px;
	border-radius: var(--r);
	transition: all 0.2s;
	text-decoration: none;
}

.wp-block-image img {
	border-radius: var(--r);
}

.wp-block-separator {
	border-color: var(--border);
}

.wp-block-quote {
	border-left: 4px solid var(--gold);
	padding: 16px 20px;
	background: var(--charcoal);
	border-radius: 0 var(--r) var(--r) 0;
	margin: 24px 0;
}

/* --------------------------------------------------------------------------
   Forms (Contact Form 7 compatible) — Dark theme
   -------------------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="password"],
textarea,
select {
	display: block;
	width: 100%;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.4;
	padding: 12px 16px;
	border: 2px solid var(--border);
	border-radius: var(--r);
	background: var(--dark);
	color: var(--white);
	transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
	outline: 0;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

input::placeholder,
textarea::placeholder {
	color: var(--gray-dark);
}

input[type="submit"] {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 14px 32px;
	border-radius: var(--r);
	border: 2px solid var(--gold);
	background: var(--gold);
	color: var(--dark);
	cursor: pointer;
	transition: all 0.2s;
}

input[type="submit"]:hover {
	background: var(--gold-hover);
	border-color: var(--gold-hover);
}

/* CF7 dark overrides */
.wpcf7-form label {
	color: var(--gray-light);
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
	background: var(--dark);
	border-color: var(--border);
	color: var(--white);
	margin-top: 6px;
}

.wpcf7-not-valid-tip {
	color: #ff5252;
	font-size: 12px;
}

.wpcf7-response-output {
	border-color: var(--gold) !important;
	color: var(--gray-light);
	background: var(--charcoal);
	padding: 16px;
	border-radius: var(--r);
}

/* --------------------------------------------------------------------------
   404 Page
   -------------------------------------------------------------------------- */
.error-404 {
	text-align: center;
	padding: 80px 24px;
	max-width: 720px;
	margin: 0 auto;
}

.error-404-num {
	font-family: 'Oswald', sans-serif;
	font-size: 120px;
	color: var(--gold);
	line-height: 1;
	margin: 0 0 8px;
	font-weight: 700;
}

.error-404 h1 {
	font-size: 32px;
	color: var(--white);
	margin: 0 0 16px;
}

.error-404 h2 {
	font-size: 22px;
	color: var(--white);
	margin: 32px 0 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.error-404 p {
	color: var(--gray-mid);
	font-size: 16px;
	margin-bottom: 32px;
}

.error-404-links {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	text-align: left;
}

.error-404-links li {
	margin: 0;
}

.error-404-links a {
	display: block;
	padding: 12px 18px;
	background: rgba(212, 160, 23, 0.08);
	border: 1px solid rgba(212, 160, 23, 0.3);
	border-radius: 6px;
	color: var(--gold);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
}

.error-404-links a:hover {
	background: var(--gold);
	color: var(--dark, #1a1a1a);
}

/* --------------------------------------------------------------------------
   Blog / Post Cards — Dark
   -------------------------------------------------------------------------- */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 28px;
	margin-bottom: 40px;
}

.post-card {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	transition: all 0.3s;
}

.post-card:hover {
	border-color: var(--gold);
	box-shadow: 0 0 20px var(--gold-glow);
	transform: translateY(-3px);
}

.post-card-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.6s;
}

.post-card:hover .post-card-img img {
	transform: scale(1.04);
}

.post-card-body {
	padding: 24px;
}

.post-card-meta {
	font-size: 12px;
	color: var(--gray-mid);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
}

.meta-sep {
	margin: 0 6px;
}

.post-card-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}

.post-card-title a {
	color: var(--white);
	text-decoration: none;
}

.post-card-title a:hover {
	color: var(--gold);
}

.post-card-excerpt {
	font-size: 13px;
	color: var(--gray-mid);
	line-height: 1.6;
	margin-bottom: 14px;
}

.post-card-excerpt p {
	margin: 0;
}

.read-more {
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gold);
}

.read-more:hover {
	color: var(--gold-hover);
}

/* --------------------------------------------------------------------------
   Single Post Elements — Dark
   -------------------------------------------------------------------------- */
.post-meta {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.post-tag {
	display: inline-block;
	background: var(--charcoal);
	color: var(--gray-mid);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 5px 14px;
	border-radius: var(--r);
	border: 1px solid var(--border);
	text-decoration: none;
	transition: all 0.2s;
}

.post-tag:hover {
	background: var(--gold);
	color: var(--dark);
	border-color: var(--gold);
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}

.post-nav-link {
	display: block;
	padding: 20px;
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	text-decoration: none;
	transition: all 0.2s;
}

.post-nav-link:hover {
	border-color: var(--gold);
	box-shadow: 0 0 15px var(--gold-glow);
}

.post-nav-next {
	text-align: right;
}

.post-nav-label {
	display: block;
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold);
	margin-bottom: 4px;
}

.post-nav-title {
	display: block;
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 600;
	color: var(--white);
	text-transform: uppercase;
	line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Archive Description
   -------------------------------------------------------------------------- */
.archive-desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Pagination — Dark
   -------------------------------------------------------------------------- */
.nav-links {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 32px;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	border: 1px solid var(--border);
	border-radius: var(--r);
	text-decoration: none;
	color: var(--gray-mid);
	transition: all 0.2s;
}

.nav-links a:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.nav-links .current {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--dark);
}

/* --------------------------------------------------------------------------
   Search Form — Dark
   -------------------------------------------------------------------------- */
.search-form {
	display: flex;
	max-width: 460px;
	margin: 0 auto;
}

.search-form .search-field {
	flex: 1;
	padding: 12px 18px;
	border: 2px solid var(--border);
	border-right: none;
	border-radius: var(--r) 0 0 var(--r);
	font-size: 14px;
	font-family: var(--font-body);
	background: var(--charcoal);
	color: var(--white);
}

.search-form .search-field:focus {
	border-color: var(--gold);
	outline: 0;
}

.search-form .search-submit {
	padding: 12px 24px;
	border-radius: 0 var(--r) var(--r) 0;
	border: 2px solid var(--gold);
	border-left: none;
}

/* --------------------------------------------------------------------------
   Comments — Dark
   -------------------------------------------------------------------------- */
.comments-area {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}

.comments-title {
	font-size: 22px;
	margin-bottom: 24px;
}

.comment-list {
	list-style: none;
}

.comment-list .comment {
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
}

.comment-author .avatar {
	border-radius: var(--r);
	margin-right: 12px;
	float: left;
}

.comment-author .fn {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white);
}

.comment-metadata {
	font-size: 12px;
	color: var(--gray-mid);
	margin-bottom: 8px;
}

.comment-metadata a {
	color: var(--gray-mid);
}

.comment-content p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--gray-light);
}

.reply a {
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gold);
}

.comment-respond {
	margin-top: 32px;
}

.comment-form label {
	display: block;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
	color: var(--gray-light);
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Mobile Submenu Toggle Button
   -------------------------------------------------------------------------- */
.submenu-toggle {
	display: none;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (1024px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.lead-magnet-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.lead-magnet-checklist {
		text-align: left;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 28px;
	}

	.lead-magnet-content h2 {
		font-size: 28px;
	}

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

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

	.qside {
		position: static;
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}

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

/* --------------------------------------------------------------------------
   Responsive — Mobile (768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
	.hero {
		min-height: 80vh;
	}

	.hero h1 {
		font-size: 36px;
	}

	.badges-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

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

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

	.page-banner-content h1,
	.page-banner-content .page-banner-title {
		font-size: 30px;
	}

	.section-title {
		font-size: 28px;
	}

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

	.why-us-grid .why-us-item:nth-child(4),
	.why-us-grid .why-us-item:nth-child(5) {
		justify-self: center;
	}

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

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

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

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

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

	.qtrust {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	/* Navigation — mobile drawer */
	.main-nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--dark);
		z-index: 10000;
		padding: 80px 24px 24px;
		overflow-y: auto;
	}

	.nav-open .main-nav {
		display: block;
	}

	.main-nav .nav-menu {
		flex-direction: column;
		gap: 0;
	}

	.main-nav .nav-menu a {
		font-size: 18px;
		padding: 12px 0;
		border-bottom: 1px solid var(--border);
	}

	.main-nav .nav-menu .sub-menu {
		position: static;
		transform: none;
		display: none;
		background: transparent;
		border: none;
		box-shadow: none;
		margin-top: 0;
		padding: 0 0 0 16px;
	}

	.main-nav .nav-menu .sub-menu a {
		color: var(--gray-mid);
		font-size: 15px;
		border-bottom: 1px solid var(--charcoal-light);
	}

	.header-phone span {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

	.submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 10px;
		right: 0;
		width: 32px;
		height: 32px;
		background: none;
		border: 2px solid var(--border-light);
		border-radius: var(--r);
		color: var(--white);
		font-size: 12px;
		cursor: pointer;
	}

	.submenu-toggle.open {
		border-color: var(--gold);
		color: var(--gold);
	}

	.main-nav .nav-menu > li {
		position: relative;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

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

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

/* --------------------------------------------------------------------------
   Responsive — Small Mobile (480px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
	.hero h1 {
		font-size: 28px;
	}

	.hero-desc {
		font-size: 14px;
		line-height: 1.5;
	}

	.hero {
		min-height: 70vh;
	}

	.cta-band h2 {
		font-size: 24px;
	}

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

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

	.partner-logos {
		gap: 24px;
	}

	.partner-logos img {
		height: 35px;
	}

	.why-us-grid {
		grid-template-columns: 1fr;
	}

	.error-404-num {
		font-size: 80px;
	}

	.error-404 h1 {
		font-size: 26px;
	}

	.whatsapp-float {
		width: 48px;
		height: 48px;
		bottom: 16px;
		right: 16px;
	}

	.whatsapp-float i {
		font-size: 24px;
	}
}

/* --------------------------------------------------------------------------
   WooCommerce Overrides — Dark theme
   -------------------------------------------------------------------------- */
.woocommerce .products ul,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 24px;
	list-style: none;
	padding: 0;
}

.woocommerce ul.products li.product {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	transition: all 0.3s;
}

.woocommerce ul.products li.product:hover {
	border-color: var(--gold);
	box-shadow: 0 0 20px var(--gold-glow);
	transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 12px 16px 0;
	color: var(--white);
}

.woocommerce ul.products li.product .price {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	padding: 8px 16px;
	color: var(--gold);
}

.woocommerce ul.products li.product .button {
	margin: 0 16px 16px;
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 10px 18px;
	border-radius: var(--r);
	transition: all 0.2s;
}

.woocommerce ul.products li.product .button:hover {
	background: var(--gold-hover);
}

.woocommerce span.onsale {
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: var(--r);
}

/* WooCommerce single product dark overrides */
.woocommerce div.product .product_title {
	color: var(--white);
}

.woocommerce div.product p.price {
	color: var(--gold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--charcoal);
	border-color: var(--border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--dark);
	border-bottom-color: var(--dark);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--gray-light);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
	background: var(--charcoal);
	border-top-color: var(--gold);
	color: var(--gray-light);
}

.woocommerce .woocommerce-error {
	background: var(--charcoal);
	border-top-color: #ff5252;
	color: var(--gray-light);
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background: var(--charcoal);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(212, 160, 23, 0.6);
	clip: auto !important;
	color: var(--gold);
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* =====================================================
   SEO Content Sections (Process, Pricing, FAQ, Suburbs)
   Used by page-sheds.php and page-patios.php
   ===================================================== */

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.process-step {
	background: #1a1a1a;
	border: 1px solid rgba(212, 160, 23, 0.2);
	border-radius: 8px;
	padding: 30px 25px;
	text-align: center;
}

.process-step .process-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #d4a017;
	color: #1a1a1a;
	font-family: 'Oswald', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.process-step h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.25rem;
	color: #f5f5f0;
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.process-step p {
	color: #e0e0e0;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.price-list {
	list-style: none;
	padding: 0;
	margin: 30px auto;
	max-width: 900px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 12px;
}

.price-list li {
	padding: 20px 24px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(212, 160, 23, 0.3);
	border-radius: 6px;
	color: #e0e0e0;
	line-height: 1.6;
	text-align: center;
}

.price-list li strong {
	color: #d4a017;
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 1.05rem;
	letter-spacing: 0.3px;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.faq-list {
	max-width: 900px;
	margin: 40px auto 0;
}

.faq-item {
	background: #1a1a1a;
	border: 1px solid rgba(212, 160, 23, 0.2);
	border-radius: 8px;
	padding: 28px 32px;
	margin-bottom: 18px;
}

.faq-item h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.2rem;
	color: #d4a017;
	margin: 0 0 12px;
	text-transform: none;
	letter-spacing: 0;
}

.faq-item p {
	color: #e0e0e0;
	margin: 0;
	line-height: 1.7;
}

.faq-item p a {
	color: #d4a017;
	text-decoration: underline;
}

.faq-item p a:hover {
	color: #be9015;
}

.suburb-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 30px 0 0;
}

.suburb-list li {
	margin: 0;
}

.suburb-list a {
	display: inline-block;
	padding: 10px 22px;
	background: var(--charcoal, #2a2a2a);
	border: 1px solid #333;
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	transition: all 0.2s ease;
}

.suburb-list a:hover {
	background: var(--gold, #d4a017);
	color: #1a1a1a;
	border-color: var(--gold, #d4a017);
}

/* --------------------------------------------------------------------------
   Free Shed Guide (Lead Magnet) — page-freeshed-guide.php
   -------------------------------------------------------------------------- */
.fsg-hero {
	position: relative;
	overflow: hidden;
	background: var(--dark);
	padding: 80px 24px;
}

.fsg-hero-bg {
	position: absolute;
	inset: 0;
}

.fsg-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.25);
}

.fsg-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.55) 60%, rgba(26, 26, 26, 0.85) 100%);
}

.fsg-hero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 440px;
	gap: 56px;
	align-items: start;
}

/* Copy column */
.fsg-copy {
	color: var(--gray-light);
}

.fsg-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	background: rgba(212, 160, 23, 0.12);
	border: 1px solid rgba(212, 160, 23, 0.4);
	padding: 6px 14px;
	border-radius: var(--r);
	margin-bottom: 20px;
}

.fsg-copy h1 {
	font-size: 48px;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 14px;
}

.fsg-copy h1 span {
	color: var(--gold);
	font-style: italic;
}

.fsg-lead {
	font-size: 17px;
	color: var(--gray-light);
	margin-bottom: 22px;
	font-style: italic;
}

.fsg-intro {
	font-size: 16px;
	line-height: 1.7;
	color: #e0e0e0;
	margin-bottom: 24px;
}

.fsg-intro strong {
	color: var(--white);
}

.fsg-bullets {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 12px;
}

.fsg-bullets li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: #e0e0e0;
	font-size: 15px;
	line-height: 1.5;
}

.fsg-bullets li i {
	color: var(--gold);
	background: rgba(212, 160, 23, 0.15);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 2px;
}

.fsg-meta {
	font-size: 13px;
	color: var(--gray-mid);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.fsg-meta i {
	color: var(--gold);
}

.fsg-meta strong {
	color: var(--white);
}

/* Form card — light card on dark hero */
.fsg-form-card {
	background: var(--white);
	border-radius: var(--r);
	padding: 36px 32px;
	box-shadow: var(--sh2);
	position: sticky;
	top: 120px;
}

.fsg-form-card h2 {
	font-size: 26px;
	color: var(--dark);
	text-align: center;
	margin-bottom: 6px;
}

.fsg-form-card h2 span {
	color: var(--gold);
}

.fsg-form-sub {
	text-align: center;
	font-size: 14px;
	color: #555;
	margin-bottom: 24px;
}

.fsg-form-trust {
	font-size: 12px;
	color: #888;
	text-align: center;
	margin-top: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.fsg-form-trust i {
	color: var(--gold);
}

/* CF7 form styles inside the white card */
.fsg-form-card .wpcf7 {
	margin: 0;
}

.fsg-form-card .wpcf7-form p {
	margin: 0 0 14px;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #444;
}

.fsg-form-card .wpcf7-form input[type="text"],
.fsg-form-card .wpcf7-form input[type="email"],
.fsg-form-card .wpcf7-form input[type="tel"],
.fsg-form-card .wpcf7-form input[type="url"] {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	color: var(--dark);
	background: #f7f7f5;
	border: 1px solid #ddd;
	border-radius: var(--r);
	padding: 12px 14px;
	margin-top: 6px;
	transition: border-color 0.2s, background 0.2s;
}

.fsg-form-card .wpcf7-form input:focus {
	outline: none;
	border-color: var(--gold);
	background: var(--white);
}

.fsg-form-card .wpcf7-form input::placeholder {
	color: #aaa;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
}

.fsg-form-card .wpcf7-form .wpcf7-submit {
	width: 100%;
	background: var(--gold);
	color: var(--dark);
	border: none;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 14px 20px;
	border-radius: var(--r);
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	margin-top: 6px;
}

.fsg-form-card .wpcf7-form .wpcf7-submit:hover {
	background: var(--gold-hover);
	transform: translateY(-1px);
}

.fsg-form-card .wpcf7-spinner {
	display: none;
}

.fsg-form-card .wpcf7-not-valid-tip {
	color: #c1272d;
	font-size: 12px;
	font-weight: 600;
	margin-top: 4px;
	text-transform: none;
	letter-spacing: 0;
}

.fsg-form-card .wpcf7 form .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 10px 14px;
	font-size: 13px;
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: 0;
	border-radius: var(--r);
}

/* What's Inside grid */
.fsg-mistakes {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 32px;
}

.fsg-mistake {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 20px 22px;
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	transition: border-color 0.2s, transform 0.2s;
}

.fsg-mistake:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
}

.fsg-mistake-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
}

.fsg-mistake h3 {
	font-size: 17px;
	color: var(--white);
	margin-bottom: 4px;
}

.fsg-mistake p {
	font-size: 14px;
	color: var(--gray-light);
	line-height: 1.5;
	margin: 0;
}

.fsg-inline-cta {
	text-align: center;
	margin-top: 36px;
}

.fsg-inline-cta .btn i {
	margin-right: 8px;
}

/* Testimonials */
.fsg-testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.fsg-quote {
	background: var(--charcoal);
	border-left: 3px solid var(--gold);
	padding: 24px;
	border-radius: var(--r);
}

.fsg-quote p {
	font-size: 15px;
	line-height: 1.6;
	color: #e0e0e0;
	margin: 0 0 14px;
	font-style: italic;
}

.fsg-quote cite {
	display: block;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	color: var(--gold);
	font-style: normal;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Tablet */
@media screen and (max-width: 1024px) {
	.fsg-hero-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.fsg-form-card {
		position: static;
		max-width: 520px;
		margin: 0 auto;
		width: 100%;
	}

	.fsg-copy h1 {
		font-size: 38px;
	}

	.fsg-mistakes {
		grid-template-columns: 1fr;
	}

	.fsg-testimonials {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 600px) {
	.fsg-hero {
		padding: 48px 16px;
	}

	.fsg-copy h1 {
		font-size: 30px;
	}

	.fsg-form-card {
		padding: 28px 22px;
	}

	.fsg-mistake {
		padding: 16px 18px;
	}
}

/* --------------------------------------------------------------------------
   Tools landing + sub-pages (/tools/*)
   -------------------------------------------------------------------------- */
.page-banner--plain {
	min-height: auto;
	padding: 100px 24px 80px;
	background: var(--charcoal);
	border-bottom: 1px solid var(--border);
	text-align: center;
}

.page-banner--plain .page-banner-content {
	position: static;
	max-width: 760px;
	margin: 0 auto;
}

.page-banner--plain .hero-sub {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
}

.page-banner--plain h1 {
	font-size: clamp(34px, 5vw, 56px);
	color: var(--white);
	margin-bottom: 18px;
}

.page-banner--plain h1 span {
	color: var(--gold);
}

.page-banner--plain p {
	font-size: 17px;
	color: var(--gray-light);
	line-height: 1.6;
}

/* Two-column hero variant — copy left, image right (used on sub-page heroes) */
.page-banner--with-image {
	padding: 80px 24px;
	background: var(--charcoal);
	border-bottom: 1px solid var(--border);
}

.page-banner--with-image .page-banner-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}

.page-banner--with-image .page-banner-copy .hero-sub {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}

.page-banner--with-image .page-banner-copy h1 {
	font-size: clamp(32px, 4.5vw, 50px);
	color: var(--white);
	margin-bottom: 16px;
	line-height: 1.1;
}

.page-banner--with-image .page-banner-copy h1 span {
	color: var(--gold);
}

.page-banner--with-image .page-banner-copy p {
	font-size: 17px;
	color: var(--gray-light);
	line-height: 1.65;
}

.page-banner--with-image .page-banner-image {
	background: #f5f5f0;
	border-radius: var(--r);
	padding: 24px;
	border: 1px solid var(--border);
}

.page-banner--with-image .page-banner-image img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 880px) {
	.page-banner--with-image .page-banner-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.page-banner--with-image .page-banner-image {
		order: -1;
		padding: 16px;
	}
}

/* Homepage Free Tools promo section */
.home-tools-promo {
	background: var(--charcoal);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.home-tools-promo .home-tools-cta-row {
	text-align: center;
	margin-top: 36px;
}

/* --------------------------------------------------------------------------
   Design page (/design/)
   -------------------------------------------------------------------------- */
.design-hero {
	position: relative;
	min-height: 580px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--dark);
}

.design-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.design-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.45;
}

.design-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.55) 100%);
	z-index: 1;
}

.design-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 80px 24px;
}

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

.design-hero-eyebrow {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 18px;
}

.design-hero-eyebrow i {
	margin-right: 8px;
}

.design-hero-content h1 {
	font-size: clamp(36px, 5.5vw, 64px);
	color: var(--white);
	margin-bottom: 20px;
	line-height: 1.05;
	max-width: 800px;
}

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

.design-hero-sub {
	font-size: 18px;
	color: var(--gray-light);
	line-height: 1.6;
	max-width: 680px;
	margin-bottom: 36px;
}

.design-hero-cta .btn i {
	margin-left: 8px;
	font-size: 14px;
}

/* 4-step process */
.design-process {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-top: 12px;
}

.design-step {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 28px 24px;
	position: relative;
	transition: all 0.3s;
}

.design-step:hover {
	border-color: var(--gold);
	transform: translateY(-4px);
}

.design-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

.design-step h3 {
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 10px;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.design-step p {
	font-size: 14px;
	color: var(--gray-light);
	line-height: 1.6;
}

/* Why this matters */
.design-why {
	background: var(--charcoal);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.design-why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	margin-top: 12px;
}

.design-why-item {
	text-align: center;
	padding: 24px;
}

.design-why-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: rgba(212, 160, 23, 0.12);
	color: var(--gold);
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.design-why-item h3 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.design-why-item p {
	font-size: 15px;
	color: var(--gray-light);
	line-height: 1.65;
}

/* Design -> Reality pairs */
.design-pairs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-top: 12px;
}

.design-pair {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	margin: 0;
	transition: all 0.3s;
}

.design-pair:not(.design-pair--placeholder):hover {
	border-color: var(--gold);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.design-pair-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--border);
}

.design-pair-img {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--charcoal);
}

.design-pair-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.design-pair:not(.design-pair--placeholder):hover .design-pair-img img {
	transform: scale(1.04);
}

.design-pair-tag {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 10px;
	font-family: var(--font-heading);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 2px;
}

.design-pair-tag--design {
	background: var(--gold);
	color: var(--dark);
}

.design-pair-tag--final {
	background: rgba(255, 255, 255, 0.92);
	color: var(--dark);
}

.design-pair-caption {
	display: block;
	padding: 16px 20px;
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 0.02em;
}

/* Placeholder variant */
.design-pair--placeholder {
	border: 1px dashed var(--border-light);
	background: rgba(212, 160, 23, 0.04);
}

.design-pair-img--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2);
	cursor: default;
}

.design-pair-placeholder-inner {
	text-align: center;
	color: var(--gray-mid);
}

.design-pair-placeholder-inner i {
	font-size: 28px;
	display: block;
	margin-bottom: 8px;
	opacity: 0.5;
}

.design-pair-placeholder-inner span {
	font-family: var(--font-heading);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.design-pair--placeholder .design-pair-caption {
	color: var(--gray-mid);
	font-style: italic;
}

@media (max-width: 880px) {
	.design-pairs {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 480px) {
	.design-pair-images {
		grid-template-columns: 1fr;
	}
}

/* FAQ */
.design-faq-section {
	background: var(--charcoal);
	border-top: 1px solid var(--border);
}

.design-faq {
	margin-top: 16px;
}

.design-faq-item {
	border-bottom: 1px solid var(--border);
	padding: 22px 0;
}

.design-faq-item:last-child {
	border-bottom: none;
}

.design-faq-item h3 {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 10px;
	letter-spacing: 0.01em;
}

.design-faq-item p {
	font-size: 15px;
	color: var(--gray-light);
	line-height: 1.7;
	margin-bottom: 0;
}

/* Final CTA */
.design-final-cta {
	background: var(--dark);
	border-top: 4px solid var(--gold);
	padding: 80px 24px;
	text-align: center;
}

.design-final-cta h2 {
	font-family: var(--font-heading);
	font-size: clamp(32px, 4.5vw, 48px);
	color: var(--white);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

.design-final-cta h2 span {
	color: var(--gold);
}

.design-final-cta > .container > p {
	font-size: 18px;
	color: var(--gray-light);
	margin-bottom: 36px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.design-final-ctas {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.design-final-ctas .btn i {
	margin-right: 8px;
}

.design-final-ctas .btn-primary i {
	margin-right: 0;
	margin-left: 8px;
}

.design-final-trust {
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gray-mid);
}

@media (max-width: 600px) {
	.design-hero {
		min-height: 480px;
	}

	.design-final-ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.design-final-ctas .btn {
		width: 100%;
	}
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
}

.tool-card {
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s;
}

.tool-card:hover {
	border-color: var(--gold);
	box-shadow: 0 0 30px var(--gold-glow);
	transform: translateY(-4px);
}

.tool-card-img {
	display: block;
	background: #f5f5f0;
	padding: 18px;
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}

.tool-card-img img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: contain;
	transition: transform 0.5s;
}

.tool-card:hover .tool-card-img img {
	transform: scale(1.03);
}

.tool-card-body {
	padding: 22px 24px 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tool-card-body h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--white);
}

.tool-card-body p {
	font-size: 14px;
	color: var(--gray-light);
	line-height: 1.6;
	margin-bottom: 18px;
	flex: 1;
}

.tool-card-body .btn {
	align-self: flex-start;
	font-size: 13px;
	padding: 10px 22px;
}

.tool-card-body .btn i {
	margin-left: 6px;
	font-size: 11px;
}

.why-tools .entry-content p {
	font-size: 17px;
	color: var(--gray-light);
	line-height: 1.75;
	margin-bottom: 18px;
}

/* Sub-page (single-tool) layout */
.tool-page-cta {
	text-align: center;
	padding: 44px 24px;
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	margin: 0 auto 56px;
	max-width: 720px;
}

.tool-page-cta p.tool-page-cta-sub {
	color: var(--gray-mid);
	font-size: 14px;
	margin-top: 14px;
}

.tool-prose {
	max-width: 760px;
	margin: 0 auto;
}

.tool-prose h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--white);
	margin: 36px 0 14px;
}

.tool-prose h3 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--white);
	margin: 28px 0 10px;
}

.tool-prose p,
.tool-prose li {
	font-size: 16px;
	color: var(--gray-light);
	line-height: 1.75;
}

.tool-prose p {
	margin-bottom: 16px;
}

.tool-prose ul,
.tool-prose ol {
	margin: 0 0 18px 22px;
}

.tool-prose li {
	margin-bottom: 8px;
}

.tool-prose strong {
	color: var(--white);
}

.tool-worked-example {
	background: var(--charcoal);
	border-left: 3px solid var(--gold);
	padding: 18px 22px;
	margin: 22px 0 28px;
	border-radius: 0 var(--r) var(--r) 0;
}

.tool-worked-example p:last-child {
	margin-bottom: 0;
}

.tool-faq-item {
	border-bottom: 1px solid var(--border);
	padding: 18px 0;
}

.tool-faq-item:last-child {
	border-bottom: none;
}

.tool-faq-item h3 {
	margin: 0 0 8px;
}

.tool-faq-item p {
	margin-bottom: 0;
}

.tool-crosslinks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 36px;
}

.tool-crosslink {
	display: block;
	padding: 18px 20px;
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	transition: all 0.25s;
}

.tool-crosslink:hover {
	border-color: var(--gold);
	color: var(--white);
}

.tool-crosslink .label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gold);
	margin-bottom: 6px;
}

.tool-crosslink .name {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
}

/* --------------------------------------------------------------------------
   Quote form (CF7 1205) — extensions for collapsible, conditional, photos
   The base .cf7-form-grid / .cf7-row / .cf7-col styles already exist above.
   -------------------------------------------------------------------------- */

/* Honeypot — must not be visible to humans, must not steal tab focus */
.hp-hide {
	position: absolute !important;
	left: -10000px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.cf7-optional {
	color: var(--gray-mid);
	font-weight: 400;
	font-size: 13px;
}

/* 3-column row variant for short numeric inputs (length / width / height) */
.cf7-row-3col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

@media (max-width: 600px) {
	.cf7-row-3col {
		grid-template-columns: 1fr;
	}
}

/* Collapsible details section */
.cf7-details-section {
	margin-top: 8px;
	text-align: center;
}

.cf7-details-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: transparent;
	border: 1px solid var(--border-light);
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: var(--r);
	cursor: pointer;
	transition: all 0.2s;
	min-width: 280px;
	max-width: 100%;
}

.cf7-details-toggle:hover {
	background: rgba(212, 160, 23, 0.08);
	border-color: var(--gold);
}

/* Chevron — drawn with CSS borders instead of the Unicode glyph that the
   form template includes. Unicode triangles render at inconsistent baselines
   across fonts; the border-triangle is always exactly centered with the text. */
.cf7-details-chevron {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 7px solid currentColor;
	font-size: 0;
	line-height: 0;
	flex-shrink: 0;
	transition: transform 0.2s;
	transform-origin: 50% 33%;
}

.cf7-details-toggle.is-open .cf7-details-chevron {
	transform: rotate(180deg);
}

@media (max-width: 600px) {
	.cf7-details-toggle {
		width: 100%;
		min-width: 0;
	}
}

.cf7-details {
	margin-top: 24px;
	padding: 24px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid var(--border);
	border-radius: var(--r);
}

.cf7-details[hidden] {
	display: none;
}

.cf7-group-title {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 24px 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border);
}

.cf7-group-title:first-child {
	margin-top: 0;
}

.cf7-group-help {
	font-size: 13px;
	color: var(--gray-mid);
	margin: -8px 0 14px;
	line-height: 1.5;
}

/* Photo picker */
.cf7-photos {
	margin-top: 8px;
}

.cf7-photos-label {
	display: block;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--white);
	margin-bottom: 10px;
}

.cf7-photos-hint {
	color: var(--gray-mid);
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.cf7-photos-drop {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 28px 20px;
	border: 2px dashed var(--border-light);
	border-radius: var(--r);
	background: rgba(0, 0, 0, 0.15);
	transition: border-color 0.2s, background 0.2s;
}

.cf7-photos-drop.is-hover {
	border-color: var(--gold);
	background: rgba(212, 160, 23, 0.08);
}

.cf7-photos-input {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.cf7-photos-btn {
	background: var(--gold);
	color: var(--dark);
	border: none;
	padding: 10px 22px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--r);
	cursor: pointer;
	transition: background 0.2s;
}

.cf7-photos-btn:hover {
	background: var(--gold-hover);
}

.cf7-photos-droptext {
	font-size: 13px;
	color: var(--gray-mid);
	margin: 0;
}

.cf7-photos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.cf7-photos-grid:empty {
	display: none;
}

.cf7-photo {
	position: relative;
	background: var(--charcoal);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
}

.cf7-photo--errored {
	border-color: #c54;
}

.cf7-photo-thumb {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.cf7-photo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cf7-photo-spinner {
	width: 24px;
	height: 24px;
	border: 2px solid var(--border);
	border-top-color: var(--gold);
	border-radius: 50%;
	animation: cf7-spin 0.8s linear infinite;
}

@keyframes cf7-spin {
	to { transform: rotate(360deg); }
}

.cf7-photo-error {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #c54;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-family: var(--font-heading);
}

.cf7-photo-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s;
}

.cf7-photo-remove:hover {
	background: #c54;
}

.cf7-photo-name {
	font-size: 11px;
	color: var(--gray-light);
	padding: 6px 8px;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cf7-photos-status {
	font-size: 13px;
	margin: 8px 0 0;
	min-height: 1.4em;
}

.cf7-photos-status[data-level="warn"] {
	color: #e8a93a;
}

.cf7-photos-status[data-level="error"] {
	color: #d96666;
}

.cf7-turnstile-row {
	margin-top: 8px;
}
