/* ==========================================================================
   Powerhouse Electric — Design System (Fable redesign, 2026-07)
   Tokens + component CSS matching Claude Design Export/index-bg.html.
   Markup lives in Elementor (Header #45, Footer #4612, Home ID 15).
   ========================================================================== */

/* ---- 1. Tokens ---------------------------------------------------------- */
:root {
	--ph-bg: #FBFBF8;
	--ph-ink: #0E1311;
	--ph-ink2: #4A5247;
	--ph-muted: #5A6157;
	--ph-green: #48A61E;
	--ph-green2: #66B443;
	--ph-green3: #3F8F20;
	--ph-orange: #FF6A1A;
	--ph-line: #E6E8E0;
	--ph-star: #F5A623;
	--ph-font-display: 'Anton', sans-serif;
	--ph-font-mono: 'Space Mono', monospace;
	--ph-font-body: 'Hanken Grotesk', sans-serif;
}

/* ---- 2. Base ------------------------------------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
	overflow-x: hidden;
}
body {
	background: var(--ph-bg);
	font-family: var(--ph-font-body);
	-webkit-font-smoothing: antialiased;
	color: var(--ph-ink);
	overflow-x: hidden;
	max-width: 100vw;
}
img {
	max-width: 100%;
	height: auto;
}
::selection {
	background: var(--ph-green2);
	color: var(--ph-ink);
}

/* Ambient grid overlay (radial-masked) */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image: linear-gradient(rgba(72, 166, 30, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(72, 166, 30, .05) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(circle at 50% 24%, #000 0%, transparent 72%);
	mask-image: radial-gradient(circle at 50% 24%, #000 0%, transparent 72%);
}

/* Full-bleed Elementor containers used by the redesign */
.ph-flush.e-con {
	--content-width: 100%;
	--padding-top: 0px;
	--padding-bottom: 0px;
	--padding-left: 0px;
	--padding-right: 0px;
	--gap: 0px;
	max-width: 100%;
}
.ph-flush > .e-con-inner {
	max-width: 100%;
}

/* ---- 3. Buttons ---------------------------------------------------------- */
.ph-btn {
	display: inline-block;
	font-family: var(--ph-font-body);
	font-weight: 800;
	font-size: 15px;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 17px 30px;
	border-radius: 5px;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	cursor: pointer;
}
.ph-btn-orange {
	background: var(--ph-orange);
	color: #fff;
	box-shadow: 0 8px 22px rgba(255, 106, 26, .32);
}
.ph-btn-orange:hover {
	background: #ff7d36;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(255, 106, 26, .45);
}
.ph-btn-outline {
	border: 1.5px solid var(--ph-ink);
	color: var(--ph-ink);
	font-weight: 700;
	padding: 16px 30px;
}
.ph-btn-outline:hover {
	background: var(--ph-ink);
	color: #fff;
}
.ph-btn-dark {
	display: block;
	background: var(--ph-ink);
	color: #fff;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 14px 22px;
	border-radius: 6px;
	text-align: center;
	text-decoration: none;
	transition: background .18s ease;
}
.ph-btn-dark:hover {
	background: var(--ph-green);
	color: #fff;
}

/* ---- 4. Header (Elementor location) -------------------------------------- */
.elementor-location-header {
	position: sticky;
	top: 0;
	z-index: 120;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(251, 251, 248, .88);
	border-bottom: 1px solid var(--ph-line);
}
.ph-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 10px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	position: relative;
}
.ph-logo-link {
	display: flex;
	align-items: center;
	flex-shrink: 1;
	min-width: 0;
	text-decoration: none;
}
/* Fluid logo: no media-query dependence, can never overflow the header.
   ~36px on phones, 80px on wide desktop. */
.site-logo {
	height: clamp(36px, 5.5vw, 80px);
	width: auto;
	max-width: min(58vw, 330px);
	object-fit: contain;
	object-position: left center;
	display: block;
}
.menu-toggle-input {
	display: none;
}
.menu-toggle-label {
	display: none;
}
.main-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-family: var(--ph-font-mono);
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.main-nav a,
.nav-trigger {
	color: var(--ph-muted);
	text-decoration: none;
	transition: color .18s ease, transform .18s ease, background-color .18s ease;
}
.main-nav a:hover,
.nav-item:hover .nav-trigger {
	color: var(--ph-green);
}
.main-nav a.is-current {
	color: var(--ph-green);
}
.nav-item {
	position: relative;
	padding: 20px 0;
}
.nav-trigger {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: transparent;
	border: 0;
	font: inherit;
	text-transform: inherit;
	letter-spacing: inherit;
	cursor: pointer;
}
@media (min-width: 901px) {
	.nav-item {
		padding: 10px 0;
	}
	.nav-trigger {
		padding: 10px 12px;
		border-radius: 8px;
	}
	.nav-item:hover .nav-trigger,
	.nav-trigger:focus-visible {
		background-color: #FF6A1A;
		color: #fff;
		text-decoration: none;
		outline: none;
	}
}
.nav-trigger svg {
	transition: transform .18s ease;
}
.nav-item:hover .nav-trigger svg {
	transform: rotate(180deg);
}
.service-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 430px;
	transform: translate(-50%, 10px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background: #fff;
	border: 1px solid #DCE4D2;
	border-radius: 10px;
	box-shadow: 0 24px 60px rgba(14, 19, 17, .14);
	padding: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	z-index: 90;
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-item:hover .service-dropdown,
.nav-item:focus-within .service-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
.dropdown-link {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border-radius: 8px;
	color: var(--ph-ink) !important;
	font-family: var(--ph-font-body);
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
	font-weight: 700;
}
.dropdown-link:hover {
	background: #F2F7EE;
	color: var(--ph-ink) !important;
}
.dropdown-icon {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--ph-green);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 18px rgba(72, 166, 30, .22);
}
.dropdown-icon svg {
	width: 17px;
	height: 17px;
	stroke: currentColor;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.ph-header-phone {
	font-family: var(--ph-font-display);
	font-size: 21px;
	letter-spacing: .02em;
	color: var(--ph-ink);
	text-decoration: none;
	line-height: 1.05;
	white-space: nowrap;
}
.ph-btn-header {
	background: var(--ph-orange);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: 13px 22px;
	border-radius: 4px;
	box-shadow: 0 6px 18px rgba(255, 106, 26, .32);
	white-space: nowrap;
	text-decoration: none;
	transition: background .18s ease, transform .18s ease;
}
.ph-btn-header:hover {
	background: #ff7d36;
	color: #fff;
	transform: translateY(-1px);
}

/* ---- 5. Shared section typography ---------------------------------------- */
.ph-eyebrow {
	font-family: var(--ph-font-mono);
	font-size: 13px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ph-green);
	margin: 0 0 14px;
}
.ph-h1,
.ph-h2 {
	font-family: var(--ph-font-display);
	text-transform: uppercase;
	color: var(--ph-ink);
	margin: 0;
	font-weight: 400;
}

/* ---- 6. Hero -------------------------------------------------------------- */
.hero-section {
	position: relative;
	padding: 72px 32px 76px;
	min-height: 680px;
	background:
		linear-gradient(90deg, rgba(251, 251, 248, .94) 0%, rgba(251, 251, 248, .9) 34%, rgba(251, 251, 248, .76) 46%, rgba(251, 251, 248, .36) 58%, rgba(251, 251, 248, .08) 70%, rgba(251, 251, 248, 0) 84%),
		url('/wp-content/uploads/2026/07/powerhouse-hero.webp') center calc(830px - 66.6667vw)/cover no-repeat;
	border-bottom: 1px solid #E1E7DC;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}
.hero-copy {
	max-width: 680px;
	animation: ph-riseUp .8s ease both;
}
.ph-hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ph-font-mono);
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--ph-green3);
	border: 1px solid rgba(72, 166, 30, .28);
	border-radius: 100px;
	padding: 8px 17px;
	margin-bottom: 24px;
	background: #F2F7EE;
}
.ph-hero-pill em {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ph-green);
	font-style: normal;
}
.hero-section h1 {
	font-family: var(--ph-font-display);
	font-size: clamp(46px, 6.4vw, 94px);
	line-height: .9;
	letter-spacing: .005em;
	text-transform: uppercase;
	color: var(--ph-ink);
	text-wrap: balance;
	margin: 0;
	font-weight: 400;
}
.ph-underline-word {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	color: var(--ph-ink);
}
.ph-underline-word i {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 5px;
	background: var(--ph-green);
	border-radius: 999px;
	transform-origin: left;
	animation: ph-drawline .55s .4s ease both;
	font-style: normal;
}
.ph-hero-tagline {
	font-family: var(--ph-font-mono);
	font-size: 15px;
	letter-spacing: .06em;
	color: var(--ph-green);
	margin: 22px 0 14px;
}
.ph-hero-lede {
	font-size: 18px;
	line-height: 1.6;
	color: var(--ph-ink2);
	max-width: 520px;
	margin: 0;
}
.ph-hero-ctas {
	display: flex;
	gap: 14px;
	margin-top: 32px;
	flex-wrap: wrap;
}
.hero-trust-strip {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 18px;
}
.hero-trust-strip span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: 1px solid #DCE4D2;
	background: #fff;
	border-radius: 100px;
	padding: 8px 12px;
	font-family: var(--ph-font-mono);
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--ph-ink2);
}
.hero-trust-strip svg {
	width: 14px;
	height: 14px;
	stroke: var(--ph-green);
}

/* ---- 7. About / Need Reliable ---------------------------------------------- */
.about-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 32px;
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 54px;
	align-items: center;
}
.ph-photo-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(14, 19, 17, .07);
}
.ph-photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}
.about-section .ph-photo-card {
	aspect-ratio: 1 / 1.05;
}
.ph-body-copy {
	font-size: 17px;
	line-height: 1.7;
	color: var(--ph-ink2);
}
.ph-body-copy p {
	margin: 0 0 18px;
}
.ph-mono-sub {
	font-family: var(--ph-font-mono);
	font-size: 14px;
	letter-spacing: .06em;
	color: var(--ph-green);
	margin: 16px 0 22px;
}

/* ---- 8. Services ------------------------------------------------------------ */
.services-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 32px;
}
.ph-section-intro {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 48px;
}
.ph-section-intro .ph-h2 {
	font-size: clamp(34px, 4.4vw, 62px);
	line-height: .95;
}
.ph-section-intro p.ph-intro-copy {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ph-muted);
	margin: 22px 0 0;
}
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.service-card {
	position: relative;
	display: block;
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(14, 19, 17, .05);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
	text-decoration: none;
	color: inherit;
}
a.service-card:hover,
.service-card:hover {
	border-color: var(--ph-green2);
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(72, 166, 30, .13);
}
.service-card-topline {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background: linear-gradient(90deg, var(--ph-green2), transparent);
	z-index: 1;
}
.service-image {
	height: 185px;
	overflow: hidden;
}
.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.service-card-body {
	padding: 24px 26px;
}
.service-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}
.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--ph-green), var(--ph-green3));
	border: 1px solid rgba(255, 255, 255, .45);
	box-shadow: 0 12px 26px rgba(72, 166, 30, .22);
	color: #fff;
}
.service-icon svg {
	width: 27px;
	height: 27px;
	stroke: #fff;
}
.service-number {
	font-family: var(--ph-font-display);
	font-size: 34px;
	color: #E2EAD7;
	line-height: 1;
}
.service-card h3 {
	font-family: var(--ph-font-display);
	font-size: 22px;
	text-transform: uppercase;
	color: var(--ph-ink);
	margin: 0 0 10px;
	font-weight: 400;
}
.service-card .service-copy {
	font-size: 14px;
	line-height: 1.65;
	color: var(--ph-muted);
	margin: 0 0 18px;
}
.service-more {
	font-family: var(--ph-font-mono);
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ph-green);
}

/* ---- 9. Offers / coupons ------------------------------------------------------ */
.offers-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 32px;
}
.offers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.ph-coupon {
	position: relative;
	border: 2px dashed rgba(72, 166, 30, .45);
	border-radius: 16px;
	background: linear-gradient(120deg, rgba(102, 180, 67, .14), rgba(255, 106, 26, .07));
	padding: 34px 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 22px;
}
.ph-coupon-label {
	font-family: var(--ph-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ph-orange);
	margin-bottom: 10px;
}
.ph-coupon-title {
	font-family: var(--ph-font-display);
	font-size: clamp(24px, 2.8vw, 40px);
	line-height: .95;
	text-transform: uppercase;
	color: var(--ph-ink);
	font-weight: 400;
	margin: 0;
}
.ph-coupon-title .ph-coupon-green {
	color: var(--ph-green);
}
.ph-coupon-note {
	font-size: 13.5px;
	color: var(--ph-muted);
	margin: 12px 0 0;
}
.ph-coupon-note strong {
	color: var(--ph-ink);
	font-weight: 700;
}
.ph-offers-intro {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 30px;
}
.ph-offers-intro .ph-h2 {
	font-size: clamp(32px, 4vw, 56px);
}
.ph-offers-intro .ph-intro-copy {
	margin: 12px auto 0;
}
.ph-coupon-carousel {
	--ph-coupon-columns: 3;
	position: relative;
}
.ph-coupon-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
}
.ph-coupon-carousel.is-enhanced .ph-coupon-viewport {
	overflow: hidden;
}
.ph-coupon-track {
	display: flex;
	gap: 18px;
	transition: transform .55s cubic-bezier(.22, .61, .36, 1);
	will-change: transform;
}
.ph-coupon-track .ph-coupon {
	flex: 0 0 calc((100% - (var(--ph-coupon-columns) - 1) * 18px) / var(--ph-coupon-columns));
	min-width: 0;
	min-height: 310px;
}
.ph-coupon-green {
	color: var(--ph-green) !important;
}
.ph-coupon-service {
	font-family: var(--ph-font-display);
	font-size: clamp(24px, 2.25vw, 34px);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	color: var(--ph-ink);
	margin: 8px 0 0;
}
.ph-offers-eyebrow .elementor-heading-title {
	font-family: var(--ph-font-mono) !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	letter-spacing: .2em !important;
	text-transform: uppercase !important;
	color: var(--ph-green) !important;
}
.ph-offers-heading .elementor-heading-title {
	font-family: var(--ph-font-display) !important;
	font-size: clamp(32px, 4vw, 56px) !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
	color: var(--ph-ink) !important;
}
.ph-offers-copy p {
	margin: 0;
	color: var(--ph-muted);
}
.ph-coupon-content {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.ph-coupon-label .elementor-heading-title {
	font-family: var(--ph-font-mono) !important;
	font-size: 11px !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	letter-spacing: .18em !important;
	text-transform: uppercase !important;
	color: var(--ph-orange) !important;
}
.ph-coupon-title .elementor-heading-title {
	font-family: var(--ph-font-display) !important;
	font-size: clamp(30px, 2.8vw, 42px) !important;
	font-weight: 400 !important;
	line-height: .95 !important;
	text-transform: uppercase !important;
	color: var(--ph-green) !important;
}
.ph-coupon-service .elementor-heading-title {
	font-family: var(--ph-font-display) !important;
	font-size: clamp(24px, 2.25vw, 34px) !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
	color: var(--ph-ink) !important;
}
.ph-coupon-note p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--ph-muted);
}
.ph-coupon-claim {
	align-self: flex-start;
	margin-top: auto;
}
.ph-coupon-claim .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 20px;
	border-radius: 7px;
	background: var(--ph-ink) !important;
	color: #fff !important;
	font-family: var(--ph-font-mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.ph-coupon-claim .elementor-button:hover,
.ph-coupon-claim .elementor-button:focus-visible {
	background: var(--ph-orange) !important;
	color: #fff !important;
}
.ph-coupon-terms p {
	margin: 0;
}
.ph-carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 22px;
}
.ph-carousel-button {
	width: 44px;
	height: 44px;
	border: 1px solid #D7DED0;
	border-radius: 50%;
	background: #fff;
	color: var(--ph-ink);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ph-carousel-button:hover,
.ph-carousel-button:focus-visible {
	background: var(--ph-orange);
	border-color: var(--ph-orange);
	color: #fff;
}
.ph-carousel-button:disabled {
	opacity: .35;
	cursor: default;
}
.ph-carousel-status {
	min-width: 150px;
	margin: 0;
	text-align: center;
	font-family: var(--ph-font-mono);
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ph-muted);
}
.ph-coupon-terms {
	margin: 18px auto 0;
	max-width: 760px;
	text-align: center;
	font-size: 13px;
	color: var(--ph-muted);
}
.ph-coupons-hero {
	position: relative;
	min-height: 570px;
	display: flex;
	align-items: center;
	padding: 72px 32px;
	background:
		linear-gradient(90deg, rgba(10, 16, 12, .96) 0%, rgba(10, 16, 12, .88) 46%, rgba(10, 16, 12, .34) 76%),
		url('/wp-content/uploads/2026/07/powerhouse-hero.webp') center 38%/cover no-repeat;
	overflow: hidden;
}
.ph-coupons-hero-inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}
.ph-coupons-hero .ph-hero-pill {
	background: rgba(242, 247, 238, .92);
}
.ph-coupons-hero .ph-eyebrow {
	color: var(--ph-green2);
}
.ph-coupons-hero .ph-display-h {
	max-width: 760px;
	font-size: clamp(48px, 6.4vw, 92px);
	line-height: .92;
	color: #fff;
}
.ph-coupons-hero-copy {
	max-width: 620px;
	font-size: 18px;
	line-height: 1.65;
	color: #D8DED7;
	margin: 22px 0 0;
}
.ph-coupons-hero .ph-btn-outline,
.ph-coupons-hero .ph-btn-outline:hover {
	border-color: rgba(255, 255, 255, .7);
	color: #fff !important;
}
.ph-coupons-page-offers {
	padding-top: 72px;
	padding-bottom: 72px;
}

/* ---- 10. Dark bands (generator + contact) -------------------------------------- */
.ph-dark-band {
	position: relative;
	overflow: hidden;
	background: radial-gradient(130% 100% at 50% 0%, #13201A, #0E1311);
}
.ph-dark-band::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(102, 180, 67, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(102, 180, 67, .06) 1px, transparent 1px);
	background-size: 60px 60px;
	-webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%);
	mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%);
}
.generator-inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 74px 32px;
}
.generator-inner .ph-h2 {
	color: #fff;
	font-size: clamp(34px, 4.4vw, 60px);
}
.ph-generator-intro {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 44px;
}
.ph-generator-sub {
	font-family: var(--ph-font-mono);
	font-size: 14px;
	letter-spacing: .08em;
	color: var(--ph-green2);
	margin: 14px 0 18px;
}
.ph-generator-intro .ph-dark-copy,
.ph-dark-copy {
	font-size: 16px;
	line-height: 1.7;
	color: #B7BDB2;
}
.ph-dark-copy a {
	color: var(--ph-green2);
	text-decoration: none;
}
.ph-dark-copy a:hover {
	text-decoration: underline;
}
.generator-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 40px;
}
.ph-gen-card {
	background: linear-gradient(180deg, rgba(102, 180, 67, .12), rgba(102, 180, 67, .04));
	border: 1px solid rgba(102, 180, 67, .3);
	border-radius: 12px;
	padding: 30px 26px;
}
.ph-gen-card h3 {
	font-family: var(--ph-font-display);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--ph-green2);
	margin: 0 0 10px;
	font-weight: 400;
}
.ph-gen-card p {
	font-size: 14.5px;
	line-height: 1.6;
	color: #D6DBCF;
	margin: 0;
}
.ph-gen-outro {
	text-align: center;
}
.ph-gen-outro .ph-gen-note {
	font-family: var(--ph-font-mono);
	font-size: 12px;
	letter-spacing: .1em;
	color: #8A9185;
	margin: 0 0 18px;
}

/* ---- 11. Why + What To Expect ---------------------------------------------------- */
.why-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 32px;
}
.why-intro {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 54px;
	align-items: center;
	margin-bottom: 64px;
}
.why-intro .ph-h2 {
	font-size: clamp(32px, 4vw, 56px);
	line-height: .96;
}
.ph-why-photos {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.ph-expect-title {
	font-family: var(--ph-font-display);
	font-size: clamp(28px, 3.2vw, 42px);
	text-transform: uppercase;
	color: var(--ph-ink);
	text-align: center;
	margin: 0 0 34px;
	font-weight: 400;
}
.expectation-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.ph-expect-card {
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: 12px;
	padding: 28px 22px;
	box-shadow: 0 1px 3px rgba(14, 19, 17, .05);
	transition: border-color .18s ease, box-shadow .18s ease;
}
.ph-expect-card:hover {
	border-color: var(--ph-green2);
	box-shadow: 0 12px 28px rgba(72, 166, 30, .1);
}
.ph-expect-card svg {
	margin-bottom: 14px;
	stroke: var(--ph-green);
}
.ph-expect-card h4 {
	font-family: var(--ph-font-display);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--ph-ink);
	margin: 0 0 8px;
	font-weight: 400;
}
.ph-expect-card p {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--ph-muted);
	margin: 0;
}
.ph-center-cta {
	text-align: center;
	margin-top: 34px;
}
.ph-expect-band {
	position: relative;
	width: 100vw;
	margin: 0 0 -72px calc(50% - 50vw);
	padding: 76px 0 70px;
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(rgba(72, 166, 30, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(72, 166, 30, .055) 1px, transparent 1px),
		linear-gradient(135deg, #10251A 0%, #0B1A12 100%);
	background-size: 64px 64px, 64px 64px, auto;
}
.ph-expect-band::before {
	content: "";
	position: absolute;
	inset: auto -8% -55% auto;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	background: rgba(72, 166, 30, .1);
	filter: blur(2px);
	z-index: -1;
}
.ph-expect-band-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}
.ph-expect-eyebrow {
	margin: 0 0 12px;
	color: #92D874;
	font-family: var(--ph-font-mono);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .2em;
	text-align: center;
	text-transform: uppercase;
}
.ph-expect-band .ph-expect-title {
	max-width: 820px;
	margin: 0 auto 38px;
	color: #fff;
	font-size: clamp(34px, 4vw, 54px);
	line-height: .96;
}
.ph-expect-band .expectation-grid {
	gap: 20px;
	counter-reset: ph-expect-card;
}
.ph-expect-band .ph-expect-card {
	position: relative;
	min-height: 310px;
	padding: 34px 24px 28px;
	overflow: hidden;
	counter-increment: ph-expect-card;
	background: #FBFBF8;
	border: 0;
	border-top: 4px solid var(--ph-orange);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
	transition: transform .2s ease, box-shadow .2s ease;
}
.ph-expect-band .ph-expect-card::after {
	content: "0" counter(ph-expect-card);
	position: absolute;
	top: 20px;
	right: 20px;
	color: rgba(14, 33, 24, .12);
	font-family: var(--ph-font-display);
	font-size: 38px;
	line-height: 1;
}
.ph-expect-band .ph-expect-card:hover {
	transform: translateY(-5px);
	border-color: transparent;
	box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
}
.ph-expect-band .ph-expect-card svg {
	box-sizing: border-box;
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	padding: 11px;
	border: 1px solid rgba(72, 166, 30, .22);
	border-radius: 50%;
	background: #EAF5E4;
	stroke: var(--ph-green3);
}
.ph-expect-band .ph-expect-card h4 {
	max-width: 210px;
	margin-bottom: 12px;
	font-size: 21px;
	line-height: 1.08;
}
.ph-expect-band .ph-expect-card p {
	font-size: 14.5px;
	line-height: 1.6;
}
.ph-expect-band .ph-center-cta {
	margin-top: 38px;
}
.ph-expect-band .ph-center-cta .ph-btn {
	box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}
@media (max-width: 900px) {
	.ph-expect-band {
		margin-bottom: -48px;
		padding: 58px 0 54px;
	}
	.ph-expect-band-inner {
		padding: 0 20px;
	}
	.ph-expect-band .ph-expect-card {
		min-height: 280px;
	}
}
@media (max-width: 640px) {
	.ph-expect-band {
		background-size: 48px 48px, 48px 48px, auto;
	}
	.ph-expect-band .ph-expect-title {
		margin-bottom: 28px;
		font-size: clamp(32px, 10vw, 44px);
	}
	.ph-expect-band .ph-expect-card {
		min-height: 0;
		padding: 28px 22px 24px;
	}
}

/* ---- 12. Reviews band -------------------------------------------------------------- */
.ph-reviews-band {
	background: #F2F4ED;
	border-top: 1px solid var(--ph-line);
	border-bottom: 1px solid var(--ph-line);
}
.reviews-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 32px 24px;
	text-align: center;
}
.ph-reviews-band .ph-eyebrow {
	margin-bottom: 12px;
}
.ph-reviews-embed {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px 64px;
}

/* ---- 13. FAQ + tips ------------------------------------------------------------------ */
.ph-faq-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 54px;
	align-items: start;
	max-width: 1280px;
	margin: 0 auto !important;
	padding: 74px 32px !important;
	width: 100%;
}
.ph-faq-grid > .e-con {
	--content-width: 100%;
	max-width: 100%;
	width: 100%;
	padding: 0;
}
.ph-faq-heading {
	font-family: var(--ph-font-display);
	font-size: clamp(32px, 4vw, 54px);
	line-height: .96;
	text-transform: uppercase;
	color: var(--ph-ink);
	margin: 0 0 24px;
	font-weight: 400;
}
/* Re-skin the existing Elementor toggle widget */
.ph-faq-toggle .elementor-toggle {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ph-faq-toggle .elementor-toggle-item {
	border: 1px solid var(--ph-line) !important;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}
.ph-faq-toggle .elementor-tab-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px !important;
	border: none !important;
	background: transparent;
	color: var(--ph-ink) !important;
	font-family: var(--ph-font-body) !important;
	font-size: 16.5px !important;
	font-weight: 700 !important;
	cursor: pointer;
}
.ph-faq-toggle .elementor-tab-title a {
	color: var(--ph-ink) !important;
	font-family: var(--ph-font-body) !important;
}
.ph-faq-toggle .elementor-toggle-icon {
	order: 2;
	color: var(--ph-green) !important;
	font-size: 18px;
	flex-shrink: 0;
}
.ph-faq-toggle .elementor-toggle-icon i,
.ph-faq-toggle .elementor-toggle-icon svg {
	color: var(--ph-green) !important;
	fill: var(--ph-green) !important;
}
.ph-faq-toggle .elementor-tab-content {
	padding: 0 22px 22px !important;
	border: none !important;
	color: var(--ph-muted);
	font-size: 15px;
	line-height: 1.7;
}
.ph-tips-heading {
	font-family: var(--ph-font-display);
	font-size: 24px;
	text-transform: uppercase;
	color: var(--ph-ink);
	margin: 0 0 20px;
	font-weight: 400;
}
.ph-tips-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.faq-tip-link {
	display: flex;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: 12px;
	padding: 16px;
	align-items: center;
	box-shadow: 0 1px 3px rgba(14, 19, 17, .05);
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.faq-tip-link:hover {
	border-color: var(--ph-green2);
	box-shadow: 0 10px 24px rgba(72, 166, 30, .1);
}
.faq-tip-thumb {
	flex-shrink: 0;
	width: 90px;
	height: 74px;
	border-radius: 8px;
	background: repeating-linear-gradient(45deg, #EEF1EA, #EEF1EA 10px, #F6F8F2 10px, #F6F8F2 20px);
	border: 1px solid #DCE4D2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.faq-tip-title {
	font-weight: 700;
	color: var(--ph-ink);
	font-size: 15.5px;
	line-height: 1.3;
	margin-bottom: 6px;
}
.faq-tip-cta {
	font-family: var(--ph-font-mono);
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ph-green);
}
.ph-tips-photo {
	margin-top: 18px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--ph-line);
}
.ph-tips-photo img {
	width: 100%;
	display: block;
}

/* ---- 14. Contact band ------------------------------------------------------------------ */
.ph-contact-band {
	position: relative;
	overflow: hidden;
	background: radial-gradient(130% 120% at 80% 0%, #16271D, #0E1311);
}
.ph-contact-band::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(102, 180, 67, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(102, 180, 67, .05) 1px, transparent 1px);
	background-size: 60px 60px;
	-webkit-mask-image: radial-gradient(circle at 80% 0%, #000, transparent 70%);
	mask-image: radial-gradient(circle at 80% 0%, #000, transparent 70%);
}
.ph-contact-grid {
	position: relative;
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
	max-width: 1280px;
	margin: 0 auto !important;
	padding: 78px 32px !important;
	width: 100%;
}
.ph-contact-grid > .e-con {
	--content-width: 100%;
	max-width: 100%;
	width: 100%;
	padding: 0;
}
.ph-contact-title {
	font-family: var(--ph-font-display);
	font-size: clamp(40px, 5.4vw, 82px);
	line-height: .92;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	font-weight: 400;
}
.ph-contact-copy {
	font-size: 17px;
	line-height: 1.7;
	color: #B7BDB2;
	margin: 22px 0 30px;
	max-width: 440px;
}
.ph-contact-phone {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	text-decoration: none;
}
.ph-contact-phone .ph-phone-chip {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: rgba(102, 180, 67, .14);
	border: 1px solid rgba(102, 180, 67, .3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ph-contact-phone .ph-phone-number {
	font-family: var(--ph-font-display);
	font-size: 24px;
	color: #fff;
}
.ph-contact-address {
	font-size: 14px;
	color: #B7BDB2;
	line-height: 1.7;
	margin-top: 8px;
}
.ph-contact-card {
	background: #fff;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
	overflow: hidden;
	position: relative;
}
.ph-contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--ph-green), var(--ph-green2), transparent);
}
.ph-contact-card .elementor-widget-container {
	margin: 0 !important;
}
.ph-contact-grid > .ph-contact-card {
	width: 544px !important;
	max-width: 100% !important;
	justify-self: center;
	background: var(--ph-green);
}
@media (max-width: 583px) {
	.ph-contact-grid > .ph-contact-card {
		width: 100% !important;
	}
}
.ph-contact-card .elementor-widget.ph-hcp-embed {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
.ph-contact-card .ph-hcp-embed > .elementor-widget-container {
	background: var(--ph-green) !important;
	padding: 5px !important;
}
/* Preserved widgets must span their new wrappers — kill any width/max-width
   carried over from the old page layouts (e.g. the 38% container-widget rule). */
.ph-contact-card .elementor-widget,
.ph-form-card .elementor-widget,
.ph-price-grid .elementor-widget,
.elementor-widget.ph-showcase-embed,
.elementor-widget.ph-hcp-embed,
.elementor-widget.ph-reviews-embed,
.elementor-widget.ph-map,
.elementor-widget.ph-form-embed,
.elementor-widget.ph-embed-html {
	width: 100% !important;
	max-width: 100% !important;
	--container-widget-width: 100%;
}
.ph-hcp-embed iframe,
.ph-hcp-embed #hcp-lead-iframe {
	width: 100% !important;
	min-height: 560px;
	border: none !important;
	display: block;
}

/* ---- 15. Service area -------------------------------------------------------------------- */
.service-area-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 32px 24px;
	text-align: center;
}
.service-area-section .ph-h2 {
	font-size: clamp(32px, 4vw, 54px);
	margin-bottom: 14px;
}
.ph-area-copy {
	font-size: 16px;
	color: var(--ph-muted);
	max-width: 680px;
	margin: 0 auto 30px;
}
.ph-area-copy a {
	color: var(--ph-green);
	text-decoration: none;
	font-weight: 600;
}
.ph-area-copy a:hover {
	text-decoration: underline;
}
.ph-area-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 8px;
}
.ph-chip {
	font-family: var(--ph-font-mono);
	font-size: 12px;
	letter-spacing: .05em;
	color: #3A4036;
	border: 1px solid #DCE4D2;
	border-radius: 100px;
	padding: 9px 16px;
	text-decoration: none;
	transition: border-color .18s ease, color .18s ease;
	display: inline-block;
}
a.ph-chip:hover {
	border-color: var(--ph-green2);
	color: var(--ph-green);
}
.ph-map {
	max-width: 1280px;
	margin: 0 auto !important;
	padding: 0 32px 64px;
}
.ph-map iframe {
	width: 100% !important;
	height: 100% !important;
	min-height: 420px;
	border: 0 !important;
	display: block;
	border-radius: 14px;
	box-shadow: 0 14px 38px rgba(14, 19, 17, .08);
}
.ph-map .elementor-widget-container {
	border: 1px solid #DCE4D2;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 16 / 6;
	min-height: 320px;
}

/* ---- 16. Footer ------------------------------------------------------------------------------ */
.elementor-location-footer {
	background: var(--ph-ink);
	color: #F4F6F1;
}
.footer-grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 60px 32px 30px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}
.ph-footer-logo {
	background: #fff;
	border-radius: 8px;
	padding: 8px 12px;
	display: inline-flex;
	margin-bottom: 18px;
}
.ph-footer-logo img {
	height: 48px;
	width: auto;
	display: block;
}
.ph-footer-brand h3 {
	font-family: var(--ph-font-display);
	font-size: 22px;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 12px;
	font-weight: 400;
}
.ph-footer-info {
	font-size: 14px;
	color: #B7BDB2;
	line-height: 1.8;
}
.ph-footer-info a {
	color: #B7BDB2;
	text-decoration: none;
}
.ph-footer-info a[href^="tel:"] {
	color: var(--ph-green2);
}
.ph-footer-info a:hover {
	color: var(--ph-green2);
}
.ph-footer-license {
	font-family: var(--ph-font-mono);
	font-size: 11px;
	color: #7C8475;
	margin-top: 14px;
	letter-spacing: .05em;
}
.ph-footer-heading {
	font-family: var(--ph-font-mono);
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 16px;
	font-weight: 700;
}
.ph-footer-links {
	display: flex;
	flex-direction: column;
	gap: 9px;
	font-size: 14px;
	color: #B7BDB2;
}
.ph-footer-links a {
	color: #B7BDB2;
	text-decoration: none;
	transition: color .18s ease;
}
.ph-footer-links a:hover {
	color: var(--ph-green2);
}
.ph-footer-bottom {
	border-top: 1px solid #25302A;
	padding: 22px 32px;
	text-align: center;
	font-family: var(--ph-font-mono);
	font-size: 11px;
	letter-spacing: .06em;
	color: #7C8475;
}

/* ---- 17. Mobile sticky CTA -------------------------------------------------------------------- */
.ph-sticky-cta {
	display: none;
}
/* The Call Now Button plugin's floating mobile button duplicates the sticky
   CTA below (same tel: number). Hidden via CSS only — plugin stays active. */
#callnowbutton {
	display: none !important;
}

/* ---- 18. Responsive ----------------------------------------------------------------------------- */
@media (max-width: 980px) {
	.main-nav {
		gap: 18px;
		font-size: 11px;
	}
	.service-dropdown {
		width: 340px;
		grid-template-columns: 1fr;
		left: auto;
		right: -80px;
		transform: translateY(10px);
	}
	.nav-item:hover .service-dropdown {
		transform: translateY(0);
	}
}

@media (max-width: 900px) {
	.ph-coupon-carousel {
		--ph-coupon-columns: 2;
	}
	.about-section,
	.why-intro,
	.ph-faq-grid,
	.ph-contact-grid {
		grid-template-columns: 1fr !important;
		gap: 34px !important;
	}
	.service-grid,
	.offers-grid,
	.generator-grid {
		grid-template-columns: 1fr 1fr !important;
	}
	.expectation-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr !important;
	}
	.hero-section {
		padding-top: 56px;
		padding-bottom: 58px;
		min-height: 620px;
		background-position: center right;
	}
	.ph-contact-grid {
		padding-top: 56px !important;
		padding-bottom: 56px !important;
	}
	.ph-map .elementor-widget-container {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 900px) {
	.menu-toggle-label {
		order: 3;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid #DCE4D2;
		border-radius: 8px;
		color: var(--ph-ink);
		background: #fff;
		cursor: pointer;
	}
	.menu-toggle-label svg {
		width: 22px;
		height: 22px;
		stroke: currentColor;
	}
	.main-nav {
		order: 4;
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 16px;
		right: 16px;
		width: auto;
		z-index: 120;
		background: #fff;
		border: 1px solid #DCE4D2;
		border-radius: 10px;
		box-shadow: 0 24px 60px rgba(14, 19, 17, .16);
		padding: 12px;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}
	.menu-toggle-input:checked ~ .main-nav {
		display: flex;
	}
	.main-nav > a,
	.nav-trigger {
		width: 100%;
		padding: 12px;
		border-radius: 8px;
		text-align: left;
		justify-content: space-between;
	}
	.main-nav > a:hover,
	.nav-trigger:hover {
		background: #F2F7EE;
	}
	.nav-item {
		padding: 0;
	}
	.service-dropdown {
		position: static;
		width: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		display: grid;
		grid-template-columns: 1fr;
		box-shadow: none;
		border: 0;
		border-top: 1px solid var(--ph-line);
		border-radius: 0;
		margin-top: 4px;
		padding: 8px 0 0;
	}
	.nav-item:hover .service-dropdown {
		transform: none;
	}
	.header-actions {
		order: 2;
		margin-left: auto;
	}
	.header-actions > a[href^="tel:"] {
		display: none !important;
	}
}

@media (max-width: 640px) {
	.ph-coupon-carousel {
		--ph-coupon-columns: 1;
	}
	body {
		padding-bottom: 72px;
	}
	.ph-header-inner {
		padding: 8px 14px;
		gap: 10px;
	}
	.ph-btn-header {
		padding: 11px 14px;
		font-size: 12px;
	}
	.hero-section,
	.about-section,
	.services-section,
	.offers-section,
	.generator-inner,
	.why-section,
	.reviews-inner,
	.service-area-section,
	.footer-grid {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.ph-faq-grid,
	.ph-contact-grid {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.hero-section {
		padding-top: 42px;
		padding-bottom: 52px;
		min-height: auto;
		background:
			linear-gradient(180deg, rgba(251, 251, 248, .92) 0%, rgba(251, 251, 248, .85) 40%, rgba(251, 251, 248, .62) 65%, rgba(251, 251, 248, .38) 100%),
			url('/wp-content/uploads/2026/07/powerhouse-hero-mobile.webp') 62% center/cover no-repeat;
	}
	.hero-section h1,
	.hero-section .ph-hero-tagline,
	.hero-section .ph-hero-lede {
		text-shadow: 0 1px 4px rgba(251, 251, 248, .85);
	}
	.ph-coupons-hero {
		min-height: auto;
		padding: 56px 20px 62px;
		background:
			linear-gradient(180deg, rgba(10, 16, 12, .94), rgba(10, 16, 12, .72)),
			url('/wp-content/uploads/2026/07/powerhouse-hero-mobile.webp') 62% center/cover no-repeat;
	}
	.ph-coupons-hero .ph-display-h {
		font-size: clamp(42px, 13vw, 64px);
	}
	.ph-coupon-track .ph-coupon {
		min-height: 290px;
	}
	.hero-section h1 {
		font-size: clamp(34px, 11vw, 56px);
		line-height: .96;
	}
	.ph-underline-word {
		white-space: normal;
	}
	.ph-hero-lede {
		font-size: 16px;
	}
	.service-grid,
	.offers-grid,
	.generator-grid,
	.expectation-grid,
	.footer-grid {
		grid-template-columns: 1fr !important;
	}
	.service-image {
		height: 160px;
	}
	.service-card h3 {
		font-size: 20px;
	}
	.generator-inner,
	.why-section,
	.reviews-inner,
	.service-area-section {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
	.ph-faq-grid {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
	.why-intro {
		margin-bottom: 38px;
	}
	.faq-tip-link {
		align-items: flex-start;
	}
	.faq-tip-thumb {
		width: 66px;
		height: 58px;
	}
	.ph-contact-card {
		padding: 18px;
		border-radius: 12px;
	}
	.ph-map .elementor-widget-container {
		aspect-ratio: auto;
		min-height: 280px;
	}
	.ph-map iframe {
		min-height: 280px;
	}
	.ph-sticky-cta {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 200;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		padding: 8px;
		background: transparent;
		pointer-events: none;
	}
	.ph-sticky-cta a {
		min-height: 58px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		border: 0;
		border-radius: 8px;
		font-family: var(--ph-font-mono);
		font-size: 12px;
		font-weight: 800;
		letter-spacing: .06em;
		text-transform: uppercase;
		box-shadow: 0 10px 24px rgba(14, 19, 17, .18);
		pointer-events: auto;
		text-decoration: none;
	}
	.ph-sticky-cta svg {
		width: 17px;
		height: 17px;
		stroke: currentColor;
	}
	.ph-sticky-cta .call-now {
		background: var(--ph-green);
		color: #fff;
	}
	.ph-sticky-cta .free-quote {
		background: var(--ph-orange);
		color: #fff;
	}
}

/* ---- 18a. Blog: single post + archive ---------------------------------------------------------- */
.ph-post-hero {
	background: #F2F4ED;
	border-bottom: 1px solid var(--ph-line);
	padding: 56px 32px 42px !important;
}
.ph-post-hero > .elementor-element,
.ph-post-hero > div {
	max-width: 900px;
	margin-left: auto !important;
	margin-right: auto !important;
	width: 100%;
}
.ph-post-hero-eyebrow {
	font-family: var(--ph-font-mono);
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ph-green);
	margin-bottom: 14px;
}
.ph-post-title .elementor-heading-title,
.ph-post-title h1 {
	font-family: var(--ph-font-display) !important;
	font-size: clamp(32px, 4.4vw, 56px) !important;
	line-height: 1.02 !important;
	text-transform: uppercase;
	color: var(--ph-ink) !important;
	font-weight: 400 !important;
}
.ph-post-info {
	margin-top: 14px;
}
.ph-post-info .elementor-icon-list-item,
.ph-post-info .elementor-icon-list-text {
	font-family: var(--ph-font-mono) !important;
	font-size: 12px !important;
	color: var(--ph-muted) !important;
}
.ph-post-info .elementor-icon-list-icon {
	color: var(--ph-green);
}
.ph-article-grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 48px;
	align-items: start;
	max-width: 1280px;
	margin: 0 auto !important;
	padding: 56px 32px 72px !important;
	width: 100%;
}
.ph-article-grid > .e-con {
	--content-width: 100%;
	max-width: 100%;
	width: 100%;
	padding: 0;
}
.ph-post-featured img {
	border-radius: 14px;
	width: 100%;
	box-shadow: 0 14px 40px rgba(14, 19, 17, .08);
}
.ph-post-content {
	margin-top: 28px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--ph-ink2);
}
.ph-post-content h2,
.ph-post-content h3,
.ph-post-content h4 {
	font-family: var(--ph-font-display);
	text-transform: uppercase;
	color: var(--ph-ink);
	font-weight: 400;
	line-height: 1.05;
	margin: 34px 0 14px;
}
.ph-post-content h2 {
	font-size: 30px;
}
.ph-post-content h3 {
	font-size: 24px;
}
.ph-post-content a {
	color: var(--ph-green);
}
.ph-post-content ul,
.ph-post-content ol {
	padding-left: 22px;
	margin: 14px 0;
}
.ph-post-nav {
	margin-top: 36px;
	border-top: 1px solid var(--ph-line);
	padding-top: 18px;
}
.ph-post-nav a {
	color: var(--ph-green) !important;
	font-family: var(--ph-font-mono);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.ph-share-heading {
	font-family: var(--ph-font-display);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--ph-ink);
	margin: 30px 0 12px;
	font-weight: 400;
}
.ph-cta-card {
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: 12px;
	padding: 26px 24px;
	box-shadow: 0 1px 3px rgba(14, 19, 17, .05);
}
.ph-cta-card h3 {
	font-family: var(--ph-font-display);
	font-size: 22px;
	text-transform: uppercase;
	color: var(--ph-ink);
	margin: 0 0 10px;
	font-weight: 400;
}
.ph-cta-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ph-muted);
	margin: 0 0 16px;
}
.ph-archive-hero {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 32px 40px;
	text-align: center;
}
.ph-archive-grid {
	max-width: 1280px;
	margin: 0 auto !important;
	padding: 0 32px 40px !important;
	width: 100%;
}
.ph-map-area {
	max-width: 1280px;
	margin: 0 auto !important;
	padding: 48px 32px 64px !important;
	width: 100%;
}
@media (max-width: 900px) {
	.ph-article-grid {
		grid-template-columns: 1fr !important;
		gap: 40px !important;
	}
}

/* ---- 18ab. Interior recomposed sections --------------------------------------------------------- */
.ph-section,
.ph-band-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 32px;
	width: 100%;
}
.ph-band-bg {
	display: block;
}
.ph-display-h {
	font-family: var(--ph-font-display);
	text-transform: uppercase;
	color: var(--ph-ink);
	font-weight: 400;
	line-height: .98;
	font-size: clamp(30px, 3.8vw, 52px);
	margin: 0 0 14px;
}
.ph-eyebrow-h {
	font-family: var(--ph-font-mono);
	font-size: 13px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ph-green);
	margin: 0 0 12px;
	font-weight: 700;
}
.ph-mono-h {
	font-family: var(--ph-font-mono);
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ph-green);
	margin: 10px 0 16px;
	font-weight: 700;
}
.ph-sub-h {
	font-family: var(--ph-font-display);
	font-size: 22px;
	text-transform: uppercase;
	color: var(--ph-ink);
	font-weight: 400;
	margin: 26px 0 12px;
}
.ph-lede {
	font-size: 18px;
	line-height: 1.65;
	color: var(--ph-ink2);
	max-width: 560px;
	margin: 14px 0 0;
}
.ph-copy {
	margin-top: 14px;
}
.ph-copy p {
	margin: 0 0 14px;
}
.ph-btn-row {
	display: flex;
	gap: 14px;
	margin-top: 26px;
	flex-wrap: wrap;
}
a.ph-btn-outline-light {
	border: 1.5px solid rgba(255, 255, 255, .75);
	color: #fff !important;
	font-weight: 700;
	padding: 16px 30px;
}
a.ph-btn-outline-light:hover {
	background: #fff;
	color: var(--ph-ink) !important;
}
/* Interior hero */
.ph-int-hero {
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.ph-int-hero .ph-int-hero-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 96px 32px 104px;
}
.ph-int-hero .ph-int-hero-copy {
	max-width: 760px;
	animation: ph-riseUp .8s ease both;
}
.ph-int-hero .ph-mono-h {
	color: var(--ph-green2);
}
.ph-int-hero .ph-chip {
	background: rgba(251, 251, 248, .06);
	border-color: rgba(255, 255, 255, .22);
	color: #D6DBCF !important;
}
.ph-int-hero-light {
	border-bottom: 1px solid #E1E7DC;
	background: linear-gradient(180deg, #FBFBF8, #F4F6EF);
}
.ph-int-hero-light .ph-int-hero-inner,
.ph-int-hero-light .ph-int-hero-grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 32px 76px;
}
.ph-int-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 54px;
	align-items: center;
}
.ph-int-hero-light .ph-int-hero-copy {
	animation: ph-riseUp .8s ease both;
}
/* Split content */
.ph-split {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 54px;
	align-items: center;
}
/* Checklist */
.ph-checklist {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ph-checklist li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--ph-ink2);
}
.ph-dark-band .ph-checklist li {
	color: #D6DBCF;
}
.ph-checklist .ph-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: rgba(72, 166, 30, .14);
	color: var(--ph-green);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}
.ph-checklist a {
	color: var(--ph-green) !important;
	text-decoration: none;
	font-weight: 600;
}
.ph-checklist-dark-wrap {
	max-width: 720px;
	margin: 0 auto;
}
/* Cards */
.ph-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--ph-green), var(--ph-green3));
	color: #fff;
	box-shadow: 0 10px 22px rgba(72, 166, 30, .2);
	margin-bottom: 14px;
}
.ph-band-intro {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 40px;
}
.ph-band-intro .ph-display-h {
	color: #fff;
}
.ph-band-intro .ph-mono-h {
	color: var(--ph-green2);
}
.ph-band-outro {
	text-align: center;
	margin-top: 36px;
}
.ph-dark-band .ph-band-inner,
.ph-band-bg .ph-band-inner {
	position: relative;
	padding-top: 74px;
	padding-bottom: 74px;
}
.ph-feature-band .expectation-grid,
.ph-feature-band .generator-grid {
	margin-top: 10px;
}
/* Steps */
.ph-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 10px 0 6px;
}
.ph-step-card {
	position: relative;
	background: linear-gradient(180deg, rgba(102, 180, 67, .12), rgba(102, 180, 67, .04));
	border: 1px solid rgba(102, 180, 67, .3);
	border-radius: 12px;
	padding: 30px 26px 26px;
	overflow: hidden;
}
.ph-step-num {
	position: absolute;
	top: 10px;
	right: 18px;
	font-family: var(--ph-font-display);
	font-size: 64px;
	line-height: 1;
	color: rgba(102, 180, 67, .18);
}
.ph-step-card h3 {
	font-family: var(--ph-font-display);
	font-size: 20px;
	text-transform: uppercase;
	color: var(--ph-green2);
	margin: 0 0 10px;
	font-weight: 400;
}
.ph-step-copy {
	font-size: 14.5px;
	line-height: 1.6;
	color: #D6DBCF;
}
.ph-step-copy p {
	margin: 0 0 10px;
}
/* Pricing */
.ph-pricing-band .ph-band-inner {
	padding: 74px 32px;
}
.ph-price-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	max-width: 900px;
	margin: 0 auto !important;
	padding: 0 32px !important;
	width: 100%;
}
.ph-price-grid > .e-con {
	width: 100%;
	max-width: 100%;
}
.ph-price-table .elementor-price-table {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.ph-pricing-band {
	padding-bottom: 74px !important;
}
.ph-pricing-band .ph-band-intro {
	padding-top: 74px;
}
.ph-pricing-band .ph-band-outro {
	padding: 36px 32px 0;
}
/* Forms */
.ph-form-section {
	background: linear-gradient(180deg, #FBFBF8, #F2F4ED);
	border-top: 1px solid var(--ph-line);
	border-bottom: 1px solid var(--ph-line);
}
.ph-form-intro {
	max-width: 860px;
	margin: 0 auto;
	padding: 64px 32px 8px;
	text-align: center;
}
.ph-form-card {
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: 16px;
	box-shadow: 0 22px 60px rgba(14, 19, 17, .12);
	max-width: 820px;
	margin: 26px auto 64px !important;
	padding: 30px !important;
	width: calc(100% - 64px);
}
.ph-form-card .elementor-field-group .elementor-field {
	background: #FBFBF8;
	border: 1px solid #D7DAD0;
	border-radius: 7px;
	color: var(--ph-ink);
}
.ph-form-card .elementor-field-group .elementor-field:focus {
	border-color: var(--ph-green);
}
.ph-form-card .elementor-field-label {
	color: var(--ph-ink2);
	font-size: 13px;
}
.ph-form-card .elementor-button[type="submit"] {
	background: var(--ph-orange);
	color: #fff;
	font-family: var(--ph-font-display);
	font-size: 17px;
	letter-spacing: .04em;
	text-transform: uppercase;
	border-radius: 8px;
	box-shadow: 0 10px 26px rgba(255, 106, 26, .35);
}
.ph-form-card .elementor-button[type="submit"]:hover {
	background: #ff7d36;
}
/* Showcase widgets */
.ph-embed-html,
.ph-form-embed {
	width: 100%;
}
.ph-quote-card {
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: 12px;
	padding: 24px;
}
.ph-faq-single {
	grid-template-columns: 1fr !important;
	max-width: 900px !important;
}
@media (max-width: 900px) {
	.ph-split,
	.ph-int-hero-grid {
		grid-template-columns: 1fr !important;
		gap: 34px !important;
	}
	.ph-steps-grid {
		grid-template-columns: 1fr !important;
	}
	.ph-price-grid {
		grid-template-columns: 1fr !important;
	}
	.expectation-grid[style],
	.generator-grid[style] {
		grid-template-columns: 1fr 1fr !important;
	}
}
@media (max-width: 640px) {
	.ph-section,
	.ph-band-inner {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.ph-int-hero .ph-int-hero-inner {
		padding: 56px 20px 62px;
	}
	.expectation-grid[style],
	.generator-grid[style] {
		grid-template-columns: 1fr !important;
	}
	.ph-form-card {
		width: calc(100% - 40px);
		padding: 18px !important;
	}
}

/* ---- 18b. Link-color hardening --------------------------------------------------------------------
   The Global Kit's link color (.elementor-kit-12 a) outranks single-class
   selectors; pin every design-system link/button color explicitly. */
a.ph-btn-orange,
a.ph-btn-orange:hover,
a.ph-btn-dark,
a.ph-btn-dark:hover,
a.ph-btn-header,
a.ph-btn-header:hover {
	color: #fff !important;
}
a.ph-btn-outline {
	color: var(--ph-ink) !important;
}
a.ph-btn-outline:hover {
	color: #fff !important;
}
.main-nav a {
	color: var(--ph-muted) !important;
}
.main-nav a:hover,
.main-nav a.is-current {
	color: var(--ph-green) !important;
}
a.ph-header-phone {
	color: var(--ph-ink) !important;
}
.ph-footer-links a {
	color: #B7BDB2 !important;
}
.ph-footer-links a:hover {
	color: var(--ph-green2) !important;
}
.ph-footer-info a {
	color: #B7BDB2 !important;
}
.ph-footer-info a[href^="tel:"],
.ph-footer-info a:hover {
	color: var(--ph-green2) !important;
}
a.ph-chip {
	color: #3A4036 !important;
}
a.ph-chip:hover {
	color: var(--ph-green) !important;
}
.ph-contact-phone .ph-phone-number {
	color: #fff !important;
}
.faq-tip-title {
	display: block;
	color: var(--ph-ink) !important;
}
.faq-tip-cta {
	color: var(--ph-green) !important;
}
.faq-tip-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 7px;
	display: block;
}
/* Housecall Pro reports its responsive content height via postMessage. Keep
   the iframe free of the old 1050px minimum so the trusted listener in
   functions.php can apply the reported height without empty green space. */
#hcp-lead-iframe,
.ph-hcp-embed iframe {
	width: 100% !important;
	min-width: 100% !important;
	min-height: 0 !important;
	display: block;
	border: none !important;
}
.ph-hcp-embed p {
	margin: 0;
}
/* Single coupon spans the row, centered */
.ph-offers-single {
	grid-template-columns: 1fr !important;
	max-width: 760px;
	margin-left: auto !important;
	margin-right: auto !important;
}
.ph-charlotte-feature .ph-band-inner {
	max-width: 1060px;
}
.ph-charlotte-feature .ph-charlotte-feature-chips {
	gap: 10px;
	margin: 28px auto 0;
}
.ph-charlotte-section-intro {
	max-width: 900px;
	margin: 0 auto 38px;
	text-align: center;
}
.ph-charlotte-section-intro .ph-intro-copy {
	max-width: 780px;
	margin-right: auto;
	margin-left: auto;
}
.ph-charlotte-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.ph-charlotte-stat {
	display: flex;
	min-height: 188px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 28px 22px;
	text-align: center;
	background: #F2F7EE;
	border: 1px solid rgba(72, 166, 30, .2);
	border-top: 4px solid var(--ph-green);
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(14, 33, 24, .08);
}
.ph-charlotte-stat strong {
	color: var(--ph-green3);
	font-family: var(--ph-font-display);
	font-size: clamp(48px, 5vw, 72px);
	font-weight: 400;
	line-height: .9;
}
.ph-charlotte-stat span {
	margin-top: 14px;
	color: var(--ph-ink);
	font-family: var(--ph-font-mono);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.ph-charlotte-stars strong {
	color: var(--ph-orange);
	font-family: inherit;
	font-size: clamp(25px, 2.8vw, 39px);
	letter-spacing: .08em;
}
.ph-charlotte-testimonial {
	position: relative;
	margin: 26px 0 0;
	padding: 38px 42px 34px 74px;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(135deg, #10251A, #0B1A12);
	border-radius: 16px;
	box-shadow: 0 18px 42px rgba(14, 33, 24, .16);
}
.ph-charlotte-testimonial::before {
	content: "“";
	position: absolute;
	top: 14px;
	left: 24px;
	color: var(--ph-green2);
	font-family: Georgia, serif;
	font-size: 78px;
	line-height: 1;
}
.ph-charlotte-testimonial blockquote {
	margin: 0;
	font-size: clamp(19px, 2vw, 25px);
	font-weight: 600;
	line-height: 1.42;
}
.ph-charlotte-testimonial figcaption {
	margin-top: 18px;
	color: #AFC1B6;
	font-family: var(--ph-font-mono);
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.ph-charlotte-credentials {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}
.ph-charlotte-credentials li {
	position: relative;
	padding: 14px 14px 14px 38px;
	color: var(--ph-ink2);
	font-size: 13px;
	font-weight: 750;
	background: #fff;
	border: 1px solid var(--ph-line);
	border-radius: 10px;
}
.ph-charlotte-credentials li::before {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 14px;
	width: 17px;
	height: 17px;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	line-height: 17px;
	text-align: center;
	background: var(--ph-green);
	border-radius: 50%;
	transform: translateY(-50%);
}
.ph-charlotte-services {
	max-width: 1280px;
	background: #F5F6F1;
	border: 1px solid var(--ph-line);
	border-radius: 22px;
}
.ph-charlotte-service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
.ph-charlotte-service-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 34px 30px 30px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ph-line);
	border-top: 4px solid var(--ph-orange);
	border-radius: 15px;
	box-shadow: 0 12px 30px rgba(14, 33, 24, .08);
}
.ph-charlotte-service-num {
	position: absolute;
	top: 20px;
	right: 22px;
	color: rgba(14, 33, 24, .1);
	font-family: var(--ph-font-display);
	font-size: 42px;
	line-height: 1;
}
.ph-charlotte-service-card h3 {
	max-width: calc(100% - 70px);
	margin: 0 0 14px;
	color: var(--ph-ink);
	font-family: var(--ph-font-display);
	font-size: clamp(25px, 2.4vw, 34px);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}
.ph-charlotte-service-card > p {
	margin: 0 0 20px;
	color: var(--ph-muted);
	font-size: 14.5px;
	line-height: 1.62;
}
.ph-charlotte-service-card .ph-checklist {
	margin-bottom: 24px;
}
.ph-charlotte-service-card .ph-checklist li {
	font-size: 13.5px;
}
.ph-charlotte-service-offer {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4px 12px;
	align-items: center;
	margin: auto 0 20px;
	padding: 16px;
	background: #FFF1E8;
	border: 1px solid rgba(255, 106, 26, .25);
	border-radius: 10px;
}
.ph-charlotte-service-offer strong {
	grid-row: 1 / span 2;
	color: var(--ph-orange);
	font-family: var(--ph-font-display);
	font-size: 27px;
	font-weight: 400;
	line-height: 1;
}
.ph-charlotte-service-offer span {
	color: var(--ph-ink2);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}
.ph-charlotte-service-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}
.ph-charlotte-service-actions .ph-btn {
	padding: 13px 20px;
	font-size: 12px;
}
.ph-charlotte-about {
	max-width: 960px;
	text-align: center;
}
.ph-charlotte-about .ph-btn-row {
	justify-content: center;
}
@media (max-width: 900px) {
	.ph-charlotte-service-grid {
		grid-template-columns: 1fr;
	}
	.ph-charlotte-credentials {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 640px) {
	.ph-charlotte-stats,
	.ph-charlotte-credentials {
		grid-template-columns: 1fr;
	}
	.ph-charlotte-stat {
		min-height: 150px;
	}
	.ph-charlotte-testimonial {
		padding: 58px 22px 28px;
	}
	.ph-charlotte-testimonial::before {
		top: 8px;
		left: 20px;
	}
	.ph-charlotte-services {
		border-radius: 0;
	}
	.ph-charlotte-service-card {
		padding: 30px 20px 24px;
	}
	.ph-charlotte-service-offer {
		grid-template-columns: 1fr;
	}
	.ph-charlotte-service-offer strong {
		grid-row: auto;
	}
}

/* ---- 18c. Classic (non-Elementor) page content — e.g. Privacy Policy --------------------------------
   The kit's default body color is the old light tone (interior dark sections
   depend on it), so pin readable colors for plain WP page content. */
body:not(.elementor-page) main.site-main {
	max-width: 900px;
	margin: 0 auto;
	padding: 56px 24px 72px;
	color: var(--ph-ink2);
	font-size: 17px;
	line-height: 1.75;
}
body:not(.elementor-page) main.site-main h1,
body:not(.elementor-page) main.site-main h2,
body:not(.elementor-page) main.site-main h3 {
	font-family: var(--ph-font-display);
	text-transform: uppercase;
	color: var(--ph-ink);
	font-weight: 400;
	line-height: 1.05;
	margin: 34px 0 14px;
}
body:not(.elementor-page) main.site-main a {
	color: var(--ph-green);
}

/* ---- 19. Animations ------------------------------------------------------------------------------ */
@keyframes ph-riseUp {
	0% {
		opacity: 0;
		transform: translateY(26px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes ph-drawline {
	0% {
		transform: scaleX(0);
	}
	100% {
		transform: scaleX(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-copy,
	.ph-underline-word i {
		animation: none;
	}
}
