/* ==========================================================================
   LeadPro Contractor — every value here reads a Customizer variable.
   Variables are printed inline by inc/dynamic-css.php before this file runs.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--lp-bg);
	color: var(--lp-text);
	font-family: var(--lp-font-body);
	font-size: var(--lp-fs-base);
	font-weight: var(--lp-weight-body);
	line-height: var(--lp-lh-body);
	letter-spacing: var(--lp-body-spacing);
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--lp-primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--lp-primary-dark); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--lp-font-heading);
	font-weight: var(--lp-weight-heading);
	color: var(--lp-heading);
	line-height: var(--lp-lh-heading);
	letter-spacing: var(--lp-heading-spacing);
	margin: 0 0 .6em;
}
.headings-uppercase h1, .headings-uppercase h2, .headings-uppercase h3,
.headings-uppercase .lp-section-title, .headings-uppercase .lp-hero__title { text-transform: uppercase; }
.headings-capitalize h1, .headings-capitalize h2, .headings-capitalize h3,
.headings-capitalize .lp-section-title, .headings-capitalize .lp-hero__title { text-transform: capitalize; }

h1 { font-size: var(--lp-fs-h1); }
h2 { font-size: var(--lp-fs-h2); }
h3 { font-size: var(--lp-fs-h3); }
h4 { font-size: var(--lp-fs-h4); }
p { margin: 0 0 1.1em; }

/* --------------------------------------------------------- Layout shell */

.lp-site { overflow-x: hidden; }
.lp-container {
	width: 100%;
	max-width: var(--lp-container);
	margin-inline: auto;
	padding-inline: 22px;
}
.lp-container--narrow { max-width: calc(var(--lp-container) - 260px); }

.lp-section { padding-block: var(--lp-section-pad); }
.lp-section--tight { padding-block: calc(var(--lp-section-pad) * .55); }
.lp-section--alt { background: var(--lp-alt-bg); }

.lp-section-head { margin-bottom: calc(var(--lp-gap) * 1.4); max-width: 720px; }
.lp-section-head--center { margin-inline: auto; text-align: center; }
.lp-section-title { font-size: var(--lp-fs-section); margin-bottom: .35em; }
.lp-section-sub { font-size: var(--lp-fs-section-sub); color: var(--lp-text); opacity: .85; margin: 0; }

.lp-empty {
	padding: 24px; border: 1px dashed var(--lp-border);
	border-radius: var(--lp-card-radius); text-align: center;
}

/* ------------------------------------------------------------- Buttons */

.lp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	padding: .85em 1.6em;
	font-family: var(--lp-font-heading);
	font-size: var(--lp-fs-button);
	font-weight: 600;
	line-height: 1.1;
	border: 2px solid transparent;
	border-radius: var(--lp-btn-radius);
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn:focus-visible { outline: 3px solid var(--lp-accent); outline-offset: 2px; }

.lp-btn--accent { background: var(--lp-accent); color: var(--lp-accent-text); box-shadow: 0 6px 18px rgba(var(--lp-accent-rgb), .35); }
.lp-btn--accent:hover { background: var(--lp-accent-dark); color: var(--lp-accent-text); }

.lp-btn--primary { background: var(--lp-primary); color: #fff; }
.lp-btn--primary:hover { background: var(--lp-primary-dark); color: #fff; }

.lp-btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(3px); }
.lp-btn--ghost:hover { background: #fff; color: var(--lp-primary); }

.lp-btn--outline { background: transparent; color: var(--lp-primary); border-color: currentColor; }
.lp-btn--outline:hover { background: var(--lp-primary); color: #fff; }

.lp-btn--block { width: 100%; }

/* -------------------------------------------------------------- Header */

.lp-topbar {
	background: var(--lp-primary-dark);
	color: rgba(255,255,255,.9);
	font-size: var(--lp-fs-small);
}
.lp-topbar__inner { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between; padding-block: 8px; }
.lp-topbar p { margin: 0; }
.lp-topbar__meta { display: flex; align-items: center; gap: 16px; }

.lp-header { background: var(--lp-bg); border-bottom: 1px solid var(--lp-border); position: relative; z-index: 60; }
.has-sticky-header .lp-header { position: sticky; top: 0; }
.lp-nav-open .lp-header { z-index: 95; }
.lp-nav-open { overflow: hidden; }
.lp-header.is-stuck { box-shadow: 0 6px 24px rgba(15,33,48,.12); }
.lp-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }

.lp-brand { display: flex; align-items: center; min-width: 0; }
.lp-brand img, .custom-logo { width: var(--lp-logo-w); height: auto; max-width: 100%; }
.lp-brand__text { text-decoration: none; display: block; }
.lp-brand__name { display: block; font-family: var(--lp-font-heading); font-weight: var(--lp-weight-heading); font-size: calc(var(--lp-fs-h3) * .92); color: var(--lp-primary); line-height: 1.15; }
.lp-brand__tag { display: block; font-size: var(--lp-fs-small); color: var(--lp-text); opacity: .8; }

.lp-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.lp-menu li { position: relative; }
.lp-menu a {
	display: block; padding: 10px 14px; text-decoration: none;
	font-family: var(--lp-font-heading); font-size: var(--lp-fs-menu); font-weight: 500;
	color: var(--lp-heading); border-radius: 6px;
}
.lp-menu a:hover, .lp-menu .current-menu-item > a, .lp-menu .current_page_item > a { color: var(--lp-primary); background: var(--lp-alt-bg); }

.lp-menu .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 240px;
	background: #fff; list-style: none; margin: 0; padding: 8px;
	border: 1px solid var(--lp-border); border-radius: var(--lp-card-radius);
	box-shadow: 0 18px 40px rgba(15,33,48,.14);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 70;
}
.lp-menu li:hover > .sub-menu,
.lp-menu li:focus-within > .sub-menu,
.lp-menu li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lp-menu .sub-menu .sub-menu { top: 0; left: 100%; }

.lp-submenu-toggle {
	display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: inherit;
}
.lp-caret { display: inline-block; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }

.lp-header__aside { display: flex; align-items: center; gap: 16px; }
.lp-nav__cta { display: none; }

.lp-phone { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-family: var(--lp-font-heading); font-weight: 700; color: var(--lp-primary); white-space: nowrap; }
.lp-phone__icon { font-size: 1.1em; }
.lp-phone--header .lp-phone__number { font-size: calc(var(--lp-fs-menu) * 1.08); }

.lp-nav-toggle { display: none; background: none; border: 1px solid var(--lp-border); border-radius: 8px; padding: 10px 12px; cursor: pointer; }
.lp-nav-toggle__bars span { display: block; width: 22px; height: 2px; background: var(--lp-heading); margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle__bars span:nth-child(2) { opacity: 0; }
.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- Hero */

.lp-hero {
	position: relative;
	min-height: var(--lp-hero-h);
	display: flex; align-items: center;
	background: var(--lp-primary);
	background-size: cover; background-position: center;
	color: #fff;
	padding-block: calc(var(--lp-section-pad) * .8);
}
.lp-hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(100deg,
		rgba(var(--lp-overlay), calc(var(--lp-overlay-a) + .12)) 0%,
		rgba(var(--lp-overlay), var(--lp-overlay-a)) 65%);
}
.lp-hero__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: calc(var(--lp-gap) * 1.6); align-items: center; width: 100%; }
.lp-hero.has-form .lp-hero__inner { grid-template-columns: 1.15fr .85fr; }

.lp-hero__eyebrow {
	display: inline-block; margin: 0 0 14px;
	padding: 6px 14px; border-radius: 999px;
	background: rgba(var(--lp-accent-rgb), .18);
	border: 1px solid rgba(var(--lp-accent-rgb), .5);
	color: var(--lp-accent);
	font-size: var(--lp-fs-small); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.lp-hero__title { font-size: var(--lp-fs-hero); color: #fff; margin-bottom: .4em; max-width: 18ch; }
.lp-hero.has-form .lp-hero__title { max-width: none; }
.lp-hero__sub { font-size: var(--lp-fs-hero-sub); color: rgba(255,255,255,.92); max-width: 58ch; }
.lp-hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.lp-hero__badges { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.lp-hero__badges li { display: flex; align-items: center; gap: 8px; font-size: var(--lp-fs-small); color: rgba(255,255,255,.92); }

.lp-tick { width: 18px; height: 18px; flex: none; fill: var(--lp-accent); }

/* --------------------------------------------- Hero style variants */

/* Split: solid colour panel, photo beside the text. */
.lp-hero--split { background-color: var(--lp-primary); }
.lp-hero--split::before { background: none; }
.lp-hero--light { background-color: var(--lp-alt-bg); color: var(--lp-text); }
.lp-hero--light::before { background: none; }
.lp-hero--light .lp-hero__title { color: var(--lp-heading); }
.lp-hero--light .lp-hero__sub { color: var(--lp-text); }
.lp-hero--light .lp-hero__badges li { color: var(--lp-text); }
.lp-hero--light .lp-hero__eyebrow { background: rgba(var(--lp-primary-rgb), .08); border-color: rgba(var(--lp-primary-rgb), .25); color: var(--lp-primary); }
.lp-hero--light .lp-btn--ghost { background: transparent; color: var(--lp-primary); border-color: currentColor; backdrop-filter: none; }
.lp-hero--light .lp-btn--ghost:hover { background: var(--lp-primary); color: #fff; }

.lp-hero.has-aside .lp-hero__inner { grid-template-columns: 1.1fr .9fr; }
.lp-hero__media { align-self: center; }
.lp-hero__img { width: 100%; height: auto; border-radius: var(--lp-img-radius); box-shadow: var(--lp-img-shadow); }

.lp-hero--center .lp-hero__inner { grid-template-columns: 1fr; }
.lp-hero--center .lp-hero__text { text-align: center; max-width: 860px; margin-inline: auto; }
.lp-hero--center .lp-hero__title { max-width: none; }
.lp-hero--center .lp-hero__sub { margin-inline: auto; }
.lp-hero--center .lp-hero__buttons,
.lp-hero--center .lp-hero__badges { justify-content: center; }
.lp-hero--center.has-aside .lp-hero__inner { grid-template-columns: 1fr; }
.lp-hero--center .lp-hero__media { max-width: 900px; margin-inline: auto; }

/* ----------------------------------------------------------- Trust bar */

.lp-trust__grid {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--lp-gap);
	text-align: center;
}
.lp-trust__item { padding: 22px 16px; border-radius: var(--lp-card-radius); background: var(--lp-alt-bg); }
.lp-trust__big { display: block; font-family: var(--lp-font-heading); font-weight: var(--lp-weight-heading); font-size: var(--lp-fs-card); color: var(--lp-primary); }
.lp-trust__small { display: block; font-size: var(--lp-fs-small); opacity: .8; margin-top: 4px; }

/* --------------------------------------------------------------- Cards */

.lp-grid { display: grid; gap: var(--lp-gap); }
.lp-grid--services { grid-template-columns: repeat(var(--lp-services-cols), minmax(0, 1fr)); }
.lp-grid--gallery  { grid-template-columns: repeat(var(--lp-gallery-cols), minmax(0, 1fr)); }
.lp-grid--why      { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.lp-grid--reviews  { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.lp-grid--posts    { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.lp-grid--two      { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.lp-card {
	background: var(--lp-bg);
	border-radius: var(--lp-card-radius);
	box-shadow: var(--lp-img-shadow);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.lp-section--alt .lp-card { background: #fff; }
.lp-card:hover { transform: translateY(-4px); }
.lp-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lp-card--why, .lp-grid--two .lp-card { padding: 28px; }
.lp-card__title { font-size: var(--lp-fs-card); margin: 0; }
.lp-card__title a { color: inherit; text-decoration: none; }
.lp-card__title a:hover { color: var(--lp-primary); }
.lp-card__text { margin: 0; }
.lp-card__price { margin: 0; font-weight: 600; color: var(--lp-primary); }
.lp-card__more { margin-top: auto; font-weight: 600; text-decoration: none; font-size: var(--lp-fs-small); }
.lp-card__more:hover span { margin-left: 4px; }
.lp-card__icon {
	width: 68px; height: 68px; margin: 24px 24px 0;
	display: grid; place-items: center; border-radius: 14px;
	background: rgba(var(--lp-primary-rgb), .09); color: var(--lp-primary);
}
.lp-card__icon-svg { width: 34px; height: 34px; fill: currentColor; }

.lp-media { display: block; overflow: hidden; border-radius: 0; background: var(--lp-alt-bg); }
.lp-media__img, .lp-media img {
	width: 100%; height: 100%;
	object-fit: var(--lp-img-fit); object-position: center;
	transition: transform .4s ease;
}
.lp-card:hover .lp-media__img { transform: scale(var(--lp-zoom)); }
.lp-media--feature { border-radius: var(--lp-img-radius); box-shadow: var(--lp-img-shadow); margin-bottom: 28px; }

.lp-why__num {
	font-family: var(--lp-font-heading); font-size: calc(var(--lp-fs-card) * 1.6);
	font-weight: 800; color: rgba(var(--lp-primary-rgb), .18); line-height: 1; display: block; margin-bottom: 8px;
}

/* -------------------------------------------------- Benefits (cards) */

.lp-benefits__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: calc(var(--lp-gap) * 1.6); align-items: start; }
.lp-benefits__intro .lp-section-title { margin-bottom: .35em; }
.lp-benefits__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--lp-gap); }
.lp-benefit { flex-direction: row; align-items: flex-start; gap: 16px; padding: 22px 24px; }
.lp-benefit__icon { flex: none; display: grid; place-items: center; width: 40px; height: 40px; }
.lp-benefit__icon svg { width: 26px; height: 26px; fill: var(--lp-accent); }
.lp-benefit__title { font-size: var(--lp-fs-card); margin: 0 0 .3em; }
.lp-benefit__text { margin: 0; font-size: var(--lp-fs-small); }

/* ------------------------------------------------- Why (split style) */

.lp-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--lp-gap) * 1.7); align-items: center; }
.lp-why__grid.is-single { grid-template-columns: 1fr; max-width: 760px; }
.lp-why__img { width: 100%; height: auto; border-radius: var(--lp-img-radius); box-shadow: var(--lp-img-shadow); }
.lp-why__body .lp-section-sub { margin-bottom: 1.4em; }
.lp-why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.lp-why__point { display: flex; gap: 14px; align-items: flex-start; }
.lp-why__dot { flex: none; width: 9px; height: 9px; margin-top: .55em; border-radius: 50%; background: var(--lp-accent); }
.lp-why__point strong { color: var(--lp-heading); }

/* ------------------------------------------------------------- Process */

.lp-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--lp-gap); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); counter-reset: step; }
.lp-step { position: relative; padding: 28px; border-radius: var(--lp-card-radius); background: var(--lp-alt-bg); }
.lp-step__num {
	display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px;
	border-radius: 50%; background: var(--lp-accent); color: var(--lp-accent-text);
	font-family: var(--lp-font-heading); font-weight: 800;
}
.lp-step__title { font-size: var(--lp-fs-card); margin-bottom: .4em; }
.lp-step__text { margin: 0; }

/* Process: card style — big outlined numerals instead of filled circles. */
.lp-process--cards .lp-step {
	background: var(--lp-bg); border: 1px solid var(--lp-border);
	box-shadow: var(--lp-img-shadow); border-radius: var(--lp-card-radius);
}
.lp-process--cards .lp-step__num {
	width: auto; height: auto; margin-bottom: 14px; border-radius: 0;
	background: none; color: var(--lp-accent);
	font-size: calc(var(--lp-fs-card) * 1.55); line-height: 1; letter-spacing: -.02em;
	display: block;
}

/* Services: numbered and plain variants. */
.lp-card__num {
	display: block; margin: 24px 24px 0;
	font-family: var(--lp-font-heading); font-weight: 800; line-height: 1;
	font-size: calc(var(--lp-fs-card) * 1.5); color: var(--lp-accent);
}
.lp-services--plain .lp-card,
.lp-services--numbered .lp-card { padding-top: 4px; }

/* ------------------------------------------------------------- Gallery */

.lp-gallery__item { margin: 0; }
.lp-gallery__link { display: block; border-radius: var(--lp-img-radius); overflow: hidden; box-shadow: var(--lp-img-shadow); }
.lp-gallery__link .lp-media { border-radius: var(--lp-img-radius); }
.lp-gallery__link:hover .lp-media__img { transform: scale(var(--lp-zoom)); }
.lp-gallery__caption { font-size: var(--lp-fs-small); opacity: .8; margin-top: 8px; }

/* ---------------------------------------------------------- Reviews */

.lp-review { padding: 28px; }
.lp-stars { display: inline-flex; gap: 2px; margin-bottom: 12px; font-size: 1.05em; }
.lp-star { color: var(--lp-border); }
.lp-star.is-on { color: var(--lp-star); }
.lp-review__quote { margin: 0 0 20px; padding: 0; border: 0; font-size: 1.02em; }
.lp-review__quote p:last-child { margin-bottom: 0; }
.lp-review__by { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.lp-review__avatar { width: var(--lp-avatar); height: var(--lp-avatar); border-radius: 50%; overflow: hidden; flex: none; }
.lp-review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-review__avatar--initial {
	display: grid; place-items: center; background: var(--lp-primary); color: #fff;
	font-family: var(--lp-font-heading); font-weight: 700; font-size: calc(var(--lp-avatar) * .42);
}
.lp-review__name { display: block; font-weight: 700; color: var(--lp-heading); }
.lp-review__role { display: block; font-size: var(--lp-fs-small); opacity: .75; }

/* --------------------------------------------------------------- Areas */

.lp-areas__list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px;
}
.lp-areas__item a, .lp-areas__item span {
	display: flex; align-items: center; gap: 10px;
	padding: 12px 16px; background: #fff; border: 1px solid var(--lp-border);
	border-radius: var(--lp-btn-radius); text-decoration: none; color: var(--lp-heading);
	font-size: var(--lp-fs-small); font-weight: 500;
}
.lp-areas__item a:hover { border-color: var(--lp-primary); color: var(--lp-primary); }
.lp-areas__item .lp-tick { fill: var(--lp-primary); }

/* Areas: pill style — centred, rounded, no ticks. */
.lp-areas--pills .lp-areas__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.lp-areas--pills .lp-areas__item a,
.lp-areas--pills .lp-areas__item span {
	border-radius: 999px; padding: 11px 22px; border-color: transparent;
	box-shadow: 0 1px 2px rgba(15,33,48,.06);
}
.lp-areas--pills .lp-areas__item a:hover { border-color: var(--lp-accent); }

/* FAQ: card style — separated white cards instead of one bordered list. */
.lp-faq--cards .lp-accordion { border-top: 0; display: grid; gap: 12px; }
.lp-faq--cards .lp-acc {
	border: 1px solid var(--lp-border); border-radius: var(--lp-card-radius);
	background: var(--lp-bg);
}
.lp-faq--cards .lp-acc__btn { padding: 20px 22px; }
.lp-faq--cards .lp-acc__panel { padding: 0 22px 20px; }
.lp-faq--cards .lp-acc__sign::before,
.lp-faq--cards .lp-acc__sign::after { background: var(--lp-accent); }

/* ----------------------------------------------------------------- FAQ */

.lp-accordion { border-top: 1px solid var(--lp-border); }
.lp-acc { border-bottom: 1px solid var(--lp-border); }
.lp-acc__head { margin: 0; font-size: inherit; }
.lp-acc__btn {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 20px 4px; background: none; border: 0; cursor: pointer; text-align: left;
	font-family: var(--lp-font-heading); font-size: var(--lp-fs-card); font-weight: 600; color: var(--lp-heading);
}
.lp-acc__sign { position: relative; width: 16px; height: 16px; flex: none; }
.lp-acc__sign::before, .lp-acc__sign::after {
	content: ""; position: absolute; inset: 0; margin: auto;
	background: var(--lp-primary); transition: transform .2s ease, opacity .2s ease;
}
.lp-acc__sign::before { width: 16px; height: 2px; }
.lp-acc__sign::after { width: 2px; height: 16px; }
.lp-acc__btn[aria-expanded="true"] .lp-acc__sign::after { transform: rotate(90deg); opacity: 0; }
.lp-acc__panel { padding: 0 4px 22px; }
.lp-acc__panel > :last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ CTA */

.lp-cta {
	position: relative; background: var(--lp-primary); color: #fff;
	background-size: cover; background-position: center;
	padding-block: calc(var(--lp-section-pad) * .7);
}
.lp-cta.has-image::before { content: ""; position: absolute; inset: 0; background: rgba(var(--lp-overlay), .78); }
.lp-cta__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.lp-cta__title { color: #fff; font-size: var(--lp-fs-section); margin-bottom: .3em; }
.lp-cta__sub { margin: 0; color: rgba(255,255,255,.9); max-width: 60ch; }
.lp-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* CTA: centred style — solid accent band, one clear action. */
.lp-cta--center { background: var(--lp-accent); }
.lp-cta--center .lp-cta__inner { flex-direction: column; text-align: center; gap: 22px; }
.lp-cta--center .lp-cta__title { color: var(--lp-accent-text); }
.lp-cta--center .lp-cta__sub { color: var(--lp-accent-text); opacity: .88; margin-inline: auto; }
.lp-cta--center .lp-cta__actions { justify-content: center; }
.lp-cta--center .lp-btn--accent { background: var(--lp-bg); color: var(--lp-heading); box-shadow: none; }
.lp-cta--center .lp-btn--accent:hover { background: #fff; color: var(--lp-heading); }
.lp-cta--center .lp-btn--ghost { border-color: rgba(255,255,255,.75); color: var(--lp-accent-text); }
.lp-cta--center .lp-btn--ghost:hover { background: var(--lp-accent-text); color: var(--lp-accent); }

.lp-inline-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------------------------------------------------------------- Form */

.lp-form-wrap {
	background: #fff; color: var(--lp-text);
	border-radius: var(--lp-card-radius);
	box-shadow: 0 24px 60px rgba(15,33,48,.22);
	padding: 30px;
}
.lp-quote .lp-form-wrap { box-shadow: var(--lp-img-shadow); border: 1px solid var(--lp-border); }
.lp-form-title { font-size: var(--lp-fs-card); margin-bottom: 18px; }
.lp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-field { margin: 0 0 14px; }
.lp-field label { display: block; font-size: var(--lp-fs-small); font-weight: 600; color: var(--lp-heading); margin-bottom: 6px; }
.lp-req { color: #d1434b; }
.lp-field input[type="text"], .lp-field input[type="email"], .lp-field input[type="tel"],
.lp-field select, .lp-field textarea, .lp-search__field {
	width: 100%; padding: 12px 14px;
	font-family: inherit; font-size: var(--lp-fs-small);
	color: var(--lp-heading); background: #fff;
	border: 1px solid var(--lp-border); border-radius: var(--lp-btn-radius);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
	outline: none; border-color: var(--lp-primary);
	box-shadow: 0 0 0 3px rgba(var(--lp-primary-rgb), .15);
}
.lp-field--check label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: var(--lp-fs-small); line-height: 1.5; }
.lp-field--check input { margin-top: 3px; flex: none; }
.lp-field--submit { margin-bottom: 8px; }
.lp-form__alt { margin: 0; text-align: center; font-size: var(--lp-fs-small); opacity: .85; }
.lp-hp { position: absolute !important; left: -9999px; }

.lp-notice { padding: 14px 16px; border-radius: var(--lp-btn-radius); margin-bottom: 18px; font-size: var(--lp-fs-small); }
.lp-notice--success { background: #e7f6ec; color: #14663a; border: 1px solid #b6e2c6; }
.lp-notice--error { background: #fdecec; color: #8f2226; border: 1px solid #f3c2c4; }

.lp-quote__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: calc(var(--lp-gap) * 1.6); align-items: start; }
.lp-contact-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 18px; }
.lp-contact-list__label { display: block; font-size: var(--lp-fs-small); text-transform: uppercase; letter-spacing: .08em; opacity: .65; }
.lp-contact-list__value { font-family: var(--lp-font-heading); font-weight: 600; font-size: var(--lp-fs-h4); color: var(--lp-heading); text-decoration: none; }
a.lp-contact-list__value:hover { color: var(--lp-primary); }

.lp-search { display: flex; gap: 10px; margin: 20px 0; }

/* ----------------------------------------------------------------- Map */

.lp-map {
	position: relative;
	height: var(--lp-map-h);
	border-radius: var(--lp-img-radius);
	overflow: hidden;
	box-shadow: var(--lp-img-shadow);
	background: var(--lp-alt-bg);
}
.lp-map iframe { display: block; width: 100%; height: 100%; border: 0; }

.lp-map--grayscale iframe { filter: grayscale(1); }
.lp-map--muted iframe { filter: grayscale(.55) contrast(.94) saturate(.75); }
.lp-map--tinted iframe { filter: grayscale(1) sepia(.55) hue-rotate(165deg) saturate(2.2) brightness(.96); }

/* Click-to-load placeholder */
.lp-map__load {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 8px; width: 100%; height: 100%; padding: 24px;
	background:
		radial-gradient(circle at 22% 28%, rgba(var(--lp-primary-rgb), .1) 0 12px, transparent 13px),
		radial-gradient(circle at 76% 62%, rgba(var(--lp-primary-rgb), .1) 0 9px, transparent 10px),
		repeating-linear-gradient(52deg, transparent 0 38px, rgba(var(--lp-primary-rgb), .07) 38px 41px),
		repeating-linear-gradient(-34deg, transparent 0 54px, rgba(var(--lp-primary-rgb), .07) 54px 57px),
		var(--lp-alt-bg);
	border: 1px dashed rgba(var(--lp-primary-rgb), .28);
	border-radius: inherit;
	cursor: pointer; text-align: center;
	font-family: inherit; color: var(--lp-heading);
	transition: background-color .15s ease, border-color .15s ease;
}
.lp-map__load:hover { border-color: var(--lp-primary); }
.lp-map__load:focus-visible { outline: 3px solid var(--lp-accent); outline-offset: -4px; }
.lp-map__pin { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--lp-primary); }
.lp-map__pin svg { width: 24px; height: 24px; fill: #fff; }
.lp-map__load-text { font-family: var(--lp-font-heading); font-weight: 700; font-size: var(--lp-fs-card); }
.lp-map__addr { font-size: var(--lp-fs-small); max-width: 40ch; }
.lp-map__note { font-size: calc(var(--lp-fs-small) * .92); opacity: .65; }

.lp-map-section__foot {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	gap: 16px; margin-top: 20px;
}
.lp-map-section__addr { margin: 0; font-weight: 600; color: var(--lp-heading); }
.lp-map-section__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.lp-quote__directions { margin: 22px 0 0; }

.lp-map-strip .lp-map { border-radius: 0; box-shadow: none; }

/* -------------------------------------------------------------- Banner */

.lp-banner {
	position: relative; background: var(--lp-primary); color: #fff;
	background-size: cover; background-position: center;
	padding-block: calc(var(--lp-inner-hero-h) / 4);
	min-height: var(--lp-inner-hero-h);
	display: flex; align-items: center;
}
.lp-banner::before { content: ""; position: absolute; inset: 0; background: rgba(var(--lp-overlay), var(--lp-overlay-a)); }
.lp-banner .lp-container { position: relative; }
.lp-banner__title { color: #fff; font-size: var(--lp-fs-h1); margin-bottom: .3em; }
.lp-banner__sub { margin: 0; color: rgba(255,255,255,.9); max-width: 62ch; }
.lp-crumbs { margin-top: 16px; font-size: var(--lp-fs-small); color: rgba(255,255,255,.85); display: flex; flex-wrap: wrap; gap: 8px; }
.lp-crumbs a { color: #fff; }

/* ------------------------------------------------------- Entry content */

.lp-entry { font-size: var(--lp-fs-base); }
.lp-entry > :last-child { margin-bottom: 0; }
.lp-entry h2 { margin-top: 1.6em; }
.lp-entry h3 { margin-top: 1.4em; }
.lp-entry ul, .lp-entry ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.lp-entry li { margin-bottom: .45em; }
.lp-entry img { border-radius: var(--lp-img-radius); }
.lp-entry blockquote {
	margin: 1.6em 0; padding: 18px 24px;
	border-left: 4px solid var(--lp-accent); background: var(--lp-alt-bg);
	border-radius: 0 var(--lp-card-radius) var(--lp-card-radius) 0;
}
.lp-entry table { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; }
.lp-entry th, .lp-entry td { border: 1px solid var(--lp-border); padding: 10px 12px; text-align: left; }
.lp-entry code { background: var(--lp-alt-bg); padding: .15em .4em; border-radius: 4px; }
.lp-entry pre { background: var(--lp-alt-bg); padding: 18px; border-radius: var(--lp-card-radius); overflow-x: auto; }

.lp-landing__grid { display: grid; grid-template-columns: 1.55fr .95fr; gap: calc(var(--lp-gap) * 1.5); align-items: start; }
.lp-landing__aside { position: sticky; top: 110px; }
.lp-sidebox { margin-top: 24px; padding: 24px; border: 1px solid var(--lp-border); border-radius: var(--lp-card-radius); }
.lp-sidebox__title { font-size: var(--lp-fs-card); margin-bottom: 12px; }
.lp-sidebox__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.lp-sidebox__list a { text-decoration: none; font-weight: 500; }

.lp-about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: calc(var(--lp-gap) * 1.6); align-items: center; }
.lp-about__grid.is-single { grid-template-columns: 1fr; max-width: calc(var(--lp-container) - 220px); }
.lp-about__media .lp-media { border-radius: var(--lp-img-radius); box-shadow: var(--lp-img-shadow); }

.lp-price-note { font-weight: 700; color: var(--lp-primary); font-size: var(--lp-fs-h4); }

/* ---------------------------------------------------------------- Blog */

.lp-blog.has-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: calc(var(--lp-gap) * 1.5); align-items: start; }
.lp-post-meta { font-size: var(--lp-fs-small); opacity: .75; margin: 0; }
.lp-blog__aside .widget { margin-bottom: 28px; padding: 22px; border: 1px solid var(--lp-border); border-radius: var(--lp-card-radius); }
.widget-title { font-size: var(--lp-fs-card); margin-bottom: 12px; }
.lp-blog__aside ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pagination, .navigation { margin-top: 40px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers {
	display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 10px;
	border: 1px solid var(--lp-border); border-radius: var(--lp-btn-radius); text-decoration: none;
}
.page-numbers.current, .page-numbers:hover { background: var(--lp-primary); color: #fff; border-color: var(--lp-primary); }
.post-navigation .nav-links { justify-content: space-between; margin-top: 40px; gap: 20px; }
.post-navigation a { text-decoration: none; font-weight: 600; }
.post-navigation span { display: block; font-size: var(--lp-fs-small); text-transform: uppercase; letter-spacing: .08em; opacity: .6; font-weight: 400; }
.lp-tags a { display: inline-block; margin: 0 6px 6px 0; padding: 5px 12px; background: var(--lp-alt-bg); border-radius: 999px; font-size: var(--lp-fs-small); text-decoration: none; }

/* ------------------------------------------------------------ Comments */

.lp-comments { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--lp-border); }
.lp-comment-list { list-style: none; margin: 0 0 40px; padding: 0; }
.lp-comment-list .children { list-style: none; padding-left: 28px; }
.lp-comment-list li { margin-bottom: 24px; }
.comment-body { padding: 20px; border: 1px solid var(--lp-border); border-radius: var(--lp-card-radius); }
.comment-form input[type="text"], .comment-form input[type="email"],
.comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 12px 14px; font-family: inherit;
	border: 1px solid var(--lp-border); border-radius: var(--lp-btn-radius);
}

/* -------------------------------------------------------------- Footer */

.lp-footer { background: var(--lp-footer-bg); color: var(--lp-footer-text); font-size: var(--lp-fs-footer); margin-top: 0; }
.lp-footer__grid {
	display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: calc(var(--lp-gap) * 1.4);
	padding-block: calc(var(--lp-section-pad) * .8);
}
.lp-footer__col--widgets { grid-column: auto; }
.lp-footer a { color: #fff; text-decoration: none; }
.lp-footer a:hover { color: var(--lp-accent); text-decoration: underline; }
.lp-footer__brand, .lp-footer__title { color: #fff; font-size: var(--lp-fs-card); margin-bottom: 14px; }
.lp-footer__about, .lp-footer__license { margin: 0 0 12px; }
.lp-footer__license { font-weight: 600; color: var(--lp-accent); }
.lp-footer__menu, .lp-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.lp-footer__bar { border-top: 1px solid rgba(255,255,255,.14); }
.lp-footer__bar-inner { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-block: 18px; }
.lp-copy { margin: 0; font-size: var(--lp-fs-small); }
.lp-legal-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; font-size: var(--lp-fs-small); }

.lp-social { list-style: none; margin: 14px 0 0; padding: 0; display: flex; gap: 10px; }
.lp-social--top { margin: 0; }
.lp-social__link {
	display: grid; place-items: center; width: 34px; height: 34px;
	border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
	text-decoration: none; transition: background-color .15s ease, color .15s ease;
}
.lp-social__icon { width: 17px; height: 17px; fill: currentColor; }
.lp-social__link:hover { background: var(--lp-accent); color: var(--lp-accent-text); text-decoration: none; }

/* --------------------------------------------------------- Mobile bar */

.lp-mobile-bar { display: none; }

/* ------------------------------------------------------- Scroll reveal */

.lp-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.lp-reveal.is-visible { opacity: 1; transform: none; }
@media print {
	.lp-reveal { opacity: 1 !important; transform: none !important; }
	.lp-nav, .lp-nav-toggle, .lp-mobile-bar, .lp-topbar, .lp-cta__actions { display: none !important; }
	.lp-hero, .lp-banner, .lp-cta { color: #000; background: none !important; }
	.lp-hero::before, .lp-banner::before, .lp-cta::before { display: none; }
	.lp-hero__title, .lp-banner__title, .lp-cta__title, .lp-hero__sub, .lp-banner__sub { color: #000; }
}

@media (prefers-reduced-motion: reduce) {
	.lp-reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
	.lp-btn:hover, .lp-card:hover { transform: none; }
}

/* ---------------------------------------------------------- Responsive */

@media (max-width: 1080px) {
	.lp-grid--services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lp-header__aside .lp-btn { display: none; }
}

@media (max-width: 900px) {
	.lp-benefits__grid,
	.lp-why__grid,
	.lp-hero.has-aside .lp-hero__inner,
	.lp-hero.has-form .lp-hero__inner,
	.lp-quote__inner,
	.lp-landing__grid,
	.lp-about__grid,
	.lp-blog.has-sidebar { grid-template-columns: 1fr; }
	.lp-landing__aside { position: static; }
	.lp-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
	.lp-nav-toggle { display: block; position: relative; z-index: 96; }
	.lp-nav-open .lp-nav-toggle { background: #fff; }
	.lp-header__aside { display: none; }
	.lp-nav__cta { display: flex; flex-direction: column; gap: 12px; padding: 18px 20px 4px; }
	.lp-nav__cta .lp-phone { justify-content: center; }

	.lp-nav {
		position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw);
		background: #fff; box-shadow: -12px 0 40px rgba(15,33,48,.2);
		transform: translateX(100%); transition: transform .28s ease;
		overflow-y: auto; padding: 84px 0 40px; z-index: 90;
	}
	.lp-nav.is-open { transform: translateX(0); }
	.lp-menu { flex-direction: column; align-items: stretch; gap: 0; padding: 0 12px; }
	.lp-menu li { border-bottom: 1px solid var(--lp-border); }
	.lp-menu a { padding: 14px 10px; }
	.lp-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 0; border-radius: 0; padding: 0 0 8px 14px;
		display: none; min-width: 0;
	}
	.lp-menu li.is-open > .sub-menu { display: block; }
	.lp-menu .menu-item-has-children > a { display: inline-block; width: calc(100% - 44px); }
	.lp-submenu-toggle { display: inline-block; float: right; }
	.lp-submenu-toggle[aria-expanded="true"] .lp-caret { transform: rotate(-135deg); }

	.lp-nav-backdrop { position: fixed; inset: 0; background: rgba(12,35,56,.55); z-index: 85; }

	.lp-grid--services, .lp-grid--gallery { grid-template-columns: 1fr 1fr; }
	.lp-form__row { grid-template-columns: 1fr; gap: 0; }
	.lp-topbar__inner { justify-content: center; text-align: center; }
	.lp-cta__inner { flex-direction: column; align-items: flex-start; }

	.has-mobile-bar { padding-bottom: 64px; }
	.lp-mobile-bar {
		display: grid; grid-template-columns: 1fr 1fr;
		position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
		box-shadow: 0 -6px 20px rgba(15,33,48,.18);
	}
	.lp-mobile-bar a {
		padding: 16px 8px; text-align: center; text-decoration: none;
		font-family: var(--lp-font-heading); font-weight: 700; font-size: var(--lp-fs-button);
	}
	.lp-mobile-bar__call { background: var(--lp-primary); color: #fff; }
	.lp-mobile-bar__quote { background: var(--lp-accent); color: var(--lp-accent-text); }
}

@media (max-width: 560px) {
	.lp-grid--services, .lp-grid--gallery { grid-template-columns: 1fr; }
	.lp-footer__grid { grid-template-columns: 1fr; }
	.lp-form-wrap { padding: 22px; }
	.lp-hero__buttons .lp-btn { flex: 1 1 100%; }
}
