.hpf-home {
	--hpf-forest: #073f34;
	--hpf-leaf: #0b5b49;
	--hpf-mint: #dfeee4;
	--hpf-sage: #6d8178;
	--hpf-cream: #fbf7ef;
	--hpf-paper: #fffdf8;
	--hpf-ink: #1e2824;
	--hpf-muted: #62706a;
	--hpf-line: rgba(7, 63, 52, 0.16);
	--hpf-gold: #c88b2f;
	--hpf-shadow: 0 26px 80px rgba(22, 37, 29, 0.14);
	background:
		linear-gradient(180deg, rgba(251, 247, 239, 0) 0%, var(--hpf-cream) 29rem),
		var(--hpf-cream);
	color: var(--hpf-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	margin-inline: calc(50% - 50vw);
	min-height: 100vh;
	overflow: hidden;
	width: 100vw;
}

.hpf-home *,
.hpf-home *::before,
.hpf-home *::after {
	box-sizing: border-box;
}

.hpf-home a {
	color: inherit;
}

.hpf-home img {
	display: block;
	max-width: 100%;
}

.hpf-screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.hpf-hero {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(251, 247, 239, 0.18), rgba(251, 247, 239, 0.78) 31%, rgba(251, 247, 239, 0.78) 69%, rgba(251, 247, 239, 0.12)),
		var(--hpf-hero-image) center / cover no-repeat;
	display: grid;
	min-height: 24rem;
	padding: 5rem 1.25rem 6.5rem;
	position: relative;
	text-align: center;
}

.hpf-hero-inner {
	margin: 0 auto;
	max-width: 47rem;
}

.hpf-kicker {
	color: var(--hpf-gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.hpf-hero-title,
.hpf-section-title,
.hpf-card-title,
.hpf-mini-title {
	color: var(--hpf-forest);
	font-family: Fraunces, Georgia, "Times New Roman", serif;
	font-weight: 700;
	letter-spacing: 0;
}

.hpf-hero-title {
	font-size: 4rem;
	line-height: 1.04;
	margin: 0;
}

.hpf-hero-copy {
	color: #4c5652;
	font-size: 1.22rem;
	line-height: 1.55;
	margin: 1.2rem auto 0;
	max-width: 35rem;
}

.hpf-divider {
	align-items: center;
	color: var(--hpf-gold);
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	margin: 1.65rem auto 0;
	max-width: 14rem;
}

.hpf-divider::before,
.hpf-divider::after {
	background: currentColor;
	content: "";
	height: 1px;
	opacity: 0.55;
	width: 5rem;
}

.hpf-home-body {
	margin: -3.5rem auto 0;
	max-width: 72rem;
	padding: 0 1.25rem 4rem;
	position: relative;
	z-index: 2;
}

.hpf-tool {
	background: rgba(255, 253, 248, 0.96);
	border: 1px solid rgba(7, 63, 52, 0.12);
	border-radius: 8px;
	box-shadow: var(--hpf-shadow);
	padding: 2.1rem;
}

.hpf-quiz {
	display: grid;
	gap: 1.55rem;
	margin: 0;
}

.hpf-question {
	border: 0;
	margin: 0;
	min-inline-size: 0;
	padding: 0;
}

.hpf-question-title {
	color: var(--hpf-ink);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 0.75rem;
	padding: 0;
}

.hpf-question-grid {
	display: block;
}

.hpf-options {
	display: grid;
	gap: 0.9rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hpf-question-ideal_temperature .hpf-options,
.hpf-question-watering_need .hpf-options,
.hpf-question-humidity_level .hpf-options {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hpf-options-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hpf-option {
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--hpf-line);
	border-radius: 8px;
	color: var(--hpf-ink);
	cursor: pointer;
	display: flex;
	gap: 0.72rem;
	min-height: 5.25rem;
	padding: 0.9rem 1rem;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hpf-option:hover,
.hpf-option:focus-within,
.hpf-option:has(input:checked),
.hpf-option-selected {
	border-color: rgba(7, 63, 52, 0.7);
	box-shadow: 0 16px 38px rgba(19, 44, 35, 0.11);
	transform: translateY(-2px);
}

.hpf-option input {
	accent-color: var(--hpf-forest);
	flex: 0 0 auto;
	height: 1rem;
	margin: 0.2rem 0 0;
	width: 1rem;
}

.hpf-option-text {
	display: grid;
	gap: 0.18rem;
	min-width: 0;
}

.hpf-option-name {
	color: var(--hpf-ink);
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.3;
}

.hpf-option-desc {
	color: var(--hpf-muted);
	font-size: 0.86rem;
	line-height: 1.35;
}

.hpf-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.35rem;
	justify-content: center;
	padding-top: 0.15rem;
}

.hpf-form-error {
	background: #f6dddd;
	border: 1px solid rgba(116, 49, 47, 0.26);
	border-radius: 7px;
	color: #74312f;
	flex-basis: 100%;
	font-size: 0.92rem;
	font-weight: 800;
	margin: 0;
	padding: 0.72rem 0.9rem;
	text-align: center;
}

.hpf-primary-action {
	background: linear-gradient(180deg, #0b5b49, #073f34);
	border: 1px solid #073f34;
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(7, 63, 52, 0.24);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 850;
	min-height: 3.25rem;
	min-width: 19rem;
	padding: 0.85rem 1.35rem;
	transition: box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.hpf-primary-action:hover,
.hpf-primary-action:focus {
	box-shadow: 0 20px 40px rgba(7, 63, 52, 0.3);
	filter: brightness(1.04);
	transform: translateY(-2px);
}

.hpf-secondary-action {
	border-bottom: 1px solid currentColor;
	color: var(--hpf-forest);
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
}

.hpf-primary-action:focus-visible,
.hpf-secondary-action:focus-visible,
.hpf-option:focus-within,
.hpf-card:focus-visible,
.hpf-mini-card:focus-visible {
	outline: 3px solid rgba(200, 139, 47, 0.58);
	outline-offset: 3px;
}

.hpf-results {
	margin-top: 2.2rem;
}

.hpf-section-header {
	align-items: end;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.hpf-section-title {
	font-size: 1.75rem;
	line-height: 1.2;
	margin: 0;
}

.hpf-featured-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hpf-card,
.hpf-mini-card {
	background: #fff;
	border: 1px solid rgba(7, 63, 52, 0.11);
	border-radius: 8px;
	box-shadow: 0 14px 36px rgba(21, 38, 30, 0.1);
	color: inherit;
	display: block;
	min-width: 0;
	overflow: hidden;
	text-align: left;
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hpf-card:hover,
.hpf-card:focus,
.hpf-mini-card:hover,
.hpf-mini-card:focus {
	border-color: rgba(7, 63, 52, 0.28);
	box-shadow: 0 22px 48px rgba(21, 38, 30, 0.16);
	color: inherit;
	outline: none;
	transform: translateY(-4px);
}

.hpf-card-image,
.hpf-mini-image {
	background: var(--hpf-paper);
	margin: 0;
	overflow: hidden;
}

.hpf-card-image {
	aspect-ratio: 4 / 3;
}

.hpf-mini-image {
	aspect-ratio: 1.18 / 1;
}

.hpf-card-image img,
.hpf-mini-image img {
	height: 100%;
	object-fit: cover;
	object-position: center 52%;
	width: 100%;
}

.hpf-card-image img {
	transform: scale(1.08);
}

.hpf-mini-image img {
	transform: scale(1.18);
}

.hpf-card-image-placeholder {
	background:
		linear-gradient(135deg, rgba(11, 91, 73, 0.12), rgba(200, 139, 47, 0.11)),
		var(--hpf-paper);
	height: 100%;
	width: 100%;
}

.hpf-card-body {
	display: grid;
	gap: 0.95rem;
	padding: 1rem;
}

.hpf-card-title {
	font-size: 1.25rem;
	line-height: 1.2;
	margin: 0;
}

.hpf-card-copy {
	color: #33403b;
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0.55rem 0 0;
}

.hpf-card-botanical {
	color: var(--hpf-muted);
	font-size: 0.84rem;
	line-height: 1.35;
	margin: 0.28rem 0 0;
}

.hpf-card-basic,
.hpf-card-meta,
.hpf-card-taxonomy {
	min-width: 0;
}

.hpf-card-meta,
.hpf-card-taxonomy {
	border-top: 1px solid rgba(7, 63, 52, 0.1);
	padding-top: 0.9rem;
}

.hpf-card-meta {
	display: grid;
	gap: 0.5rem;
	margin: 0;
}

.hpf-attribute {
	align-items: baseline;
	color: #34413c;
	display: grid;
	font-size: 0.84rem;
	gap: 0.45rem;
	grid-template-columns: 7.6rem minmax(0, 1fr);
	line-height: 1.35;
}

.hpf-attribute-label {
	color: var(--hpf-forest);
	font-weight: 850;
	margin: 0;
	white-space: nowrap;
}

.hpf-attribute-value {
	color: var(--hpf-muted);
	margin: 0;
	min-width: 0;
}

.hpf-card-taxonomy,
.hpf-mini-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	justify-content: flex-start;
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.hpf-taxonomy-tag,
.hpf-mini-tag {
	background: #e6f0e8;
	border-radius: 7px;
	color: var(--hpf-forest);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.2;
	padding: 0.38rem 0.58rem;
}

.hpf-tag-light {
	background: #f6e9bf;
	color: #674a08;
}

.hpf-tag-watering {
	background: #dbeefa;
	color: #164b65;
}

.hpf-tag-pet {
	background: #f6dddd;
	color: #74312f;
}

.hpf-proof {
	align-items: center;
	color: var(--hpf-muted);
	display: flex;
	font-size: 0.88rem;
	gap: 0.55rem;
	justify-content: center;
	margin: 1rem 0 0;
	text-align: center;
}

.hpf-mini-section {
	margin-top: 2rem;
}

.hpf-mini-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hpf-mini-card {
	box-shadow: 0 10px 26px rgba(21, 38, 30, 0.08);
}

.hpf-mini-body {
	padding: 0.85rem;
}

.hpf-mini-title {
	font-size: 1rem;
	line-height: 1.25;
	margin: 0;
}

.hpf-mini-botanical {
	color: var(--hpf-muted);
	font-size: 0.78rem;
	line-height: 1.35;
	margin: 0.18rem 0 0;
}

.hpf-mini-copy {
	color: #34413c;
	font-size: 0.82rem;
	line-height: 1.45;
	margin: 0.45rem 0 0;
}

.hpf-mini-tags {
	border-top: 1px solid rgba(7, 63, 52, 0.1);
	margin-top: 0.7rem;
	padding-top: 0.7rem;
}

.hpf-mini-tag {
	font-size: 0.73rem;
	padding: 0.34rem 0.48rem;
	white-space: nowrap;
}

.hpf-empty {
	background: rgba(255, 253, 248, 0.96);
	border: 1px solid rgba(7, 63, 52, 0.12);
	border-radius: 8px;
	box-shadow: var(--hpf-shadow);
	color: var(--hpf-forest);
	padding: 1rem 1.1rem;
}

.hpf-empty p {
	margin: 0;
}

.hpf-great-empty {
	background: rgba(255, 253, 248, 0.84);
	border: 1px solid rgba(7, 63, 52, 0.12);
	border-radius: 8px;
	color: var(--hpf-muted);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
	padding: 1rem 1.1rem;
}

@media (max-width: 980px) {
	.hpf-hero-title {
		font-size: 3.15rem;
	}

	.hpf-tool {
		padding: 1.4rem;
	}

	.hpf-options,
	.hpf-question-ideal_temperature .hpf-options,
	.hpf-question-watering_need .hpf-options,
	.hpf-question-humidity_level .hpf-options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hpf-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hpf-mini-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.hpf-hero {
		background-position: center;
		min-height: 21rem;
		padding: 3.5rem 1rem 5rem;
	}

	.hpf-hero-title {
		font-size: 2.45rem;
	}

	.hpf-hero-copy {
		font-size: 1rem;
	}

	.hpf-home-body {
		margin-top: -2.4rem;
		padding-inline: 0.9rem;
	}

	.hpf-section-header {
		align-items: start;
		flex-direction: column;
	}

	.hpf-options,
	.hpf-options-two,
	.hpf-question-ideal_temperature .hpf-options,
	.hpf-question-watering_need .hpf-options,
	.hpf-question-humidity_level .hpf-options,
	.hpf-featured-grid {
		grid-template-columns: 1fr;
	}

	.hpf-mini-grid {
		gap: 0.75rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hpf-option {
		min-height: 0;
	}

	.hpf-attribute {
		gap: 0.1rem;
		grid-template-columns: 1fr;
	}

	.hpf-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hpf-primary-action {
		min-width: 0;
		width: 100%;
	}

	.hpf-secondary-action {
		border-bottom: 0;
		text-align: center;
		text-decoration: underline;
	}
}
