body.pg-custom {
	--pg-navy-deep: #151c2c;
	--pg-navy: #202a40;
	--pg-navy-soft: #2b3650;
	--pg-gold: #d1ad58;
	--pg-gold-light: #ead28e;
	--pg-gold-dark: #af8530;
	--pg-cream: #fbf8f0;
	--pg-white: #ffffff;
	--pg-text: #182033;
	--pg-muted: #667085;
	--pg-border: #e5e7eb;
	--pg-shadow: 0 24px 70px rgba(21, 28, 44, 0.16);
	--pg-radius: 16px;
	--pg-container: 1280px;
	--pg-font-display: "Playfair Display", Georgia, serif;
	--pg-font-script: "Allura", "Brush Script MT", cursive;
	--pg-font-sans: "Inter", Arial, sans-serif;
	margin: 0;
	background: var(--pg-white);
	color: var(--pg-text);
	font-family: var(--pg-font-sans);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body.pg-custom *,
body.pg-custom *::before,
body.pg-custom *::after {
	box-sizing: border-box;
}

body.pg-custom .pg-main,
body.pg-custom .pg-site-header,
body.pg-custom .pg-site-footer,
body.pg-custom .pg-float {
	font-family: var(--pg-font-sans);
}

body.pg-custom .pg-main img,
body.pg-custom .pg-site-header img,
body.pg-custom .pg-site-footer img {
	display: block;
	max-width: 100%;
}

body.pg-custom .pg-main a,
body.pg-custom .pg-site-header a,
body.pg-custom .pg-site-footer a,
body.pg-custom .pg-float a {
	color: inherit;
	text-decoration: none;
}

body.pg-custom .pg-main h1,
body.pg-custom .pg-main h2,
body.pg-custom .pg-main h3,
body.pg-custom .pg-site-footer h2 {
	margin: 0;
	font-family: var(--pg-font-display);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

body.pg-custom .pg-main p,
body.pg-custom .pg-main ul,
body.pg-custom .pg-main ol,
body.pg-custom .pg-site-footer p,
body.pg-custom .pg-site-footer ul {
	margin-top: 0;
	margin-bottom: 0;
}

body.pg-custom .pg-main ul,
body.pg-custom .pg-main ol,
body.pg-custom .pg-site-footer ul {
	padding: 0;
	list-style: none;
}

body.pg-custom .pg-container {
	width: min(calc(100% - 48px), var(--pg-container));
	margin-inline: auto;
}

body.pg-custom .pg-section {
	padding-block: clamp(80px, 8vw, 128px);
}

body.pg-custom .pg-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 99999;
	padding: 12px 18px;
	border-radius: 8px;
	background: var(--pg-gold);
	color: var(--pg-navy-deep);
	font-weight: 700;
	transform: translateY(-180%);
	transition: transform 0.2s ease;
}

body.pg-custom .pg-skip-link:focus {
	transform: translateY(0);
}

body.pg-custom .pg-eyebrow,
body.pg-custom .pg-form-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--pg-gold-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.24em;
	line-height: 1.4;
	text-transform: uppercase;
}

body.pg-custom .pg-eyebrow::before,
body.pg-custom .pg-eyebrow::after {
	width: 38px;
	height: 1px;
	background: currentColor;
	content: "";
}

body.pg-custom .pg-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

body.pg-custom .pg-button:hover,
body.pg-custom .pg-button:focus-visible {
	transform: translateY(-2px);
}

body.pg-custom .pg-button-gold {
	background: linear-gradient(135deg, var(--pg-gold-light), var(--pg-gold));
	box-shadow: 0 12px 30px rgba(209, 173, 88, 0.28);
	color: var(--pg-navy-deep);
}

body.pg-custom .pg-button-outline {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.04);
	color: var(--pg-white);
}

body.pg-custom .pg-button-outline:hover,
body.pg-custom .pg-button-outline:focus-visible {
	border-color: var(--pg-gold);
	color: var(--pg-gold-light);
}

body.pg-custom .pg-button-small {
	min-height: 44px;
	padding: 11px 18px;
	font-size: 14px;
}

body.pg-custom .pg-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 3px;
	border-bottom: 2px solid var(--pg-gold);
	color: var(--pg-navy-deep);
	font-weight: 700;
	transition: gap 0.2s ease;
}

body.pg-custom .pg-text-link:hover,
body.pg-custom .pg-text-link:focus-visible {
	gap: 13px;
}

body.pg-custom .pg-site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	color: var(--pg-white);
}

body.pg-custom .pg-nav-wrap {
	position: relative;
	z-index: 1001;
	display: flex;
	min-height: 94px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

body.pg-custom .pg-brand,
body.pg-custom .pg-footer-brand {
	display: inline-flex;
	align-items: center;
}

body.pg-custom .pg-brand-logo {
	width: 162px;
	height: 70px;
	border-radius: 6px;
	object-fit: cover;
}

body.pg-custom .pg-desktop-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2.2vw, 34px);
}

body.pg-custom .pg-desktop-nav a {
	position: relative;
	padding-block: 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 600;
}

body.pg-custom .pg-desktop-nav a::after {
	position: absolute;
	bottom: 3px;
	left: 50%;
	width: 0;
	height: 1px;
	background: var(--pg-gold);
	content: "";
	transform: translateX(-50%);
	transition: width 0.2s ease;
}

body.pg-custom .pg-desktop-nav a:hover::after,
body.pg-custom .pg-desktop-nav a:focus-visible::after {
	width: 100%;
}

body.pg-custom .pg-nav-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

body.pg-custom .pg-header-phone {
	font-size: 14px;
	font-weight: 700;
}

body.pg-custom .pg-menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(21, 28, 44, 0.56);
	color: var(--pg-white);
	cursor: pointer;
}

body.pg-custom .pg-menu-line {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transform-origin: center;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

body.pg-custom .pg-menu-toggle[aria-expanded="true"] .pg-menu-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.pg-custom .pg-menu-toggle[aria-expanded="true"] .pg-menu-line:nth-child(2) {
	opacity: 0;
}

body.pg-custom .pg-menu-toggle[aria-expanded="true"] .pg-menu-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

body.pg-custom .pg-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 110px 24px 40px;
	background: rgba(21, 28, 44, 0.985);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.pg-custom .pg-mobile-menu.pg-is-open {
	z-index: 999;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

body.pg-custom .pg-mobile-menu-inner {
	display: flex;
	width: min(100%, 420px);
	align-items: stretch;
	flex-direction: column;
	gap: 14px;
	text-align: center;
}

body.pg-custom .pg-mobile-menu-inner > a:not(.pg-button) {
	padding: 9px;
	color: var(--pg-white);
	font-family: var(--pg-font-display);
	font-size: 27px;
}

body.pg-custom.pg-menu-open {
	overflow: hidden;
}

body.pg-custom .pg-hero {
	position: relative;
	display: flex;
	min-height: 850px;
	align-items: center;
	overflow: hidden;
	padding: 178px 0 92px;
	background: var(--pg-navy-deep);
	color: var(--pg-white);
}

body.pg-custom .pg-hero-media,
body.pg-custom .pg-hero-overlay,
body.pg-custom .pg-hero-glow {
	position: absolute;
	inset: 0;
}

body.pg-custom .pg-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.pg-custom .pg-hero-overlay {
	background:
		linear-gradient(90deg, rgba(21, 28, 44, 0.94) 0%, rgba(21, 28, 44, 0.72) 49%, rgba(21, 28, 44, 0.28) 100%),
		linear-gradient(0deg, rgba(21, 28, 44, 0.72), rgba(21, 28, 44, 0.08) 62%);
}

body.pg-custom .pg-hero-glow {
	inset: -120px -180px auto auto;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: rgba(209, 173, 88, 0.12);
	filter: blur(90px);
}

body.pg-custom .pg-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
	gap: clamp(46px, 6vw, 88px);
}

body.pg-custom .pg-hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 7px 16px;
	border: 1px solid rgba(209, 173, 88, 0.42);
	border-radius: 999px;
	background: rgba(209, 173, 88, 0.06);
	color: var(--pg-gold-light);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

body.pg-custom .pg-hero h1 {
	max-width: 760px;
	margin-top: 24px;
	color: var(--pg-white);
	font-size: clamp(48px, 5.5vw, 76px);
}

body.pg-custom .pg-hero h1 span,
body.pg-custom .pg-section-heading h2 span {
	display: block;
	margin-top: 6px;
	background: linear-gradient(135deg, var(--pg-gold-light), var(--pg-gold-dark));
	background-clip: text;
	color: transparent;
	font-family: var(--pg-font-script);
	font-size: 1.08em;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.95;
}

body.pg-custom .pg-hero-description {
	max-width: 660px;
	margin-top: 26px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(18px, 1.6vw, 21px);
	line-height: 1.72;
}

body.pg-custom .pg-hero-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 30px;
}

body.pg-custom .pg-hero-call {
	display: none;
}

body.pg-custom .pg-hero-trust {
	display: grid;
	max-width: 720px;
	margin-top: 34px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 13px 26px;
	color: rgba(255, 255, 255, 0.83);
	font-size: 14px;
}

body.pg-custom .pg-hero-trust li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

body.pg-custom .pg-hero-trust span {
	color: var(--pg-gold-light);
	font-weight: 800;
}

body.pg-custom .pg-form-shell {
	position: relative;
	min-width: 0;
	padding: clamp(28px, 3vw, 42px);
	border: 1px solid rgba(209, 173, 88, 0.24);
	border-radius: var(--pg-radius);
	box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-form-shell-light {
	background: rgba(251, 248, 240, 0.97);
	color: var(--pg-text);
	backdrop-filter: blur(10px);
}

body.pg-custom .pg-form-shell-dark {
	background: linear-gradient(145deg, var(--pg-navy-deep), var(--pg-navy-soft));
	color: var(--pg-white);
}

body.pg-custom .pg-form-shell > h2 {
	margin-top: 7px;
	font-size: clamp(28px, 3vw, 38px);
}

body.pg-custom .pg-form-shell > p:not(.pg-form-eyebrow) {
	margin-top: 8px;
	color: var(--pg-muted);
	font-size: 14px;
}

body.pg-custom .pg-form-shell-dark > p:not(.pg-form-eyebrow) {
	color: rgba(255, 255, 255, 0.7);
}

body.pg-custom .pg-mobile-form-section {
	display: none;
	padding: 34px 0 56px;
	background: var(--pg-cream);
}

body.pg-custom .pg-trust-strip {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: var(--pg-navy);
	color: var(--pg-white);
}

body.pg-custom .pg-trust-grid {
	display: grid;
	min-height: 104px;
	align-items: stretch;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.pg-custom .pg-trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 22px 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
	text-align: center;
}

body.pg-custom .pg-trust-item:last-child {
	border-right: 0;
}

body.pg-custom .pg-trust-item span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	border: 1px solid rgba(209, 173, 88, 0.35);
	border-radius: 50%;
	color: var(--pg-gold-light);
	font-size: 11px;
	font-weight: 800;
}

body.pg-custom .pg-about-grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
	gap: clamp(62px, 8vw, 116px);
}

body.pg-custom .pg-about-media {
	position: relative;
	min-width: 0;
}

body.pg-custom .pg-about-media > img {
	width: 100%;
	height: 590px;
	border-radius: var(--pg-radius);
	box-shadow: var(--pg-shadow);
	object-fit: cover;
}

body.pg-custom .pg-about-badge {
	position: absolute;
	right: -34px;
	bottom: -34px;
	width: 248px;
	padding: 25px;
	border: 1px solid rgba(209, 173, 88, 0.26);
	border-radius: var(--pg-radius);
	background: var(--pg-navy-deep);
	box-shadow: 0 22px 54px rgba(21, 28, 44, 0.3);
	color: var(--pg-white);
}

body.pg-custom .pg-about-badge strong {
	display: block;
	background: linear-gradient(135deg, var(--pg-gold-light), var(--pg-gold-dark));
	background-clip: text;
	color: transparent;
	font-family: var(--pg-font-script);
	font-size: 50px;
	font-weight: 400;
	line-height: 0.9;
}

body.pg-custom .pg-about-badge p {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
}

body.pg-custom .pg-about-copy h2,
body.pg-custom .pg-why-heading h2,
body.pg-custom .pg-gallery-heading h2,
body.pg-custom .pg-areas-copy h2,
body.pg-custom .pg-contact-copy h2,
body.pg-custom .pg-section-heading h2 {
	margin-top: 18px;
	color: var(--pg-navy-deep);
	font-size: clamp(38px, 4.5vw, 58px);
}

body.pg-custom .pg-about-copy > p:not(.pg-eyebrow) {
	margin-top: 20px;
	color: var(--pg-muted);
	font-size: 17px;
	line-height: 1.78;
}

body.pg-custom .pg-check-grid {
	display: grid;
	margin-top: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px 24px;
}

body.pg-custom .pg-check-grid li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--pg-navy);
}

body.pg-custom .pg-check-grid span {
	color: var(--pg-gold-dark);
	font-weight: 800;
}

body.pg-custom .pg-about-copy .pg-text-link {
	margin-top: 32px;
}

body.pg-custom .pg-services,
body.pg-custom .pg-process {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--pg-navy-deep), var(--pg-navy-soft));
	color: var(--pg-white);
}

body.pg-custom .pg-services-glow {
	position: absolute;
	top: -320px;
	left: 50%;
	width: 850px;
	height: 850px;
	border-radius: 50%;
	background: rgba(209, 173, 88, 0.08);
	filter: blur(85px);
	transform: translateX(-50%);
}

body.pg-custom .pg-section-heading {
	position: relative;
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

body.pg-custom .pg-section-heading > p:not(.pg-eyebrow) {
	margin-top: 20px;
	color: var(--pg-muted);
	font-size: 18px;
	line-height: 1.7;
}

body.pg-custom .pg-section-heading-light h2 {
	color: var(--pg-white);
}

body.pg-custom .pg-section-heading-light > p:not(.pg-eyebrow) {
	color: rgba(255, 255, 255, 0.7);
}

body.pg-custom .pg-section-heading-light .pg-eyebrow {
	color: var(--pg-gold-light);
}

body.pg-custom .pg-services-grid {
	position: relative;
	display: grid;
	margin-top: 58px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

body.pg-custom .pg-service-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: var(--pg-radius);
	background: rgba(255, 255, 255, 0.045);
	transition: border-color 0.2s ease, background 0.2s ease;
}

body.pg-custom .pg-service-card:hover {
	border-color: rgba(209, 173, 88, 0.45);
	background: rgba(255, 255, 255, 0.065);
}

body.pg-custom .pg-service-card > img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

body.pg-custom .pg-service-card-body {
	display: flex;
	min-height: 232px;
	align-items: flex-start;
	flex-direction: column;
	padding: 26px;
}

body.pg-custom .pg-service-card h3 {
	color: var(--pg-white);
	font-size: 24px;
}

body.pg-custom .pg-service-card p {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	line-height: 1.7;
}

body.pg-custom .pg-service-card a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 22px;
	color: var(--pg-gold-light);
	font-size: 14px;
	font-weight: 700;
}

body.pg-custom .pg-service-card a:hover,
body.pg-custom .pg-service-card a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

body.pg-custom .pg-services-note {
	position: relative;
	margin-top: 30px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
	text-align: center;
}

body.pg-custom .pg-why {
	background: var(--pg-cream);
}

body.pg-custom .pg-why-heading {
	display: grid;
	align-items: end;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
	gap: 64px;
}

body.pg-custom .pg-why-heading > p {
	color: var(--pg-muted);
	font-size: 17px;
	line-height: 1.76;
}

body.pg-custom .pg-why-grid {
	display: grid;
	margin-top: 52px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

body.pg-custom .pg-why-card {
	padding: 28px;
	border: 1px solid var(--pg-border);
	border-radius: var(--pg-radius);
	background: var(--pg-white);
	box-shadow: 0 18px 50px rgba(21, 28, 44, 0.04);
}

body.pg-custom .pg-why-card > span {
	display: inline-flex;
	min-width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	padding-inline: 9px;
	border-radius: 10px;
	background: var(--pg-navy-deep);
	color: var(--pg-gold-light);
	font-size: 14px;
	font-weight: 800;
}

body.pg-custom .pg-why-card h3 {
	margin-top: 20px;
	color: var(--pg-navy-deep);
	font-size: 23px;
}

body.pg-custom .pg-why-card p {
	margin-top: 10px;
	color: var(--pg-muted);
	font-size: 14px;
	line-height: 1.68;
}

body.pg-custom .pg-process-grid {
	display: grid;
	margin-top: 58px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	counter-reset: none;
}

body.pg-custom .pg-process-card {
	position: relative;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: var(--pg-radius);
	background: rgba(255, 255, 255, 0.045);
}

body.pg-custom .pg-process-card:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -20px;
	z-index: 2;
	color: rgba(209, 173, 88, 0.6);
	content: "→";
	font-size: 26px;
	transform: translateY(-50%);
}

body.pg-custom .pg-process-card > span {
	background: linear-gradient(135deg, var(--pg-gold-light), var(--pg-gold-dark));
	background-clip: text;
	color: transparent;
	font-family: var(--pg-font-script);
	font-size: 56px;
	line-height: 0.9;
}

body.pg-custom .pg-process-card h3 {
	margin-top: 18px;
	color: var(--pg-white);
	font-size: 24px;
}

body.pg-custom .pg-process-card p {
	margin-top: 11px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	line-height: 1.68;
}

body.pg-custom .pg-gallery-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 42px;
}

body.pg-custom .pg-gallery-heading > div {
	max-width: 720px;
}

body.pg-custom .pg-gallery-heading > div > p:not(.pg-eyebrow) {
	margin-top: 20px;
	color: var(--pg-muted);
	font-size: 17px;
	line-height: 1.74;
}

body.pg-custom .pg-gallery-grid {
	display: grid;
	margin-top: 46px;
	grid-auto-rows: 280px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

body.pg-custom .pg-gallery-item {
	position: relative;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border-radius: var(--pg-radius);
	background: var(--pg-navy-deep);
}

body.pg-custom .pg-gallery-item-featured {
	grid-row: span 2;
}

body.pg-custom .pg-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

body.pg-custom .pg-gallery-item:hover img {
	transform: scale(1.035);
}

body.pg-custom .pg-gallery-item::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(21, 28, 44, 0.92), rgba(21, 28, 44, 0.05) 65%);
	content: "";
}

body.pg-custom .pg-gallery-item figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: 25px;
	color: var(--pg-white);
}

body.pg-custom .pg-gallery-item figcaption span {
	display: block;
	color: var(--pg-gold-light);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

body.pg-custom .pg-gallery-item figcaption strong {
	display: block;
	margin-top: 5px;
	font-family: var(--pg-font-display);
	font-size: 22px;
	line-height: 1.2;
}

body.pg-custom .pg-areas {
	background: var(--pg-cream);
}

body.pg-custom .pg-areas-grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(52px, 7vw, 96px);
}

body.pg-custom .pg-areas-copy > p:not(.pg-eyebrow) {
	margin-top: 20px;
	color: var(--pg-muted);
	font-size: 17px;
	line-height: 1.76;
}

body.pg-custom .pg-area-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 27px;
}

body.pg-custom .pg-area-tags li {
	padding: 8px 13px;
	border: 1px solid var(--pg-border);
	border-radius: 999px;
	background: var(--pg-white);
	color: var(--pg-navy);
	font-size: 13px;
	font-weight: 600;
}

body.pg-custom .pg-map-wrap {
	overflow: hidden;
	border: 1px solid var(--pg-border);
	border-radius: var(--pg-radius);
	box-shadow: var(--pg-shadow);
	line-height: 0;
}

body.pg-custom .pg-map-wrap iframe {
	display: block;
	width: 100%;
	height: 470px;
	border: 0;
}

body.pg-custom .pg-cta {
	position: relative;
	overflow: hidden;
	padding-block: clamp(80px, 8vw, 112px);
	background:
		linear-gradient(135deg, rgba(126, 88, 18, 0.9), rgba(175, 133, 48, 0.84)),
		var(--pg-cta-image) center / cover no-repeat;
	color: var(--pg-white);
}

body.pg-custom .pg-cta-inner {
	max-width: 1000px;
	text-align: center;
}

body.pg-custom .pg-cta .pg-eyebrow {
	color: var(--pg-gold-light);
}

body.pg-custom .pg-cta h2 {
	margin-top: 18px;
	color: var(--pg-white);
	font-size: clamp(40px, 5vw, 66px);
}

body.pg-custom .pg-cta p:not(.pg-eyebrow) {
	max-width: 760px;
	margin: 22px auto 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 18px;
	line-height: 1.74;
}

body.pg-custom .pg-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 32px;
}

body.pg-custom .pg-faq {
	background: var(--pg-cream);
}

body.pg-custom .pg-faq-inner {
	max-width: 920px;
}

body.pg-custom .pg-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 46px;
}

body.pg-custom .pg-faq-item {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--pg-border);
	border-radius: 12px;
	background: var(--pg-white);
}

body.pg-custom .pg-faq-item h3 {
	min-width: 0;
}

body.pg-custom .pg-faq-item button {
	display: flex;
	width: 100%;
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 23px 25px;
	border: 0;
	background: transparent;
	color: var(--pg-navy-deep);
	font-family: var(--pg-font-display);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
	text-align: left;
	white-space: normal;
	cursor: pointer;
}

body.pg-custom .pg-faq-item button > span:first-child {
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: normal;
}

body.pg-custom .pg-faq-symbol {
	display: inline-flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	border-radius: 50%;
	background: rgba(209, 173, 88, 0.14);
	color: var(--pg-gold-dark);
	font-family: var(--pg-font-sans);
	font-size: 21px;
	font-weight: 500;
}

body.pg-custom .pg-faq-answer {
	padding: 0 25px 23px;
}

body.pg-custom .pg-faq-answer p {
	color: var(--pg-muted);
	line-height: 1.74;
}

body.pg-custom .pg-contact-grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
	gap: clamp(52px, 7vw, 94px);
}

body.pg-custom .pg-contact-copy > p:not(.pg-eyebrow) {
	margin-top: 20px;
	color: var(--pg-muted);
	font-size: 17px;
	line-height: 1.75;
}

body.pg-custom .pg-contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 32px;
	font-style: normal;
}

body.pg-custom .pg-contact-list > a,
body.pg-custom .pg-contact-list > div {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 18px;
	border: 1px solid var(--pg-border);
	border-radius: 10px;
	background: var(--pg-white);
}

body.pg-custom .pg-contact-list span {
	color: var(--pg-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.pg-custom .pg-contact-list strong {
	min-width: 0;
	color: var(--pg-navy-deep);
	font-size: 14px;
	text-align: right;
}

body.pg-custom .pg-email-link {
	overflow-wrap: anywhere;
	word-break: break-word;
}

body.pg-custom .pg-site-footer {
	background: var(--pg-navy-deep);
	color: rgba(255, 255, 255, 0.7);
}

body.pg-custom .pg-footer-grid {
	display: grid;
	padding-block: 72px 50px;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.7fr) minmax(0, 0.9fr);
	gap: 58px;
}

body.pg-custom .pg-footer-brand img {
	width: 172px;
	height: 76px;
	border-radius: 6px;
	object-fit: cover;
}

body.pg-custom .pg-footer-intro p {
	max-width: 440px;
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.75;
}

body.pg-custom .pg-footer-column h2 {
	color: var(--pg-gold-light);
	font-family: var(--pg-font-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

body.pg-custom .pg-footer-column ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 18px;
	font-size: 14px;
}

body.pg-custom .pg-footer-column a {
	transition: color 0.2s ease;
}

body.pg-custom .pg-footer-column a:hover,
body.pg-custom .pg-footer-column a:focus-visible {
	color: var(--pg-gold-light);
}

body.pg-custom .pg-web-wizard-credit {
	padding: 18px 0 26px;
	text-align: center;
}

body.pg-custom .pg-web-wizard-credit a {
	color: rgba(255, 255, 255, 0.76);
	font-size: 13px;
	font-weight: 600;
}

body.pg-custom .pg-web-wizard-credit a:hover,
body.pg-custom .pg-web-wizard-credit a:focus-visible {
	color: var(--pg-gold-light);
}

body.pg-custom .pg-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

body.pg-custom .pg-footer-bottom-inner {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	font-size: 12px;
}

body.pg-custom .pg-footer-legal {
	display: flex;
	align-items: center;
	gap: 20px;
}

@media (max-width: 1120px) {
	body.pg-custom .pg-desktop-nav,
	body.pg-custom .pg-nav-actions {
		display: none;
	}

	body.pg-custom .pg-menu-toggle {
		display: flex;
	}

	body.pg-custom .pg-hero {
		min-height: 820px;
	}

	body.pg-custom .pg-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
		gap: 38px;
	}

	body.pg-custom .pg-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.pg-custom .pg-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.pg-custom .pg-process-card:nth-child(2)::after,
	body.pg-custom .pg-process-card:nth-child(4)::after {
		display: none;
	}
}

@media (max-width: 900px) {
	body.pg-custom .pg-container {
		width: min(calc(100% - 36px), var(--pg-container));
	}

	body.pg-custom .pg-nav-wrap {
		min-height: 86px;
	}

	body.pg-custom .pg-hero {
		min-height: auto;
		padding: 138px 0 78px;
	}

	body.pg-custom .pg-hero-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.pg-custom .pg-hero-form {
		display: none;
	}

	body.pg-custom .pg-mobile-form-section {
		display: block;
	}

	body.pg-custom .pg-about-grid,
	body.pg-custom .pg-areas-grid,
	body.pg-custom .pg-contact-grid,
	body.pg-custom .pg-footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.pg-custom .pg-about-grid,
	body.pg-custom .pg-areas-grid,
	body.pg-custom .pg-contact-grid {
		gap: 58px;
	}

	body.pg-custom .pg-about-media {
		max-width: 620px;
		margin-inline: auto;
	}

	body.pg-custom .pg-about-badge {
		right: 18px;
	}

	body.pg-custom .pg-why-heading {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	body.pg-custom .pg-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.pg-custom .pg-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.pg-custom .pg-gallery-item-featured {
		grid-row: span 1;
	}

	body.pg-custom .pg-footer-grid {
		gap: 36px;
		text-align: center;
	}

	body.pg-custom .pg-footer-intro p {
		margin-inline: auto;
	}

	body.pg-custom .pg-footer-brand {
		justify-content: center;
	}

	body.pg-custom .pg-footer-bottom-inner {
		align-items: center;
		flex-direction: column;
		justify-content: center;
		padding-block: 20px;
		text-align: center;
	}
}

@media (max-width: 767px) {
	body.pg-custom .pg-section {
		padding-block: 74px;
	}

	body.pg-custom .pg-container {
		width: min(calc(100% - 28px), var(--pg-container));
	}

	body.pg-custom .pg-brand-logo {
		width: 132px;
		height: 58px;
	}

	body.pg-custom .pg-nav-wrap {
		min-height: 78px;
	}

	body.pg-custom .pg-hero {
		padding: 122px 0 66px;
		text-align: center;
	}

	body.pg-custom .pg-hero-overlay {
		background: linear-gradient(0deg, rgba(21, 28, 44, 0.94), rgba(21, 28, 44, 0.68));
	}

	body.pg-custom .pg-hero-media img {
		object-position: center;
	}

	body.pg-custom .pg-hero-badge {
		justify-content: center;
		max-width: 100%;
		font-size: 10px;
		letter-spacing: 0.14em;
	}

	body.pg-custom .pg-hero h1 {
		margin-inline: auto;
		font-size: clamp(41px, 12vw, 57px);
	}

	body.pg-custom .pg-hero-description {
		margin-inline: auto;
		font-size: 17px;
	}

	body.pg-custom .pg-hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	body.pg-custom .pg-hero-call {
		display: inline-flex;
	}

	body.pg-custom .pg-hero-trust {
		grid-template-columns: minmax(0, 1fr);
		text-align: center;
	}

	body.pg-custom .pg-hero-trust li {
		align-items: center;
		justify-content: center;
	}

	body.pg-custom .pg-form-shell {
		padding: 25px 18px;
		text-align: center;
	}



	body.pg-custom .pg-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.pg-custom .pg-trust-item {
		min-height: 100px;
		flex-direction: column;
		gap: 8px;
		border-right: 1px solid rgba(255, 255, 255, 0.08);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		font-size: 12px;
	}

	body.pg-custom .pg-trust-item:nth-child(2n) {
		border-right: 0;
	}

	body.pg-custom .pg-trust-item:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	body.pg-custom .pg-about-copy,
	body.pg-custom .pg-why-heading,
	body.pg-custom .pg-gallery-heading,
	body.pg-custom .pg-areas-copy,
	body.pg-custom .pg-contact-copy,
	body.pg-custom .pg-section-heading,
	body.pg-custom .pg-cta-inner {
		text-align: center;
	}

	body.pg-custom .pg-eyebrow {
		justify-content: center;
	}

	body.pg-custom .pg-about-copy h2,
	body.pg-custom .pg-why-heading h2,
	body.pg-custom .pg-gallery-heading h2,
	body.pg-custom .pg-areas-copy h2,
	body.pg-custom .pg-contact-copy h2,
	body.pg-custom .pg-section-heading h2,
	body.pg-custom .pg-cta h2 {
		font-size: clamp(34px, 10vw, 45px);
	}

	body.pg-custom .pg-about-copy > p:not(.pg-eyebrow),
	body.pg-custom .pg-why-heading > p,
	body.pg-custom .pg-gallery-heading > div > p:not(.pg-eyebrow),
	body.pg-custom .pg-areas-copy > p:not(.pg-eyebrow),
	body.pg-custom .pg-contact-copy > p:not(.pg-eyebrow),
	body.pg-custom .pg-section-heading > p:not(.pg-eyebrow),
	body.pg-custom .pg-cta p:not(.pg-eyebrow) {
		font-size: 16px;
	}

	body.pg-custom .pg-about-media > img {
		height: 390px;
	}

	body.pg-custom .pg-about-badge {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 30px);
		margin: -46px auto 0;
		text-align: center;
	}

	body.pg-custom .pg-check-grid {
		grid-template-columns: minmax(0, 1fr);
		text-align: center;
	}

	body.pg-custom .pg-check-grid li {
		align-items: center;
		justify-content: center;
	}

	body.pg-custom .pg-services-grid,
	body.pg-custom .pg-why-grid,
	body.pg-custom .pg-process-grid,
	body.pg-custom .pg-gallery-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.pg-custom .pg-service-card-body,
	body.pg-custom .pg-why-card,
	body.pg-custom .pg-process-card {
		align-items: center;
		text-align: center;
	}

	body.pg-custom .pg-service-card-body {
		min-height: 0;
	}

	body.pg-custom .pg-process-card:not(:last-child)::after {
		display: none;
	}

	body.pg-custom .pg-gallery-heading {
		align-items: center;
		flex-direction: column;
	}

	body.pg-custom .pg-gallery-grid {
		grid-auto-rows: 330px;
	}

	body.pg-custom .pg-area-tags {
		justify-content: center;
	}

	body.pg-custom .pg-map-wrap iframe {
		height: 350px;
	}

	body.pg-custom .pg-cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	body.pg-custom .pg-faq-item button {
		align-items: flex-start;
		padding: 20px 18px;
		font-size: 18px;
	}

	body.pg-custom .pg-faq-answer {
		padding: 0 18px 20px;
		text-align: center;
	}

	body.pg-custom .pg-contact-list {
		text-align: left;
	}

	body.pg-custom .pg-contact-list > a,
	body.pg-custom .pg-contact-list > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	body.pg-custom .pg-contact-list strong {
		width: 100%;
		text-align: left;
	}

	body.pg-custom .pg-footer-grid,
	body.pg-custom .pg-footer-column,
	body.pg-custom .pg-footer-contact,
	body.pg-custom .pg-web-wizard-credit,
	body.pg-custom .pg-footer-bottom-inner {
		text-align: center;
	}

	body.pg-custom .pg-footer-column ul,
	body.pg-custom .pg-footer-legal {
		align-items: center;
	}

	body.pg-custom .pg-footer-legal {
		justify-content: center;
		flex-wrap: wrap;
	}


}

@media (max-width: 420px) {
	body.pg-custom .pg-container {
		width: min(calc(100% - 22px), var(--pg-container));
	}

	body.pg-custom .pg-brand-logo {
		width: 118px;
		height: 52px;
	}

	body.pg-custom .pg-menu-toggle {
		width: 44px;
		height: 44px;
	}

	body.pg-custom .pg-hero h1 {
		font-size: 40px;
	}

	body.pg-custom .pg-trust-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.pg-custom .pg-trust-item,
	body.pg-custom .pg-trust-item:nth-child(2n) {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	body.pg-custom .pg-trust-item:last-child {
		border-bottom: 0;
	}
}


/* ===================== JULY 2026 PRODUCTION REVISIONS ===================== */
body.pg-custom .pg-site-header {
	position: fixed;
	transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

body.pg-custom .pg-site-header.pg-is-scrolled {
	background: rgba(21, 28, 44, 0.96);
	box-shadow: 0 12px 34px rgba(8, 12, 22, 0.22);
	backdrop-filter: blur(14px);
}

body.pg-custom .pg-brand-logo,
body.pg-custom .pg-footer-brand img {
	height: auto;
	border-radius: 0;
	object-fit: contain;
}

body.pg-custom .pg-brand-logo {
	width: 178px;
	max-height: 76px;
}

body.pg-custom .pg-footer-brand img {
	width: 178px;
	max-height: 90px;
}

body.pg-custom .pg-nav-dropdown {
	position: relative;
	display: flex;
	align-items: center;
}

body.pg-custom .pg-nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.9);
	font-family: var(--pg-font-sans);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

body.pg-custom .pg-nav-dropdown-toggle span {
	color: var(--pg-gold-light);
	font-size: 15px;
	transition: transform 0.2s ease;
}

body.pg-custom .pg-nav-dropdown.pg-is-open .pg-nav-dropdown-toggle span {
	transform: rotate(180deg);
}

body.pg-custom .pg-nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	z-index: 1100;
	display: grid;
	width: 280px;
	padding: 10px;
	border: 1px solid rgba(209, 173, 88, 0.24);
	border-radius: 12px;
	background: rgba(251, 248, 240, 0.99);
	box-shadow: 0 22px 55px rgba(10, 15, 27, 0.28);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 10px);
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

body.pg-custom .pg-nav-dropdown.pg-is-open .pg-nav-dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

body.pg-custom .pg-desktop-nav .pg-nav-dropdown-menu a {
	padding: 10px 12px;
	border-radius: 7px;
	color: var(--pg-navy-deep);
	font-size: 13px;
	line-height: 1.35;
}

body.pg-custom .pg-desktop-nav .pg-nav-dropdown-menu a:hover,
body.pg-custom .pg-desktop-nav .pg-nav-dropdown-menu a:focus-visible {
	background: rgba(209, 173, 88, 0.15);
}

body.pg-custom .pg-desktop-nav .pg-nav-dropdown-menu a::after {
	display: none;
}

body.pg-custom .pg-desktop-nav .pg-nav-dropdown-menu .pg-nav-dropdown-all {
	margin-bottom: 4px;
	border-bottom: 1px solid rgba(21, 28, 44, 0.1);
	border-radius: 7px 7px 0 0;
	font-weight: 800;
}

body.pg-custom .pg-mobile-menu {
	overflow-y: auto;
}

body.pg-custom .pg-mobile-services {
	display: grid;
	gap: 8px;
}

body.pg-custom .pg-mobile-services-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 9px;
	border: 0;
	background: transparent;
	color: var(--pg-white);
	font-family: var(--pg-font-display);
	font-size: 27px;
	cursor: pointer;
}

body.pg-custom .pg-mobile-services-toggle span {
	color: var(--pg-gold-light);
	font-family: var(--pg-font-sans);
	font-size: 24px;
}

body.pg-custom .pg-mobile-services-list {
	display: grid;
	gap: 4px;
	padding: 8px 12px 13px;
	border: 1px solid rgba(209, 173, 88, 0.2);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
}

body.pg-custom .pg-mobile-services-list[hidden] {
	display: none;
}

body.pg-custom .pg-mobile-services-list a {
	padding: 7px 10px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
}

body.pg-custom .pg-hero {
	background: var(--pg-navy-deep) var(--pg-hero-image) center / cover no-repeat;
}

body.pg-custom .pg-hero-trust {
	margin-top: 48px;
}

body.pg-custom .pg-main [id] {
	scroll-margin-top: 150px;
}

body.pg-custom #bathrooms,
body.pg-custom #kitchens,
body.pg-custom #refurbishments,
body.pg-custom #gardens,
body.pg-custom #extensions,
body.pg-custom #finishing {
	scroll-margin-top: 150px;
}

body.pg-custom .pg-about-copy > .pg-button {
	margin-top: 32px;
}

body.pg-custom .pg-section-cta {
	display: flex;
	justify-content: center;
	margin-top: 46px;
	text-align: center;
}

body.pg-custom .pg-gallery-grid {
	grid-auto-rows: 300px;
}

body.pg-custom .pg-gallery-item {
	display: block;
	border: 0;
	cursor: zoom-in;
	text-align: left;
}

body.pg-custom .pg-gallery-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: block;
	padding: 25px;
	color: var(--pg-white);
}

body.pg-custom .pg-gallery-caption > span {
	display: block;
	color: var(--pg-gold-light);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

body.pg-custom .pg-gallery-caption > strong {
	display: block;
	margin-top: 5px;
	font-family: var(--pg-font-display);
	font-size: 22px;
	line-height: 1.2;
}

body.pg-custom .pg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 12000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(6, 10, 18, 0.94);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

body.pg-custom .pg-lightbox.pg-is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

body.pg-custom .pg-lightbox-image {
	display: block;
	max-width: min(94vw, 1500px);
	max-height: 88vh;
	object-fit: contain;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

body.pg-custom .pg-lightbox-close {
	position: fixed;
	top: 20px;
	right: 24px;
	z-index: 2;
	display: flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: rgba(21, 28, 44, 0.8);
	color: var(--pg-white);
	font-size: 34px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

body.pg-custom.pg-lightbox-open {
	overflow: hidden;
}

body.pg-custom .grecaptcha-badge {
	position: fixed !important;
	top: auto !important;
	right: 12px !important;
	bottom: 94px !important;
	left: auto !important;
	z-index: 9998 !important;
	margin: 0 !important;
	transform: none !important;
}

/* Exact Platinum Ground Care floating contact widget structure. */
body.pg-custom .pg-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

body.pg-custom .pg-float__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

body.pg-custom .pg-float.pg-open .pg-float__channels {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.pg-custom .pg-float__channel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

body.pg-custom .pg-float__channel:hover {
  transform: scale(1.1);
}

body.pg-custom .pg-float__channel--whatsapp { background: #25D366; }
body.pg-custom .pg-float__channel--phone { background: #2196F3; }
body.pg-custom .pg-float__channel--email { background: #C5A55A; }

body.pg-custom .pg-float__label {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: #1C2418;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.pg-custom .pg-float__channel:hover .pg-float__label {
  opacity: 1;
}

body.pg-custom .pg-float__main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #C5A55A;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(197,165,90,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

body.pg-custom .pg-float__main:hover {
  background: #B8933D;
}

body.pg-custom .pg-float__main svg {
  transition: transform 0.3s ease;
}

body.pg-custom .pg-float.pg-open .pg-float__main svg {
  transform: rotate(90deg);
}

body.pg-custom .pg-float__main-icon-chat,
body.pg-custom .pg-float__main-icon-close {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.pg-custom .pg-float__main-icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

body.pg-custom .pg-float.pg-open .pg-float__main-icon-chat {
  opacity: 0;
  transform: rotate(90deg);
}

body.pg-custom .pg-float.pg-open .pg-float__main-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

@media (min-width: 1024px) {
	body.pg-custom .pg-hero,
	body.pg-custom .pg-cta {
		background-attachment: fixed;
	}
}

@media (max-width: 900px) {
	body.pg-custom .pg-main [id],
	body.pg-custom #bathrooms,
	body.pg-custom #kitchens,
	body.pg-custom #refurbishments,
	body.pg-custom #gardens,
	body.pg-custom #extensions,
	body.pg-custom #finishing {
		scroll-margin-top: 104px;
	}
}

@media (max-width: 768px) {
  body.pg-custom .pg-float {
    bottom: 16px;
    right: 16px;
  }

  body.pg-custom .pg-hero {
	background-image: var(--pg-hero-mobile-image);
	background-attachment: scroll;
  }

  body.pg-custom .pg-trust-strip {
	display: none;
  }

  body.pg-custom .pg-gallery-grid {
	grid-auto-rows: 320px;
  }

  body.pg-custom .pg-lightbox {
	padding: 18px;
  }

  body.pg-custom .pg-lightbox-close {
	top: 12px;
	right: 12px;
  }

  body.pg-custom .grecaptcha-badge {
	right: 6px !important;
	bottom: 82px !important;
  }
}

/* ===================== FINAL CLIENT REVISION BATCH ===================== */
body.pg-custom {
	margin-top: 0 !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}

body.pg-custom .pg-main,
body.pg-custom .pg-hero {
	margin-top: 0 !important;
	border-top: 0 !important;
}

body.pg-custom:not(.admin-bar) .pg-site-header {
	top: 0 !important;
}

body.admin-bar.pg-custom .pg-site-header {
	top: 32px !important;
}

body.pg-custom .pg-brand-logo {
	width: auto !important;
	height: 76px !important;
	max-width: 178px;
	max-height: none;
	object-fit: contain;
}

body.pg-custom .pg-footer-brand img {
	width: auto !important;
	height: 118px !important;
	max-width: 190px;
	max-height: none;
	object-fit: contain;
}

body.pg-custom .grecaptcha-badge {
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

body.pg-custom .pg-recaptcha-note {
	margin: 9px 0 0;
	color: #9a9a9a;
	font-size: 10px;
	line-height: 1.35;
	text-align: center;
}

@media (min-width: 769px) {
	body.pg-custom .pg-hero-actions {
		margin-bottom: 60px;
	}

	body.pg-custom .pg-hero-trust {
		margin-top: 0;
	}
}

@media (max-width: 782px) {
	body.admin-bar.pg-custom .pg-site-header {
		top: 46px !important;
	}
}

@media (max-width: 767px) {
	body.pg-custom .pg-brand-logo {
		height: 62px !important;
		max-width: 132px;
	}

	body.pg-custom .pg-footer-brand img {
		height: 104px !important;
		max-width: 170px;
	}
}

@media (max-width: 420px) {
	body.pg-custom .pg-brand-logo {
		height: 56px !important;
		max-width: 118px;
	}
}

/* ===================== INNER PAGE SYSTEM ===================== */
body.pg-custom .pg-inner-hero {
	position: relative;
	display: flex;
	min-height: 650px;
	align-items: center;
	overflow: hidden;
	padding: 176px 0 92px;
	background: var(--pg-inner-hero-image) center / cover no-repeat;
	color: var(--pg-white);
}

body.pg-custom .pg-inner-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(21, 28, 44, 0.96) 0%, rgba(21, 28, 44, 0.78) 52%, rgba(21, 28, 44, 0.35) 100%),
		linear-gradient(0deg, rgba(21, 28, 44, 0.58), rgba(21, 28, 44, 0.08));
}

body.pg-custom .pg-inner-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1080px;
}

body.pg-custom .pg-inner-hero h1 {
	max-width: 960px;
	margin-top: 24px;
	color: var(--pg-white);
	font-size: clamp(48px, 6vw, 78px);
}

body.pg-custom .pg-inner-hero-description {
	max-width: 780px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(18px, 1.7vw, 21px);
	line-height: 1.72;
}

body.pg-custom .pg-inner-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

body.pg-custom .pg-inner-hero-trust {
	display: grid;
	max-width: 1000px;
	margin-top: 38px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px 28px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 14px;
}

body.pg-custom .pg-inner-hero-trust li {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	gap: 9px;
}

body.pg-custom .pg-inner-hero-trust span {
	color: var(--pg-gold-light);
	font-weight: 800;
}

body.pg-custom .pg-inner-split,
body.pg-custom .pg-inner-areas,
body.pg-custom .pg-contact-map-section {
	background: var(--pg-white);
}

body.pg-custom .pg-inner-split-grid,
body.pg-custom .pg-inner-areas-grid,
body.pg-custom .pg-gallery-intro-grid,
body.pg-custom .pg-contact-map-grid {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(52px, 7vw, 96px);
}

body.pg-custom .pg-inner-copy h2,
body.pg-custom .pg-contact-page-details h2,
body.pg-custom .pg-service-detail-copy h2 {
	margin-top: 18px;
	color: var(--pg-navy-deep);
	font-size: clamp(38px, 4vw, 56px);
}

body.pg-custom .pg-inner-copy > p:not(.pg-eyebrow),
body.pg-custom .pg-contact-page-details > p,
body.pg-custom .pg-service-detail-copy > p {
	margin-top: 20px;
	color: var(--pg-muted);
	font-size: 17px;
	line-height: 1.78;
}

body.pg-custom .pg-inner-copy .pg-button,
body.pg-custom .pg-contact-page-details .pg-button,
body.pg-custom .pg-service-detail-copy .pg-button {
	margin-top: 30px;
}

body.pg-custom .pg-inner-image-card {
	position: relative;
	min-width: 0;
}

body.pg-custom .pg-inner-image-card > img {
	width: 100%;
	height: 610px;
	border-radius: var(--pg-radius);
	object-fit: cover;
	box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-inner-image-card-landscape > img {
	height: 480px;
}

body.pg-custom .pg-inner-image-badge {
	position: absolute;
	right: -20px;
	bottom: -24px;
	display: flex;
	width: 220px;
	min-height: 130px;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 24px;
	border: 1px solid rgba(209, 173, 88, 0.22);
	border-radius: 14px;
	background: var(--pg-navy-deep);
	box-shadow: var(--pg-shadow);
	color: var(--pg-white);
}

body.pg-custom .pg-inner-image-badge strong {
	color: var(--pg-gold-light);
	font-family: var(--pg-font-display);
	font-size: 42px;
	line-height: 1;
}

body.pg-custom .pg-inner-image-badge span {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.5;
}

body.pg-custom .pg-inner-dark {
	background: linear-gradient(145deg, var(--pg-navy-deep), var(--pg-navy));
	color: var(--pg-white);
}

body.pg-custom .pg-inner-service-grid {
	display: grid;
	margin-top: 54px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

body.pg-custom .pg-inner-service-grid article {
	display: flex;
	min-height: 190px;
	align-items: flex-start;
	justify-content: flex-end;
	flex-direction: column;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.045);
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body.pg-custom .pg-inner-service-grid article:hover {
	border-color: rgba(209, 173, 88, 0.55);
	background: rgba(255, 255, 255, 0.075);
	transform: translateY(-4px);
}

body.pg-custom .pg-inner-service-grid article > span {
	color: var(--pg-gold-light);
	font-family: var(--pg-font-script);
	font-size: 34px;
}

body.pg-custom .pg-inner-service-grid article > strong {
	margin-top: 12px;
	color: var(--pg-white);
	font-family: var(--pg-font-display);
	font-size: 23px;
	line-height: 1.2;
}

body.pg-custom .pg-inner-service-grid article > small {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
}


body.pg-custom .pg-inner-service-grid article > a {
	margin-top: 18px;
	color: var(--pg-gold-light);
	font-size: 13px;
	font-weight: 700;
}

body.pg-custom .pg-service-detail {
	padding-block: clamp(82px, 8vw, 126px);
	background: var(--pg-white);
	scroll-margin-top: 126px;
}

body.pg-custom .pg-service-detail-alt {
	background: var(--pg-cream);
}

body.pg-custom .pg-service-detail-grid {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(52px, 7vw, 96px);
}

body.pg-custom .pg-service-detail-alt .pg-service-detail-media {
	order: 2;
}

body.pg-custom .pg-service-detail-alt .pg-service-detail-copy {
	order: 1;
}

body.pg-custom .pg-service-detail-media img {
	width: 100%;
	height: 520px;
	border-radius: var(--pg-radius);
	object-fit: cover;
	box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-check-list {
	display: grid;
	gap: 12px;
	margin-top: 26px;
}

body.pg-custom .pg-check-list li {
	position: relative;
	padding-left: 29px;
	color: var(--pg-navy);
	font-weight: 600;
}

body.pg-custom .pg-check-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--pg-gold-dark);
	content: "✓";
	font-weight: 800;
}

body.pg-custom .pg-gallery-intro {
	background: var(--pg-white);
}

body.pg-custom .pg-social-actions,
body.pg-custom .pg-contact-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 28px;
}

body.pg-custom .pg-gallery-stat-panel {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

body.pg-custom .pg-gallery-stat-panel > div {
	display: flex;
	min-height: 180px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--pg-border);
	border-radius: 14px;
	background: var(--pg-cream);
	text-align: center;
}

body.pg-custom .pg-gallery-stat-panel strong {
	color: var(--pg-gold-dark);
	font-family: var(--pg-font-display);
	font-size: 44px;
	line-height: 1;
}

body.pg-custom .pg-gallery-stat-panel span {
	margin-top: 12px;
	color: var(--pg-muted);
	font-size: 13px;
	line-height: 1.5;
}

body.pg-custom .pg-gallery-page-section {
	background: var(--pg-cream);
}

body.pg-custom .pg-gallery-filter-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 34px;
}

body.pg-custom .pg-gallery-filter-links a {
	padding: 9px 14px;
	border: 1px solid var(--pg-border);
	border-radius: 999px;
	background: var(--pg-white);
	color: var(--pg-navy);
	font-size: 13px;
	font-weight: 700;
}

body.pg-custom .pg-gallery-page-group {
	margin-top: 64px;
	scroll-margin-top: 126px;
}

body.pg-custom .pg-gallery-page-group > h3 {
	color: var(--pg-navy-deep);
	font-size: clamp(30px, 3vw, 42px);
}

body.pg-custom .pg-gallery-page-grid {
	display: grid;
	margin-top: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

body.pg-custom .pg-gallery-page-item {
	position: relative;
	min-width: 0;
	height: 320px;
	overflow: hidden;
	border-radius: var(--pg-radius);
	background: var(--pg-navy-deep);
}

body.pg-custom .pg-gallery-page-item::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(21, 28, 44, 0.92), rgba(21, 28, 44, 0.03) 65%);
	content: "";
}

body.pg-custom .pg-gallery-page-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

body.pg-custom .pg-gallery-page-item:hover img,
body.pg-custom .pg-gallery-page-item:focus-visible img {
	transform: scale(1.04);
}

body.pg-custom .pg-gallery-page-item > span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: block;
	padding: 22px;
	color: var(--pg-white);
}

body.pg-custom .pg-gallery-page-item small {
	display: block;
	color: var(--pg-gold-light);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

body.pg-custom .pg-gallery-page-item strong {
	display: block;
	margin-top: 4px;
	font-family: var(--pg-font-display);
	font-size: 21px;
	line-height: 1.2;
}

body.pg-custom .pg-gallery-standard {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(50px, 7vw, 92px);
}

body.pg-custom .pg-gallery-standard h2 {
	margin-top: 18px;
	color: var(--pg-white);
	font-size: clamp(38px, 4vw, 56px);
}

body.pg-custom .pg-gallery-standard p:not(.pg-eyebrow) {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 17px;
	line-height: 1.76;
}

body.pg-custom .pg-gallery-standard .pg-button {
	margin-top: 28px;
}

body.pg-custom .pg-gallery-standard-list {
	display: grid;
	gap: 14px;
}

body.pg-custom .pg-gallery-standard-list li {
	padding: 22px 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.045);
}

body.pg-custom .pg-gallery-standard-list strong {
	display: block;
	color: var(--pg-gold-light);
	font-family: var(--pg-font-display);
	font-size: 21px;
}

body.pg-custom .pg-gallery-standard-list span {
	display: block;
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.6;
}

body.pg-custom .pg-contact-page {
	background: var(--pg-cream);
}

body.pg-custom .pg-contact-page-grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
	gap: clamp(52px, 7vw, 94px);
}

body.pg-custom .pg-contact-page-details > p {
	margin-top: 20px;
}

body.pg-custom .pg-contact-page .pg-form-shell {
	background: var(--pg-white);
}

body.pg-custom .pg-contact-map-section {
	background: var(--pg-white);
}

@media (min-width: 1024px) {
	body.pg-custom .pg-inner-hero {
		background-attachment: fixed;
	}
}

@media (max-width: 1020px) {
	body.pg-custom .pg-inner-service-grid,
	body.pg-custom .pg-gallery-page-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.pg-custom .pg-inner-hero-trust {
		grid-template-columns: minmax(0, 1fr);
	}

	body.pg-custom .pg-gallery-stat-panel {
		grid-template-columns: minmax(0, 1fr);
	}

	body.pg-custom .pg-gallery-stat-panel > div {
		min-height: 130px;
	}
}

@media (max-width: 900px) {
	body.pg-custom .pg-inner-hero {
		min-height: auto;
		padding: 142px 0 76px;
		background-attachment: scroll;
	}

	body.pg-custom .pg-inner-hero-content,
	body.pg-custom .pg-inner-copy,
	body.pg-custom .pg-service-detail-copy,
	body.pg-custom .pg-contact-page-details,
	body.pg-custom .pg-gallery-standard > div {
		text-align: center;
	}

	body.pg-custom .pg-inner-hero h1 {
		margin-inline: auto;
		font-size: clamp(42px, 11vw, 58px);
	}

	body.pg-custom .pg-inner-hero-description {
		margin-inline: auto;
		font-size: 17px;
	}

	body.pg-custom .pg-inner-hero-actions,
	body.pg-custom .pg-social-actions,
	body.pg-custom .pg-contact-socials {
		justify-content: center;
	}

	body.pg-custom .pg-inner-hero-trust li {
		justify-content: center;
	}

	body.pg-custom .pg-inner-split-grid,
	body.pg-custom .pg-inner-areas-grid,
	body.pg-custom .pg-gallery-intro-grid,
	body.pg-custom .pg-contact-map-grid,
	body.pg-custom .pg-service-detail-grid,
	body.pg-custom .pg-gallery-standard,
	body.pg-custom .pg-contact-page-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.pg-custom .pg-service-detail-alt .pg-service-detail-media,
	body.pg-custom .pg-service-detail-alt .pg-service-detail-copy {
		order: initial;
	}

	body.pg-custom .pg-service-detail-media {
		order: 1;
	}

	body.pg-custom .pg-service-detail-copy {
		order: 2;
	}

	body.pg-custom .pg-inner-image-card {
		order: -1;
	}

	body.pg-custom .pg-inner-image-card > img,
	body.pg-custom .pg-inner-image-card-landscape > img,
	body.pg-custom .pg-service-detail-media img {
		height: min(72vw, 520px);
	}

	body.pg-custom .pg-inner-image-badge {
		right: 14px;
		bottom: -20px;
	}

	body.pg-custom .pg-check-list li {
		padding-left: 0;
		text-align: center;
	}

	body.pg-custom .pg-check-list li::before {
		position: static;
		margin-right: 8px;
	}
}

@media (max-width: 640px) {
	body.pg-custom .pg-inner-hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	body.pg-custom .pg-inner-service-grid,
	body.pg-custom .pg-gallery-page-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.pg-custom .pg-inner-service-grid article {
		min-height: 160px;
		text-align: center;
	}

	body.pg-custom .pg-gallery-page-item {
		height: 330px;
	}

	body.pg-custom .pg-inner-image-badge {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		min-height: auto;
		margin-top: 14px;
		align-items: center;
		text-align: center;
	}

	body.pg-custom .pg-contact-page-grid {
		gap: 38px;
	}
}

@media (max-width: 640px) {
	body.pg-custom .pg-inner-service-grid article {
		align-items: center;
	}

	body.pg-custom .pg-gallery-page-group > h3 {
		text-align: center;
	}
}

/* ===================== AUGUST 2026 FINAL REVISIONS ===================== */
body.pg-custom .pg-inner-hero-trust {
	margin-top: 54px;
}

body.pg-custom .pg-check-list {
	margin-top: 40px;
}

body.pg-custom .pg-home-reviews {
	padding: 30px 0;
	border-bottom: 1px solid var(--pg-border);
	background: var(--pg-white);
}

body.pg-custom .pg-home-reviews > .pg-container {
	max-width: 1120px;
}

/* Keep the mobile navigation pinned to the viewport, even after scrolling. */
body.pg-custom .pg-mobile-menu {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100vh;
	height: 100dvh;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 104px 20px 32px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

body.pg-custom .pg-mobile-menu-inner {
	margin: 0 auto;
	padding-bottom: 42px;
}

body.pg-custom.pg-menu-open .pg-site-header {
	z-index: 10010;
}

body.pg-custom.pg-menu-open .pg-float {
	z-index: 9998;
}

/* Contact-page conversion layout: compact hero and earlier form. */
body.pg-custom .pg-contact-hero {
	min-height: 470px;
	padding: 138px 0 54px;
}

body.pg-custom .pg-contact-page {
	padding-top: 44px;
	padding-bottom: clamp(76px, 8vw, 112px);
}

body.pg-custom .pg-contact-form {
	align-self: start;
}

/* Legal pages */
body.pg-custom .pg-legal-hero {
	position: relative;
	display: flex;
	min-height: 380px;
	align-items: center;
	padding: 156px 0 72px;
	background:
		radial-gradient(circle at 82% 10%, rgba(209, 173, 88, 0.18), transparent 34%),
		linear-gradient(145deg, var(--pg-navy-deep), var(--pg-navy));
	color: var(--pg-white);
}

body.pg-custom .pg-legal-hero-inner {
	max-width: 920px;
}

body.pg-custom .pg-legal-hero h1 {
	margin-top: 22px;
	color: var(--pg-white);
	font-size: clamp(46px, 6vw, 74px);
}

body.pg-custom .pg-legal-hero p:not(.pg-hero-badge) {
	max-width: 760px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 19px;
	line-height: 1.7;
}

body.pg-custom .pg-legal-content {
	padding: clamp(70px, 8vw, 112px) 0;
	background: var(--pg-cream);
}

body.pg-custom .pg-legal-card {
	max-width: 980px;
	padding: clamp(30px, 5vw, 66px);
	border: 1px solid var(--pg-border);
	border-radius: var(--pg-radius);
	background: var(--pg-white);
	box-shadow: 0 24px 70px rgba(15, 22, 38, 0.08);
}

body.pg-custom .pg-legal-card .pg-legal-updated {
	margin-top: 0;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--pg-border);
	color: var(--pg-muted);
	font-size: 14px;
}

body.pg-custom .pg-legal-card h2 {
	margin-top: 46px;
	color: var(--pg-navy-deep);
	font-size: clamp(29px, 3vw, 40px);
}

body.pg-custom .pg-legal-card h3 {
	margin-top: 30px;
	color: var(--pg-navy-deep);
	font-size: 23px;
}

body.pg-custom .pg-legal-card p,
body.pg-custom .pg-legal-card li,
body.pg-custom .pg-legal-card address {
	color: var(--pg-muted);
	font-size: 16px;
	line-height: 1.78;
}

body.pg-custom .pg-legal-card p,
body.pg-custom .pg-legal-card address {
	margin-top: 18px;
}

body.pg-custom .pg-legal-card address {
	font-style: normal;
}

body.pg-custom .pg-legal-card ul {
	display: grid;
	gap: 10px;
	margin-top: 20px;
	padding-left: 24px;
	list-style: disc;
}

body.pg-custom .pg-legal-card a {
	color: var(--pg-gold-dark);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 900px) {
	body.pg-custom .pg-contact-hero {
		min-height: auto;
		padding: 126px 0 48px;
	}

	body.pg-custom .pg-contact-page {
		padding-top: 28px;
	}

	body.pg-custom .pg-contact-form {
		order: -1;
	}

	body.pg-custom .pg-contact-page-details {
		order: 2;
	}

	body.pg-custom .pg-legal-hero-inner,
	body.pg-custom .pg-legal-card {
		text-align: center;
	}

	body.pg-custom .pg-legal-hero p:not(.pg-hero-badge) {
		margin-inline: auto;
	}

	body.pg-custom .pg-legal-card ul {
		text-align: left;
	}
}

@media (max-width: 640px) {
	body.pg-custom .pg-inner-hero-trust {
		margin-top: 44px;
	}

	body.pg-custom .pg-check-list {
		margin-top: 34px;
	}

	body.pg-custom .pg-home-reviews {
		padding: 22px 0;
	}

	body.pg-custom .pg-contact-hero {
		padding: 114px 0 38px;
	}

	body.pg-custom .pg-contact-hero h1 {
		margin-top: 18px;
		font-size: clamp(36px, 10.5vw, 46px);
	}

	body.pg-custom .pg-contact-hero .pg-inner-hero-description {
		margin-top: 16px;
		font-size: 16px;
		line-height: 1.58;
	}

	body.pg-custom .pg-contact-hero .pg-inner-hero-actions {
		margin-top: 22px;
	}

	body.pg-custom .pg-contact-hero .pg-inner-hero-trust {
		display: none;
	}

	body.pg-custom .pg-contact-page {
		padding-top: 20px;
	}

	body.pg-custom .pg-legal-hero {
		min-height: 330px;
		padding: 132px 0 58px;
		text-align: center;
	}

	body.pg-custom .pg-legal-hero h1 {
		font-size: 44px;
	}

	body.pg-custom .pg-legal-hero p:not(.pg-hero-badge) {
		font-size: 16px;
	}

	body.pg-custom .pg-legal-card {
		padding: 28px 22px;
		text-align: left;
	}

	body.pg-custom .pg-legal-card h2 {
		margin-top: 38px;
		font-size: 30px;
	}
}


/* ===================== LONDON POSITIONING / CONTACT FINAL ===================== */
body.pg-custom .pg-areas-grid-single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 920px;
	text-align: center;
}

body.pg-custom .pg-areas-grid-single .pg-area-tags {
	justify-content: center;
}

body.pg-custom .pg-contact-service-area {
	background: var(--pg-white);
}

body.pg-custom .pg-contact-service-area-inner {
	max-width: 860px;
	text-align: center;
}

body.pg-custom .pg-contact-service-area-inner h2 {
	margin-top: 18px;
	color: var(--pg-navy-deep);
	font-size: clamp(38px, 4vw, 56px);
}

body.pg-custom .pg-contact-service-area-inner > p:not(.pg-eyebrow) {
	margin-top: 20px;
	color: var(--pg-muted);
	font-size: 17px;
	line-height: 1.78;
}

body.pg-custom .pg-contact-hero {
	min-height: 390px;
	padding: 128px 0 38px;
}

body.pg-custom .pg-contact-page {
	padding-top: 24px;
}

@media (max-width: 900px) {
	body.pg-custom .pg-contact-hero {
		padding: 112px 0 32px;
	}

	body.pg-custom .pg-contact-page {
		padding-top: 18px;
	}
}

@media (max-width: 640px) {
	body.pg-custom .pg-contact-hero {
		padding: 104px 0 24px;
	}
}
