:root {
	--mvo-forest: #18311f;
	--mvo-forest-deep: #102417;
	--mvo-leaf: #4f8b3a;
	--mvo-leaf-dark: #356d2c;
	--mvo-lime: #c8df3b;
	--mvo-river: #9bd3e8;
	--mvo-cream: #f7f3e8;
	--mvo-sage: #edf2e7;
	--mvo-paper: #ffffff;
	--mvo-ink: #19221b;
	--mvo-muted: #627066;
	--mvo-line: rgba(24, 49, 31, 0.13);
	--mvo-shadow: 0 28px 70px rgba(16, 36, 23, 0.12);
	--mvo-shadow-soft: 0 16px 42px rgba(16, 36, 23, 0.08);
	--mvo-radius-xl: 36px;
	--mvo-radius-lg: 26px;
	--mvo-radius-md: 18px;
	--mvo-shell: min(1180px, calc(100% - 40px));
}

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

body {
	margin: 0;
	background: var(--mvo-paper);
	color: var(--mvo-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
	font-family: inherit;
}

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

a {
	color: inherit;
}

.mvo-shell {
	width: var(--mvo-shell);
	margin-inline: auto;
}

.mvo-skip-link {
	position: fixed;
	left: 16px;
	top: 16px;
	z-index: 99999;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--mvo-forest);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	transform: translateY(-180%);
	transition: transform 0.2s ease;
}

.mvo-skip-link:focus {
	transform: translateY(0);
}

.mvo-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(24, 49, 31, 0.09);
	background: rgba(255, 255, 255, 0.95);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	transition: box-shadow 0.2s ease, background 0.2s ease;
}

.admin-bar .mvo-header {
	top: 32px;
}

.mvo-header.is-scrolled {
	background: rgba(255, 255, 255, 0.985);
	box-shadow: 0 12px 32px rgba(16, 36, 23, 0.07);
}

.mvo-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 118px;
	gap: 34px;
}

.mvo-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 1 auto;
	gap: 18px;
	color: var(--mvo-forest);
	line-height: 1;
	text-decoration: none;
}

.mvo-brand img,
.mvo-brand .custom-logo {
	display: block;
	width: 104px;
	max-width: 104px;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.mvo-brand .custom-logo-link {
	display: flex;
	line-height: 0;
}

.mvo-brand-copy {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.mvo-brand-copy strong {
	color: var(--mvo-forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.05;
	white-space: nowrap;
}

.mvo-brand-copy small {
	color: var(--mvo-muted);
	font-size: 13px;
	line-height: 1.25;
}

.mvo-primary-nav {
	display: block;
}

.mvo-menu,
.mvo-primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mvo-menu li,
.mvo-primary-nav .menu li {
	position: relative;
}

.mvo-menu a,
.mvo-primary-nav .menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 9px 12px;
	border-radius: 10px;
	color: var(--mvo-ink);
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
	transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.mvo-menu a:hover,
.mvo-menu a:focus-visible,
.mvo-primary-nav .menu a:hover,
.mvo-primary-nav .menu a:focus-visible {
	background: var(--mvo-sage);
	color: var(--mvo-leaf-dark);
	outline: none;
}

.mvo-menu .mvo-menu-cta,
.mvo-primary-nav .menu > li:last-child > a {
	padding-inline: 22px;
	border-radius: 999px;
	background: var(--mvo-forest);
	color: #fff;
}

.mvo-menu .mvo-menu-cta:hover,
.mvo-menu .mvo-menu-cta:focus-visible,
.mvo-primary-nav .menu > li:last-child > a:hover,
.mvo-primary-nav .menu > li:last-child > a:focus-visible {
	background: var(--mvo-leaf-dark);
	color: #fff;
	transform: translateY(-1px);
}

.mvo-primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: none;
	min-width: 220px;
	margin: 0;
	padding: 10px;
	border: 1px solid var(--mvo-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--mvo-shadow-soft);
	list-style: none;
}

.mvo-primary-nav li:hover > .sub-menu,
.mvo-primary-nav li:focus-within > .sub-menu {
	display: block;
}

.mvo-nav-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 9px 13px;
	border: 1px solid var(--mvo-line);
	border-radius: 999px;
	background: #fff;
	color: var(--mvo-forest);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.mvo-nav-toggle-bars {
	display: grid;
	gap: 3px;
	width: 18px;
}

.mvo-nav-toggle-bars i {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.mvo-nav-toggle[aria-expanded="true"] .mvo-nav-toggle-bars i:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.mvo-nav-toggle[aria-expanded="true"] .mvo-nav-toggle-bars i:nth-child(2) {
	opacity: 0;
}

.mvo-nav-toggle[aria-expanded="true"] .mvo-nav-toggle-bars i:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}

/* Hero */
.mvo-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-bottom: 1px solid var(--mvo-line);
	background:
		radial-gradient(circle at 88% 18%, rgba(200, 223, 59, 0.12), transparent 29%),
		linear-gradient(112deg, #fffdf7 0%, #f8f5ec 47%, #edf3e7 100%);
}

.mvo-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: 0.24;
	background-image:
		linear-gradient(rgba(24, 49, 31, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(24, 49, 31, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.mvo-hero::after {
	content: "";
	position: absolute;
	right: -9%;
	bottom: -160px;
	z-index: -1;
	width: 72%;
	height: 250px;
	border-radius: 50% 50% 0 0;
	background: linear-gradient(100deg, rgba(24,49,31,0.98), rgba(79,139,58,0.88));
	transform: rotate(-3deg);
}

.mvo-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
	align-items: center;
	gap: clamp(44px, 6vw, 88px);
	min-height: 720px;
	padding-block: 74px 88px;
}

.mvo-hero-copy {
	position: relative;
	z-index: 2;
	padding-block: 20px;
}

.mvo-eyebrow,
.mvo-kicker {
	margin: 0 0 18px;
	color: var(--mvo-leaf-dark);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.mvo-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	padding: 7px 18px 7px 7px;
	border: 1px solid rgba(53, 109, 44, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 8px 24px rgba(16, 36, 23, 0.05);
}

.mvo-eyebrow-seal {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(145deg, #b9d742, #6c9e43);
	color: #fff;
	font-size: 15px;
	box-shadow: 0 0 0 5px rgba(200, 223, 59, 0.13);
}

.mvo-hero h1,
.mvo-section-heading h2,
.mvo-video-copy h2,
.mvo-contact-details h2,
.mvo-content-header h1 {
	margin: 0;
	color: var(--mvo-forest);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 700;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.mvo-hero h1 {
	max-width: 690px;
	font-size: clamp(52px, 6.25vw, 82px);
	line-height: 0.99;
}

.mvo-hero-intro {
	max-width: 650px;
	margin: 27px 0 0;
	color: #4f5d54;
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.65;
}

.mvo-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 32px;
}

.mvo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 54px;
	padding: 13px 23px;
	border: 1px solid transparent;
	border-radius: 11px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.mvo-button:hover,
.mvo-button:focus-visible {
	transform: translateY(-2px);
	outline: none;
	box-shadow: 0 14px 30px rgba(16, 36, 23, 0.16);
}

.mvo-button-primary {
	background: linear-gradient(135deg, #295d34, #173f26);
	color: #fff;
}

.mvo-button-primary:hover,
.mvo-button-primary:focus-visible {
	background: var(--mvo-leaf-dark);
	color: #fff;
}

.mvo-button-secondary {
	border-color: rgba(53, 109, 44, 0.45);
	background: rgba(255, 255, 255, 0.74);
	color: var(--mvo-forest);
}

.mvo-button-light {
	background: #fff;
	color: var(--mvo-forest);
}

.mvo-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mvo-leaf-dark);
	font-weight: 850;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}

.mvo-text-link:hover,
.mvo-text-link:focus-visible {
	color: var(--mvo-forest);
}

.mvo-hero-trust {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin-top: 42px;
}

.mvo-hero-trust > div {
	display: grid;
	min-width: 130px;
	padding: 0 26px;
	border-right: 1px solid rgba(24, 49, 31, 0.16);
}

.mvo-hero-trust > div:first-child {
	padding-left: 0;
}

.mvo-hero-trust > div:last-child {
	padding-right: 0;
	border-right: 0;
}

.mvo-hero-trust strong {
	color: var(--mvo-forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 43px;
	font-weight: 700;
	line-height: 1;
}

.mvo-hero-trust span {
	margin-top: 7px;
	color: var(--mvo-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mvo-hero-photo {
	position: relative;
	min-height: 580px;
	margin: 0;
	border: 1px solid rgba(24, 49, 31, 0.12);
	border-radius: 45% 45% 32px 32px;
	background: #e8efe2;
	box-shadow: 0 34px 90px rgba(16, 36, 23, 0.17);
	overflow: visible;
}

.mvo-hero-photo::before {
	content: "";
	position: absolute;
	inset: -18px 24px 18px -22px;
	z-index: -1;
	border: 1px solid rgba(79, 139, 58, 0.2);
	border-radius: 46% 46% 36px 36px;
}

.mvo-hero-photo > img {
	display: block;
	width: 100%;
	height: 580px;
	border-radius: inherit;
	object-fit: cover;
	object-position: center center;
}

.mvo-hero-cert-card {
	position: absolute;
	top: 36px;
	right: -22px;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 208px;
	padding: 14px 17px;
	border: 1px solid rgba(24, 49, 31, 0.12);
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 20px 50px rgba(16, 36, 23, 0.14);
}

.mvo-cert-check {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 12px;
	background: var(--mvo-sage);
	color: var(--mvo-leaf-dark);
	font-size: 20px;
	font-weight: 900;
}

.mvo-hero-cert-card strong,
.mvo-hero-cert-card small {
	display: block;
}

.mvo-hero-cert-card strong {
	color: var(--mvo-forest);
	font-size: 15px;
}

.mvo-hero-cert-card small {
	margin-top: 1px;
	color: var(--mvo-muted);
	font-size: 11px;
}

/* Proof strip */
.mvo-proof-strip {
	border-bottom: 1px solid var(--mvo-line);
	background: var(--mvo-forest);
	color: #fff;
}

.mvo-proof-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.mvo-proof-grid > div {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 88px;
	padding: 18px 22px;
	border-right: 1px solid rgba(255,255,255,0.12);
}

.mvo-proof-grid > div:first-child {
	padding-left: 0;
}

.mvo-proof-grid > div:last-child {
	padding-right: 0;
	border-right: 0;
}

.mvo-proof-grid span {
	color: var(--mvo-lime);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.mvo-proof-grid strong {
	font-size: 13px;
	line-height: 1.35;
}

/* Generic sections */
.mvo-section {
	padding-block: clamp(76px, 9vw, 122px);
}

.mvo-section-heading {
	max-width: 850px;
	margin-bottom: 44px;
}

.mvo-section-heading h2,
.mvo-video-copy h2,
.mvo-contact-details h2 {
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.02;
}

.mvo-section-heading > p:last-child,
.mvo-section-heading-split > p,
.mvo-video-copy > p {
	margin: 20px 0 0;
	color: var(--mvo-muted);
	font-size: 18px;
	line-height: 1.75;
}

.mvo-section-heading-split {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	align-items: end;
	gap: clamp(42px, 7vw, 100px);
	max-width: none;
}

.mvo-section-heading-split > p {
	margin: 0;
}

.mvo-section-heading-centred {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

/* Story */
.mvo-story-section {
	background:
		linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)),
		radial-gradient(circle at 10% 10%, rgba(155, 211, 232, 0.32), transparent 30%);
}

.mvo-story-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.82fr 0.82fr;
	grid-template-rows: auto auto;
	gap: 18px;
}

.mvo-feature-card {
	position: relative;
	overflow: hidden;
	min-height: 238px;
	padding: 30px;
	border: 1px solid var(--mvo-line);
	border-radius: var(--mvo-radius-lg);
	background: #fff;
	box-shadow: var(--mvo-shadow-soft);
}

.mvo-feature-card h3 {
	margin: 44px 0 10px;
	color: var(--mvo-forest);
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.mvo-feature-card p {
	margin: 0;
	color: var(--mvo-muted);
}

.mvo-feature-card a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	color: var(--mvo-leaf-dark);
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
}

.mvo-card-number {
	position: absolute;
	top: 22px;
	right: 24px;
	color: rgba(24, 49, 31, 0.34);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.mvo-feature-card-large {
	grid-row: span 2;
	min-height: 494px;
	padding: 36px;
	background:
		linear-gradient(150deg, rgba(24,49,31,0.96), rgba(53,109,44,0.93)),
		var(--mvo-forest);
	color: #fff;
}

.mvo-feature-card-large::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 340px;
	height: 340px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 44px rgba(255,255,255,0.035),
		0 0 0 88px rgba(255,255,255,0.025);
}

.mvo-feature-card-large .mvo-card-number {
	color: rgba(255,255,255,0.45);
}

.mvo-feature-card-large h3 {
	margin-top: 94px;
	color: #fff;
	font-size: 38px;
}

.mvo-feature-card-large p {
	max-width: 510px;
	color: rgba(255,255,255,0.76);
	font-size: 17px;
}

.mvo-feature-card-large a {
	position: relative;
	z-index: 2;
	color: var(--mvo-lime);
}

.mvo-feature-icon {
	position: absolute;
	top: 34px;
	left: 36px;
	display: grid;
	width: 56px;
	height: 56px;
	place-items: center;
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 18px;
	background: rgba(255,255,255,0.09);
	color: #fff;
	font-weight: 900;
}

.mvo-feature-card-accent {
	background: var(--mvo-sage);
}

/* Produce */
.mvo-produce-section {
	border-block: 1px solid var(--mvo-line);
	background: var(--mvo-cream);
}

.mvo-produce-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.mvo-produce-card {
	overflow: hidden;
	border: 1px solid var(--mvo-line);
	border-radius: var(--mvo-radius-xl);
	background: #fff;
	box-shadow: var(--mvo-shadow-soft);
}

.mvo-produce-art {
	position: relative;
	height: 250px;
	overflow: hidden;
	background: var(--mvo-sage);
}

.mvo-produce-art::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.44), transparent 50%);
}

.mvo-produce-art-spring {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 14px;
	padding-bottom: 22px;
	background: linear-gradient(180deg, #d9ece9 0%, #eef2d8 100%);
}

.mvo-produce-art-spring span {
	position: relative;
	z-index: 2;
	display: block;
	width: 28px;
	height: 150px;
	border-radius: 60% 60% 20px 20px;
	background: linear-gradient(to bottom, #2f7b3c 0 62%, #f3f0d6 63% 100%);
	transform-origin: bottom;
	box-shadow: 0 12px 25px rgba(16,36,23,0.12);
}

.mvo-produce-art-spring span::before,
.mvo-produce-art-spring span::after {
	content: "";
	position: absolute;
	top: -46px;
	width: 17px;
	height: 78px;
	border-radius: 100% 0 100% 0;
	background: #4f8b3a;
}

.mvo-produce-art-spring span::before {
	left: -8px;
	transform: rotate(-22deg);
}

.mvo-produce-art-spring span::after {
	right: -8px;
	transform: rotate(22deg) scaleX(-1);
}

.mvo-produce-art-spring span:nth-child(1) { transform: rotate(-16deg) scale(0.82); }
.mvo-produce-art-spring span:nth-child(2) { transform: rotate(-8deg) scale(0.94); }
.mvo-produce-art-spring span:nth-child(3) { transform: scale(1.04); }
.mvo-produce-art-spring span:nth-child(4) { transform: rotate(8deg) scale(0.94); }
.mvo-produce-art-spring span:nth-child(5) { transform: rotate(16deg) scale(0.82); }

.mvo-produce-art-seasonal {
	background: linear-gradient(145deg, #f4e8c7, #dce8c7);
}

.mvo-produce-art-seasonal div {
	position: absolute;
	border-radius: 50%;
	box-shadow: inset -18px -14px 24px rgba(16,36,23,0.12);
}

.mvo-produce-art-seasonal div::before,
.mvo-produce-art-seasonal div::after {
	content: "";
	position: absolute;
	top: -36px;
	width: 56px;
	height: 70px;
	border-radius: 100% 0 100% 0;
	background: #4f8b3a;
}

.mvo-produce-art-seasonal div::before {
	left: 24px;
	transform: rotate(-28deg);
}

.mvo-produce-art-seasonal div::after {
	right: 24px;
	transform: rotate(28deg) scaleX(-1);
}

.mvo-produce-art-seasonal div:nth-child(1) {
	left: 34px;
	bottom: 34px;
	width: 122px;
	height: 122px;
	background: #91b45d;
}

.mvo-produce-art-seasonal div:nth-child(2) {
	left: 142px;
	bottom: 18px;
	z-index: 2;
	width: 148px;
	height: 148px;
	background: #c8df3b;
}

.mvo-produce-art-seasonal div:nth-child(3) {
	right: 22px;
	bottom: 46px;
	width: 106px;
	height: 106px;
	background: #6f9f45;
}

.mvo-produce-content {
	padding: 28px;
}

.mvo-small-label {
	margin: 0 0 10px;
	color: var(--mvo-leaf-dark);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mvo-produce-content h3 {
	margin: 0;
	color: var(--mvo-forest);
	font-size: 27px;
	line-height: 1.15;
	letter-spacing: -0.035em;
}

.mvo-produce-content p {
	margin: 13px 0 0;
	color: var(--mvo-muted);
}

.mvo-produce-card-dark {
	display: flex;
	min-height: 100%;
	align-items: end;
	background:
		radial-gradient(circle at 80% 18%, rgba(200, 223, 59, 0.16), transparent 28%),
		linear-gradient(145deg, var(--mvo-forest), var(--mvo-forest-deep));
	color: #fff;
}

.mvo-produce-card-dark .mvo-produce-content {
	padding: 36px;
}

.mvo-produce-card-dark .mvo-small-label {
	color: var(--mvo-lime);
}

.mvo-produce-card-dark h3 {
	color: #fff;
	font-size: 36px;
}

.mvo-produce-card-dark p {
	color: rgba(255,255,255,0.72);
}

.mvo-produce-card-dark a {
	display: inline-flex;
	gap: 10px;
	margin-top: 24px;
	color: var(--mvo-lime);
	font-weight: 850;
	text-decoration: none;
}


/* Editable product cards */
.mvo-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.mvo-produce-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mvo-product-card .mvo-produce-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.mvo-product-description {
	margin-top: 13px;
	color: var(--mvo-muted);
}

.mvo-product-description p {
	margin: 0;
}

.mvo-product-description p + p {
	margin-top: 10px;
}

.mvo-product-description > :first-child {
	margin-top: 0;
}

.mvo-product-description > :last-child {
	margin-bottom: 0;
}

/* Keep form controls inside their grid columns on all browsers/themes. */
.mvo-contact-form,
.mvo-contact-form *,
.mvo-contact-form *::before,
.mvo-contact-form *::after {
	box-sizing: border-box;
}

.mvo-form-row > label {
	min-width: 0;
}

.mvo-contact-form input:not([type="checkbox"]),
.mvo-contact-form select,
.mvo-contact-form textarea {
	display: block;
	max-width: 100%;
}

/* Values */
.mvo-values-section {
	background: #fff;
}

.mvo-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-block: 1px solid var(--mvo-line);
}

.mvo-values-grid article {
	min-height: 250px;
	padding: 34px 28px;
	border-right: 1px solid var(--mvo-line);
}

.mvo-values-grid article:last-child {
	border-right: 0;
}

.mvo-value-index {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 50%;
	background: var(--mvo-sage);
	color: var(--mvo-leaf-dark);
	font-size: 11px;
	font-weight: 900;
}

.mvo-values-grid h3 {
	margin: 58px 0 10px;
	color: var(--mvo-forest);
	font-size: 21px;
	letter-spacing: -0.025em;
}

.mvo-values-grid p {
	margin: 0;
	color: var(--mvo-muted);
	font-size: 15px;
}

/* Video */
.mvo-video-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 20%, rgba(200,223,59,0.13), transparent 28%),
		linear-gradient(145deg, var(--mvo-forest), var(--mvo-forest-deep));
	color: #fff;
}

.mvo-video-grid {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	align-items: center;
	gap: clamp(44px, 7vw, 90px);
}

.mvo-video-copy h2 {
	color: #fff;
}

.mvo-video-copy > p {
	color: rgba(255,255,255,0.72);
}

.mvo-video-copy .mvo-kicker {
	color: var(--mvo-lime);
}

.mvo-video-copy .mvo-text-link {
	color: #fff;
}

.mvo-video-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 30px;
	background: #0a100b;
	box-shadow: 0 34px 80px rgba(0,0,0,0.3);
}

.mvo-video-frame::before {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: 2;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: inherit;
	pointer-events: none;
}

.mvo-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Owners */
.mvo-owners-section {
	background: var(--mvo-sage);
}

.mvo-owner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.mvo-owner-card {
	padding: 34px;
	border: 1px solid var(--mvo-line);
	border-radius: var(--mvo-radius-xl);
	background: #fff;
	box-shadow: var(--mvo-shadow-soft);
}

.mvo-owner-top {
	display: flex;
	align-items: center;
	gap: 18px;
}

.mvo-owner-avatar {
	display: grid;
	width: 68px;
	height: 68px;
	flex: 0 0 68px;
	place-items: center;
	border-radius: 22px;
	background: linear-gradient(145deg, var(--mvo-leaf), var(--mvo-leaf-dark));
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	box-shadow: 0 14px 26px rgba(53,109,44,0.2);
}

.mvo-owner-top h3 {
	margin: 0;
	color: var(--mvo-forest);
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.mvo-owner-top p {
	margin: 5px 0 0;
	color: var(--mvo-leaf-dark);
	font-size: 13px;
	font-weight: 850;
}

.mvo-owner-card > p {
	margin: 26px 0;
	color: var(--mvo-muted);
	font-size: 16px;
}

.mvo-owner-links {
	display: grid;
	border-top: 1px solid var(--mvo-line);
}

.mvo-owner-links a {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: 16px;
	padding-block: 14px;
	border-bottom: 1px solid var(--mvo-line);
	text-decoration: none;
}

.mvo-owner-links a span {
	color: var(--mvo-muted);
	font-size: 12px;
	font-weight: 750;
	text-transform: uppercase;
}

.mvo-owner-links a strong {
	overflow-wrap: anywhere;
	color: var(--mvo-forest);
	font-size: 14px;
}

.mvo-owner-links a:hover strong,
.mvo-owner-links a:focus-visible strong {
	color: var(--mvo-leaf-dark);
}

/* Contact */
.mvo-contact-section {
	padding-block: 30px 100px;
	background: var(--mvo-sage);
}

.mvo-contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
	gap: clamp(44px, 7vw, 90px);
	padding: clamp(34px, 5vw, 72px);
	border-radius: 44px;
	background:
		radial-gradient(circle at 10% 90%, rgba(155,211,232,0.16), transparent 26%),
		linear-gradient(145deg, var(--mvo-forest), var(--mvo-forest-deep));
	box-shadow: var(--mvo-shadow);
	color: #fff;
}

.mvo-kicker-light {
	color: var(--mvo-lime);
}

.mvo-contact-details h2 {
	color: #fff;
}

.mvo-contact-details > p:not(.mvo-kicker) {
	margin: 20px 0 0;
	color: rgba(255,255,255,0.72);
	font-size: 17px;
}

.mvo-contact-list {
	display: grid;
	gap: 12px;
	margin-top: 32px;
}

.mvo-contact-list > a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 14px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 18px;
	background: rgba(255,255,255,0.055);
	text-decoration: none;
	transition: background 0.18s ease, transform 0.18s ease;
}

.mvo-contact-list > a:hover,
.mvo-contact-list > a:focus-visible {
	background: rgba(255,255,255,0.10);
	transform: translateX(3px);
	outline: none;
}

.mvo-contact-icon {
	display: grid;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	place-items: center;
	border-radius: 13px;
	background: rgba(200,223,59,0.14);
	color: var(--mvo-lime);
	font-weight: 900;
}

.mvo-contact-list small,
.mvo-contact-list strong {
	display: block;
}

.mvo-contact-list small {
	color: rgba(255,255,255,0.5);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mvo-contact-list strong {
	margin-top: 2px;
	overflow-wrap: anywhere;
	font-size: 14px;
}

.mvo-contact-phone-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 14px;
}

.mvo-contact-phone-row a {
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(255,255,255,0.08);
	text-decoration: none;
}

.mvo-contact-phone-row small,
.mvo-contact-phone-row strong {
	display: block;
}

.mvo-contact-phone-row small {
	color: var(--mvo-lime);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mvo-contact-phone-row strong {
	font-size: 16px;
}

.mvo-form-card {
	padding: 30px;
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 30px;
	background: #fff;
	color: var(--mvo-ink);
	box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}

.mvo-contact-form {
	display: grid;
	gap: 16px;
}

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

.mvo-contact-form label {
	display: grid;
	gap: 7px;
}

.mvo-contact-form label > span {
	color: #3f4e44;
	font-size: 12px;
	font-weight: 800;
}

.mvo-contact-form input,
.mvo-contact-form select,
.mvo-contact-form textarea {
	width: 100%;
	border: 1px solid rgba(24,49,31,0.17);
	border-radius: 13px;
	background: #fbfcf9;
	color: var(--mvo-ink);
	font-size: 15px;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mvo-contact-form input,
.mvo-contact-form select {
	min-height: 48px;
	padding: 10px 13px;
}

.mvo-contact-form textarea {
	min-height: 130px;
	padding: 12px 13px;
	resize: vertical;
}

.mvo-contact-form input:focus,
.mvo-contact-form select:focus,
.mvo-contact-form textarea:focus {
	border-color: var(--mvo-leaf);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(79,139,58,0.12);
}

.mvo-contact-form .mvo-consent {
	display: flex;
	grid-template-columns: auto 1fr;
	align-items: flex-start;
	gap: 10px;
}

.mvo-consent input {
	width: 18px;
	min-height: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--mvo-leaf);
}

.mvo-contact-form .mvo-consent span {
	color: var(--mvo-muted);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.45;
}

.mvo-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.mvo-form-submit {
	width: 100%;
	border: 0;
}

.mvo-form-message {
	margin-bottom: 18px;
	padding: 12px 14px;
	border-radius: 13px;
	font-size: 13px;
	font-weight: 750;
}

.mvo-form-message-success {
	background: #e8f5e5;
	color: #285f24;
}

.mvo-form-message-error {
	background: #fff0ed;
	color: #8c2d1e;
}

.mvo-form-card-simple {
	display: grid;
	place-items: center;
	text-align: center;
}

.mvo-form-card-simple img {
	width: 230px;
}

.mvo-form-card-simple h3 {
	color: var(--mvo-forest);
}

/* Footer */
.mvo-footer {
	border-top: 1px solid var(--mvo-line);
	background: #fff;
}

.mvo-footer-main {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 34px;
	padding-block: 34px;
}

.mvo-footer-brand {
	display: flex;
	align-items: center;
	gap: 16px;
}

.mvo-footer-brand img {
	width: 76px;
}

.mvo-footer-brand strong {
	color: var(--mvo-forest);
	font-size: 16px;
}

.mvo-footer-brand p {
	margin: 2px 0 0;
	color: var(--mvo-muted);
	font-size: 11px;
}

.mvo-footer-links {
	display: grid;
	gap: 4px;
	font-size: 13px;
	font-weight: 750;
}

.mvo-footer-links a {
	color: var(--mvo-muted);
	text-decoration: none;
}

.mvo-footer-links a:hover {
	color: var(--mvo-leaf-dark);
}

.mvo-footer-menu-list {
	display: flex;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mvo-footer-menu-list a {
	color: var(--mvo-muted);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.mvo-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-block: 18px 28px;
	border-top: 1px solid var(--mvo-line);
	color: var(--mvo-muted);
	font-size: 11px;
}

.mvo-footer-bottom p {
	margin: 0;
}

.mvo-back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 50%;
	background: var(--mvo-forest);
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(16,36,23,0.22);
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mvo-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.mvo-back-to-top:hover,
.mvo-back-to-top:focus-visible {
	background: var(--mvo-leaf-dark);
	outline: none;
}

/* Internal WordPress content */
.mvo-content-main {
	min-height: 65vh;
	padding-block: 80px 110px;
	background: var(--mvo-sage);
}

.mvo-content-shell {
	padding: 48px;
	border: 1px solid var(--mvo-line);
	border-radius: var(--mvo-radius-xl);
	background: #fff;
	box-shadow: var(--mvo-shadow-soft);
}

.mvo-reading-width {
	max-width: 920px;
}

.mvo-content-header {
	margin-bottom: 34px;
}

.mvo-content-header h1 {
	font-size: clamp(42px, 6vw, 68px);
	line-height: 1;
}

.mvo-entry-content {
	color: #35443a;
	font-size: 17px;
}

.mvo-entry-content > * {
	max-width: 100%;
}

.mvo-entry-content h2,
.mvo-entry-content h3 {
	color: var(--mvo-forest);
	line-height: 1.2;
}

.mvo-entry-content a {
	color: var(--mvo-leaf-dark);
	font-weight: 700;
}

.mvo-entry-content img,
.mvo-entry-image img {
	border-radius: 22px;
}

.mvo-post-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.mvo-post-card {
	overflow: hidden;
	border: 1px solid var(--mvo-line);
	border-radius: 24px;
	background: #fff;
}

.mvo-post-card-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.mvo-post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.mvo-post-card:hover .mvo-post-card-image img {
	transform: scale(1.025);
}

.mvo-post-card-content {
	padding: 26px;
}

.mvo-post-card h2 {
	margin: 0;
	font-size: 25px;
	line-height: 1.2;
}

.mvo-post-card h2 a {
	color: var(--mvo-forest);
	text-decoration: none;
}

.mvo-post-card p {
	color: var(--mvo-muted);
}

.mvo-empty-state {
	padding: 70px 20px;
	text-align: center;
}

.mvo-comments {
	margin-top: 50px;
	padding-top: 34px;
	border-top: 1px solid var(--mvo-line);
}

.comment-list {
	padding-left: 24px;
}

/* WordPress alignment helpers */
.alignwide {
	width: min(1180px, calc(100vw - 40px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.wp-caption,
.gallery-caption {
	color: var(--mvo-muted);
	font-size: 13px;
}

.sticky {
	position: relative;
}

.bypostauthor {
	position: relative;
}

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

.screen-reader-text:focus {
	top: 5px;
	left: 5px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	clip: auto !important;
	background: #f1f1f1;
	color: #21759b;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 1100px) {
	.mvo-hero-grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
		gap: 46px;
	}

	.mvo-hero h1 {
		font-size: clamp(48px, 6.5vw, 72px);
	}

	.mvo-hero-cert-card {
		right: -10px;
	}

	.mvo-story-grid {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.mvo-feature-card-large {
		grid-row: span 3;
	}

	.mvo-produce-grid {
		grid-template-columns: 1fr 1fr;
	}

	.mvo-produce-card-dark {
		grid-column: 1 / -1;
		min-height: 300px;
	}

	.mvo-values-grid {
		grid-template-columns: 1fr 1fr;
	}

	.mvo-values-grid article:nth-child(2) {
		border-right: 0;
	}

	.mvo-values-grid article:nth-child(-n+2) {
		border-bottom: 1px solid var(--mvo-line);
	}

	.mvo-contact-panel {
		grid-template-columns: 1fr 1.08fr;
		gap: 42px;
		padding: 42px;
	}
}

@media (max-width: 900px) {
	:root {
		--mvo-shell: min(100% - 30px, 760px);
	}

	.admin-bar .mvo-header {
		top: 46px;
	}

	.mvo-header-inner {
		min-height: 76px;
	}

	.mvo-brand img,
	.mvo-brand .custom-logo {
		width: 82px;
		max-width: 82px;
	}

	.mvo-brand-copy strong {
		font-size: 21px;
	}

	.mvo-brand-copy small {
		display: none;
	}

	.mvo-nav-toggle {
		display: inline-flex;
	}

	.mvo-primary-nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 15px;
		right: 15px;
		display: none;
		padding: 12px;
		border: 1px solid var(--mvo-line);
		border-radius: 20px;
		background: rgba(255,255,255,0.98);
		box-shadow: var(--mvo-shadow-soft);
	}

	.mvo-primary-nav.is-open {
		display: block;
	}

	.mvo-menu,
	.mvo-primary-nav .menu {
		display: grid;
		gap: 4px;
	}

	.mvo-menu a,
	.mvo-primary-nav .menu a {
		display: flex;
		width: 100%;
		padding-inline: 14px;
	}

	.mvo-primary-nav .sub-menu {
		position: static;
		display: block;
		padding: 2px 0 2px 14px;
		border: 0;
		box-shadow: none;
	}

	.mvo-hero-grid,
	.mvo-section-heading-split,
	.mvo-video-grid,
	.mvo-contact-panel {
		grid-template-columns: 1fr;
	}

	.mvo-hero-grid {
		min-height: auto;
		padding-block: 66px 100px;
	}

	.mvo-hero-copy {
		max-width: 760px;
	}

	.mvo-hero-photo {
		width: min(100%, 640px);
		min-height: 520px;
		margin-inline: auto;
	}

	.mvo-hero-photo > img {
		height: 520px;
	}

	.mvo-proof-grid {
		grid-template-columns: 1fr 1fr;
	}

	.mvo-proof-grid > div {
		border-bottom: 1px solid rgba(255,255,255,0.12);
	}

	.mvo-proof-grid > div:nth-child(2) {
		border-right: 0;
	}

	.mvo-proof-grid > div:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.mvo-proof-grid > div:first-child {
		padding-left: 22px;
	}

	.mvo-proof-grid > div:last-child {
		padding-right: 22px;
	}

	.mvo-section-heading-split {
		align-items: start;
		gap: 22px;
	}

	.mvo-story-grid {
		grid-template-columns: 1fr 1fr;
	}

	.mvo-feature-card-large {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 420px;
	}

	.mvo-values-grid article {
		min-height: 220px;
	}

	.mvo-video-copy {
		max-width: 760px;
	}

	.mvo-owner-grid {
		grid-template-columns: 1fr;
	}

	.mvo-contact-panel {
		padding: 40px;
	}

	.mvo-footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.mvo-footer-menu {
		grid-column: 1 / -1;
	}

	.mvo-post-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	:root {
		--mvo-shell: min(100% - 24px, 560px);
	}

	html {
		scroll-padding-top: 82px;
	}

	.mvo-header-inner {
		min-height: 70px;
	}

	.mvo-brand {
		gap: 10px;
	}

	.mvo-brand img,
	.mvo-brand .custom-logo {
		width: 64px;
		max-width: 64px;
	}

	.mvo-brand-copy strong {
		max-width: 150px;
		font-size: 16px;
		white-space: normal;
	}

	.mvo-nav-toggle-label {
		display: none;
	}

	.mvo-nav-toggle {
		width: 42px;
		height: 42px;
		justify-content: center;
		padding: 0;
	}

	.mvo-hero::before {
		background-size: 28px 28px;
	}

	.mvo-hero-grid {
		padding-block: 52px 78px;
	}

	.mvo-eyebrow {
		font-size: 9px;
		letter-spacing: 0.09em;
	}

	.mvo-eyebrow-seal {
		width: 29px;
		height: 29px;
	}

	.mvo-hero h1 {
		font-size: clamp(44px, 14vw, 61px);
	}

	.mvo-hero-intro {
		font-size: 16px;
	}

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

	.mvo-actions .mvo-button {
		width: 100%;
	}

	.mvo-video-copy .mvo-actions {
		align-items: flex-start;
	}

	.mvo-video-copy .mvo-actions .mvo-text-link {
		padding: 12px 4px;
	}

	.mvo-hero-trust {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0;
	}

	.mvo-hero-trust > div {
		min-width: 0;
		padding: 0 10px;
		text-align: center;
	}

	.mvo-hero-trust > div:first-child {
		padding-left: 0;
	}

	.mvo-hero-trust > div:last-child {
		padding-right: 0;
	}

	.mvo-hero-trust strong {
		font-size: 23px;
	}

	.mvo-hero-trust span {
		font-size: 9px;
		line-height: 1.3;
	}

	.mvo-hero-photo {
		min-height: 400px;
		border-radius: 42% 42% 24px 24px;
	}

	.mvo-hero-photo::before {
		inset: -10px 12px 12px -10px;
	}

	.mvo-hero-photo > img {
		height: 400px;
	}

	.mvo-hero-cert-card {
		top: 18px;
		right: 8px;
		min-width: 0;
		padding: 10px 12px;
	}

	.mvo-cert-check {
		width: 31px;
		height: 31px;
		font-size: 15px;
	}

	.mvo-hero-cert-card small {
		display: none;
	}

	.mvo-proof-grid {
		grid-template-columns: 1fr;
	}

	.mvo-proof-grid > div,
	.mvo-proof-grid > div:nth-last-child(-n+2) {
		min-height: 66px;
		padding: 14px 4px;
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,0.12);
	}

	.mvo-proof-grid > div:first-child,
	.mvo-proof-grid > div:last-child {
		padding-inline: 4px;
	}

	.mvo-proof-grid > div:last-child {
		border-bottom: 0;
	}

	.mvo-section {
		padding-block: 72px;
	}

	.mvo-section-heading {
		margin-bottom: 32px;
	}

	.mvo-section-heading h2,
	.mvo-video-copy h2,
	.mvo-contact-details h2 {
		font-size: clamp(37px, 11vw, 50px);
	}

	.mvo-section-heading > p:last-child,
	.mvo-section-heading-split > p,
	.mvo-video-copy > p {
		font-size: 16px;
	}

	.mvo-story-grid,
	.mvo-produce-grid,
	.mvo-values-grid,
	.mvo-form-row,
	.mvo-contact-phone-row {
		grid-template-columns: 1fr;
	}

	.mvo-feature-card-large,
	.mvo-feature-card {
		min-height: 300px;
		padding: 26px;
	}

	.mvo-feature-card-large h3 {
		margin-top: 76px;
		font-size: 31px;
	}

	.mvo-produce-card-dark {
		grid-column: auto;
		min-height: 320px;
	}

	.mvo-values-grid article,
	.mvo-values-grid article:nth-child(2) {
		min-height: 190px;
		border-right: 0;
		border-bottom: 1px solid var(--mvo-line);
	}

	.mvo-values-grid article:last-child {
		border-bottom: 0;
	}

	.mvo-values-grid h3 {
		margin-top: 32px;
	}

	.mvo-video-frame {
		border-radius: 22px;
	}

	.mvo-owner-card {
		padding: 25px;
	}

	.mvo-owner-avatar {
		width: 58px;
		height: 58px;
		flex-basis: 58px;
		border-radius: 18px;
	}

	.mvo-owner-top h3 {
		font-size: 23px;
	}

	.mvo-owner-links a {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.mvo-contact-section {
		padding-block: 12px 72px;
	}

	.mvo-contact-panel {
		padding: 28px 20px;
		border-radius: 28px;
	}

	.mvo-form-card {
		padding: 22px 18px;
		border-radius: 22px;
	}

	.mvo-footer-main {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.mvo-footer-links {
		overflow-wrap: anywhere;
	}

	.mvo-footer-bottom {
		flex-direction: column;
	}

	.mvo-back-to-top {
		right: 14px;
		bottom: 14px;
		width: 42px;
		height: 42px;
	}

	.mvo-content-main {
		padding-block: 38px 72px;
	}

	.mvo-content-shell {
		padding: 26px 20px;
		border-radius: 24px;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.mvo-header,
	.mvo-nav-toggle,
	.mvo-back-to-top,
	.mvo-contact-form,
	.mvo-hero-scroll {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.mvo-section,
	.mvo-contact-section {
		padding-block: 28px;
	}

	.mvo-contact-panel,
	.mvo-video-section,
	.mvo-proof-strip {
		background: #fff !important;
		color: #000 !important;
		box-shadow: none;
	}

	.mvo-contact-details h2,
	.mvo-video-copy h2 {
		color: #000;
	}
}

/* v1.3 editable Media Library owner photos. Defaults remain the original initials. */
.mvo-owner-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

/* Products are unlimited and automatically continue onto further rows. */
.mvo-produce-grid {
	grid-auto-flow: row;
	align-items: stretch;
}

.mvo-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.mvo-product-card .mvo-produce-content {
	flex: 1 1 auto;
}
