:root {
	--cvcp-ink: #37331c;
	--cvcp-muted: #48664c;
	--cvcp-green: #48664c;
	--cvcp-green-dark: #3b5840;
	--cvcp-mint: #c9ebca;
	--cvcp-cream: #fff9eb;
	--cvcp-sand: #f6eed3;
	--cvcp-gold: #fcdb65;
	--cvcp-ochre: #725d00;
	--cvcp-card: #f0e8cc;
	--cvcp-white: #ffffff;
	--cvcp-shadow: 0 24px 70px rgba(55, 51, 28, 0.16);
	--cvcp-radius-lg: 32px;
	--cvcp-radius-xl: 48px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cvcp-cream);
	color: var(--cvcp-ink);
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

.cvcp-skip-link:focus {
	background: var(--cvcp-white);
	clip: auto;
	height: auto;
	left: 16px;
	padding: 12px 16px;
	top: 16px;
	width: auto;
	z-index: 20;
}

.cvcp-container {
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 24px;
	width: 100%;
}

.cvcp-header {
	backdrop-filter: blur(10px);
	background: rgba(250, 250, 249, 0.78);
	border-bottom: 1px solid rgba(114, 93, 0, 0.08);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 10;
}

.cvcp-header__inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1280px;
	min-height: 72px;
	padding: 14px 32px;
}

.cvcp-brand {
	align-items: center;
	display: flex;
	gap: 10px;
	min-width: 250px;
}

.cvcp-brand__logo {
	flex: 0 0 auto;
	height: 48px;
	object-fit: contain;
	width: 48px;
}

.cvcp-brand__copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.cvcp-brand__text {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.cvcp-brand__tag {
	color: #166534;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.cvcp-nav__list {
	align-items: center;
	display: flex;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cvcp-nav a {
	color: #57534e;
	display: inline-flex;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	padding: 10px 0;
}

.cvcp-nav li:first-child a,
.cvcp-nav a:hover {
	color: #166534;
}

.cvcp-header__cta,
.cvcp-button {
	align-items: center;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	text-align: center;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
	white-space: nowrap;
}

.cvcp-header__cta {
	background: linear-gradient(145deg, var(--cvcp-ochre), var(--cvcp-gold));
	box-shadow: 0 8px 20px rgba(114, 93, 0, 0.18);
	color: #fff8ed;
	font-size: 14px;
	padding: 12px 18px;
}

.cvcp-button {
	font-size: 16px;
	min-height: 48px;
	padding: 14px 24px;
}

.cvcp-header__cta:hover,
.cvcp-button:hover {
	transform: translateY(-1px);
}

.cvcp-button--primary {
	background: linear-gradient(90deg, var(--cvcp-ochre), var(--cvcp-gold));
	box-shadow: 0 12px 22px rgba(114, 93, 0, 0.18);
	color: #fff8ed;
}

.cvcp-button--soft {
	background: var(--cvcp-mint);
	color: var(--cvcp-green-dark);
	min-height: 40px;
	padding: 10px 18px;
}

.cvcp-button--gold {
	background: var(--cvcp-ochre);
	color: #fff8ed;
}

.cvcp-menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 42px;
	padding: 8px;
	width: 42px;
}

.cvcp-menu-toggle span:not(.screen-reader-text) {
	background: var(--cvcp-ink);
	border-radius: 999px;
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 24px;
}

.cvcp-page {
	overflow: hidden;
}

.cvcp-hero {
	padding: 48px 0 80px;
	position: relative;
}

.cvcp-hero__glow {
	border-radius: 999px;
	filter: blur(20px);
	opacity: 0.28;
	position: absolute;
	z-index: 0;
}

.cvcp-hero__glow--gold {
	background: var(--cvcp-gold);
	height: 360px;
	left: -130px;
	top: 80px;
	width: 360px;
}

.cvcp-hero__glow--green {
	background: var(--cvcp-mint);
	height: 300px;
	right: -90px;
	top: 300px;
	width: 300px;
}

.cvcp-hero__grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
	position: relative;
	z-index: 1;
}

.cvcp-kicker {
	background: rgba(201, 235, 202, 0.8);
	border-radius: 999px;
	color: #166534;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.6px;
	line-height: 1;
	margin: 0 0 14px;
	padding: 8px 12px;
	text-transform: uppercase;
}

.cvcp-hero h1 {
	color: var(--cvcp-ink);
	font-size: clamp(44px, 6vw, 78px);
	font-weight: 800;
	line-height: 0.96;
	margin: 0;
	max-width: 720px;
}

.cvcp-hero__lead {
	color: var(--cvcp-muted);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
	margin: 24px 0 28px;
	max-width: 520px;
}

.cvcp-search {
	backdrop-filter: blur(12px);
	background: rgba(235, 227, 194, 0.84);
	border: 1px solid rgba(186, 178, 148, 0.2);
	border-radius: var(--cvcp-radius-xl);
	box-shadow: 0 16px 36px rgba(55, 51, 28, 0.1);
	max-width: 720px;
	padding: 28px;
}

.cvcp-search__fields {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 18px;
}

.cvcp-search label {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.cvcp-search span {
	color: var(--cvcp-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.cvcp-search input,
.cvcp-search select,
.cvcp-newsletter input {
	appearance: none;
	background: var(--cvcp-white);
	border: 0;
	border-radius: 999px;
	color: var(--cvcp-ink);
	font: inherit;
	min-height: 48px;
	outline: 2px solid transparent;
	padding: 0 16px;
	width: 100%;
}

.cvcp-search input:focus,
.cvcp-search select:focus,
.cvcp-newsletter input:focus {
	outline-color: var(--cvcp-gold);
}

.cvcp-search .cvcp-button {
	width: 100%;
}

.cvcp-hero__media {
	position: relative;
}

.cvcp-hero__media img {
	aspect-ratio: 0.95;
	border-radius: var(--cvcp-radius-xl);
	box-shadow: var(--cvcp-shadow);
	object-fit: cover;
	transform: rotate(2deg);
	width: 100%;
}

.cvcp-hero__badge,
.cvcp-hero__paw {
	align-items: center;
	border-radius: 999px;
	display: flex;
	font-weight: 800;
	justify-content: center;
	position: absolute;
}

.cvcp-hero__badge {
	background: var(--cvcp-mint);
	color: var(--cvcp-green);
	font-size: 26px;
	height: 68px;
	right: -22px;
	top: -22px;
	transform: rotate(-12deg);
	width: 68px;
}

.cvcp-hero__paw {
	background: var(--cvcp-white);
	box-shadow: 0 12px 24px rgba(55, 51, 28, 0.14);
	color: var(--cvcp-ochre);
	font-size: 24px;
	height: 64px;
	left: -22px;
	letter-spacing: 2px;
	line-height: 0.8;
	top: calc(100% - 68px);
	width: 64px;
}

.cvcp-categories {
	background: var(--cvcp-sand);
	padding: 88px 0;
}

.cvcp-categories h2,
.cvcp-section-head h2,
.cvcp-guide h2,
.cvcp-directory h2,
.cvcp-newsletter h2 {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	line-height: 1.12;
	margin: 0;
}

.cvcp-categories h2 {
	color: var(--cvcp-green);
	text-align: center;
}

.cvcp-category-grid {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 54px;
}

.cvcp-category {
	align-items: center;
	color: var(--cvcp-ink);
	display: grid;
	font-weight: 800;
	gap: 18px;
	justify-items: center;
	text-align: center;
}

.cvcp-category__icon {
	align-items: center;
	background: var(--cvcp-white);
	border-radius: 999px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	color: var(--cvcp-ochre);
	display: flex;
	font-size: 32px;
	font-weight: 800;
	height: 132px;
	justify-content: center;
	width: 132px;
}

.cvcp-featured,
.cvcp-directory {
	padding: 86px 0;
}

.cvcp-section-head {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 32px;
}

.cvcp-section-head p,
.cvcp-guide p,
.cvcp-directory p,
.cvcp-newsletter p,
.cvcp-footer p {
	color: var(--cvcp-muted);
	line-height: 1.65;
	margin: 10px 0 0;
}

.cvcp-section-head > a,
.cvcp-directory a {
	color: var(--cvcp-ochre);
	font-weight: 800;
}

.cvcp-card-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cvcp-card {
	background: var(--cvcp-card);
	border-radius: var(--cvcp-radius-lg);
	box-shadow: 0 10px 28px rgba(55, 51, 28, 0.08);
	overflow: hidden;
}

.cvcp-card__image {
	height: 260px;
	position: relative;
}

.cvcp-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.cvcp-card__image span {
	backdrop-filter: blur(4px);
	background: rgba(255, 249, 235, 0.9);
	border-radius: 999px;
	color: var(--cvcp-green-dark);
	font-size: 12px;
	font-weight: 800;
	left: 16px;
	max-width: calc(100% - 32px);
	padding: 7px 10px;
	position: absolute;
	top: 16px;
}

.cvcp-card__body {
	padding: 28px;
}

.cvcp-card h3 {
	font-size: 22px;
	line-height: 1.25;
	margin: 0;
}

.cvcp-card p {
	color: var(--cvcp-muted);
	font-size: 14px;
	margin: 8px 0 16px;
}

.cvcp-card ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}

.cvcp-card li {
	align-items: center;
	color: #57534e;
	display: flex;
	font-size: 13px;
	gap: 8px;
	line-height: 1.35;
}

.cvcp-card li::before {
	background: var(--cvcp-ochre);
	border-radius: 999px;
	content: "";
	height: 7px;
	width: 7px;
}

.cvcp-guide {
	padding: 0 0 80px;
}

.cvcp-guide__inner {
	align-items: center;
	background: linear-gradient(110deg, #e8ffe7, var(--cvcp-sand));
	border-radius: var(--cvcp-radius-xl);
	display: flex;
	justify-content: space-between;
	padding-bottom: 44px;
	padding-top: 44px;
}

.cvcp-guide__inner > div {
	max-width: 760px;
}

.cvcp-directory {
	background: #fffaf0;
}

.cvcp-directory__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cvcp-directory__item {
	border-left: 2px solid rgba(114, 93, 0, 0.16);
	padding: 6px 8px 8px 20px;
}

.cvcp-directory h2 {
	font-size: 22px;
}

.cvcp-directory p {
	font-size: 14px;
}

.cvcp-newsletter {
	padding: 88px 0 72px;
}

.cvcp-newsletter__card {
	align-items: center;
	background: linear-gradient(100deg, var(--cvcp-green), var(--cvcp-green-dark));
	border-radius: var(--cvcp-radius-xl);
	box-shadow: var(--cvcp-shadow);
	color: #e8ffe7;
	display: grid;
	gap: 46px;
	grid-template-columns: 260px minmax(0, 1fr);
	overflow: hidden;
	padding: 48px;
	position: relative;
}

.cvcp-newsletter__card::after {
	background: rgba(187, 221, 189, 0.18);
	border-radius: 999px;
	content: "";
	filter: blur(28px);
	height: 260px;
	position: absolute;
	right: -70px;
	top: -80px;
	width: 260px;
}

.cvcp-newsletter__card > * {
	position: relative;
	z-index: 1;
}

.cvcp-newsletter__card img {
	aspect-ratio: 1;
	border: 8px solid rgba(240, 232, 204, 0.22);
	border-radius: 999px;
	object-fit: cover;
	width: 260px;
}

.cvcp-newsletter h2 {
	color: #e8ffe7;
}

.cvcp-newsletter p,
.cvcp-newsletter small {
	color: rgba(232, 255, 231, 0.9);
}

.cvcp-newsletter__form {
	display: flex;
	gap: 14px;
	margin: 24px 0 10px;
	max-width: 720px;
}

.cvcp-newsletter__form input {
	flex: 1;
	min-width: 180px;
}

.cvcp-footer {
	background: #f5f5f4;
	border-radius: 42px 42px 0 0;
}

.cvcp-footer__inner {
	align-items: center;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1280px;
	padding: 38px 48px;
}

.cvcp-footer__brand {
	color: #166534;
	font-size: 18px;
	font-weight: 800;
}

.cvcp-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	justify-content: center;
}

.cvcp-footer__links a {
	color: #78716c;
	font-size: 14px;
	text-decoration: underline;
	text-decoration-color: var(--cvcp-gold);
	text-underline-offset: 3px;
}

.cvcp-footer__copy {
	white-space: nowrap;
}

.cvcp-generic {
	min-height: 60vh;
	padding: 80px 0;
}

.cvcp-entry {
	max-width: 760px;
}

.cvcp-entry h1 {
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1;
	margin: 0 0 24px;
}

@media (max-width: 1080px) {
	.cvcp-header__inner {
		padding-left: 24px;
		padding-right: 24px;
	}

	.cvcp-nav__list {
		gap: 16px;
	}

	.cvcp-header__cta {
		display: none;
	}

	.cvcp-hero__grid,
	.cvcp-card-grid,
	.cvcp-directory__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cvcp-hero__copy {
		grid-column: 1 / -1;
	}

	.cvcp-hero__media {
		grid-column: 1 / -1;
		max-width: 620px;
	}

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

@media (max-width: 760px) {
	.cvcp-container {
		padding: 0 18px;
	}

	.cvcp-header__inner {
		align-items: center;
		min-height: 66px;
		padding: 12px 18px;
	}

	.cvcp-brand {
		min-width: 0;
	}

	.cvcp-brand__logo {
		height: 42px;
		width: 42px;
	}

	.cvcp-brand__text {
		font-size: 18px;
	}

	.cvcp-brand__tag {
		display: none;
	}

	.cvcp-menu-toggle {
		display: block;
	}

	.cvcp-nav {
		background: rgba(250, 250, 249, 0.98);
		border-bottom: 1px solid rgba(114, 93, 0, 0.08);
		box-shadow: 0 18px 30px rgba(55, 51, 28, 0.1);
		display: none;
		left: 0;
		padding: 10px 18px 18px;
		position: absolute;
		right: 0;
		top: 66px;
	}

	.cvcp-nav.is-open {
		display: block;
	}

	.cvcp-nav__list {
		align-items: stretch;
		display: grid;
		gap: 2px;
	}

	.cvcp-nav a {
		padding: 12px 0;
	}

	.cvcp-hero {
		padding: 34px 0 54px;
	}

	.cvcp-hero__grid,
	.cvcp-search__fields,
	.cvcp-card-grid,
	.cvcp-directory__grid,
	.cvcp-newsletter__card {
		grid-template-columns: 1fr;
	}

	.cvcp-hero h1 {
		font-size: clamp(42px, 14vw, 58px);
	}

	.cvcp-hero__lead {
		font-size: 18px;
	}

	.cvcp-search {
		border-radius: 28px;
		padding: 20px;
	}

	.cvcp-hero__media img {
		aspect-ratio: 1.12;
		border-radius: 32px;
	}

	.cvcp-hero__badge {
		height: 56px;
		right: -8px;
		top: -16px;
		width: 56px;
	}

	.cvcp-categories,
	.cvcp-featured,
	.cvcp-directory,
	.cvcp-newsletter {
		padding: 58px 0;
	}

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

	.cvcp-category__icon {
		height: 104px;
		width: 104px;
	}

	.cvcp-section-head,
	.cvcp-guide__inner,
	.cvcp-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.cvcp-guide__inner {
		border-radius: 34px;
		gap: 22px;
	}

	.cvcp-newsletter__card {
		border-radius: 34px;
		gap: 28px;
		padding: 30px 22px;
	}

	.cvcp-newsletter__card img {
		width: 190px;
	}

	.cvcp-newsletter__form {
		flex-direction: column;
	}

	.cvcp-footer {
		border-radius: 30px 30px 0 0;
	}

	.cvcp-footer__inner {
		padding: 32px 22px;
	}

	.cvcp-footer__links {
		justify-content: flex-start;
	}
}

/* UX pass: tighter header and calmer first viewport. */
.cvcp-header {
	background: rgba(255, 249, 235, 0.94);
}

.cvcp-header__inner {
	gap: 22px;
	min-height: 84px;
	padding: 12px 36px;
}

.cvcp-brand {
	gap: 12px;
	min-width: 280px;
}

.cvcp-brand__logo {
	height: 50px;
	width: 50px;
}

.cvcp-brand__text {
	font-size: 22px;
	letter-spacing: 0;
	white-space: nowrap;
}

.cvcp-brand__tag {
	background: rgba(201, 235, 202, 0.72);
	border-radius: 999px;
	color: #166534;
	display: inline-flex;
	font-size: 11px;
	line-height: 1;
	padding: 5px 8px;
	width: fit-content;
}

.cvcp-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.cvcp-nav__list {
	gap: clamp(14px, 2vw, 28px);
	justify-content: center;
}

.cvcp-nav a {
	font-size: 15px;
	line-height: 1.15;
	text-align: center;
}

.cvcp-header__cta {
	flex: 0 0 auto;
	padding: 13px 20px;
}

.cvcp-hero {
	padding: 56px 0 72px;
}

.cvcp-hero__grid {
	gap: clamp(38px, 5vw, 74px);
	grid-template-columns: minmax(420px, 0.88fr) minmax(420px, 0.92fr);
}

.cvcp-hero h1 {
	font-size: clamp(48px, 5vw, 68px);
	line-height: 1.03;
	max-width: 650px;
}

.cvcp-hero__lead {
	font-size: 19px;
	margin: 22px 0 26px;
	max-width: 600px;
}

.cvcp-hero__media {
	justify-self: center;
	max-width: 560px;
	width: 100%;
}

.cvcp-hero__media img {
	aspect-ratio: 0.94;
	max-height: 640px;
	transform: rotate(1.25deg);
}

@media (max-width: 1180px) {
	.cvcp-header__inner {
		padding-left: 24px;
		padding-right: 24px;
	}

	.cvcp-brand {
		min-width: 240px;
	}

	.cvcp-brand__text {
		font-size: 20px;
		white-space: normal;
	}

	.cvcp-nav__list {
		gap: 16px;
	}
}

@media (max-width: 980px) {
	.cvcp-hero__grid {
		grid-template-columns: 1fr;
	}

	.cvcp-hero__copy,
	.cvcp-hero__media {
		grid-column: auto;
	}
}

@media (max-width: 760px) {
	.cvcp-header__inner {
		min-height: 70px;
	}

	.cvcp-brand__logo {
		height: 42px;
		width: 42px;
	}

	.cvcp-brand__text {
		font-size: 17px;
	}

	.cvcp-brand__tag {
		display: none;
	}

	.cvcp-hero h1 {
		font-size: clamp(32px, 9vw, 38px);
		line-height: 1.08;
		max-width: min(100%, 330px);
	}

	.cvcp-hero__copy,
	.cvcp-hero__grid {
		max-width: calc(100vw - 36px);
		min-width: 0;
	}
}
