:root {
	--vv-accent: #b5232a;
	--vv-accent-dark: #8f161d;
	--vv-ink: #182230;
	--vv-muted: #637083;
	--vv-line: #dfe4ea;
	--vv-soft: #f5f7f9;
	--vv-white: #fff;
	--vv-radius: 10px;
}
.vv-site-main,
.vv-form-shell {
	color: var(--vv-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}
.vv-site-main {
	background: var(--vv-soft);
	padding: 36px 20px 64px;
}
.vv-container,
.vv-form-shell {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1180px;
	width: 100%;
}
.vv-form-shell {
	background: var(--vv-white);
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	padding: clamp(20px, 4vw, 40px);
}
.vv-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 8px;
	margin-bottom: 24px;
}
.vv-breadcrumbs a,
.vv-card a,
.vv-sidebar a,
.vv-dashboard-list a {
	color: inherit;
	text-decoration: none;
}
.vv-breadcrumbs a:hover,
.vv-card a:hover,
.vv-sidebar a:hover {
	color: var(--vv-accent);
}
.vv-archive-header {
	margin: 0 0 28px;
	max-width: 820px;
}
.vv-archive-header h1,
.vv-single-header h1,
.vv-form-shell h1 {
	color: var(--vv-ink);
	font-size: clamp(30px, 5vw, 48px);
	letter-spacing: -.025em;
	line-height: 1.12;
	margin: 0 0 14px;
}
.vv-intro {
	color: var(--vv-muted);
	font-size: 17px;
}
.vv-search {
	background: var(--vv-white);
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	box-shadow: 0 8px 30px rgba(24, 34, 48, .06);
	margin: 0 0 24px;
	padding: 18px;
}
.vv-search-main {
	align-items: end;
	display: grid;
	gap: 12px;
	grid-template-columns: 2fr 1fr 1fr auto;
}
.vv-search label,
.vv-submit-form label,
.vv-contact-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.vv-search label > span,
.vv-submit-form label > span,
.vv-contact-form label > span {
	color: var(--vv-ink);
	font-size: 13px;
	font-weight: 700;
}
.vv-search input,
.vv-search select,
.vv-submit-form input,
.vv-submit-form select,
.vv-submit-form textarea,
.vv-contact-form input,
.vv-contact-form textarea {
	background: var(--vv-white);
	border: 1px solid #cbd2da;
	border-radius: 6px;
	box-sizing: border-box;
	color: var(--vv-ink);
	font: inherit;
	min-height: 46px;
	padding: 10px 12px;
	width: 100%;
}
.vv-search button,
.vv-contact-form button,
.vv-button {
	background: var(--vv-accent);
	border: 0;
	border-radius: 6px;
	box-sizing: border-box;
	color: var(--vv-white) !important;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 700;
	justify-content: center;
	min-height: 46px;
	padding: 11px 20px;
	text-decoration: none;
}
.vv-search button:hover,
.vv-contact-form button:hover,
.vv-button:hover {
	background: var(--vv-accent-dark);
}
.vv-button-secondary {
	background: var(--vv-ink);
	width: 100%;
}
.vv-search-more {
	border-top: 1px solid var(--vv-line);
	margin-top: 14px;
	padding-top: 12px;
}
.vv-search-more summary {
	cursor: pointer;
	font-weight: 700;
}
.vv-search-more > div {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 12px;
}
.vv-results-head {
	color: var(--vv-muted);
	display: flex;
	justify-content: space-between;
	margin: 18px 0;
}
.vv-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vv-card {
	background: var(--vv-white);
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	box-shadow: 0 6px 24px rgba(24, 34, 48, .05);
	overflow: hidden;
	transition: transform .15s ease, box-shadow .15s ease;
}
.vv-card:hover {
	box-shadow: 0 12px 30px rgba(24, 34, 48, .1);
	transform: translateY(-2px);
}
.vv-card-image {
	aspect-ratio: 16 / 10;
	background: #e8ebef;
	display: block;
	overflow: hidden;
}
.vv-card-image img {
	height: 100%;
	object-fit: cover;
	transition: transform .2s ease;
	width: 100%;
}
.vv-card:hover .vv-card-image img {
	transform: scale(1.025);
}
.vv-placeholder {
	align-items: center;
	color: #a7b0bb;
	display: flex;
	font-size: 42px;
	font-weight: 800;
	height: 100%;
	justify-content: center;
}
.vv-card-content {
	padding: 20px;
}
.vv-card-category {
	color: var(--vv-accent) !important;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.vv-card h2 {
	font-size: 21px;
	line-height: 1.25;
	margin: 8px 0 12px;
}
.vv-card-location {
	color: var(--vv-muted);
	margin: 0;
}
.vv-price {
	color: var(--vv-ink);
	font-size: 20px;
	font-weight: 800;
	margin: 14px 0 0;
}
.vv-pagination {
	margin-top: 32px;
}
.vv-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.vv-pagination a,
.vv-pagination span {
	background: var(--vv-white);
	border: 1px solid var(--vv-line);
	border-radius: 5px;
	display: block;
	padding: 8px 13px;
	text-decoration: none;
}
.vv-pagination .current {
	background: var(--vv-accent);
	border-color: var(--vv-accent);
	color: var(--vv-white);
}
.vv-empty {
	background: var(--vv-white);
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	padding: 40px;
	text-align: center;
}
.vv-single {
	background: var(--vv-white);
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	overflow: hidden;
}
.vv-single-header {
	align-items: start;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	padding: clamp(22px, 4vw, 42px);
}
.vv-single-header h1 {
	font-size: clamp(30px, 4.5vw, 46px);
	margin-top: 8px;
}
.vv-single-meta {
	color: var(--vv-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 14px;
}
.vv-single-meta a {
	color: var(--vv-accent);
}
.vv-single-price {
	color: var(--vv-accent);
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	white-space: nowrap;
}
.vv-single-layout {
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
	padding: clamp(24px, 4vw, 44px);
}
.vv-single-side {
	min-width: 0;
}
.vv-gallery-slider {
	background: var(--vv-soft);
	border: 1px solid var(--vv-line);
	border-radius: 8px;
	margin-bottom: 18px;
	overflow: hidden;
	position: relative;
}
.vv-gallery-viewport {
	overflow: hidden;
}
.vv-gallery-track {
	display: flex;
	transition: transform .28s ease;
	will-change: transform;
}
.vv-gallery-slide {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: #eef1f4;
	display: flex;
	flex: 0 0 100%;
	justify-content: center;
	min-width: 0;
	overflow: hidden;
}
.vv-gallery-slide img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}
.vv-gallery-arrow {
	align-items: center;
	background: rgba(24, 34, 48, .82);
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 30px;
	height: 40px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	z-index: 2;
}
.vv-gallery-arrow:hover {
	background: var(--vv-accent);
}
.vv-gallery-arrow.is-prev {
	left: 10px;
}
.vv-gallery-arrow.is-next {
	right: 10px;
}
.vv-gallery-count {
	background: rgba(24, 34, 48, .82);
	border-radius: 14px;
	bottom: 10px;
	color: #fff;
	font-size: 12px;
	padding: 4px 9px;
	position: absolute;
	right: 10px;
}
.vv-gallery-slider.is-single .vv-gallery-arrow,
.vv-gallery-slider.is-single .vv-gallery-count {
	display: none;
}
.vv-content {
	color: #374354;
	font-size: 17px;
}
.vv-content h2,
.vv-section h2,
.vv-related h2 {
	color: var(--vv-ink);
	font-size: 27px;
	line-height: 1.25;
	margin-top: 32px;
}
.vv-content img {
	height: auto;
	max-width: 100%;
}
.vv-lead {
	border-left: 4px solid var(--vv-accent);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 28px;
	padding-left: 20px;
}
.vv-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.vv-detail-card {
	border: 1px solid var(--vv-line);
	border-radius: 8px;
	padding: 22px;
}
.vv-detail-card h2 {
	font-size: 20px;
	margin: 0 0 16px;
}
.vv-detail-card dl,
.vv-detail-card dd {
	margin: 0;
}
.vv-detail-card dl > div {
	border-top: 1px solid var(--vv-line);
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 11px 0;
}
.vv-detail-card dt {
	color: var(--vv-muted);
}
.vv-detail-card dd {
	font-weight: 700;
	overflow-wrap: normal !important;
	text-align: right;
	word-break: normal !important;
}
.vv-detail-nowrap {
	align-items: baseline;
	font-size: 14px;
	white-space: nowrap;
}
.vv-detail-nowrap dd,
.vv-detail-nowrap dd a {
	overflow-wrap: normal !important;
	white-space: nowrap !important;
	word-break: keep-all !important;
}
.vv-contact-card dd {
	overflow-wrap: anywhere !important;
}
.vv-map-link {
	color: var(--vv-accent) !important;
	display: inline-block;
	font-weight: 700;
	margin-top: 12px;
}
.vv-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}
.vv-taxonomy-links {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 44px;
}
.vv-link-section {
	background: var(--vv-white);
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	padding: clamp(20px, 3vw, 30px);
}
.vv-link-section h2 {
	font-size: 24px;
	line-height: 1.25;
	margin: 0 0 18px;
}
.vv-link-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.vv-link-list li {
	color: var(--vv-muted);
	white-space: nowrap;
}
.vv-link-list a {
	color: var(--vv-accent);
	font-weight: 600;
	text-decoration: none;
}
.vv-link-list a:hover {
	text-decoration: underline;
}
.vv-link-count {
	font-size: 14px;
	font-variant-numeric: tabular-nums;
}
.vv-home-content {
	display: grid;
	gap: 24px;
	margin-top: 24px;
}
.vv-home-section {
	background: var(--vv-white);
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	padding: clamp(24px, 4vw, 38px);
}
.vv-home-section > h2 {
	color: var(--vv-ink);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.25;
	margin: 0 0 20px;
}
.vv-home-about {
	border-left: 4px solid var(--vv-accent);
}
.vv-home-about p {
	color: #374354;
	font-size: 17px;
	margin: 0;
	max-width: 960px;
}
.vv-selling-steps {
	counter-reset: vv-step;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}
.vv-selling-steps li {
	background: var(--vv-soft);
	border-radius: 8px;
	counter-increment: vv-step;
	padding: 22px 22px 22px 68px;
	position: relative;
}
.vv-selling-steps li::before {
	align-items: center;
	background: var(--vv-accent);
	border-radius: 50%;
	color: var(--vv-white);
	content: counter(vv-step);
	display: flex;
	font-size: 18px;
	font-weight: 800;
	height: 36px;
	justify-content: center;
	left: 20px;
	position: absolute;
	top: 20px;
	width: 36px;
}
.vv-selling-steps h3,
.vv-benefit-grid h3 {
	color: var(--vv-ink);
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 8px;
}
.vv-selling-steps p,
.vv-benefit-grid p {
	color: var(--vv-muted);
	margin: 0;
}
.vv-benefit-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.vv-benefit-grid article {
	border: 1px solid var(--vv-line);
	border-radius: 8px;
	padding: 22px;
}
.vv-section {
	border-top: 1px solid var(--vv-line);
	padding: 0 clamp(24px, 4vw, 44px) clamp(24px, 4vw, 44px);
}
.vv-videos {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.vv-videos iframe,
.vv-videos video {
	aspect-ratio: 16 / 9;
	border: 0;
	height: auto;
	width: 100%;
}
.vv-contact-form {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	max-width: 800px;
}
.vv-contact-form .vv-full {
	grid-column: 1 / -1;
}
.vv-contact-form button {
	width: max-content;
}
.vv-honeypot {
	left: -9999px;
	position: absolute;
}
.vv-related {
	margin-top: 42px;
}
.vv-notice {
	background: #eef3f7;
	border-left: 4px solid #60758a;
	margin: 16px 0;
	padding: 12px 16px;
}
.vv-success {
	background: #edfaef;
	border-color: #1f8d3c;
}
.vv-error {
	background: #fff0f0;
	border-color: #b5232a;
}
.vv-submit-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.vv-submit-form section {
	border-top: 1px solid var(--vv-line);
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	padding-top: 20px;
}
.vv-submit-form section h2,
.vv-submit-form .vv-full,
.vv-submit-form .vv-help {
	grid-column: 1 / -1;
}
.vv-existing-images {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	grid-column: 1 / -1;
}
.vv-existing-images label {
	border: 1px solid var(--vv-line);
	padding: 8px;
}
.vv-existing-images img {
	height: 100px;
	object-fit: cover;
	width: 120px;
}
.vv-help {
	color: var(--vv-muted);
	font-size: 14px;
}
.vv-dashboard-head,
.vv-dashboard-list article,
.vv-dashboard-actions {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}
.vv-dashboard-list article {
	border-top: 1px solid var(--vv-line);
	padding: 18px 0;
}
.vv-dashboard-list h2 {
	font-size: 20px;
	margin: 0;
}
.vv-dashboard-list p {
	color: var(--vv-muted);
	margin: 4px 0 0;
}
.vv-dashboard-actions a {
	color: var(--vv-accent);
	font-weight: 700;
}
@media (max-width: 900px) {
	.vv-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.vv-search-main,
	.vv-single-layout,
	.vv-taxonomy-links,
	.vv-benefit-grid {
		grid-template-columns: 1fr;
	}
	.vv-selling-steps {
		grid-template-columns: 1fr;
	}
	.vv-single-header {
		flex-direction: column;
	}
}
@media (max-width: 620px) {
	.vv-site-main {
		padding-left: 12px;
		padding-right: 12px;
	}
	.vv-grid,
	.vv-search-more > div,
	.vv-contact-form,
	.vv-videos,
	.vv-submit-form section {
		grid-template-columns: 1fr;
	}
	.vv-contact-form .vv-full,
	.vv-submit-form section h2,
	.vv-submit-form .vv-full,
	.vv-submit-form .vv-help {
		grid-column: auto;
	}
	.vv-dashboard-head,
	.vv-dashboard-list article {
		align-items: flex-start;
		flex-direction: column;
	}
}
