:root {
	--pk-green: #075442;
	--pk-green-dark: #003d30;
	--pk-sage: #edf2df;
	--pk-gold: #f4c451;
	--pk-ink: #123b31;
	--pk-cream: #fffdf8;
	--pk-muted: #5f6e68;
}

.perchkind-home,
.perchkind-home #main {
	background: var(--pk-cream);
}

.perchkind-home #top-bar {
	background: #075442 !important;
	color: #fff !important;
}

.perchkind-home #top-bar,
.perchkind-home #top-bar .nav > li > a,
.perchkind-home #top-bar .html {
	color: #fff !important;
}

.perchkind-home .header-main {
	background: #fff !important;
}

.perchkind-home .header-main .nav > li > a {
	color: #183c34;
	font-size: .78rem;
	font-weight: 600;
}

.perchkind-home .header-main .header-logo img {
	max-height: 54px !important;
	width: auto !important;
	object-fit: contain;
}

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

.pk-hero {
	height: clamp(360px, 38vw, 540px);
	min-height: 0;
	display: flex;
	align-items: center;
	background-color: #073b2f;
	background-image: linear-gradient(90deg, rgba(1, 31, 23, .78) 0%, rgba(1, 31, 23, .54) 40%, rgba(1, 31, 23, .04) 70%), url("/wp-content/uploads/perchkind/hero-banner-v2.png") !important;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
}

.pk-hero__inner {
	padding-block: 54px;
	padding-left: 28px;
}

.pk-hero__copy {
	max-width: 520px;
}

.pk-hero .pk-eyebrow {
	display: none;
}

.pk-eyebrow {
	margin: 0 0 14px;
	color: var(--pk-gold);
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.pk-hero h1 {
	max-width: 500px;
	margin: 0 0 18px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.75rem, 5vw, 4.25rem);
	line-height: 1.02;
	letter-spacing: -.025em;
}

.pk-hero h1 span {
	display: block;
	white-space: nowrap;
}

.pk-hero__copy > p:not(.pk-eyebrow) {
	max-width: 490px;
	margin-bottom: 24px;
	color: rgba(255,255,255,.9);
	font-size: 1rem;
	line-height: 1.5;
}

.pk-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pk-button {
	min-height: 47px;
	padding-inline: 24px;
	border-radius: 3px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.pk-button.primary {
	background: var(--pk-gold) !important;
	border-color: var(--pk-gold) !important;
	color: #17362e !important;
}

.pk-button--ghost {
	border-color: rgba(255,255,255,.72) !important;
	color: #fff !important;
}

.pk-trust {
	background: #fff;
	border-bottom: 1px solid #edf0eb;
}

.pk-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding-block: 26px;
}

.pk-trust__grid > div {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: center;
	column-gap: 12px;
}

.pk-trust i {
	grid-row: 1 / 3;
	color: var(--pk-green);
	font-size: 1.65rem;
}

.pk-trust strong {
	color: var(--pk-ink);
	font-size: .9rem;
}

.pk-trust span {
	color: var(--pk-muted);
	font-size: .74rem;
	line-height: 1.4;
}

.pk-section {
	padding-block: 48px;
}

.pk-section--products {
	padding-top: 10px;
}

.pk-section__heading {
	margin-bottom: 28px;
	text-align: center;
}

.pk-section__heading h2,
.pk-story h2,
.pk-newsletter h2 {
	margin: 0;
	color: var(--pk-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3vw, 2.65rem);
	letter-spacing: -.025em;
}

.pk-section__heading--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	text-align: left;
}

.pk-section__heading a {
	color: var(--pk-green);
	font-size: .84rem;
	font-weight: 700;
}

.pk-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.pk-category-card {
	position: relative;
	min-height: 0;
	aspect-ratio: .9 / 1;
	overflow: hidden;
	border-radius: 4px;
	background: var(--pk-green-dark);
	color: #fff;
}

.pk-category-card img,
.pk-category-card__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.pk-category-card__shade {
	background: linear-gradient(180deg, transparent 42%, rgba(2,24,18,.86) 100%);
}

.pk-category-card__content {
	position: absolute;
	inset: auto 20px 22px;
	z-index: 2;
	text-align: center;
}

.pk-category-card strong {
	display: block;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.3rem;
	line-height: 1.05;
}

.pk-category-card em {
	display: inline-block;
	margin-top: 12px;
	padding: 8px 16px;
	border-radius: 2px;
	background: var(--pk-green);
	color: #fff;
	font-size: .72rem;
	font-style: normal;
	font-weight: 700;
}

.pk-category-card:hover img {
	transform: scale(1.04);
}

.pk-product-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
}

.pk-product-card {
	min-width: 0;
}

.pk-product-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 4px;
	background: #f2f0e9;
}

.pk-product-card h3 {
	min-height: 42px;
	margin: 12px 0 6px;
	color: var(--pk-ink);
	font-family: inherit;
	font-size: .86rem;
	line-height: 1.42;
}

.pk-stars {
	color: #d69219;
	font-size: .73rem;
}

.pk-stars span {
	margin-left: 4px;
	color: #8a948f;
}

.pk-product-card .price {
	margin: 6px 0 0;
	color: var(--pk-ink);
	font-size: .92rem;
	font-weight: 700;
}

.pk-story {
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	background: #fff;
}

.pk-story__image img {
	width: 100%;
	height: 100%;
	min-height: 390px;
	object-fit: cover;
}

.pk-story__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(50px, 6vw, 90px);
}

.pk-story__copy > p:not(.pk-eyebrow) {
	margin: 22px 0;
	color: var(--pk-muted);
	line-height: 1.75;
}

.pk-story__points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 26px;
}

.pk-story__points div {
	color: var(--pk-ink);
	font-size: .78rem;
	text-align: center;
}

.pk-story__points i {
	display: block;
	margin-bottom: 8px;
	color: var(--pk-green);
	font-size: 1.55rem;
}

.pk-guide-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.pk-guide-grid img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 4px;
}

.pk-guide-grid h3 {
	margin: 12px 0 6px;
	color: var(--pk-ink);
	font-size: 1rem;
	line-height: 1.3;
}

.pk-guide-grid p,
.pk-guide-grid a {
	font-size: .78rem;
}

.pk-guide-grid p {
	min-height: 38px;
	margin-bottom: 8px;
	color: var(--pk-muted);
}

.pk-guide-grid a {
	color: var(--pk-green);
	font-weight: 700;
}

.pk-newsletter {
	padding-block: 38px;
	background: var(--pk-sage);
}

.pk-newsletter__inner {
	display: grid;
	grid-template-columns: 1fr .9fr;
	align-items: center;
	gap: 50px;
}

.pk-newsletter h2 {
	font-size: 1.6rem;
}

.pk-newsletter p:last-child {
	margin: 8px 0 0;
	color: var(--pk-muted);
}

.pk-newsletter form {
	display: flex;
	margin: 0;
}

.pk-newsletter input {
	height: 46px;
	margin: 0;
	border-radius: 3px 0 0 3px;
	background: #fff;
	box-shadow: none;
}

.pk-newsletter button {
	height: 46px;
	margin: 0;
	border-radius: 0 3px 3px 0;
	background: var(--pk-green) !important;
}

@media (max-width: 1024px) {
	.pk-shell {
		width: min(100% - 32px, 940px);
	}
}

@media (max-width: 767px) {
	.pk-shell {
		width: min(100% - 28px, 620px);
	}

	.pk-hero {
		height: 590px;
		min-height: 590px;
		align-items: end;
		background-image: linear-gradient(180deg, rgba(4,36,28,.04) 0%, rgba(4,36,28,.94) 58%), url("/wp-content/uploads/perchkind/hero-banner-v2.png") !important;
		background-position: 68% center;
	}

	.pk-hero__inner {
		padding-block: 54px;
		padding-left: 0;
	}

	.pk-hero h1 {
		font-size: 2.75rem;
	}

	.pk-trust__grid,
	.pk-category-grid,
	.pk-product-grid,
	.pk-guide-grid,
	.pk-story,
	.pk-newsletter__inner {
		grid-template-columns: 1fr;
	}

	.pk-trust__grid {
		gap: 22px;
	}

	.pk-category-card {
		min-height: 0;
		aspect-ratio: 1 / 1.08;
	}

	.pk-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pk-story__image img {
		min-height: 340px;
	}

	.pk-story__copy {
		padding: 48px 24px;
	}

	.pk-section__heading--split {
		align-items: start;
		gap: 12px;
	}

	.pk-guide-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pk-newsletter form {
		flex-direction: column;
	}

	.pk-newsletter input,
	.pk-newsletter button {
		border-radius: 3px;
	}
}

@media (max-width: 440px) {
	.pk-actions {
		flex-direction: column;
	}

	.pk-actions .button {
		width: 100%;
		margin: 0;
	}

	.pk-category-grid,
	.pk-product-grid,
	.pk-guide-grid {
		grid-template-columns: 1fr;
	}
}
