body.pg-custom {
  --pg-ink: #2b1b13;
  --pg-ink-soft: #5d4a3d;
  --pg-dark: #321f15;
  --pg-dark-2: #24140e;
  --pg-cream: #fbf8f2;
  --pg-cream-2: #f3ebe2;
  --pg-card: #ffffff;
  --pg-line: #e6d9ca;
  --pg-gold: #c78c2f;
  --pg-gold-2: #e3ad4c;
  --pg-muted: #76685f;
  --pg-white: #ffffff;
  --pg-green: #176b50;
  --pg-radius: 8px;
  --pg-shadow-soft: 0 12px 35px rgba(43, 27, 19, 0.09);
  --pg-shadow-deep: 0 25px 70px rgba(43, 27, 19, 0.24);
  --pg-font-body: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pg-font-serif: 'Cormorant Garamond', Georgia, serif;
  margin: 0;
  background: var(--pg-cream);
  color: var(--pg-ink);
  font-family: var(--pg-font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body.pg-custom a {
  color: inherit;
  text-decoration: none;
}

body.pg-custom img,
body.pg-custom iframe {
  max-width: 100%;
}

body.pg-custom img {
  display: block;
  height: auto;
}

body.pg-custom .pg-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

body.pg-custom .pg-narrow {
  width: min(860px, calc(100% - 40px));
}

body.pg-custom .pg-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--pg-white);
  color: var(--pg-ink);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--pg-shadow-soft);
}

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

body.pg-custom .pg-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}

body.pg-custom .pg-site-header.pg-scrolled,
body.pg-custom .pg-site-header.pg-menu-open {
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(16px);
  border-color: rgba(70, 45, 30, 0.12);
  box-shadow: 0 10px 30px rgba(43, 27, 19, 0.08);
}

body.pg-custom .pg-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

body.pg-custom .pg-logo {
  width: auto;
  object-fit: contain;
  transition: opacity 220ms ease, transform 220ms ease, height 220ms ease;
}

body.pg-custom .pg-logo-light {
  height: 58px;
}

body.pg-custom .pg-logo-dark {
  height: 52px;
  display: none;
}

body.pg-custom .pg-site-header.pg-scrolled .pg-logo-light,
body.pg-custom .pg-site-header.pg-menu-open .pg-logo-light {
  display: none;
}

body.pg-custom .pg-site-header.pg-scrolled .pg-logo-dark,
body.pg-custom .pg-site-header.pg-menu-open .pg-logo-dark {
  display: block;
}

body.pg-custom .pg-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

body.pg-custom .pg-site-header.pg-scrolled .pg-desktop-nav,
body.pg-custom .pg-site-header.pg-menu-open .pg-desktop-nav {
  color: var(--pg-ink);
}

body.pg-custom .pg-desktop-nav a {
  position: relative;
  padding: 12px 0;
}

body.pg-custom .pg-desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pg-gold);
  transition: transform 180ms ease;
}

body.pg-custom .pg-desktop-nav a:hover::after {
  transform: scaleX(1);
}

body.pg-custom .pg-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

body.pg-custom .pg-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

body.pg-custom .pg-site-header.pg-scrolled .pg-header-phone,
body.pg-custom .pg-site-header.pg-menu-open .pg-header-phone {
  color: var(--pg-ink);
}

body.pg-custom .pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

body.pg-custom .pg-btn:hover {
  transform: translateY(-1px);
}

body.pg-custom .pg-btn-small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 13px;
}

body.pg-custom .pg-btn-gold {
  background: linear-gradient(135deg, var(--pg-gold), var(--pg-gold-2));
  color: var(--pg-white);
  box-shadow: 0 12px 32px rgba(199, 140, 47, 0.34);
}

body.pg-custom .pg-btn-dark {
  background: var(--pg-dark);
  color: var(--pg-white);
}

body.pg-custom .pg-site-header:not(.pg-scrolled):not(.pg-menu-open) .pg-header-actions .pg-btn-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

body.pg-custom .pg-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pg-white);
  border-color: rgba(255, 255, 255, 0.26);
}

body.pg-custom .pg-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--pg-white);
  align-items: center;
  justify-content: center;
  position: relative;
}

body.pg-custom .pg-site-header.pg-scrolled .pg-menu-toggle,
body.pg-custom .pg-site-header.pg-menu-open .pg-menu-toggle {
  color: var(--pg-ink);
  background: rgba(43, 27, 19, 0.05);
  border-color: rgba(43, 27, 19, 0.16);
}

body.pg-custom .pg-menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

body.pg-custom .pg-menu-icon,
body.pg-custom .pg-menu-icon::before,
body.pg-custom .pg-menu-icon::after {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.pg-custom .pg-menu-icon::before,
body.pg-custom .pg-menu-icon::after {
  content: '';
  position: absolute;
}

body.pg-custom .pg-menu-icon::before {
  transform: translateY(-7px);
}

body.pg-custom .pg-menu-icon::after {
  transform: translateY(7px);
}

body.pg-custom .pg-menu-toggle[aria-expanded='true'] .pg-menu-icon {
  background: transparent;
}

body.pg-custom .pg-menu-toggle[aria-expanded='true'] .pg-menu-icon::before {
  transform: rotate(45deg);
}

body.pg-custom .pg-menu-toggle[aria-expanded='true'] .pg-menu-icon::after {
  transform: rotate(-45deg);
}

body.pg-custom .pg-mobile-menu {
  background: var(--pg-cream);
  border-top: 1px solid var(--pg-line);
  box-shadow: 0 18px 40px rgba(43, 27, 19, 0.12);
}

body.pg-custom .pg-mobile-nav {
  width: min(520px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: grid;
  gap: 8px;
  text-align: center;
}

body.pg-custom .pg-mobile-nav a:not(.pg-btn) {
  padding: 13px 10px;
  font-weight: 700;
  color: var(--pg-ink);
  border-bottom: 1px solid rgba(43, 27, 19, 0.08);
}

body.pg-custom .pg-main {
  overflow: hidden;
}

body.pg-custom .pg-hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 126px 0 54px;
  color: var(--pg-white);
  isolation: isolate;
}

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

body.pg-custom .pg-hero-media {
  z-index: -2;
  background: var(--pg-dark-2);
}

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

body.pg-custom .pg-hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 50%, rgba(55, 33, 22, 0.52), transparent 40%),
    linear-gradient(90deg, rgba(30, 18, 12, 0.92) 0%, rgba(38, 23, 15, 0.78) 48%, rgba(38, 23, 15, 0.46) 100%);
}

body.pg-custom .pg-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 64px;
}

body.pg-custom .pg-hero-copy {
  max-width: 710px;
}

body.pg-custom .pg-eyebrow,
body.pg-custom .pg-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 800;
  color: var(--pg-gold);
}

body.pg-custom .pg-eyebrow {
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 999px;
}

body.pg-custom .pg-eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--pg-gold-2);
  border-radius: 50%;
}

body.pg-custom .pg-hero h1,
body.pg-custom .pg-section h2,
body.pg-custom .pg-cta-content h2,
body.pg-custom .pg-form-intro h2,
body.pg-custom .pg-site-footer h2 {
  font-family: var(--pg-font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

body.pg-custom .pg-hero h1 {
  margin-top: 24px;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.88;
  max-width: 760px;
  text-wrap: balance;
}

body.pg-custom .pg-hero h1 em {
  display: block;
  color: var(--pg-gold-2);
  font-style: italic;
}

body.pg-custom .pg-hero-text {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
  text-wrap: balance;
}

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

body.pg-custom .pg-mobile-only-inline {
  display: none;
}

body.pg-custom .pg-hero-trust {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

body.pg-custom .pg-hero-trust span {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.45;
  padding-left: 18px;
}

body.pg-custom .pg-hero-trust span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pg-gold);
}

body.pg-custom .pg-form-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--pg-ink);
  border: 1px solid rgba(43, 27, 19, 0.12);
  border-radius: 10px;
  box-shadow: var(--pg-shadow-deep);
  padding: clamp(24px, 3vw, 34px);
  min-width: 0;
}

body.pg-custom .pg-form-intro {
  margin-bottom: 18px;
}

body.pg-custom .pg-form-intro p {
  margin: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pg-gold);
  font-size: 12px;
  font-weight: 900;
}

body.pg-custom .pg-form-intro h2 {
  font-size: 30px;
  line-height: 1;
}

body.pg-custom .pg-form-intro span {
  display: block;
  margin-top: 7px;
  color: var(--pg-muted);
  font-size: 14px;
}

body.pg-custom .pg-form-card .elementor,
body.pg-custom .pg-form-card .elementor-section,
body.pg-custom .pg-form-card .elementor-container,
body.pg-custom .pg-form-card .elementor-column,
body.pg-custom .pg-form-card .elementor-widget-wrap {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.pg-custom .pg-form-card input,
body.pg-custom .pg-form-card select,
body.pg-custom .pg-form-card textarea,
body.pg-custom .pg-form-card .elementor-field {
  border-radius: 4px !important;
  border-color: rgba(43, 27, 19, 0.16) !important;
  box-shadow: none !important;
}

body.pg-custom .pg-form-card button,
body.pg-custom .pg-form-card input[type='submit'],
body.pg-custom .pg-form-card .elementor-button {
  background: linear-gradient(135deg, var(--pg-gold), var(--pg-gold-2)) !important;
  color: var(--pg-white) !important;
  border-radius: 4px !important;
  border: 0 !important;
  font-weight: 800 !important;
}

body.pg-custom .pg-recaptcha-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--pg-muted);
  font-size: 11px;
  line-height: 1.4;
}

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

body.pg-custom .pg-trust-strip {
  background: var(--pg-card);
  border-bottom: 1px solid var(--pg-line);
}

body.pg-custom .pg-trust-strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

body.pg-custom .pg-rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body.pg-custom .pg-stars {
  color: var(--pg-gold);
  letter-spacing: 1px;
  font-size: 17px;
  white-space: nowrap;
}

body.pg-custom .pg-rating-summary p {
  margin: 0;
  color: var(--pg-ink-soft);
  font-size: 14px;
}

body.pg-custom .pg-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

body.pg-custom .pg-trust-badges span {
  border: 1px solid var(--pg-line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--pg-ink-soft);
  background: var(--pg-cream);
  font-size: 12px;
  font-weight: 800;
}

body.pg-custom .pg-section {
  padding: clamp(74px, 9vw, 120px) 0;
  position: relative;
}

body.pg-custom .pg-section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

body.pg-custom .pg-section-head-centered {
  text-align: center;
  margin-inline: auto;
}

body.pg-custom .pg-section-head h2,
body.pg-custom .pg-split-copy h2,
body.pg-custom .pg-gallery-head h2,
body.pg-custom .pg-contact-copy h2 {
  margin-top: 10px;
  font-size: clamp(39px, 5vw, 64px);
  line-height: 0.98;
  text-wrap: balance;
}

body.pg-custom .pg-section-head p:not(.pg-kicker),
body.pg-custom .pg-split-copy p,
body.pg-custom .pg-gallery-head p,
body.pg-custom .pg-contact-copy p {
  color: var(--pg-ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

body.pg-custom .pg-section-head p:not(.pg-kicker) {
  margin: 14px 0 0;
  max-width: 680px;
}

body.pg-custom .pg-section-head-centered p:not(.pg-kicker) {
  margin-inline: auto;
}

body.pg-custom .pg-section-reviews {
  background: var(--pg-cream);
  padding-top: 86px;
}

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

body.pg-custom .pg-review-card {
  background: var(--pg-card);
  border: 1px solid var(--pg-line);
  box-shadow: var(--pg-shadow-soft);
  padding: 24px;
  border-radius: 8px;
  min-width: 0;
}

body.pg-custom .pg-review-quote {
  margin: 14px 0 22px;
  color: var(--pg-ink-soft);
  line-height: 1.7;
  font-size: 14px;
}

body.pg-custom .pg-review-card footer {
  display: grid;
  gap: 4px;
}

body.pg-custom .pg-review-card footer strong {
  font-size: 15px;
}

body.pg-custom .pg-review-card footer span {
  color: var(--pg-muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

body.pg-custom .pg-center-action {
  text-align: center;
  margin-top: 28px;
}

body.pg-custom .pg-text-link {
  color: var(--pg-gold);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

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

body.pg-custom .pg-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
}

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

body.pg-custom .pg-image-stack {
  position: relative;
  padding: 18px 0 18px 18px;
}

body.pg-custom .pg-image-stack::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 118px;
  height: 118px;
  border-left: 3px solid var(--pg-gold);
  border-top: 3px solid var(--pg-gold);
}

body.pg-custom .pg-image-stack > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--pg-shadow-deep);
}

body.pg-custom .pg-stat-card {
  position: absolute;
  right: -22px;
  bottom: -12px;
  z-index: 2;
  width: 190px;
  background: var(--pg-card);
  border: 1px solid var(--pg-line);
  box-shadow: var(--pg-shadow-soft);
  padding: 18px;
}

body.pg-custom .pg-stat-card strong {
  display: block;
  font-family: var(--pg-font-serif);
  font-size: 52px;
  line-height: 0.9;
  color: var(--pg-dark);
  font-weight: 500;
}

body.pg-custom .pg-stat-card span {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--pg-muted);
}

body.pg-custom .pg-split-copy p {
  margin: 18px 0 0;
}

body.pg-custom .pg-mini-feature-grid {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.pg-custom .pg-mini-feature-grid div {
  border-left: 2px solid var(--pg-gold);
  padding-left: 16px;
  min-width: 0;
}

body.pg-custom .pg-mini-feature-grid strong {
  display: block;
  font-family: var(--pg-font-serif);
  font-size: 24px;
  font-weight: 600;
}

body.pg-custom .pg-mini-feature-grid span {
  display: block;
  margin-top: 4px;
  color: var(--pg-muted);
  font-size: 13px;
  line-height: 1.4;
}

body.pg-custom .pg-services,
body.pg-custom .pg-process,
body.pg-custom .pg-contact,
body.pg-custom .pg-mobile-form-section {
  background: linear-gradient(180deg, var(--pg-cream), var(--pg-cream-2));
}

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

body.pg-custom .pg-service-card {
  background: var(--pg-card);
  border: 1px solid var(--pg-line);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--pg-shadow-soft);
  min-width: 0;
}

body.pg-custom .pg-service-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pg-line);
}

body.pg-custom .pg-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

body.pg-custom .pg-service-card:hover .pg-service-media img {
  transform: scale(1.04);
}

body.pg-custom .pg-service-body {
  padding: 22px;
}

body.pg-custom .pg-service-body h3,
body.pg-custom .pg-why-card h3,
body.pg-custom .pg-process-card h3 {
  font-family: var(--pg-font-serif);
  font-size: 25px;
  line-height: 1.05;
  margin: 0;
  font-weight: 600;
}

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

body.pg-custom .pg-card-link {
  display: inline-flex;
  margin-top: 17px;
  color: var(--pg-gold);
  font-weight: 900;
  font-size: 13px;
  border-bottom: 1px solid transparent;
}

body.pg-custom .pg-card-link:hover {
  border-color: currentColor;
}

body.pg-custom .pg-sash-feature {
  background: var(--pg-card);
}

body.pg-custom .pg-feature-image {
  min-width: 0;
}

body.pg-custom .pg-feature-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--pg-shadow-deep);
}

body.pg-custom .pg-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}

body.pg-custom .pg-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--pg-ink-soft);
  line-height: 1.6;
}

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

body.pg-custom .pg-why {
  background:
    radial-gradient(circle at 85% 10%, rgba(227, 173, 76, 0.1), transparent 34%),
    linear-gradient(135deg, var(--pg-dark-2), var(--pg-dark));
  color: var(--pg-white);
}

body.pg-custom .pg-why .pg-section-head p:not(.pg-kicker),
body.pg-custom .pg-why .pg-section-head h2 {
  color: var(--pg-white);
}

body.pg-custom .pg-why .pg-section-head p:not(.pg-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

body.pg-custom .pg-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

body.pg-custom .pg-why-card {
  background: rgba(20, 11, 7, 0.44);
  padding: 34px;
  min-width: 0;
}

body.pg-custom .pg-why-card span {
  display: block;
  font-family: var(--pg-font-serif);
  color: var(--pg-gold-2);
  font-size: 40px;
  line-height: 1;
}

body.pg-custom .pg-why-card h3 {
  color: var(--pg-white);
  margin-top: 16px;
}

body.pg-custom .pg-why-card p {
  color: rgba(255, 255, 255, 0.68);
}

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

body.pg-custom .pg-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

body.pg-custom .pg-gallery-head p {
  margin: 0;
}

body.pg-custom .pg-gallery-shortcode {
  background: var(--pg-card);
  border: 1px solid var(--pg-line);
  padding: 14px;
  box-shadow: var(--pg-shadow-soft);
  border-radius: 7px;
  min-height: 180px;
  overflow: hidden;
}

body.pg-custom .pg-gallery-shortcode .elementor,
body.pg-custom .pg-gallery-shortcode .elementor-section,
body.pg-custom .pg-gallery-shortcode .elementor-container,
body.pg-custom .pg-gallery-shortcode .elementor-column,
body.pg-custom .pg-gallery-shortcode .elementor-widget-wrap {
  width: 100% !important;
  max-width: 100% !important;
}

body.pg-custom .pg-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

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

body.pg-custom .pg-process-card span {
  display: block;
  font-family: var(--pg-font-serif);
  font-size: 58px;
  line-height: 0.86;
  color: rgba(199, 140, 47, 0.52);
  margin-bottom: 14px;
}

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

body.pg-custom .pg-areas-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

body.pg-custom .pg-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.pg-custom .pg-area-list li {
  border: 1px solid var(--pg-line);
  background: var(--pg-cream);
  padding: 14px 16px;
  border-radius: 6px;
  color: var(--pg-ink-soft);
  font-weight: 700;
  min-width: 0;
}

body.pg-custom .pg-cta-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--pg-white);
  isolation: isolate;
}

body.pg-custom .pg-cta-media,
body.pg-custom .pg-cta-media img,
body.pg-custom .pg-cta-media div {
  position: absolute;
  inset: 0;
}

body.pg-custom .pg-cta-media {
  z-index: -2;
}

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

body.pg-custom .pg-cta-media div {
  background: rgba(35, 20, 13, 0.78);
}

body.pg-custom .pg-cta-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

body.pg-custom .pg-cta-content h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.95;
  text-wrap: balance;
}

body.pg-custom .pg-cta-content p {
  margin: 18px auto 28px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-size: 18px;
}

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

body.pg-custom .pg-faq-list {
  border-top: 1px solid var(--pg-line);
  border-bottom: 1px solid var(--pg-line);
}

body.pg-custom .pg-faq-list details {
  border-bottom: 1px solid var(--pg-line);
  min-width: 0;
}

body.pg-custom .pg-faq-list details:last-child {
  border-bottom: 0;
}

body.pg-custom .pg-faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 42px 22px 0;
  font-family: var(--pg-font-serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}

body.pg-custom .pg-faq-list summary::-webkit-details-marker {
  display: none;
}

body.pg-custom .pg-faq-list summary::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 20px;
  color: var(--pg-gold);
  font-family: var(--pg-font-body);
  font-size: 24px;
  font-weight: 500;
}

body.pg-custom .pg-faq-list details[open] summary::after {
  content: '−';
}

body.pg-custom .pg-faq-list p {
  margin: -8px 48px 24px 0;
  color: var(--pg-ink-soft);
  line-height: 1.75;
  min-width: 0;
  overflow-wrap: anywhere;
}

body.pg-custom .pg-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: 60px;
}

body.pg-custom .pg-contact-methods {
  margin: 34px 0;
  display: grid;
  gap: 14px;
}

body.pg-custom .pg-contact-methods a,
body.pg-custom .pg-contact-methods div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: var(--pg-card);
  border: 1px solid var(--pg-line);
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(43, 27, 19, 0.05);
  min-width: 0;
}

body.pg-custom .pg-contact-methods span {
  color: var(--pg-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
}

body.pg-custom .pg-contact-methods strong {
  font-family: var(--pg-font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

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

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

body.pg-custom .pg-site-footer {
  background: var(--pg-dark-2);
  color: var(--pg-white);
  padding: 72px 0 24px;
}

body.pg-custom .pg-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 0.75fr));
  gap: 42px;
}

body.pg-custom .pg-footer-brand img {
  width: 166px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

body.pg-custom .pg-footer-brand p,
body.pg-custom .pg-site-footer li,
body.pg-custom .pg-footer-bottom,
body.pg-custom .pg-webwizard-credit {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

body.pg-custom .pg-footer-muted {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48) !important;
}

body.pg-custom .pg-site-footer h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--pg-white);
}

body.pg-custom .pg-site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

body.pg-custom .pg-site-footer a:hover {
  color: var(--pg-gold-2);
}

body.pg-custom .pg-footer-contact li {
  overflow-wrap: anywhere;
}

body.pg-custom .pg-footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

body.pg-custom .pg-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

body.pg-custom .pg-webwizard-credit {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

body.pg-custom .pg-webwizard-credit img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

body.pg-custom .pg-webwizard-credit a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

body.pg-custom .pg-floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

body.pg-custom .pg-floating-bubble {
  background: var(--pg-card);
  color: var(--pg-ink);
  border: 1px solid var(--pg-line);
  border-radius: 999px;
  box-shadow: var(--pg-shadow-soft);
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
}

body.pg-custom .pg-floating-options {
  display: grid;
  gap: 9px;
}

body.pg-custom .pg-floating-options[hidden] {
  display: none;
}

body.pg-custom .pg-floating-option {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--pg-white);
  box-shadow: var(--pg-shadow-soft);
  min-width: 128px;
}

body.pg-custom .pg-floating-option span {
  font-size: 11px;
  opacity: 0.84;
}

body.pg-custom .pg-floating-option strong {
  font-size: 13px;
}

body.pg-custom .pg-floating-whatsapp {
  background: #1f9d55;
}

body.pg-custom .pg-floating-phone {
  background: var(--pg-dark);
}

body.pg-custom .pg-floating-email {
  background: var(--pg-gold);
}

body.pg-custom .pg-floating-main {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pg-gold), var(--pg-gold-2));
  color: var(--pg-white);
  box-shadow: 0 12px 32px rgba(199, 140, 47, 0.38);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

body.pg-custom .pg-floating-main-close {
  display: none;
  font-size: 36px;
  line-height: 0.8;
}

body.pg-custom .pg-floating-main[aria-expanded='true'] .pg-floating-main-open {
  display: none;
}

body.pg-custom .pg-floating-main[aria-expanded='true'] .pg-floating-main-close {
  display: block;
}

@media (max-width: 1120px) {
  body.pg-custom .pg-desktop-nav {
    gap: 18px;
  }

  body.pg-custom .pg-header-actions .pg-header-phone {
    display: none;
  }

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

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

  body.pg-custom .pg-shell,
  body.pg-custom .pg-narrow {
    width: min(100% - 28px, 720px);
  }

  body.pg-custom .pg-header-inner {
    min-height: 78px;
  }

  body.pg-custom .pg-desktop-nav,
  body.pg-custom .pg-header-actions {
    display: none;
  }

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

  body.pg-custom .pg-logo-light {
    height: 48px;
  }

  body.pg-custom .pg-logo-dark {
    height: 45px;
  }

  body.pg-custom .pg-hero {
    min-height: 84svh;
    padding: 118px 0 62px;
    text-align: center;
  }

  body.pg-custom .pg-hero-grid {
    display: block;
  }

  body.pg-custom .pg-hero-copy {
    max-width: 680px;
    margin-inline: auto;
  }

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

  body.pg-custom .pg-hero h1 {
    font-size: clamp(54px, 17vw, 88px);
  }

  body.pg-custom .pg-hero-text {
    margin-inline: auto;
  }

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

  body.pg-custom .pg-mobile-only-inline {
    display: inline-flex;
  }

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

  body.pg-custom .pg-hero-trust span {
    padding-left: 0;
    padding-top: 14px;
  }

  body.pg-custom .pg-hero-trust span::before {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }

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

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

  body.pg-custom .pg-trust-strip-inner,
  body.pg-custom .pg-rating-summary {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  body.pg-custom .pg-trust-strip-inner {
    padding: 22px 0;
  }

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

  body.pg-custom .pg-section-head,
  body.pg-custom .pg-split-copy,
  body.pg-custom .pg-gallery-head,
  body.pg-custom .pg-areas-inner > div,
  body.pg-custom .pg-contact-copy,
  body.pg-custom .pg-site-footer,
  body.pg-custom .pg-footer-bottom,
  body.pg-custom .pg-webwizard-credit {
    text-align: center;
  }

  body.pg-custom .pg-section-head {
    margin-inline: auto;
  }

  body.pg-custom .pg-section-head p:not(.pg-kicker) {
    margin-inline: auto;
  }

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

  body.pg-custom .pg-split,
  body.pg-custom .pg-split-feature,
  body.pg-custom .pg-areas-inner,
  body.pg-custom .pg-contact-grid,
  body.pg-custom .pg-gallery-head {
    grid-template-columns: 1fr;
  }

  body.pg-custom .pg-image-stack {
    max-width: 560px;
    margin-inline: auto;
  }

  body.pg-custom .pg-mini-feature-grid {
    justify-items: center;
  }

  body.pg-custom .pg-mini-feature-grid div {
    border-left: 0;
    padding-left: 0;
    border-top: 2px solid var(--pg-gold);
    padding-top: 12px;
  }

  body.pg-custom .pg-check-list {
    max-width: 620px;
    margin-inline: auto;
    text-align: left;
  }

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

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

  body.pg-custom .pg-contact-methods,
  body.pg-custom .pg-map-wrap {
    max-width: 620px;
    margin-inline: auto;
  }

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

  body.pg-custom .pg-site-footer h2,
  body.pg-custom .pg-footer-brand img {
    margin-inline: auto;
  }

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

  body.pg-custom .pg-site-footer ul,
  body.pg-custom .pg-footer-bottom nav {
    justify-content: center;
  }

  body.pg-custom .pg-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body.pg-custom.admin-bar .pg-site-header {
    top: 0;
  }

  body.pg-custom .pg-shell,
  body.pg-custom .pg-narrow {
    width: min(100% - 24px, 540px);
  }

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

  body.pg-custom .pg-hero-overlay {
    background: linear-gradient(180deg, rgba(30, 18, 12, 0.84) 0%, rgba(30, 18, 12, 0.72) 42%, rgba(30, 18, 12, 0.94) 100%);
  }

  body.pg-custom .pg-hero h1,
  body.pg-custom .pg-section-head h2,
  body.pg-custom .pg-split-copy h2,
  body.pg-custom .pg-gallery-head h2,
  body.pg-custom .pg-contact-copy h2,
  body.pg-custom .pg-cta-content h2 {
    text-wrap: balance;
  }

  body.pg-custom .pg-hero-text,
  body.pg-custom .pg-section-head p:not(.pg-kicker),
  body.pg-custom .pg-split-copy p,
  body.pg-custom .pg-gallery-head p,
  body.pg-custom .pg-contact-copy p {
    font-size: 16px;
  }

  body.pg-custom .pg-hero-actions,
  body.pg-custom .pg-cta-content .pg-btn {
    width: 100%;
  }

  body.pg-custom .pg-hero-actions .pg-btn,
  body.pg-custom .pg-cta-content .pg-btn,
  body.pg-custom .pg-mobile-nav .pg-btn {
    width: 100%;
  }

  body.pg-custom .pg-hero-trust,
  body.pg-custom .pg-review-grid,
  body.pg-custom .pg-service-grid,
  body.pg-custom .pg-why-grid,
  body.pg-custom .pg-process-grid,
  body.pg-custom .pg-area-list,
  body.pg-custom .pg-footer-grid,
  body.pg-custom .pg-mini-feature-grid {
    grid-template-columns: 1fr;
  }

  body.pg-custom .pg-review-card,
  body.pg-custom .pg-service-body,
  body.pg-custom .pg-why-card {
    padding: 22px;
  }

  body.pg-custom .pg-stat-card {
    position: static;
    width: auto;
    margin: -12px 16px 0;
    text-align: center;
  }

  body.pg-custom .pg-image-stack {
    padding: 0;
  }

  body.pg-custom .pg-image-stack::before {
    display: none;
  }

  body.pg-custom .pg-feature-image img {
    aspect-ratio: 4 / 3;
  }

  body.pg-custom .pg-form-card {
    padding: 22px 16px;
  }

  body.pg-custom .pg-form-intro {
    text-align: center;
  }

  body.pg-custom .pg-form-card label,
  body.pg-custom .pg-form-card .elementor-field-label {
    text-align: left !important;
  }

  body.pg-custom .pg-gallery-shortcode {
    padding: 8px;
  }

  body.pg-custom .pg-faq-list summary {
    font-size: 21px;
    padding-right: 36px;
    overflow-wrap: anywhere;
  }

  body.pg-custom .pg-faq-list p {
    margin-right: 0;
  }

  body.pg-custom .pg-contact-methods a,
  body.pg-custom .pg-contact-methods div {
    text-align: center;
  }

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

  body.pg-custom .pg-site-footer {
    padding-top: 54px;
  }

  body.pg-custom .pg-floating-contact {
    right: 14px;
    bottom: 14px;
  }

  body.pg-custom .pg-floating-bubble {
    display: none;
  }
}

/* Revision batch: John Barr homepage polish */
body.pg-custom .pg-btn,
body.pg-custom .pg-btn-dark,
body.pg-custom .pg-card-link,
body.pg-custom .pg-text-link {
  background: linear-gradient(135deg, var(--pg-gold), var(--pg-gold-2));
  color: var(--pg-white) !important;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 14px 34px rgba(199, 140, 47, .24);
}

body.pg-custom .pg-card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

body.pg-custom .pg-btn:hover,
body.pg-custom .pg-card-link:hover,
body.pg-custom .pg-text-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

body.pg-custom .pg-header-phone .pg-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(199, 140, 47, .18);
  color: var(--pg-gold-2);
}

body.pg-custom .pg-header-phone .pg-phone-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

body.pg-custom .pg-logo-light,
body.pg-custom .pg-logo-dark,
body.pg-custom .pg-footer-brand img {
  background: transparent;
  object-fit: contain;
}

body.pg-custom .pg-logo-light,
body.pg-custom .pg-logo-dark {
  height: 66px;
  max-width: 118px;
}

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

body.pg-custom .pg-hero-media picture,
body.pg-custom .pg-hero-media picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.pg-custom .pg-review-carousel {
  position: relative;
  margin-top: 38px;
  padding-inline: 58px;
}

body.pg-custom .pg-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 18px;
}

body.pg-custom .pg-review-track::-webkit-scrollbar {
  display: none;
}

body.pg-custom .pg-review-card {
  scroll-snap-align: start;
  min-width: 0;
}

body.pg-custom .pg-section-reviews .pg-section-head {
  max-width: 920px;
}

body.pg-custom .pg-section-reviews .pg-section-head h2 {
  max-width: 820px;
  margin-inline: auto;
}

body.pg-custom .pg-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--pg-line);
  background: var(--pg-card);
  color: var(--pg-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  box-shadow: var(--pg-shadow-soft);
}

body.pg-custom .pg-slider-prev { left: 0; }
body.pg-custom .pg-slider-next { right: 0; }

body.pg-custom .pg-image-stack {
  box-shadow: none;
}

body.pg-custom .pg-image-stack::before {
  display: block;
  box-shadow: none;
}

body.pg-custom .pg-stat-card {
  box-shadow: 0 18px 40px rgba(43, 27, 19, 0.12);
  z-index: 3;
}

body.pg-custom .pg-split-about .pg-image-stack,
body.pg-custom .pg-feature-image {
  position: relative;
}

body.pg-custom .pg-split-about .pg-image-stack::before,
body.pg-custom .pg-feature-image::before,
body.pg-custom .pg-area-panel::before {
  content: '';
  position: absolute;
  left: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  border-left: 3px solid var(--pg-gold);
  border-top: 3px solid var(--pg-gold);
  pointer-events: none;
  z-index: 2;
}

body.pg-custom .pg-feature-image::before {
  left: -18px;
  top: -18px;
}

body.pg-custom .pg-area-panel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
  padding: 26px 0 0 26px;
}

body.pg-custom .pg-area-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px 10px 20px;
  background: var(--pg-white);
  color: var(--pg-ink);
  border: 1px solid var(--pg-line);
  border-left: 4px solid var(--pg-gold);
  border-radius: 3px;
  box-shadow: 0 12px 28px rgba(43, 27, 19, 0.05);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.pg-custom .pg-areas-inner {
  align-items: center;
}

body.pg-custom .pg-cta-banner {
  min-height: 430px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(rgba(39, 24, 16, .74), rgba(39, 24, 16, .74)), url('https://johnbarrcontractsltd.co.uk/wp-content/uploads/2026/05/timber-garden-room-extension-fife.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.pg-custom .pg-cta-media {
  display: none;
}

body.pg-custom .pg-cta-content {
  padding-block: 118px;
}

body.pg-custom .pg-contact-head {
  margin-bottom: 40px;
}

body.pg-custom .pg-contact-grid {
  align-items: start;
}

body.pg-custom .pg-contact-copy {
  padding-top: 0;
}

body.pg-custom .pg-footer-contact li,
body.pg-custom .pg-footer-contact a {
  overflow-wrap: normal;
  word-break: normal;
}

body.pg-custom .pg-footer-contact a[href^="mailto"] {
  display: inline-block;
  max-width: 100%;
  font-size: 13px;
  white-space: nowrap;
}

body.pg-custom .pg-webwizard-credit {
  flex-direction: column;
  gap: 8px;
}

body.pg-custom .pg-webwizard-credit img {
  width: 38px;
  height: auto;
}

body.pg-custom .pg-webwizard-credit a {
  color: var(--pg-gold-2) !important;
}

body.pg-custom .pg-floating-contact {
  gap: 12px;
}

body.pg-custom .pg-floating-bubble {
  margin-right: 4px;
  font-size: 13px;
  padding: 9px 14px;
  box-shadow: 0 10px 26px rgba(43, 27, 19, .14);
}

body.pg-custom .pg-floating-main {
  position: relative;
  width: 62px;
  height: 62px;
  overflow: visible;
  color: var(--pg-ink);
  border: 2px solid rgba(255,255,255,.78);
}

body.pg-custom .pg-floating-main::before,
body.pg-custom .pg-floating-main::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 2px solid rgba(199,140,47,.38);
  animation: pg-pulse-ring 1.9s ease-out infinite;
  pointer-events: none;
}

body.pg-custom .pg-floating-main::after {
  animation-delay: .7s;
}

body.pg-custom .pg-floating-main svg,
body.pg-custom .pg-floating-option svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

body.pg-custom .pg-floating-main-close {
  font-size: 42px;
  color: var(--pg-ink);
  line-height: 1;
  transform: translateY(-1px);
}

body.pg-custom .pg-floating-options {
  gap: 10px;
  justify-items: end;
}

body.pg-custom .pg-floating-option {
  grid-template-columns: 38px auto;
  min-width: 142px;
  min-height: 48px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  font-weight: 900;
}

body.pg-custom .pg-floating-option strong {
  font-size: 14px;
}

@keyframes pg-pulse-ring {
  0% { opacity: .85; transform: scale(.88); }
  70% { opacity: 0; transform: scale(1.28); }
  100% { opacity: 0; transform: scale(1.28); }
}

body.pg-custom .pg-menu-toggle {
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 999px;
}

body.pg-custom .pg-menu-label {
  display: none;
}

body.pg-custom .pg-menu-icon {
  position: relative;
  width: 22px;
  height: 2px;
  margin: 0;
}

body.pg-custom .pg-menu-toggle[aria-expanded='true'] .pg-menu-icon::before,
body.pg-custom .pg-menu-toggle[aria-expanded='true'] .pg-menu-icon::after {
  top: 0;
  left: 0;
  transform-origin: center;
}

@media (max-width: 980px) {
  body.pg-custom .pg-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 10px 12px;
  }

  body.pg-custom .pg-trust-badges span {
    justify-content: center;
    min-width: 0;
    white-space: normal;
  }

  body.pg-custom .pg-review-track {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

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

@media (max-width: 680px) {
  body.pg-custom .pg-logo-light,
  body.pg-custom .pg-logo-dark {
    height: 54px;
    max-width: 76px;
  }

  body.pg-custom .pg-hero {
    padding-top: 112px;
  }

  body.pg-custom .pg-hero h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  body.pg-custom .pg-hero .pg-eyebrow {
    white-space: nowrap;
    font-size: clamp(9px, 2.25vw, 11px);
    letter-spacing: .18em;
    padding-inline: 14px;
    max-width: 100%;
  }

  body.pg-custom .pg-review-carousel {
    padding-inline: 0;
  }

  body.pg-custom .pg-slider-btn {
    display: none;
  }

  body.pg-custom .pg-review-track {
    grid-auto-columns: 86%;
    padding-inline: 2px;
  }

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

  body.pg-custom .pg-trust-badges span {
    padding: 10px 8px;
    font-size: 12px;
  }

  body.pg-custom .pg-split-about .pg-image-stack::before,
  body.pg-custom .pg-feature-image::before,
  body.pg-custom .pg-area-panel::before {
    left: -10px;
    top: -10px;
    width: 70px;
    height: 70px;
  }

  body.pg-custom .pg-image-stack::before {
    display: block;
  }

  body.pg-custom .pg-stat-card {
    margin: 0 16px;
    transform: translateY(-1px);
    border-top: 0;
    box-shadow: 0 10px 26px rgba(43, 27, 19, 0.07);
  }

  body.pg-custom .pg-area-panel {
    padding: 22px 0 0 12px;
    justify-content: center;
    gap: 10px;
  }

  body.pg-custom .pg-area-panel span {
    min-height: 38px;
    padding: 8px 12px 8px 14px;
    font-size: 12px;
    letter-spacing: .05em;
  }

  body.pg-custom .pg-cta-banner {
    min-height: 380px;
    background-attachment: scroll;
  }

  body.pg-custom .pg-cta-content {
    padding-block: 82px;
  }

  body.pg-custom .pg-footer-contact a[href^="mailto"] {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body.pg-custom .pg-floating-main {
    width: 58px;
    height: 58px;
  }

  body.pg-custom .pg-floating-main svg {
    width: 23px;
    height: 23px;
  }
}

/* Final revision batch - 09 May */
body.pg-custom .pg-logo-light,
body.pg-custom .pg-logo-dark {
  height: 72px;
  max-width: 120px;
}

body.pg-custom .pg-header-phone .pg-phone-icon {
  color: var(--pg-gold-2);
  background: transparent;
}

body.pg-custom .pg-card-link,
body.pg-custom .pg-card-link:visited {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  margin-top: 17px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--pg-gold) !important;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
}

body.pg-custom .pg-card-link:hover {
  border-color: currentColor;
  transform: none;
  filter: none;
}

body.pg-custom .pg-section-reviews .pg-section-head h2 {
  max-width: 920px;
  margin-inline: auto;
}

body.pg-custom .pg-review-carousel {
  padding-bottom: 36px;
}

body.pg-custom .pg-review-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
}

body.pg-custom .pg-review-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(199, 140, 47, .34);
  cursor: pointer;
}

body.pg-custom .pg-review-dot[aria-current='true'] {
  width: 22px;
  background: var(--pg-gold);
}

body.pg-custom .pg-image-stack {
  box-shadow: none !important;
  filter: none !important;
}

body.pg-custom .pg-image-stack > img {
  box-shadow: 0 22px 52px rgba(43, 27, 19, .16);
}

body.pg-custom .pg-stat-card {
  box-shadow: 0 12px 28px rgba(43, 27, 19, .08) !important;
  isolation: isolate;
}

body.pg-custom .pg-stat-card strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

body.pg-custom .pg-feature-image img {
  display: block;
  width: 100%;
}

body.pg-custom .pg-area-panel::before {
  display: none !important;
}

body.pg-custom .pg-area-panel {
  padding: 0;
}

body.pg-custom .pg-area-panel span {
  border-left-color: var(--pg-dark) !important;
}

body.pg-custom .pg-cta-content .pg-btn {
  width: auto;
  max-width: max-content;
  margin-inline: auto;
}

body.pg-custom .pg-webwizard-credit {
  color: var(--pg-white);
  text-align: center;
}

body.pg-custom .pg-webwizard-credit .pg-credit-prefix {
  color: var(--pg-white);
  font-weight: 700;
}

body.pg-custom .pg-webwizard-credit a {
  color: var(--pg-gold-2) !important;
  font-weight: 900;
  text-decoration: none;
}

body.pg-custom .pg-webwizard-credit a:hover {
  text-decoration: underline;
}

body.pg-custom .pg-webwizard-credit img {
  width: 76px !important;
  height: auto;
}

body.pg-custom .pg-footer-brand img {
  width: 118px;
  max-width: 118px;
}

body.pg-custom .pg-floating-options {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-items: center;
  margin-bottom: 2px;
}

body.pg-custom .pg-floating-options[hidden] {
  display: none !important;
}

body.pg-custom .pg-floating-option {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  box-shadow: 0 12px 26px rgba(43, 27, 19, .22);
  color: #fff !important;
}

body.pg-custom .pg-floating-option svg,
body.pg-custom .pg-floating-main svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

body.pg-custom .pg-floating-email {
  background: var(--pg-gold) !important;
}

body.pg-custom .pg-floating-phone {
  background: #2196f3 !important;
}

body.pg-custom .pg-floating-whatsapp {
  background: #17c965 !important;
}

body.pg-custom .pg-floating-main {
  width: 62px;
  height: 62px;
  border: 2px solid rgba(255, 255, 255, .9);
  background: var(--pg-gold);
  color: var(--pg-ink);
  box-shadow: 0 14px 30px rgba(43, 27, 19, .22);
}

body.pg-custom .pg-floating-main-close {
  display: none;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-2px);
}

body.pg-custom .pg-floating-main[aria-expanded='true'] .pg-floating-main-open {
  display: none;
}

body.pg-custom .pg-floating-main[aria-expanded='true'] .pg-floating-main-close {
  display: inline-flex;
}

@media (max-width: 680px) {
  body.pg-custom .pg-logo-light,
  body.pg-custom .pg-logo-dark {
    height: 62px;
    max-width: 95px;
  }

  body.pg-custom .pg-hero-actions,
  body.pg-custom .pg-cta-content .pg-btn {
    width: auto !important;
    max-width: none;
    justify-content: center;
  }

  body.pg-custom .pg-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  body.pg-custom .pg-hero-actions .pg-btn {
    width: auto !important;
    min-width: min(260px, 86vw);
    max-width: calc(100vw - 64px);
    padding-inline: 22px;
  }

  body.pg-custom .pg-hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 10px;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  body.pg-custom .pg-hero-trust span {
    justify-content: center;
    text-align: center;
    gap: 7px;
    font-size: 12px;
    line-height: 1.35;
  }

  body.pg-custom .pg-review-carousel {
    padding-inline: 42px;
    padding-bottom: 34px;
  }

  body.pg-custom .pg-slider-btn {
    display: inline-flex !important;
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  body.pg-custom .pg-slider-prev {
    left: 0;
  }

  body.pg-custom .pg-slider-next {
    right: 0;
  }

  body.pg-custom .pg-review-track {
    grid-auto-columns: 100%;
    scroll-snap-type: x mandatory;
  }

  body.pg-custom .pg-review-card {
    scroll-snap-align: center;
  }

  body.pg-custom .pg-feature-image img {
    aspect-ratio: auto !important;
    height: auto !important;
    object-fit: contain !important;
    box-shadow: 0 18px 42px rgba(43, 27, 19, .12);
  }

  body.pg-custom .pg-why-card {
    text-align: center;
  }

  body.pg-custom .pg-why-card span,
  body.pg-custom .pg-why-card h3,
  body.pg-custom .pg-why-card p {
    text-align: center;
  }

  body.pg-custom .pg-area-panel {
    padding: 0;
  }

  body.pg-custom .pg-area-panel span {
    border-left-color: var(--pg-dark) !important;
  }

  body.pg-custom .pg-cta-content .pg-btn {
    width: auto !important;
    min-width: min(240px, 80vw);
  }

  body.pg-custom .pg-stat-card {
    margin: 0 16px !important;
    transform: none !important;
    box-shadow: 0 8px 20px rgba(43, 27, 19, .06) !important;
  }

  body.pg-custom .pg-stat-card strong {
    font-size: 48px;
  }

  body.pg-custom .pg-floating-main {
    width: 60px;
    height: 60px;
  }

  body.pg-custom .pg-floating-option {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }
}

body.pg-custom .pg-credit-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  text-align: center;
}


/* Full site inner page templates - Web Wizard build */
body.pg-custom .pg-inner-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 170px 0 90px;
  color: #fff;
  overflow: hidden;
}
body.pg-custom .pg-inner-hero-compact {
  min-height: 430px;
  padding: 150px 0 70px;
}
body.pg-custom .pg-inner-hero-media,
body.pg-custom .pg-inner-hero-media img,
body.pg-custom .pg-inner-hero-overlay {
  position: absolute;
  inset: 0;
}
body.pg-custom .pg-inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.pg-custom .pg-inner-hero-overlay {
  background: linear-gradient(90deg, rgba(43,27,19,.88), rgba(43,27,19,.62) 48%, rgba(43,27,19,.35));
}
body.pg-custom .pg-inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body.pg-custom .pg-inner-hero h1 {
  font-family: var(--pg-font-serif);
  font-size: clamp(54px, 7vw, 112px);
  line-height: .9;
  letter-spacing: -0.05em;
  margin: 0 0 24px;
}
body.pg-custom .pg-inner-hero p:not(.pg-eyebrow) {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  color: rgba(255,255,255,.86);
  margin: 0 auto;
  max-width: 720px;
}
body.pg-custom .pg-inner-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
body.pg-custom .pg-inner-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}
body.pg-custom .pg-inner-trust span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
body.pg-custom .pg-page-section {
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--pg-cream);
}
body.pg-custom .pg-page-section-alt {
  background: var(--pg-cream-2);
}
body.pg-custom .pg-inner-section-head {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 44px;
}
body.pg-custom .pg-inner-section-head h2 {
  max-width: 900px;
}
body.pg-custom .pg-inner-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
body.pg-custom .pg-inner-split-reverse .pg-inner-copy {
  order: 2;
}
body.pg-custom .pg-inner-split-reverse .pg-inner-image-wrap {
  order: 1;
}
body.pg-custom .pg-inner-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--pg-muted);
  margin: 0 0 16px;
}
body.pg-custom .pg-check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}
body.pg-custom .pg-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--pg-ink);
  line-height: 1.6;
  font-weight: 650;
}
body.pg-custom .pg-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pg-gold);
  font-weight: 900;
}
body.pg-custom .pg-inner-image-wrap {
  position: relative;
  box-shadow: 0 28px 70px rgba(43,27,19,.14);
  background: #fff;
}
body.pg-custom .pg-inner-image-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
body.pg-custom .pg-corner-frame {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 96px;
  height: 96px;
  border-top: 4px solid var(--pg-gold);
  border-left: 4px solid var(--pg-gold);
  z-index: 2;
}
body.pg-custom .pg-inner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body.pg-custom .pg-inner-card {
  background: #fff;
  border: 1px solid rgba(107,82,65,.14);
  box-shadow: 0 20px 45px rgba(43,27,19,.08);
  overflow: hidden;
}
body.pg-custom .pg-inner-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
body.pg-custom .pg-inner-card-body {
  padding: 28px;
}
body.pg-custom .pg-inner-card h3 {
  margin: 0 0 12px;
  font-family: var(--pg-font-serif);
  color: var(--pg-ink);
  font-size: 31px;
  line-height: 1;
}
body.pg-custom .pg-inner-card p {
  color: var(--pg-muted);
  line-height: 1.7;
  margin: 0 0 18px;
}
body.pg-custom .pg-inner-card a {
  color: var(--pg-gold-2);
  font-weight: 800;
  text-decoration: none;
}
body.pg-custom .pg-process-grid-inner {
  margin-top: 30px;
}
body.pg-custom .pg-faq-shell {
  max-width: 920px;
}
body.pg-custom .pg-page-final-cta {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: clamp(110px, 12vw, 180px) 0;
  text-align: center;
}
body.pg-custom .pg-page-final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,27,19,.72);
}
body.pg-custom .pg-page-final-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}
body.pg-custom .pg-page-final-content h2 {
  font-family: var(--pg-font-serif);
  font-size: clamp(46px, 6vw, 86px);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 0 0 20px;
}
body.pg-custom .pg-page-final-content p:not(.pg-eyebrow) {
  color: rgba(255,255,255,.84);
  font-size: 19px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
body.pg-custom .pg-contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}
body.pg-custom .pg-inner-form-card {
  position: sticky;
  top: 120px;
}
body.pg-custom .pg-inner-contact-methods {
  margin-top: 28px;
}
body.pg-custom .pg-map-frame {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(107,82,65,.18);
  box-shadow: 0 20px 50px rgba(43,27,19,.1);
}
body.pg-custom .pg-map-frame iframe {
  width: 100%;
  height: 360px;
  display: block;
}
body.pg-custom .pg-gallery-shortcode {
  background: #fff;
  border: 1px solid rgba(107,82,65,.14);
  padding: 20px;
  box-shadow: 0 20px 45px rgba(43,27,19,.08);
}
body.pg-custom .pg-thankyou-panel,
body.pg-custom .pg-legal-content {
  background: #fff;
  border: 1px solid rgba(107,82,65,.14);
  box-shadow: 0 20px 45px rgba(43,27,19,.08);
  padding: clamp(30px, 5vw, 60px);
}
body.pg-custom .pg-legal-content {
  max-width: 920px;
  margin: 0 auto;
}
body.pg-custom .pg-legal-content h2 {
  font-family: var(--pg-font-serif);
  color: var(--pg-ink);
  font-size: 38px;
  margin: 30px 0 12px;
}
body.pg-custom .pg-legal-content p,
body.pg-custom .pg-legal-content li {
  color: var(--pg-muted);
  line-height: 1.75;
}
body.pg-custom .pg-legal-content a {
  color: var(--pg-gold-2);
  font-weight: 800;
}
body.pg-custom .pg-floating-main {
  color: #fff !important;
}
body.pg-custom .pg-floating-main svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
}
body.pg-custom .pg-webwizard-credit img {
  width: 76px !important;
}
@media (max-width: 980px) {
  body.pg-custom .pg-inner-trust,
  body.pg-custom .pg-inner-card-grid,
  body.pg-custom .pg-contact-page-grid,
  body.pg-custom .pg-inner-split {
    grid-template-columns: 1fr;
  }
  body.pg-custom .pg-inner-split-reverse .pg-inner-copy,
  body.pg-custom .pg-inner-split-reverse .pg-inner-image-wrap {
    order: initial;
  }
  body.pg-custom .pg-inner-form-card {
    position: static;
  }
}
@media (max-width: 680px) {
  body.pg-custom .pg-inner-hero {
    min-height: 520px;
    padding: 130px 0 62px;
    text-align: center;
  }
  body.pg-custom .pg-inner-hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }
  body.pg-custom .pg-inner-hero p:not(.pg-eyebrow) {
    font-size: 16px;
  }
  body.pg-custom .pg-inner-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.pg-custom .pg-inner-hero-actions .pg-btn,
  body.pg-custom .pg-page-final-content .pg-btn {
    width: auto;
    min-width: 0;
  }
  body.pg-custom .pg-inner-copy,
  body.pg-custom .pg-inner-section-head,
  body.pg-custom .pg-inner-card-body,
  body.pg-custom .pg-check-list li {
    text-align: center;
  }
  body.pg-custom .pg-check-list li {
    padding-left: 0;
  }
  body.pg-custom .pg-check-list li::before {
    position: static;
    margin-right: 8px;
  }
  body.pg-custom .pg-inner-card-grid {
    gap: 18px;
  }
  body.pg-custom .pg-inner-card-body {
    padding: 24px;
  }
  body.pg-custom .pg-corner-frame {
    display: none;
  }
  body.pg-custom .pg-page-final-cta {
    background-attachment: scroll;
  }
}

/* -------------------------------------------------------------------------
   POST-HOMEPAGE DESIGN LOCK
   The approved homepage is the visual source of truth for every page.
   These rules prevent inner pages from introducing a second typography,
   spacing or desktop alignment system.
------------------------------------------------------------------------- */
body.pg-custom .pg-site-header,
body.pg-custom .pg-header-inner,
body.pg-custom .pg-logo {
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, min-height 220ms ease, height 220ms ease, opacity 220ms ease;
}

@media (min-width: 981px) {
  body.pg-custom .pg-site-header:not(.pg-scrolled):not(.pg-menu-open) .pg-header-inner {
    min-height: 132px;
  }

  body.pg-custom .pg-site-header:not(.pg-scrolled):not(.pg-menu-open) .pg-logo-light {
    height: 116px;
  }

  body.pg-custom .pg-site-header.pg-scrolled .pg-header-inner,
  body.pg-custom .pg-site-header.pg-menu-open .pg-header-inner {
    min-height: 88px;
  }

  body.pg-custom .pg-site-header.pg-scrolled .pg-logo-dark,
  body.pg-custom .pg-site-header.pg-menu-open .pg-logo-dark {
    height: 52px;
  }
}

body.pg-custom.pg-jbc-inner .pg-inner-hero-content {
  max-width: 1180px;
  text-align: left;
}

body.pg-custom.pg-jbc-inner .pg-inner-hero h1 {
  font-family: var(--pg-font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.88;
  max-width: 760px;
  margin: 24px 0 0;
  text-wrap: balance;
}

body.pg-custom.pg-jbc-inner .pg-inner-hero p:not(.pg-eyebrow) {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
  text-wrap: balance;
}

body.pg-custom.pg-jbc-inner .pg-inner-hero-actions {
  justify-content: flex-start;
  margin-top: 32px;
}

body.pg-custom.pg-jbc-inner .pg-inner-trust {
  max-width: 760px;
}

body.pg-custom.pg-jbc-inner .pg-inner-section-head {
  max-width: 760px;
  margin: 0 0 48px;
  text-align: left;
}

body.pg-custom.pg-jbc-inner .pg-inner-copy .pg-inner-section-head {
  margin-bottom: 0;
}

body.pg-custom.pg-jbc-inner .pg-inner-section-head h2,
body.pg-custom.pg-jbc-inner .pg-inner-copy h2,
body.pg-custom.pg-jbc-inner .pg-inner-card h3,
body.pg-custom.pg-jbc-inner .pg-page-final-content h2,
body.pg-custom.pg-jbc-inner .pg-legal-content h2 {
  font-family: var(--pg-font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--pg-ink);
}

body.pg-custom.pg-jbc-inner .pg-inner-section-head h2,
body.pg-custom.pg-jbc-inner .pg-inner-copy h2 {
  margin-top: 10px;
  font-size: clamp(39px, 5vw, 64px);
  line-height: 0.98;
  text-wrap: balance;
}

body.pg-custom.pg-jbc-inner .pg-inner-section-head p:not(.pg-eyebrow),
body.pg-custom.pg-jbc-inner .pg-inner-copy p {
  color: var(--pg-ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

body.pg-custom.pg-jbc-inner .pg-inner-copy p {
  margin: 18px 0 0;
}

body.pg-custom.pg-jbc-inner .pg-inner-copy > .pg-btn {
  margin-top: 4px;
}

body.pg-custom.pg-jbc-inner .pg-inner-card {
  border-radius: 7px;
  border: 1px solid var(--pg-line);
  box-shadow: var(--pg-shadow-soft);
}

body.pg-custom.pg-jbc-inner .pg-inner-card h3 {
  font-size: 31px;
  line-height: 1;
}

body.pg-custom.pg-jbc-inner .pg-inner-card p {
  color: var(--pg-ink-soft);
}

body.pg-custom.pg-jbc-inner .pg-inner-card a {
  color: var(--pg-gold);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

body.pg-custom.pg-jbc-inner .pg-inner-image-wrap {
  box-shadow: none;
  padding: 18px 0 18px 18px;
  background: transparent;
}

body.pg-custom.pg-jbc-inner .pg-inner-image-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 118px;
  height: 118px;
  border-left: 3px solid var(--pg-gold);
  border-top: 3px solid var(--pg-gold);
  z-index: 0;
}

body.pg-custom.pg-jbc-inner .pg-inner-image-wrap .pg-corner-frame {
  display: none;
}

body.pg-custom.pg-jbc-inner .pg-inner-image-wrap img {
  position: relative;
  z-index: 1;
  box-shadow: var(--pg-shadow-deep);
}

body.pg-custom.pg-jbc-inner .pg-process-section .pg-inner-section-head,
body.pg-custom.pg-jbc-inner .pg-page-section > .pg-shell > .pg-inner-section-head {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

body.pg-custom.pg-jbc-inner .pg-faq-shell .pg-inner-section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.pg-custom.pg-jbc-inner .pg-page-final-content h2 {
  color: var(--pg-white);
}

@media (max-width: 980px) {
  body.pg-custom.pg-jbc-inner .pg-inner-hero-content,
  body.pg-custom.pg-jbc-inner .pg-inner-section-head,
  body.pg-custom.pg-jbc-inner .pg-process-section .pg-inner-section-head,
  body.pg-custom.pg-jbc-inner .pg-page-section > .pg-shell > .pg-inner-section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.pg-custom.pg-jbc-inner .pg-inner-hero h1,
  body.pg-custom.pg-jbc-inner .pg-inner-hero p:not(.pg-eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  body.pg-custom.pg-jbc-inner .pg-inner-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  body.pg-custom.pg-jbc-inner .pg-inner-hero h1 {
    font-size: clamp(46px, 15vw, 68px);
    line-height: 0.94;
  }

  body.pg-custom.pg-jbc-inner .pg-inner-section-head h2,
  body.pg-custom.pg-jbc-inner .pg-inner-copy h2 {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1;
  }

  body.pg-custom.pg-jbc-inner .pg-inner-copy,
  body.pg-custom.pg-jbc-inner .pg-inner-section-head,
  body.pg-custom.pg-jbc-inner .pg-inner-card-body,
  body.pg-custom.pg-jbc-inner .pg-check-list li {
    text-align: center;
  }
}


/* Fresh-foundation guard: inner-page trust pills intentionally removed. */
body.pg-custom.pg-jbc-inner .pg-inner-trust { display: none !important; }


/* 2026-05 revision batch: services dropdowns, conversion contact page, image-fit fixes */
body.pg-custom .pg-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
body.pg-custom .pg-nav-dropdown-trigger-wrap {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
body.pg-custom .pg-nav-dropdown-toggle,
body.pg-custom .pg-mobile-submenu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
body.pg-custom .pg-nav-dropdown-toggle {
  width: 22px;
  height: 22px;
  padding: 0;
}
body.pg-custom .pg-nav-dropdown-toggle span,
body.pg-custom .pg-mobile-submenu-toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
body.pg-custom .pg-nav-dropdown.pg-open .pg-nav-dropdown-toggle span,
body.pg-custom .pg-mobile-submenu.pg-open .pg-mobile-submenu-toggle span {
  transform: rotate(225deg) translateY(-2px);
}
body.pg-custom .pg-nav-dropdown-menu[hidden],
body.pg-custom .pg-mobile-submenu-links[hidden] {
  display: none !important;
}
body.pg-custom .pg-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  padding: 12px;
  border: 1px solid rgba(107,82,65,.15);
  border-radius: 12px;
  background: rgba(255,252,248,.98);
  box-shadow: 0 22px 55px rgba(43,27,19,.18);
  display: grid;
  gap: 4px;
  z-index: 40;
}
body.pg-custom .pg-nav-dropdown-menu a {
  color: var(--pg-ink) !important;
  padding: 11px 12px;
  border-radius: 8px;
  line-height: 1.35;
}
body.pg-custom .pg-nav-dropdown-menu a::after {
  display: none;
}
body.pg-custom .pg-nav-dropdown-menu a:hover {
  background: rgba(213,154,54,.12);
}
body.pg-custom .pg-mobile-submenu {
  width: 100%;
  display: grid;
  gap: 8px;
}
body.pg-custom .pg-mobile-submenu-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
body.pg-custom .pg-mobile-submenu-toggle {
  width: 28px;
  height: 28px;
  padding: 0;
}
body.pg-custom .pg-mobile-submenu-links {
  display: grid;
  gap: 4px;
  width: min(100%, 320px);
  margin: 0 auto 8px;
  padding: 8px;
  border: 1px solid rgba(107,82,65,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}
body.pg-custom .pg-mobile-submenu-links a {
  padding: 10px 12px !important;
  font-size: 15px !important;
}
body.pg-custom .pg-page-final-content .pg-inner-hero-actions {
  justify-content: center;
}
body.pg-custom .pg-image-contain {
  aspect-ratio: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
body.pg-custom.pg-contact-page .pg-contact-page-grid {
  align-items: start;
}
body.pg-custom.pg-contact-page .pg-inner-form-card {
  grid-column: 2;
}
body.pg-custom.pg-contact-page .pg-contact-details-column {
  grid-column: 1;
}
body.pg-custom.pg-contact-page .pg-contact-page-section {
  padding-top: clamp(32px, 5vw, 56px);
}
@media (max-width: 980px) {
  body.pg-custom.pg-contact-page .pg-inner-form-card,
  body.pg-custom.pg-contact-page .pg-contact-details-column {
    grid-column: auto;
  }
}
@media (max-width: 680px) {
  body.pg-custom .pg-hero h1 {
    line-height: 0.98;
  }
  body.pg-custom .pg-hero h1 em {
    margin-top: 8px;
  }
  body.pg-custom.pg-contact-page .pg-inner-hero.pg-inner-hero-compact {
    min-height: 280px;
    padding: 104px 0 28px;
  }
  body.pg-custom.pg-contact-page .pg-inner-hero .pg-eyebrow,
  body.pg-custom.pg-contact-page .pg-inner-hero p:not(.pg-eyebrow) {
    display: none;
  }
  body.pg-custom.pg-contact-page .pg-inner-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1;
    margin-top: 0;
  }
  body.pg-custom.pg-contact-page .pg-contact-page-section {
    padding-top: 18px;
  }
  body.pg-custom.pg-contact-page .pg-contact-page-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  body.pg-custom.pg-contact-page .pg-inner-form-card {
    order: 1;
  }
  body.pg-custom.pg-contact-page .pg-contact-details-column {
    order: 2;
  }
}


/* 2026-05 follow-up fixes: conversion pages, unified service trigger, full-height service images */
body.pg-custom .pg-nav-dropdown-trigger,
body.pg-custom .pg-mobile-submenu-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font: inherit;
  padding: 0;
}
body.pg-custom .pg-nav-dropdown-chevron,
body.pg-custom .pg-mobile-submenu-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
body.pg-custom .pg-nav-dropdown.pg-open .pg-nav-dropdown-chevron,
body.pg-custom .pg-mobile-submenu.pg-open .pg-mobile-submenu-chevron {
  transform: rotate(225deg) translateY(-2px);
}
body.pg-custom .pg-nav-dropdown-toggle,
body.pg-custom .pg-mobile-submenu-toggle,
body.pg-custom .pg-nav-dropdown-trigger-wrap,
body.pg-custom .pg-mobile-submenu-head {
  display: none !important;
}
body.pg-custom .pg-mobile-submenu-trigger {
  width: 100%;
}
body.pg-custom.pg-contact-page .pg-inner-hero.pg-inner-hero-compact,
body.pg-custom.pg-thank-you-page .pg-inner-hero.pg-inner-hero-compact {
  min-height: 360px;
  padding: 128px 0 64px;
}
body.pg-custom.pg-contact-page .pg-contact-page-section,
body.pg-custom.pg-thank-you-page .pg-thank-you-page-section {
  padding-top: clamp(32px, 5vw, 54px);
}
body.pg-custom.pg-contact-page .pg-contact-page-grid,
body.pg-custom.pg-thank-you-page .pg-contact-page-grid {
  align-items: start;
}
body.pg-custom.pg-contact-page .pg-inner-form-card,
body.pg-custom.pg-contact-page .pg-contact-details-column,
body.pg-custom.pg-thank-you-page .pg-inner-form-card,
body.pg-custom.pg-thank-you-page .pg-thankyou-panel {
  grid-column: auto;
}
@media (max-width: 680px) {
  body.pg-custom.pg-contact-page .pg-inner-hero.pg-inner-hero-compact,
  body.pg-custom.pg-thank-you-page .pg-inner-hero.pg-inner-hero-compact {
    min-height: 220px;
    padding: 104px 0 24px;
  }
  body.pg-custom.pg-contact-page .pg-inner-hero .pg-eyebrow,
  body.pg-custom.pg-contact-page .pg-inner-hero p:not(.pg-eyebrow),
  body.pg-custom.pg-thank-you-page .pg-inner-hero .pg-eyebrow,
  body.pg-custom.pg-thank-you-page .pg-inner-hero p:not(.pg-eyebrow) {
    display: none;
  }
  body.pg-custom.pg-contact-page .pg-inner-hero h1,
  body.pg-custom.pg-thank-you-page .pg-inner-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1;
    margin-top: 0;
  }
  body.pg-custom.pg-contact-page .pg-contact-page-section,
  body.pg-custom.pg-thank-you-page .pg-thank-you-page-section {
    padding-top: 18px;
  }
  body.pg-custom.pg-contact-page .pg-contact-page-grid,
  body.pg-custom.pg-thank-you-page .pg-contact-page-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  body.pg-custom.pg-contact-page .pg-inner-form-card,
  body.pg-custom.pg-thank-you-page .pg-inner-form-card {
    order: 1;
  }
  body.pg-custom.pg-contact-page .pg-contact-details-column,
  body.pg-custom.pg-thank-you-page .pg-thankyou-panel {
    order: 2;
  }
}
body.pg-custom .pg-mobile-submenu-trigger {
  padding: 13px 10px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  color: var(--pg-ink);
  border-bottom: 1px solid rgba(43, 27, 19, 0.08);
}