/* ==========================================================================
   Joy Pest Controls — Main Styles
   Warm editorial design: cream canvas, deep forest ink, Fraunces serif
   display + Inter body, pill buttons, arched imagery, generous air.
   ========================================================================== */

:root {
	/* Canvas */
	--cream: #FFFFFF; /* legacy alias — canvas is now pure white */
	--white: #FFFFFF;
	--gray: #F5F5F5;
	--tint: #EDF1E6;
	--dark: #033F2D;
	--dark-deep: #02291E;

	/* Ink */
	--ink: #1E2B23;
	--body: #56635A;
	--muted: #8A958C;

	/* Color */
	--green: #033F2D;          /* primary */
	--green-dark: #02291E;
	--green-soft: #DCE7D9;
	--lime: #C7F268;           /* secondary */
	--lime-bright: #D6F78D;
	--lime-deep: #B6EC4E;
	--amber: #DFA13D;          /* star ratings only */

	/* Lines + depth */
	--line: rgba(30, 43, 35, 0.12);
	--line-soft: rgba(30, 43, 35, 0.07);
	--line-dark: rgba(250, 246, 239, 0.16);
	--shadow: 0 18px 50px rgba(30, 43, 35, 0.12);
	--shadow-soft: 0 8px 28px rgba(30, 43, 35, 0.08);

	/* Geometry */
	--radius-card: 22px;
	--radius-md: 16px;
	--radius-pill: 100px;

	/* Type */
	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Inter', sans-serif;

	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
}

/* --- Base ----------------------------------------------------------------- */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	font-family: var(--font-body);
	color: var(--body);
	background: var(--cream);
	margin: 0;
	font-size: var(--text-base);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.12;
	color: var(--green);
	letter-spacing: -0.01em;
	margin: 0;
}

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

::selection { background: var(--green); color: var(--cream); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 3px;
	border-radius: 4px;
}

.jpc-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px;
}

.jpc-container-narrow { max-width: 860px; }

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* --- Sections ------------------------------------------------------------- */

.jpc-section { padding: clamp(90px, 9vw, 130px) 0; }

/* Surface mapping — sections alternate white and soft gray */
.jpc-section-white { background: var(--white); }
.jpc-section-light { background: var(--gray); }

.jpc-section-dark,
.jpc-section-navy,
.jpc-section-accent {
	background: var(--dark);
	color: rgba(250, 246, 239, 0.78);
}

.jpc-section-dark h2, .jpc-section-dark h3,
.jpc-section-navy h2, .jpc-section-navy h3,
.jpc-section-accent h2, .jpc-section-accent h3 { color: var(--cream); }

.jpc-section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 64px;
}

/* Section label — small caps with a hand-drawn feel */
.jpc-section-label {
	display: inline-block;
	font-family: var(--font-display);
	font-style: italic;
	font-size: var(--text-lg);
	font-weight: 400;
	color: var(--green);
	margin-bottom: 14px;
}

.jpc-section-dark .jpc-section-label,
.jpc-section-navy .jpc-section-label,
.jpc-section-accent .jpc-section-label { color: var(--lime); }

.jpc-section-title {
	font-size: clamp(2rem, 3.8vw, 3rem);
	font-weight: 600;
	line-height: 1.12;
	margin: 0 0 18px;
}

.jpc-section-sub {
	color: var(--body);
	font-size: var(--text-lg);
	line-height: 1.7;
	margin: 0;
}

.jpc-section-dark .jpc-section-sub,
.jpc-section-navy .jpc-section-sub,
.jpc-section-accent .jpc-section-sub { color: rgba(250, 246, 239, 0.72); }

.jpc-star { color: var(--amber); }

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

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
}

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

@keyframes jpc-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

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

/* Floating pill bar — inset from the edges, rounded, frosted glass.
   Overlays the hero at the top of the page but scrolls away with it. */
.jpc-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: transparent;
	padding: 14px 0;
}

.jpc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 26px;
	padding: 13px 14px 13px 26px;
	transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.jpc-logo-text {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.35rem;
	color: var(--ink);
	white-space: nowrap;
}

.jpc-logo-text em { font-style: italic; color: var(--green); }
.jpc-header-logo a, .jpc-footer-logo { text-decoration: none; }
.jpc-header-logo img { max-height: 46px; width: auto; }

/* Logo mark color override — original SVG fill is lime */
.jpc-logo-mark path,
.jpc-logo-mark circle { fill: var(--green); }

.jpc-nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jpc-nav-menu li { margin: 0; }

.jpc-nav-menu a {
	display: inline-block;
	color: var(--ink);
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	transition: background 0.25s ease, color 0.25s ease;
}

.jpc-nav-menu a:hover {
	background: var(--tint);
	color: var(--green-dark);
}

.jpc-header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

/* Hamburger */
.jpc-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.jpc-hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.jpc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jpc-hamburger.open span:nth-child(2) { opacity: 0; }
.jpc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.jpc-mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(380px, 100%);
	height: 100vh;
	background: var(--cream);
	border-left: 1px solid var(--line-soft);
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 40px 40px;
	box-sizing: border-box;
	box-shadow: -20px 0 60px rgba(30, 43, 35, 0.08);
}

.jpc-mobile-menu.open { transform: translateX(0); }

.jpc-mobile-nav-menu, .jpc-mobile-nav .jpc-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}

.jpc-mobile-nav-menu a, .jpc-mobile-nav .jpc-nav-menu a {
	display: block;
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 600;
	text-decoration: none;
	padding: 13px 0;
	border-bottom: 1px solid var(--line-soft);
	border-radius: 0;
	background: none;
}

.jpc-mobile-nav-menu a:hover, .jpc-mobile-nav .jpc-nav-menu a:hover { color: var(--green); }

.jpc-mobile-menu-footer {
	margin-top: 36px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}

/* Over the dark hero / page-hero, the transparent header flips to light text.
   Applies to the front page and all static pages (every page template opens
   with a dark hero). Desktop only — below 1025px the bar is always solid. */
@media (min-width: 1025px) {
	:is(.home, .page, .blog, .single, .archive) .jpc-header .jpc-logo-text,
	:is(.home, .page, .blog, .single, .archive) .jpc-header .jpc-nav-menu a { color: var(--white); }

	:is(.home, .page, .blog, .single, .archive) .jpc-header .jpc-logo-text em { color: var(--lime); }

	:is(.home, .page, .blog, .single, .archive) .jpc-header .jpc-logo-mark path,
	:is(.home, .page, .blog, .single, .archive) .jpc-header .jpc-logo-mark circle { fill: var(--white); }

	:is(.home, .page, .blog, .single, .archive) .jpc-header .jpc-nav-menu a:hover {
		background: rgba(255, 255, 255, 0.14);
		color: var(--white);
	}
}

/* --- Hero — full-bleed photo with left gradient wash ------------------------------ */

.jpc-hero {
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	min-height: min(820px, 100vh);
	background: var(--dark-deep);
	padding: 180px max(40px, calc((100vw - 1240px) / 2 + 28px)) 110px;
	overflow: hidden;
	isolation: isolate;
}

/* Background photo, subject weighted to the right */
.jpc-hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.jpc-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 72% center;
}

/* Primary-green gradient: near-solid on the left, fading out past center */
.jpc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to right,
		rgba(2, 41, 30, 0.96) 0%,
		rgba(3, 63, 45, 0.88) 30%,
		rgba(3, 63, 45, 0.5) 52%,
		rgba(3, 63, 45, 0.16) 74%,
		rgba(3, 63, 45, 0) 100%);
	pointer-events: none;
}

/* Soft darkening along the top so the floating header stays legible */
.jpc-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to bottom, rgba(2, 41, 30, 0.5) 0%, transparent 28%);
	pointer-events: none;
}

.jpc-hero-content {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.jpc-hero-content-inner { max-width: 640px; }

.jpc-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.24);
	color: var(--white);
	border-radius: var(--radius-pill);
	padding: 8px 18px;
	font-size: var(--text-sm);
	font-weight: 500;
	margin-bottom: 28px;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.jpc-badge-pill::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lime);
}

.jpc-hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.9rem, 5.6vw, 4.9rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.06;
	letter-spacing: -0.015em;
	margin: 0 0 26px;
}

.jpc-hero-title em {
	font-style: italic;
	font-weight: 500;
	color: var(--lime);
}

.jpc-hero-sub {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.15rem;
	line-height: 1.75;
	max-width: 480px;
	margin: 0 0 36px;
}

.jpc-hero-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}

/* Buttons follow the on-dark convention: lime primary, white outline */
.jpc-hero .jpc-btn:not(.jpc-btn-outline) {
	background: var(--lime);
	color: var(--green);
}

.jpc-hero .jpc-btn:not(.jpc-btn-outline):hover {
	background: var(--lime-bright);
	box-shadow: 0 12px 30px rgba(199, 242, 104, 0.3);
}

.jpc-hero .jpc-btn-outline {
	color: var(--white);
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
}

.jpc-hero .jpc-btn-outline:hover {
	background: var(--white);
	color: var(--green);
	box-shadow: none;
}

.jpc-hero-stats {
	display: flex;
	align-items: stretch;
}

.jpc-hero-stat {
	display: flex;
	flex-direction: column;
	padding: 0 34px;
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.jpc-hero-stat:first-child { padding-left: 0; border-left: none; }

.jpc-hero-stat-number {
	font-family: var(--font-display);
	font-size: 2.1rem;
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
}

.jpc-hero-stat-number .jpc-star { color: var(--lime); }

.jpc-hero-stat-label {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.7);
	margin-top: 5px;
}

/* --- Trust bar — quiet keyline strip --------------------------------------------- */

.jpc-trust-bar {
	background: var(--cream);
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
	padding: 26px 0;
}

.jpc-trust-bar-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.jpc-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	font-weight: 500;
	font-size: var(--text-sm);
}

.jpc-trust-item svg { flex-shrink: 0; }
.jpc-trust-item svg circle { fill: var(--green); }
.jpc-trust-item svg path { stroke: var(--cream); }

/* --- Services grid ----------------------------------------------------------------- */

.jpc-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.jpc-service-card {
	background: var(--cream);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-card);
	padding: 16px 16px 34px;
	text-align: center;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.jpc-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.jpc-service-card-media {
	position: relative;
	margin-bottom: 46px;
}

.jpc-service-card-img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: var(--radius-md);
}

.jpc-service-icon {
	position: absolute;
	left: 50%;
	bottom: -27px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--green);
	border: 4px solid var(--cream);
	box-sizing: border-box;
}

.jpc-service-icon svg { stroke: var(--cream); }
.jpc-service-icon svg [fill] { fill: var(--cream); }

.jpc-service-card-body { padding: 0 18px; }

.jpc-service-name {
	color: var(--green);
	font-size: 1.3rem;
	margin: 0 0 10px;
}

.jpc-service-desc {
	color: var(--body);
	font-size: 0.93rem;
	line-height: 1.65;
	margin: 0 0 22px;
}

.jpc-services-footnote {
	text-align: center;
	margin: 48px 0 0;
}

/* --- Why choose us ------------------------------------------------------------------ */

.jpc-why-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 72px;
	align-items: center;
}

.jpc-why-content { text-align: left; }
.jpc-why-content .jpc-section-title { text-align: left; }

.jpc-why-body {
	color: var(--body);
	line-height: 1.75;
	margin: 0 0 30px;
}

.jpc-why-feature-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

.jpc-why-feature-card {
	background: var(--white);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	padding: 26px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jpc-why-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
}

.jpc-why-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--tint);
	margin-bottom: 14px;
}

.jpc-why-feature-icon svg { stroke: var(--green); }

.jpc-why-feature-card h3 {
	font-size: 1.12rem;
	margin: 0 0 7px;
}

.jpc-why-feature-card p {
	margin: 0;
	color: var(--body);
	font-size: var(--text-sm);
	line-height: 1.65;
}

.jpc-why-owner {
	display: flex;
	align-items: center;
	gap: 14px;
	border-top: 1px solid var(--line-soft);
	padding-top: 24px;
}

.jpc-why-owner-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--green);
	color: var(--cream);
	font-weight: 700;
	flex-shrink: 0;
}

.jpc-why-owner-name {
	display: block;
	font-weight: 600;
	color: var(--ink);
}

.jpc-why-owner-role {
	display: block;
	color: var(--muted);
	font-size: var(--text-sm);
}

.jpc-why-media {
	position: relative;
	padding-bottom: 48px;
}

.jpc-why-image {
	width: 100%;
	border-radius: var(--radius-card);
	object-fit: cover;
	aspect-ratio: 5 / 4;
}

.jpc-why-stat-card {
	position: absolute;
	right: 26px;
	bottom: 0;
	background: var(--dark);
	border-radius: var(--radius-md);
	padding: 24px 30px;
	text-align: center;
	box-shadow: var(--shadow);
	animation: jpc-float 8s ease-in-out infinite;
}

.jpc-why-stat-number {
	display: block;
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--cream);
	line-height: 1;
}

.jpc-why-stat-label {
	display: block;
	color: rgba(250, 246, 239, 0.7);
	font-size: var(--text-sm);
	margin-top: 6px;
}

/* --- Pest types ---------------------------------------------------------------------- */

.jpc-pest-items {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	justify-content: center;
}

.jpc-pest-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 118px;
}

.jpc-pest-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: var(--cream);
	border: 1px solid var(--line-soft);
	color: var(--green); /* single minimalist line-icon colour = primary */
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.jpc-pest-item-icon svg {
	width: 42px;
	height: 42px;
}

.jpc-pest-item:hover .jpc-pest-item-icon {
	background: var(--green);
	color: var(--lime);
	transform: translateY(-5px);
	box-shadow: var(--shadow-soft);
}

.jpc-pest-item-name {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--green);
	text-align: center;
}

/* Pest carousel: scroll a single row of fixed-width chips instead of wrapping. */
.jpc-pest-carousel { margin-top: 8px; }

.jpc-pest-carousel .jpc-pest-items.jpc-carousel-track {
	flex-wrap: nowrap;
	gap: 22px;
	justify-content: flex-start;
	padding-bottom: 10px;
}

.jpc-pest-carousel .jpc-pest-items.jpc-carousel-track > .jpc-pest-item {
	flex: 0 0 118px;
	scroll-snap-align: start;
}

.jpc-pest-facts {
	margin-top: 60px;
	text-align: center;
}

.jpc-pest-facts-label {
	display: inline-block;
	font-family: var(--font-display);
	font-style: italic;
	font-size: var(--text-lg);
	color: var(--green);
	margin-bottom: 26px;
}

.jpc-pest-facts-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.jpc-pest-fact {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	background: var(--cream);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-pill);
	padding: 18px 22px;
}

.jpc-pest-fact-number {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--green);
	white-space: nowrap;
}

.jpc-pest-fact-label {
	font-size: var(--text-sm);
	color: var(--body);
	text-align: left;
	line-height: 1.35;
}

/* --- How it works — rounded process panel -------------------------------------------- */

.jpc-process-panel {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 52px;
	align-items: center;
	background: var(--white);
	border: 1px solid var(--line-soft);
	border-radius: 28px;
	padding: 60px;
	box-shadow: var(--shadow-soft);
}

.jpc-process-content { text-align: left; }
.jpc-process-content .jpc-section-title { text-align: left; font-size: clamp(1.7rem, 3vw, 2.3rem); }

.jpc-process-sub {
	color: var(--body);
	margin: 0 0 34px;
	line-height: 1.7;
}

.jpc-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 34px;
}

.jpc-step {
	border-top: 1px solid var(--line-soft);
	padding-top: 20px;
}

.jpc-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--tint);
	color: var(--green-dark);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--text-base);
	margin-bottom: 14px;
}

.jpc-step-title {
	font-size: 1.15rem;
	margin: 0 0 7px;
}

.jpc-step-desc {
	color: var(--body);
	font-size: var(--text-sm);
	line-height: 1.65;
	margin: 0;
}

.jpc-process-media {
	position: relative;
	align-self: stretch;
	min-height: 380px;
}

.jpc-process-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 200px 200px var(--radius-md) var(--radius-md);
}

.jpc-process-review-card {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: var(--cream);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	padding: 14px 20px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	box-shadow: var(--shadow-soft);
}

.jpc-process-review-score {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--ink);
}

.jpc-process-review-stars { color: var(--amber); font-size: 0.9rem; letter-spacing: 3px; }

.jpc-process-review-count {
	color: var(--muted);
	font-size: var(--text-xs);
}

/* --- About page: story + vision -------------------------------------------------------- */

.jpc-about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(40px, 6vw, 90px);
	align-items: start;
}

.jpc-about-story-lead {
	font-family: var(--font-display);
	font-size: 1.35rem;
	line-height: 1.6;
	color: var(--ink);
	margin: 0;
}

.jpc-about-story-right p { margin: 0 0 24px; }

.jpc-about-tagline {
	margin: 34px 0 38px;
	padding-left: 22px;
	border-left: 3px solid var(--lime);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.35;
	color: var(--green);
}

/* Vision — inset rounded panel, photo under a primary wash */
.jpc-vision-panel {
	position: relative;
	border-radius: var(--radius-card);
	padding: clamp(60px, 7vw, 96px) clamp(28px, 6vw, 90px);
	text-align: center;
	background:
		linear-gradient(rgba(3, 63, 45, 0.92), rgba(3, 63, 45, 0.92)),
		url('../../../../uploads/2026/02/58-DSC01535-scaled.jpg') center / cover no-repeat;
	overflow: hidden;
}

.jpc-vision-panel .jpc-section-label { color: var(--lime); }

.jpc-vision-text {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	line-height: 1.45;
	color: var(--white);
	max-width: 880px;
	margin: 0 auto;
}

/* --- About section --------------------------------------------------------------------- */

.jpc-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.jpc-about-image-wrap { position: relative; padding-bottom: 56px; padding-right: 56px; }

.jpc-about-image-primary {
	width: 100%;
	border-radius: var(--radius-card);
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.jpc-about-image-secondary {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 55%;
	border-radius: var(--radius-card);
	border: 6px solid var(--cream);
	object-fit: cover;
	aspect-ratio: 4 / 3;
	box-shadow: var(--shadow-soft);
}

.jpc-floating-badge {
	position: absolute;
	top: 32px;
	left: -16px;
	background: var(--dark);
	color: var(--cream);
	font-weight: 500;
	font-size: var(--text-sm);
	padding: 13px 22px;
	border-radius: var(--radius-pill);
	z-index: 2;
	box-shadow: var(--shadow-soft);
	animation: jpc-float 7s ease-in-out infinite;
}

.jpc-about-stats {
	display: flex;
	gap: 42px;
	margin-top: 30px;
}

.jpc-about-stat { display: flex; flex-direction: column; }

.jpc-about-stat-number {
	font-family: var(--font-display);
	font-size: 2.1rem;
	font-weight: 600;
	color: var(--ink);
}

.jpc-about-stat-label {
	color: var(--muted);
	font-size: var(--text-sm);
}

.jpc-about-content { text-align: left; }
.jpc-about-content .jpc-section-title { text-align: left; }

.jpc-about-body {
	color: var(--body);
	line-height: 1.75;
	margin: 0 0 32px;
}

.jpc-about-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 38px;
}

.jpc-about-feature {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.jpc-about-feature svg { flex-shrink: 0; margin-top: 2px; }
.jpc-about-feature svg circle { fill: var(--green); }
.jpc-about-feature svg path { stroke: var(--cream); }

.jpc-about-feature h3 {
	font-size: 1.12rem;
	margin: 0 0 5px;
}

.jpc-about-feature p {
	margin: 0;
	color: var(--body);
	font-size: var(--text-sm);
}

/* --- CTA bands — deep green moments ---------------------------------------------------------- */

.jpc-cta-band {
	position: relative;
	padding: clamp(88px, 8vw, 130px) 0;
	text-align: center;
	background:
		linear-gradient(rgba(3, 63, 45, 0.9), rgba(3, 63, 45, 0.9)),
		url('../../../../uploads/2026/02/50-DSC01525-scaled.jpg') center / cover no-repeat;
	color: rgba(255, 255, 255, 0.78);
	overflow: hidden;
	isolation: isolate;
}

.jpc-cta-band::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 880px;
	height: 480px;
	background: radial-gradient(ellipse, rgba(199, 242, 104, 0.08) 0%, transparent 62%);
	z-index: -1;
	pointer-events: none;
}

.jpc-cta-band-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.8vw, 2.9rem);
	font-weight: 600;
	color: var(--cream);
	margin: 0 0 14px;
}

.jpc-cta-band-sub {
	color: rgba(250, 246, 239, 0.7);
	font-size: var(--text-lg);
	margin: 0 0 34px;
}

.jpc-cta-band-buttons {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.jpc-cta-stats-row {
	display: flex;
	justify-content: center;
	gap: 22px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.jpc-cta-stat {
	display: flex;
	flex-direction: column;
	background: rgba(250, 246, 239, 0.05);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-card);
	padding: 32px 48px;
}

.jpc-cta-stat-number {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 600;
	color: var(--cream);
	line-height: 1.1;
}

.jpc-cta-stat-label {
	color: rgba(250, 246, 239, 0.65);
	font-size: var(--text-sm);
	margin-top: 8px;
}

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

.jpc-google-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--ink);
	border-radius: var(--radius-pill);
	padding: 11px 22px;
	font-size: var(--text-sm);
	font-weight: 600;
	margin-top: 18px;
	box-shadow: var(--shadow-soft);
}

.jpc-google-badge-stars { color: var(--amber); letter-spacing: 3px; }

.jpc-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.jpc-review-card {
	background: var(--cream);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-card);
	padding: 34px;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.jpc-review-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.jpc-review-stars { color: var(--amber); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }

.jpc-review-quote {
	color: var(--body);
	font-size: 0.97rem;
	line-height: 1.75;
	margin: 0 0 22px;
	flex-grow: 1;
}

.jpc-review-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.jpc-review-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--tint);
	color: var(--green-dark);
	font-weight: 700;
	font-size: var(--text-sm);
	flex-shrink: 0;
}

.jpc-review-meta { display: flex; flex-direction: column; }
.jpc-review-name { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.jpc-review-city { color: var(--muted); font-size: var(--text-xs); }

.jpc-review-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--line-soft);
	padding-top: 14px;
}

.jpc-review-date { color: var(--muted); font-size: var(--text-xs); }

.jpc-review-verified {
	background: var(--tint);
	color: var(--green-dark);
	font-size: var(--text-xs);
	font-weight: 600;
	padding: 4px 12px;
	border-radius: var(--radius-pill);
}

/* --- Reviews summary banner (reviews page) --------------------------------------------------- */

.jpc-reviews-summary { padding-bottom: 0; }

.jpc-reviews-summary-card {
	display: flex;
	align-items: center;
	gap: 48px;
	background: var(--white);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-card);
	padding: 44px 52px;
	box-shadow: var(--shadow-soft);
}

.jpc-reviews-summary-score {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	text-align: center;
}

.jpc-reviews-summary-number {
	font-family: var(--font-display);
	font-size: 4.2rem;
	font-weight: 600;
	color: var(--green);
	line-height: 1;
}

.jpc-reviews-summary-stars {
	color: var(--amber);
	font-size: 1.35rem;
	letter-spacing: 4px;
}

.jpc-reviews-summary-platform {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--body);
	font-size: var(--text-sm);
	font-weight: 600;
	margin-top: 4px;
}

.jpc-reviews-summary-divider {
	width: 1px;
	align-self: stretch;
	background: var(--line);
	flex-shrink: 0;
}

.jpc-reviews-summary-body { flex: 1; }

.jpc-reviews-summary-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 12px;
}

.jpc-reviews-summary-text {
	color: var(--body);
	font-size: var(--text-base);
	line-height: 1.75;
	margin: 0 0 24px;
	max-width: 56ch;
}

.jpc-reviews-summary-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* --- Service area ---------------------------------------------------------------------------- */

.jpc-city-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.jpc-city-pill {
	background: var(--white);
	color: var(--body);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-pill);
	padding: 11px 22px;
	font-size: 0.95rem;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.jpc-city-pill:hover {
	background: var(--tint);
	color: var(--green-dark);
	transform: translateY(-2px);
}

.jpc-city-pill-highlight {
	background: var(--green);
	color: var(--cream);
	font-weight: 600;
	border-color: var(--green);
}

.jpc-city-pill-highlight:hover { background: var(--green); color: var(--cream); }

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

.jpc-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.jpc-faq-item {
	background: var(--white);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	transition: box-shadow 0.3s ease;
}

.jpc-faq-item.open { box-shadow: var(--shadow-soft); }

.jpc-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	width: 100%;
	background: transparent;
	border: none;
	color: var(--green);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.12rem;
	text-align: left;
	padding: 22px 26px;
	cursor: pointer;
}

.jpc-faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--tint);
	color: var(--green-dark);
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
	flex-shrink: 0;
}

.jpc-faq-item.open .jpc-faq-icon {
	transform: rotate(45deg);
	background: var(--green);
	color: var(--cream);
}

.jpc-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.jpc-faq-answer p {
	color: var(--body);
	line-height: 1.7;
	margin: 0;
	padding: 0 26px 24px;
}

/* --- Quote form — deep green close ----------------------------------------------------------- */

.jpc-quote {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

/* Photo backdrop under a near-solid primary wash */
.jpc-quote.jpc-section-accent {
	background:
		linear-gradient(rgba(3, 63, 45, 0.93), rgba(3, 63, 45, 0.93)),
		url('../../../../uploads/2026/06/gallery-2.jpg') center / cover no-repeat;
}

.jpc-quote::before {
	content: '';
	position: absolute;
	top: -240px;
	right: -180px;
	width: 680px;
	height: 680px;
	background: radial-gradient(circle, rgba(223, 161, 61, 0.1) 0%, transparent 62%);
	z-index: -1;
	pointer-events: none;
}

.jpc-quote-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 64px;
	align-items: center;
}

.jpc-quote-info { position: relative; }

.jpc-guarantee-stamp {
	position: absolute;
	top: -52px;
	right: 0;
	transform: rotate(12deg);
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
	animation: jpc-float 9s ease-in-out infinite;
}

.jpc-guarantee-stamp svg circle { stroke: var(--lime); }
.jpc-guarantee-stamp svg path { stroke: var(--lime); }
.jpc-guarantee-stamp svg text { fill: var(--lime); }

.jpc-quote-title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.2vw, 2.5rem);
	font-weight: 600;
	color: var(--cream);
	margin: 0 0 28px;
}

.jpc-quote-checklist {
	list-style: none;
	margin: 0 0 34px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.jpc-quote-checklist li {
	position: relative;
	padding-left: 38px;
	color: rgba(250, 246, 239, 0.8);
	line-height: 1.55;
}

.jpc-quote-checklist li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: -1px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--lime);
	color: var(--green);
	font-weight: 700;
	font-size: 0.8rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.jpc-quote-phone {
	font-size: var(--text-lg);
	color: rgba(250, 246, 239, 0.75);
	margin: 0;
}

.jpc-quote-phone a {
	color: var(--cream);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--text-2xl);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid var(--lime);
	transition: color 0.25s ease;
}

.jpc-quote-phone a:hover { color: var(--lime); }

/* Form card — cream paper on deep green */
.jpc-quote-form-card {
	background: var(--cream);
	border-radius: 26px;
	padding: 44px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.jpc-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.jpc-form-field { margin-bottom: 18px; }

.jpc-form-field label {
	display: block;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 7px;
}

.jpc-required { color: var(--green); }

.jpc-form-field input,
.jpc-form-field select,
.jpc-form-field textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 13px 16px;
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: var(--ink);
	background: var(--white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jpc-form-field input::placeholder,
.jpc-form-field textarea::placeholder { color: var(--muted); }

.jpc-form-field input:focus,
.jpc-form-field select:focus,
.jpc-form-field textarea:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(3, 63, 45, 0.15);
}

.jpc-form-field.error input,
.jpc-form-field.error select,
.jpc-form-field.error textarea {
	border-color: #C2543D;
}

.jpc-field-error {
	display: none;
	color: #C2543D;
	font-size: var(--text-xs);
	margin-top: 5px;
}

.jpc-form-field.error .jpc-field-error { display: block; }

.jpc-form-submit {
	width: 100%;
	justify-content: center;
}

.jpc-form-note {
	text-align: center;
	color: var(--muted);
	font-size: var(--text-xs);
	margin: 14px 0 0;
}

.jpc-form-note-error {
	color: #b3261e;
	font-weight: 600;
}

.jpc-form-success {
	text-align: center;
	background: var(--tint);
	color: var(--green-dark);
	font-weight: 600;
	border-radius: 12px;
	padding: 14px;
	margin: 16px 0 0;
}

/* --- Inner page hero --------------------------------------------------------------------------- */

.jpc-page-hero {
	position: relative;
	padding: 180px 0 96px;
	text-align: center;
	background:
		linear-gradient(rgba(3, 63, 45, 0.9), rgba(3, 63, 45, 0.9)),
		url('../../../../uploads/2026/02/21-DSC01315-scaled.jpg') center / cover no-repeat;
	overflow: hidden;
	isolation: isolate;
	color: rgba(255, 255, 255, 0.85);
}

.jpc-page-hero .jpc-section-label { color: var(--lime); }

.jpc-page-hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 18px;
}

.jpc-page-hero-sub {
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--text-lg);
	max-width: 620px;
	margin: 0 auto;
}

/* --- Contact cards ------------------------------------------------------------------------------- */

.jpc-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	text-align: center;
}

.jpc-contact-card {
	background: var(--white);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-card);
	padding: 46px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 13px;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.jpc-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.jpc-contact-card svg { fill: var(--green); }

.jpc-contact-card h2 {
	font-size: var(--text-xl);
	margin: 0;
}

.jpc-contact-card a { color: var(--body); font-weight: 600; text-decoration: none; transition: color 0.25s ease; }
.jpc-contact-card a:hover { color: var(--green); }
.jpc-contact-card p { color: var(--body); margin: 0; line-height: 1.75; }

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

.jpc-footer {
	background: var(--dark);
	color: rgba(255, 255, 255, 0.72);
	padding: 88px 0 0;
}

.jpc-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.9fr 1fr 1.25fr;
	padding-bottom: 60px;
}

/* Thin vertical separators between columns */
.jpc-footer-col { padding-right: 40px; }

.jpc-footer-col + .jpc-footer-col {
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	padding-left: 40px;
}

.jpc-footer .jpc-logo-text { font-size: 1.25rem; color: var(--white); }
.jpc-footer .jpc-logo-text em { color: var(--lime); }
.jpc-footer .jpc-logo-mark path,
.jpc-footer .jpc-logo-mark circle { fill: var(--lime); }

.jpc-footer-tagline {
	margin: 0 0 26px;
	line-height: 1.75;
	font-size: var(--text-sm);
}

.jpc-footer-social {
	display: flex;
	gap: 12px;
}

.jpc-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(199, 242, 104, 0.55);
	color: var(--lime);
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.jpc-footer-social a:hover {
	background: var(--lime);
	color: var(--green);
	transform: translateY(-3px);
}

.jpc-license-badge {
	display: inline-block;
	border: 1px solid rgba(199, 242, 104, 0.5);
	color: var(--lime);
	font-size: var(--text-xs);
	font-weight: 600;
	padding: 8px 16px;
	border-radius: var(--radius-pill);
}

.jpc-footer-heading {
	color: var(--white);
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 600;
	margin: 0 0 22px;
}

.jpc-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
	font-size: var(--text-sm);
}

/* Lime bullet dot before each item */
.jpc-footer-links li {
	position: relative;
	padding-left: 17px;
}

.jpc-footer-links li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--lime);
}

.jpc-footer-links a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color 0.25s ease;
}

.jpc-footer-links a:hover { color: var(--lime); }

/* Contact block under the hours, divided by a keyline */
.jpc-footer-contact-cta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 26px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.jpc-footer-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--lime);
	color: var(--green);
	flex-shrink: 0;
}

.jpc-footer-contact-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.jpc-footer-contact-label {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.72);
}

.jpc-footer-contact-phone {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--white);
	text-decoration: none;
	transition: color 0.25s ease;
}

.jpc-footer-contact-phone:hover { color: var(--lime); }

.jpc-footer-contact-email {
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.25s ease;
}

.jpc-footer-contact-email:hover { color: var(--lime); }

/* Newsletter band — rounded inner panel */
.jpc-footer-newsletter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 26px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-card);
	padding: 34px 44px;
	margin-bottom: 56px;
}

/* Real company logo sitting before the subscription block */
.jpc-footer-logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.jpc-footer-logo-img {
	max-height: 58px;
	width: auto;
	height: auto;
	display: block;
}

.jpc-footer-newsletter-inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
}

.jpc-footer-newsletter-title {
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0;
}

.jpc-footer-newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.jpc-footer-newsletter-form input {
	width: min(320px, 100%);
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 14px 18px;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	color: var(--white);
	transition: border-color 0.2s ease;
}

.jpc-footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.jpc-footer-newsletter-form input:focus { border-color: var(--lime); outline: none; }

/* Large screens: keep the title, email field and button on a single line */
@media (min-width: 1025px) {
	.jpc-footer-newsletter { flex-wrap: nowrap; }

	.jpc-footer-newsletter-inner {
		flex: 1;
		flex-wrap: nowrap;
		justify-content: flex-end;
		min-width: 0;
	}

	.jpc-footer-newsletter-title { white-space: nowrap; }

	.jpc-footer-newsletter-form {
		flex: 1;
		flex-wrap: nowrap;
		max-width: 520px;
		min-width: 0;
	}

	.jpc-footer-newsletter-form input {
		flex: 1;
		width: auto;
		min-width: 0;
	}

	.jpc-footer-newsletter-form .jpc-btn {
		flex-shrink: 0;
		white-space: nowrap;
	}
}

.jpc-footer-bottom {
	background: var(--dark-deep);
	padding: 22px 0;
}

.jpc-footer-bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}

.jpc-footer-bottom p {
	margin: 0;
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.55);
}

/* --- Check list (light backgrounds) ------------------------------------------------------------------- */

.jpc-check-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.jpc-check-list li {
	position: relative;
	padding-left: 40px;
	color: var(--body);
	line-height: 1.65;
}

.jpc-check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 1px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--green);
	color: var(--lime);
	font-weight: 700;
	font-size: 0.8rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* --- CTA panel — inset rounded photo panel with copy + button ------------------------------------------ */

.jpc-cta-panel {
	position: relative;
	border-radius: var(--radius-card);
	padding: clamp(60px, 7vw, 96px) clamp(28px, 6vw, 90px);
	text-align: center;
	background:
		linear-gradient(rgba(3, 63, 45, 0.92), rgba(3, 63, 45, 0.92)),
		url('../../../../uploads/2026/02/50-DSC01525-scaled.jpg') center / cover no-repeat;
	overflow: hidden;
}

.jpc-cta-panel .jpc-section-label { color: var(--lime); }

.jpc-cta-panel-text {
	font-size: var(--text-lg);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
	max-width: 880px;
	margin: 0 auto 34px;
}

.jpc-cta-panel .jpc-btn {
	background: var(--lime);
	color: var(--green);
}

.jpc-cta-panel .jpc-btn:hover {
	background: var(--lime-bright);
	box-shadow: 0 12px 30px rgba(199, 242, 104, 0.3);
}

/* --- Info cards grid (feature cards outside the why-grid) ---------------------------------------------- */

.jpc-info-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.jpc-info-cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Blog index — post cards ---------------------------------------------------------------------------- */

.jpc-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.jpc-post-card {
	background: var(--white);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-card);
	padding: 16px 16px 30px;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.jpc-post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.jpc-post-card-media {
	position: relative;
	display: block;
	margin-bottom: 22px;
}

.jpc-post-card-img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: var(--radius-md);
}

/* Floating date chip on the image */
.jpc-post-card-date {
	position: absolute;
	left: 14px;
	bottom: 14px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	background: var(--lime);
	color: var(--green);
	border-radius: 14px;
	padding: 9px 14px;
	line-height: 1.05;
	box-shadow: var(--shadow-soft);
}

.jpc-post-card-date-day {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.25rem;
}

.jpc-post-card-date-month {
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.jpc-post-card-body {
	padding: 0 12px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.jpc-post-card-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: var(--text-xs);
	color: var(--muted);
}

.jpc-post-card-cat {
	background: var(--tint);
	color: var(--green-dark);
	font-weight: 600;
	padding: 4px 12px;
	border-radius: var(--radius-pill);
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease;
}

.jpc-post-card-cat:hover {
	background: var(--green);
	color: var(--cream);
}

.jpc-post-card-title {
	font-size: 1.25rem;
	line-height: 1.3;
	margin: 0 0 10px;
}

.jpc-post-card-title a {
	color: var(--green);
	text-decoration: none;
	transition: color 0.25s ease;
}

.jpc-post-card-title a:hover { color: var(--green-dark); text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.jpc-post-card-excerpt {
	color: var(--body);
	font-size: 0.93rem;
	line-height: 1.65;
	margin: 0 0 20px;
	flex-grow: 1;
}

.jpc-post-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	color: var(--green);
	font-weight: 600;
	font-size: var(--text-sm);
	text-decoration: none;
	border-bottom: 2px solid var(--lime);
	padding-bottom: 3px;
	transition: color 0.25s ease, border-color 0.25s ease;
}

.jpc-post-card-link:hover { color: var(--green-dark); border-color: var(--green); }
.jpc-post-card-link .jpc-btn-arrow { transition: transform 0.3s ease; }
.jpc-post-card-link:hover .jpc-btn-arrow { transform: translateX(4px); }

/* Pagination — pill page numbers */
.jpc-pagination { margin-top: 56px; }
.jpc-pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.jpc-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 18px;
	box-sizing: border-box;
	background: var(--white);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-pill);
	color: var(--body);
	font-weight: 600;
	font-size: var(--text-sm);
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.jpc-pagination a.page-numbers:hover {
	background: var(--tint);
	color: var(--green-dark);
	transform: translateY(-2px);
}

.jpc-pagination .page-numbers.current {
	background: var(--green);
	border-color: var(--green);
	color: var(--cream);
}

.jpc-pagination .page-numbers.dots { border: none; background: transparent; }

/* --- Single post ------------------------------------------------------------------------------------------ */

.jpc-single-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.82);
}

.jpc-single-meta-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--lime);
	color: var(--green);
	font-weight: 700;
}

.jpc-single-meta-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
}

.jpc-single-featured { margin: 0 0 44px; }

.jpc-single-featured-img,
.jpc-single-featured img {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
	border-radius: var(--radius-card);
}

/* Long-form prose */
.jpc-prose {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--body);
}

.jpc-prose p { margin: 0 0 26px; }

.jpc-prose h2 {
	font-size: 1.7rem;
	margin: 44px 0 16px;
}

.jpc-prose h3 {
	font-size: 1.3rem;
	margin: 36px 0 14px;
}

.jpc-prose a {
	color: var(--green);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--lime);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
	transition: color 0.25s ease;
}

.jpc-prose a:hover { color: var(--green-dark); }

.jpc-prose strong { color: var(--ink); }

.jpc-prose ul,
.jpc-prose ol {
	margin: 0 0 26px;
	padding-left: 26px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.jpc-prose ul li::marker { color: var(--green); }
.jpc-prose ol li::marker { color: var(--green); font-weight: 600; }

.jpc-prose blockquote {
	margin: 34px 0;
	padding-left: 22px;
	border-left: 3px solid var(--lime);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 1.35rem;
	line-height: 1.45;
	color: var(--green);
}

.jpc-prose blockquote p { margin: 0; }

.jpc-prose img { border-radius: var(--radius-card); margin: 8px 0; }

.jpc-single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 40px;
}

.jpc-single-tags .jpc-city-pill { text-decoration: none; }

.jpc-single-footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	border-top: 1px solid var(--line-soft);
	margin-top: 44px;
	padding-top: 36px;
}

/* --- Service detail ------------------------------------------------------------------------------------------ */

.jpc-service-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: start;
}

.jpc-service-detail-img {
	width: 100%;
	aspect-ratio: 4 / 3.4;
	object-fit: cover;
	border-radius: var(--radius-card);
}

.jpc-service-detail-pests {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.jpc-service-detail-pests .jpc-city-pill {
	background: var(--gray);
	font-size: var(--text-sm);
	padding: 9px 18px;
}

.jpc-service-detail-content .jpc-section-title { text-align: left; }
.jpc-service-detail-content p { margin: 0 0 22px; line-height: 1.75; }

.jpc-service-detail-content a:not(.jpc-btn) {
	color: var(--green);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--lime);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.jpc-service-detail-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 8px;
}

/* --- Partners and products ----------------------------------------------------------------------------- */

.jpc-partners-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: clamp(48px, 8vw, 120px);
}

.jpc-partners-row img {
	max-height: 90px;
	width: auto;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.jpc-partners-row img:hover { opacity: 1; }

/* --- Back to top --------------------------------------------------------------------------------------- */

.jpc-back-to-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 998;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	min-width: 0;
	padding: 0; /* override Astra's global button padding that turns the circle into an oval */
	background: var(--green);
	color: var(--lime);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: var(--shadow-soft);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.25s ease;
}

.jpc-back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.jpc-back-to-top:hover { background: var(--green-dark); }

.jpc-back-to-top svg { stroke: currentColor; } /* arrow paints in the button's text colour, not the background */

/* --- Reduced motion ----------------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.jpc-why-stat-card,
	.jpc-floating-badge,
	.jpc-guarantee-stamp { animation: none; }

	*, *::before, *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
