/*
 * ARK V7 Stage 3 reusable front-end module library.
 * No database editor or motion system is included in this file.
 */

:root {
	--ark-section-space: clamp(54px, 5.8vw, 82px);
	--ark-section-space-compact: clamp(34px, 4vw, 52px);
	--ark-radius-xl: 38px;
	--ark-radius-lg: 28px;
	--ark-radius-md: 20px;
	--ark-shadow-card: 0 20px 55px rgba(31, 79, 45, 0.08);
	--ark-shadow-media: 0 28px 70px rgba(31, 79, 45, 0.12);
}

.site-main {
	overflow: clip;
}

.ark-module {
	position: relative;
	padding-block: var(--ark-section-space);
}

.ark-module:nth-of-type(even) {
	background: var(--ark-bg-soft);
}

.ark-module img {
	width: 100%;
	object-fit: cover;
}

.ark-eyebrow {
	margin: 0 0 14px;
	color: var(--ark-primary);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .13em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ark-section-heading {
	max-width: min(820px, 100%);
	margin-bottom: clamp(26px, 3vw, 42px);
}

.ark-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.ark-section-heading h2,
.ark-content-block h2,
.ark-compact-banner h2,
.ark-case-study h2,
.ark-catalog-cta h2,
.ark-inquiry-shell h2,
.ark-cta h2 {
	margin: 0;
	color: var(--ark-text);
	font-size: clamp(1.95rem, 2.8vw, 3.1rem);
	font-weight: 750;
	letter-spacing: -.018em;
	line-height: 1.12;
	text-wrap: balance;
}

.ark-section-heading > p:last-child,
.ark-lead,
.ark-hero__text,
.ark-compact-banner p,
.ark-cta p {
	max-width: 730px;
	margin: 22px 0 0;
	color: var(--ark-text-muted);
	font-size: clamp(1rem, 1.2vw, 1.12rem);
	line-height: 1.75;
}

.ark-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
}

.ark-actions--center {
	justify-content: center;
}

.ark-button--light {
	border-color: var(--ark-white);
	color: var(--ark-primary-deep);
	background: var(--ark-white);
}

.ark-button--light:hover,
.ark-button--light:focus-visible {
	border-color: var(--ark-white);
	color: var(--ark-white);
	background: transparent;
}

.ark-inquiry-visual {
	appearance: none;
}

.ark-source-label,
.ark-cta__action small {
	color: var(--ark-text-muted);
	font-size: .72rem;
	line-height: 1.4;
}

.ark-text-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 750;
	text-decoration: none;
}

.ark-text-link::after {
	content: "→";
}

.ark-check-list {
	display: grid;
	gap: 12px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.ark-check-list li {
	position: relative;
	padding-left: 30px;
	color: var(--ark-text);
	line-height: 1.65;
}

.ark-check-list li::before {
	position: absolute;
	top: .42em;
	left: 0;
	width: 18px;
	height: 18px;
	content: "✓";
	border-radius: 50%;
	color: var(--ark-white);
	background: var(--ark-primary);
	font-size: .72rem;
	font-weight: 800;
	line-height: 18px;
	text-align: center;
}

.ark-check-list--light li {
	color: rgba(255,255,255,.88);
}

.ark-check-list--light li::before {
	color: var(--ark-primary-deep);
	background: var(--ark-white);
}

/* Hero systems */
.ark-hero {
	padding-block: clamp(48px, 5vw, 74px);
	background:
		radial-gradient(circle at 82% 18%, rgba(129, 188, 143, .18), transparent 29%),
		linear-gradient(135deg, #f8fbf9 0%, #ffffff 56%, #eef6f0 100%);
}

.ark-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
	align-items: center;
	gap: clamp(36px, 4.5vw, 66px);
}

.ark-hero__content {
	max-width: 760px;
}

.ark-hero__title {
	max-width: 760px;
	margin: 0;
	color: var(--ark-text);
	font-size: clamp(2.35rem, 3.45vw, 3.75rem);
	font-weight: 750;
	letter-spacing: -.018em;
	line-height: 1.08;
	text-wrap: balance;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.ark-hero__text {
	max-width: 650px;
	margin-top: 18px;
}

.ark-hero__media {
	position: relative;
	min-width: 0;
	border-radius: 30px;
}

.ark-hero__media img {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	border: 1px solid rgba(47, 107, 63, .08);
	border-radius: 30px;
	box-shadow: 0 22px 56px rgba(31, 79, 45, .11);
}


.ark-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.ark-hero__facts > div {
	min-width: 132px;
	padding: 12px 15px;
	border: 1px solid var(--ark-border);
	border-radius: 16px;
	background: rgba(255,255,255,.76);
}

.ark-hero__facts strong,
.ark-hero__facts span {
	display: block;
}

.ark-hero__facts strong {
	color: var(--ark-primary-deep);
	font-size: .98rem;
	line-height: 1.25;
}

.ark-hero__facts span {
	margin-top: 3px;
	color: var(--ark-text-muted);
	font-size: .72rem;
	line-height: 1.35;
}

/* 02: editorial reverse */
.ark-hero--split-reverse {
	background: var(--ark-white);
}
.ark-hero--split-reverse .ark-hero__grid {
	grid-template-columns: minmax(380px, 1.03fr) minmax(0, .97fr);
}
.ark-hero--split-reverse .ark-hero__media { order: 1; }
.ark-hero--split-reverse .ark-hero__content {
	order: 2;
	padding: clamp(24px, 3vw, 44px);
	border-left: 3px solid var(--ark-primary);
}
.ark-hero--split-reverse .ark-hero__media img { aspect-ratio: 4 / 5; max-height: 510px; }

/* 03: centered panorama */
.ark-hero--centered .ark-hero__grid {
	grid-template-columns: 1fr;
	gap: 30px;
	text-align: center;
}
.ark-hero--centered .ark-hero__content {
	max-width: 820px;
	margin-inline: auto;
}
.ark-hero--centered .ark-hero__title,
.ark-hero--centered .ark-hero__text { margin-inline: auto; }
.ark-hero--centered .ark-actions,
.ark-hero--centered .ark-hero__facts { justify-content: center; }
.ark-hero--centered .ark-hero__media {
	width: min(100%, 1040px);
	margin-inline: auto;
}
.ark-hero--centered .ark-hero__media img {
	max-height: 330px;
	aspect-ratio: 16 / 6;
}

/* 04: full-background */
.ark-hero--full-background {
	--ark-hero-overlay-title: #ffffff;
	--ark-hero-overlay-copy: rgba(255,255,255,.92);
	--ark-hero-overlay-eyebrow: #ddf5e5;
	--ark-hero-overlay-fact-title: #ffffff;
	--ark-hero-overlay-fact-copy: rgba(255,255,255,.9);
	--ark-hero-overlay-fact-bg: rgba(10,28,18,.36);
	--ark-hero-overlay-fact-border: rgba(255,255,255,.22);
	padding-block: clamp(36px, 4vw, 58px);
	background: var(--ark-primary-deep);
}
.ark-hero--full-background.ark-hero--text-dark {
	--ark-hero-overlay-title: #111827;
	--ark-hero-overlay-copy: #374151;
	--ark-hero-overlay-eyebrow: #1f6b3b;
	--ark-hero-overlay-fact-title: #111827;
	--ark-hero-overlay-fact-copy: #4b5563;
	--ark-hero-overlay-fact-bg: rgba(255,255,255,.82);
	--ark-hero-overlay-fact-border: rgba(17,24,39,.14);
}
.ark-hero--full-background.ark-hero--text-brand {
	--ark-hero-overlay-title: #173f28;
	--ark-hero-overlay-copy: #365a43;
	--ark-hero-overlay-eyebrow: #1f6b3b;
	--ark-hero-overlay-fact-title: #173f28;
	--ark-hero-overlay-fact-copy: #526c5b;
	--ark-hero-overlay-fact-bg: rgba(255,255,255,.82);
	--ark-hero-overlay-fact-border: rgba(23,63,40,.14);
}
.ark-hero--full-background.ark-hero--text-blue-gray {
	--ark-hero-overlay-title: #0f172a;
	--ark-hero-overlay-copy: #334155;
	--ark-hero-overlay-eyebrow: #23613b;
	--ark-hero-overlay-fact-title: #0f172a;
	--ark-hero-overlay-fact-copy: #526071;
	--ark-hero-overlay-fact-bg: rgba(255,255,255,.82);
	--ark-hero-overlay-fact-border: rgba(15,23,42,.14);
}
.ark-hero--full-background.ark-hero--text-ivory {
	--ark-hero-overlay-title: #fffdf7;
	--ark-hero-overlay-copy: #f3eee4;
	--ark-hero-overlay-eyebrow: #d9f0de;
	--ark-hero-overlay-fact-title: #fffdf7;
	--ark-hero-overlay-fact-copy: #f3eee4;
	--ark-hero-overlay-fact-bg: rgba(21,34,25,.38);
	--ark-hero-overlay-fact-border: rgba(255,253,247,.22);
}
.ark-hero--full-background .ark-hero__grid {
	position: relative;
	min-height: 460px;
	overflow: hidden;
	isolation: isolate;
	grid-template-columns: 1fr;
	align-items: center;
	padding: clamp(38px, 6vw, 72px);
	border-radius: 32px;
	background-color: var(--ark-primary-deep);
	background-image: var(--ark-hero-bg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.ark-hero--full-background .ark-hero__background-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-radius: inherit;
	background: var(--ark-primary-deep);
}
.ark-hero--full-background .ark-hero__background-video > img,
.ark-hero--full-background .ark-hero__background-video > video,
.ark-hero--full-background .ark-hero__background-video > iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ark-hero--full-background .ark-hero__background-video .ark-video-frame__trigger {
	background: transparent;
}
.ark-hero--full-background .ark-hero__content {
	position: relative;
	z-index: 2;
	max-width: 720px;
}
.ark-hero--full-background .ark-hero__title { color: var(--ark-hero-overlay-title); }
.ark-hero--full-background .ark-hero__text { color: var(--ark-hero-overlay-copy); }
.ark-hero--full-background .ark-eyebrow { color: var(--ark-hero-overlay-eyebrow); }
.ark-hero--full-background .ark-hero__facts > div {
	border-color: var(--ark-hero-overlay-fact-border);
	background: var(--ark-hero-overlay-fact-bg);
}
.ark-hero--full-background .ark-hero__facts strong { color: var(--ark-hero-overlay-fact-title); }
.ark-hero--full-background .ark-hero__facts span { color: var(--ark-hero-overlay-fact-copy); }

/* 05: factory evidence card */
.ark-hero--factory { background: #edf6ef; }
.ark-hero--factory .ark-hero__grid {
	padding: clamp(28px, 4vw, 52px);
	border: 1px solid #d8e9dd;
	border-radius: 34px;
	background: rgba(255,255,255,.72);
}
.ark-hero--factory .ark-hero__media img {
	aspect-ratio: 16 / 10;
	box-shadow: none;
}
.ark-hero--factory .ark-hero__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ark-hero--factory .ark-hero__facts > div {
	min-width: 0;
	border: 0;
	border-top: 1px solid var(--ark-border);
	border-radius: 0;
	background: transparent;
}

/* 06: data dashboard */
.ark-hero--data {
	background: linear-gradient(135deg, #ffffff 0%, #eff7f1 100%);
}
.ark-hero--data .ark-hero__grid {
	grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
}
.ark-hero__data-panel {
	padding: clamp(24px, 3vw, 38px);
	border-radius: 30px;
	color: var(--ark-white);
	background: var(--ark-primary-deep);
	box-shadow: var(--ark-shadow-card);
}
.ark-hero__data-label {
	margin: 0 0 18px;
	color: #bfe7c8;
	font-size: .76rem;
	font-weight: 750;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.ark-hero__data-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.ark-hero__data-grid > div {
	padding: 22px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 20px;
	background: rgba(255,255,255,.07);
}
.ark-hero__data-grid strong,
.ark-hero__data-grid span { display: block; }
.ark-hero__data-grid strong {
	font-size: clamp(1.5rem, 2.2vw, 2.25rem);
	letter-spacing: -.015em;
	line-height: 1.08;
}
.ark-hero__data-grid span {
	margin-top: 7px;
	color: rgba(255,255,255,.72);
	font-size: .82rem;
}

/* 07: media-first video */
.ark-hero--video { background: var(--ark-white); }
.ark-hero--video .ark-hero__grid {
	grid-template-columns: minmax(430px, 1.15fr) minmax(0, .85fr);
}
.ark-hero--video .ark-hero__media { order: 1; }
.ark-hero--video .ark-hero__content { order: 2; }
.ark-hero--video .ark-hero__media img { aspect-ratio: 16 / 10; }
.ark-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 68px;
	height: 68px;
	place-items: center;
	transform: translate(-50%,-50%);
	border: 6px solid rgba(255,255,255,.78);
	border-radius: 50%;
	color: var(--ark-white);
	background: rgba(31,79,45,.88);
	font-size: 1.1rem;
}

/* 08: compact dual route */
.ark-hero--dual-button {
	padding-block: clamp(42px, 5vw, 68px);
	text-align: center;
	background: linear-gradient(135deg, #f5faf6, #e7f3e9);
}
.ark-hero--dual-button .ark-hero__grid { grid-template-columns: 1fr; }
.ark-hero--dual-button .ark-hero__content {
	max-width: 840px;
	margin-inline: auto;
}
.ark-hero--dual-button .ark-hero__title,
.ark-hero--dual-button .ark-hero__text { margin-inline: auto; }
.ark-hero--dual-button .ark-actions,
.ark-hero--dual-button .ark-hero__facts { justify-content: center; }
.ark-hero__mini-visual {
	display: grid;
	width: 88px;
	height: 88px;
	place-items: center;
	margin: 0 auto 20px;
	border: 1px solid #d6e8db;
	border-radius: 24px;
	background: rgba(255,255,255,.78);
}
.ark-hero__mini-visual img { width: 68px; height: 68px; object-fit: contain; }
/* Compact directory header */
.ark-compact-banner {
	padding-block: var(--ark-section-space-compact);
	background: linear-gradient(110deg, #f6faf7, #ffffff);
}

.ark-compact-banner__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
	align-items: center;
	gap: clamp(30px, 5vw, 72px);
}

.ark-compact-banner__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 24px;
}

.ark-inline-meta,
.ark-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.ark-inline-meta li,
.ark-chip-list li {
	padding: 8px 12px;
	border-radius: 999px;
	color: var(--ark-primary-deep);
	background: var(--ark-tag-bg);
	font-size: .8rem;
	font-weight: 700;
}

/* Product cards */
.ark-product-collection__items {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.ark-product-collection--categories .ark-product-collection__items {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ark-product-collection--slider .ark-product-collection__items {
	display: flex;
	overflow-x: auto;
	padding: 5px 2px 18px;
	scrollbar-width: thin;
}

.ark-product-collection--slider .ark-product-card {
	min-width: min(360px, 82vw);
}

.ark-product-card {
	display: flex;
	overflow: hidden;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-lg);
	background: var(--ark-white);
	box-shadow: var(--ark-shadow-card);
}

.ark-product-card__media {
	display: block;
	overflow: hidden;
	flex: 0 0 auto;
	background: var(--ark-bg-soft);
}

.ark-product-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ark-product-card__body {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px;
}

.ark-product-card .ark-card-actions {
	margin-top: auto;
	padding-top: 22px;
}

.ark-product-card h3,
.ark-articles h3,
.ark-team h3,
.ark-card-grid h3,
.ark-process h3,
.ark-resources h3,
.ark-timeline h3 {
	margin: 0;
	font-size: clamp(1.08rem, 1.35vw, 1.32rem);
	letter-spacing: -.02em;
	line-height: 1.28;
	text-wrap: balance;
}

.ark-product-card h3 a,
.ark-articles h3 a {
	color: var(--ark-text);
	text-decoration: none;
}

.ark-product-card__copy,
.ark-article__copy,
.ark-team__copy,
.ark-card-grid__copy,
.ark-process__copy,
.ark-resource__copy {
	margin: 13px 0 0;
	color: var(--ark-text-muted);
	font-size: .94rem;
	line-height: 1.68;
}

.ark-product-card__copy p,
.ark-article__copy p,
.ark-team__copy p,
.ark-card-grid__copy p,
.ark-process__copy p,
.ark-resource__copy p {
	margin: 0 0 .75em;
	color: inherit;
	font: inherit;
}

.ark-card-label,
.ark-resource-type {
	margin: 0 0 10px !important;
	color: var(--ark-primary) !important;
	font-size: .72rem !important;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ark-card-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 22px;
}

.ark-card-actions .ark-button {
	min-height: 40px;
	padding: 9px 14px;
	font-size: .82rem;
}

.ark-product-collection--list .ark-product-collection__items {
	grid-template-columns: 1fr;
}

.ark-product-collection--list .ark-product-card {
	display: grid;
	grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
}

.ark-product-collection--list .ark-product-card__media img {
	height: 100%;
	aspect-ratio: 4 / 3;
}

/* Content block systems */
.ark-content-block__shell,
.ark-case-study__grid,
.ark-catalog-cta__grid,
.ark-inquiry-shell__grid {
	display: grid;
	grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
	align-items: center;
	gap: clamp(34px, 4.5vw, 64px);
}

.ark-content-block__media {
	position: relative;
	min-width: 0;
}

.ark-content-block__media > img:first-child,
.ark-case-study__media img {
	width: 100%;
	max-height: 470px;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(47,107,63,.08);
	border-radius: 28px;
	box-shadow: 0 20px 54px rgba(31,79,45,.1);
}

.ark-content-block__caption {
	margin: 12px 0 0;
	color: var(--ark-text-muted);
	font-size: .82rem;
	line-height: 1.55;
}

.ark-content-block__heading h2 { max-width: 760px; }
.ark-content-block__body .ark-lead { margin-top: 18px; }

.ark-content-points {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}
.ark-content-points li {
	position: relative;
	padding-left: 24px;
	line-height: 1.55;
}
.ark-content-points li::before {
	position: absolute;
	top: .65em;
	left: 0;
	width: 8px;
	height: 8px;
	content: "";
	transform: translateY(-50%);
	border-radius: 50%;
	background: var(--ark-primary);
}

.ark-content-point__title {
	display: block;
}

.ark-content-point__copy {
	margin-top: 6px;
	color: var(--ark-text-muted);
}

.ark-content-block--dark .ark-content-point__copy,
.ark-content-block--dark .ark-content-point__copy p {
	color: inherit;
}

/* 01 and 02: true split layouts */
.ark-content-block--split-right .ark-content-block__media { order: 2; }
.ark-content-block--split-right .ark-content-block__content { order: 1; }
.ark-content-block--split-right .ark-content-block__media > img:first-child {
	aspect-ratio: 4 / 5;
	max-height: 500px;
}

/* 03: panoramic media with two-column copy */
.ark-content-block--image-top .ark-content-block__shell {
	grid-template-columns: 1fr;
	gap: 28px;
}
.ark-content-block--image-top .ark-content-block__media > img:first-child {
	max-height: 330px;
	aspect-ratio: 16 / 5;
}
.ark-content-block--image-top .ark-content-block__content {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: clamp(30px, 4vw, 58px);
	align-items: start;
}
.ark-content-block--image-top .ark-content-block__body .ark-lead { margin-top: 0; }
.ark-content-block--image-top .ark-content-points {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ark-content-block--image-top .ark-content-points li {
	padding: 12px 14px;
	border: 1px solid var(--ark-border);
	border-radius: 14px;
	background: var(--ark-bg-soft);
}
.ark-content-block--image-top .ark-content-points li::before { display: none; }

/* 04: copy grid above a restrained panorama */
.ark-content-block--text-top .ark-content-block__shell {
	grid-template-columns: 1fr;
	gap: 30px;
}
.ark-content-block--text-top .ark-content-block__content {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: clamp(30px, 4vw, 58px);
	align-items: start;
}
.ark-content-block--text-top .ark-content-block__media { order: 2; }
.ark-content-block--text-top .ark-content-block__content { order: 1; }
.ark-content-block--text-top .ark-content-block__body .ark-lead { margin-top: 0; }
.ark-content-block--text-top .ark-content-block__media > img:first-child {
	max-height: 300px;
	aspect-ratio: 16 / 5;
}
.ark-content-block--text-top .ark-content-points {
	display: flex;
	flex-wrap: wrap;
}
.ark-content-block--text-top .ark-content-points li {
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--ark-tag-bg);
}
.ark-content-block--text-top .ark-content-points li::before { display: none; }

/* 05: equal dual images, no oversized overlap */
.ark-content-block--dual-image .ark-content-block__shell {
	grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
}
.ark-content-block--dual-image .ark-content-block__media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.ark-content-block--dual-image .ark-content-block__media > img:first-child,
.ark-content-block--dual-image .ark-content-block__media-secondary {
	position: static;
	width: 100% !important;
	max-height: 360px;
	aspect-ratio: 4 / 5;
	border: 0;
	border-radius: 22px;
	box-shadow: var(--ark-shadow-card);
}

/* 06: image plus benefit cards */
.ark-content-block--feature-image .ark-content-block__shell {
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
}
.ark-content-block--feature-image .ark-content-block__media > img:first-child {
	max-height: 430px;
	aspect-ratio: 16 / 11;
}
.ark-content-block--feature-image .ark-content-points {
	grid-template-columns: 1fr;
}
.ark-content-block--feature-image .ark-content-points li {
	padding: 14px 16px;
	border: 1px solid var(--ark-border);
	border-radius: 16px;
	background: var(--ark-white);
	box-shadow: 0 8px 24px rgba(31,79,45,.05);
}
.ark-content-block--feature-image .ark-content-points li::before { display: none; }

/* 07: facility image behind a floating evidence card */
.ark-content-block--factory {
	background: #eef6f0 !important;
}
.ark-content-block--factory .ark-content-block__shell {
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
}
.ark-content-block--factory .ark-content-block__media > img:first-child {
	max-height: 430px;
	aspect-ratio: 16 / 10;
	box-shadow: none;
}
.ark-content-block--factory .ark-content-block__content {
	margin-left: -76px;
	padding: clamp(28px, 3.5vw, 46px);
	border: 1px solid var(--ark-border);
	border-radius: 26px;
	background: rgba(255,255,255,.96);
	box-shadow: var(--ark-shadow-card);
}
.ark-content-block--factory .ark-content-block__caption {
	padding: 10px 14px;
	border-radius: 12px;
	color: var(--ark-primary-deep);
	background: rgba(255,255,255,.9);
	font-weight: 700;
}

/* 08: founder portrait and quote */
.ark-content-block--founder {
	background: var(--ark-white) !important;
}
.ark-content-block--founder .ark-content-block__shell {
	grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
	padding: clamp(26px, 4vw, 48px);
	border: 1px solid var(--ark-border);
	border-radius: 30px;
	background: var(--ark-bg-soft);
}
.ark-content-block--founder .ark-content-block__media > img:first-child {
	max-height: 410px;
	aspect-ratio: 4 / 5;
	box-shadow: none;
}
.ark-content-block--founder blockquote {
	margin: 0 0 20px;
	padding-left: 20px;
	border-left: 3px solid var(--ark-primary);
	color: var(--ark-primary-deep);
	font-size: 1.08rem;
	font-weight: 650;
	line-height: 1.6;
}

/* 09: technical laboratory treatment */
.ark-content-block--laboratory .ark-content-block__media {
	padding: 24px;
	border-radius: 28px;
	background: var(--ark-primary-deep);
}
.ark-content-block--laboratory .ark-content-block__media > img:first-child {
	max-height: 390px;
	box-shadow: none;
}
.ark-content-block--laboratory .ark-content-points {
	counter-reset: lab-point;
}
.ark-content-block--laboratory .ark-content-points li {
	display: flex;
	min-width: 0;
	min-height: 92px;
	align-items: center;
	counter-increment: lab-point;
	padding: 18px 18px 18px 62px;
	border-bottom: 1px solid var(--ark-border);
}
.ark-content-block--laboratory .ark-content-points li::before {
	top: 50%;
	left: 18px;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	content: counter(lab-point, decimal-leading-zero);
	transform: translateY(-50%);
	color: var(--ark-white);
	background: var(--ark-primary);
	font-size: .7rem;
	font-weight: 750;
	line-height: 1;
	text-align: center;
}

/* 10: bright greenhouse with caption card */
.ark-content-block--greenhouse .ark-content-block__media { order: 2; }
.ark-content-block--greenhouse .ark-content-block__content { order: 1; }
.ark-content-block--greenhouse .ark-content-block__media > img:first-child {
	max-height: 440px;
	aspect-ratio: 5 / 4;
}
.ark-content-block--greenhouse .ark-content-block__caption {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: 16px;
	margin: 0;
	padding: 13px 15px;
	border-radius: 14px;
	color: var(--ark-primary-deep);
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(6px);
}

/* 11: compact dark trust block */
.ark-content-block--dark {
	color: var(--ark-white);
	background: var(--ark-primary-deep) !important;
}
.ark-content-block--dark .ark-content-block__shell {
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
}
.ark-content-block--dark .ark-content-block__content { order: 1; }
.ark-content-block--dark .ark-content-block__media {
	order: 2;
	max-width: 390px;
	justify-self: end;
}
.ark-content-block--dark .ark-content-block__media > img:first-child {
	max-height: 300px;
	aspect-ratio: 4 / 3;
	box-shadow: none;
}
.ark-content-block--dark h2,
.ark-content-block--dark .ark-lead,
.ark-content-block--dark .ark-content-points li { color: var(--ark-white); }
.ark-content-block--dark .ark-eyebrow { color: #b9e4c3; }
.ark-content-block--dark .ark-content-points li::before { background: #b9e4c3; }

/* 12: compact soft information card */
.ark-content-block--soft-card {
	background: var(--ark-white) !important;
}
.ark-content-block--soft-card .ark-content-block__shell {
	grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
	padding: clamp(24px, 3vw, 38px);
	border: 1px solid var(--ark-border);
	border-radius: 28px;
	background: var(--ark-bg-soft);
}
.ark-content-block--soft-card .ark-content-block__media > img:first-child {
	max-height: 280px;
	aspect-ratio: 1 / 1;
	box-shadow: none;
}
.ark-content-block--soft-card .ark-content-points {
	display: flex;
	flex-wrap: wrap;
}
.ark-content-block--soft-card .ark-content-points li {
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--ark-white);
}
.ark-content-block--soft-card .ark-content-points li::before { display: none; }

/* 13: actual timeline, image removed */
.ark-content-block--timeline .ark-content-block__shell {
	grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
	align-items: start;
}
.ark-content-block--timeline .ark-content-block__media { display: none; }
.ark-content-block--timeline .ark-content-block__content {
	display: contents;
}
.ark-content-block--timeline .ark-content-block__heading {
	position: sticky;
	top: calc(var(--ark-header-height-desktop) + var(--ark-admin-bar-height) + 26px);
}
.ark-content-timeline {
	position: relative;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ark-content-timeline::before {
	position: absolute;
	top: 16px;
	bottom: 16px;
	left: 46px;
	width: 2px;
	content: "";
	background: var(--ark-border);
}
.ark-content-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0,1fr);
	gap: 20px;
	padding: 0 0 28px;
}
.ark-content-timeline li > span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 92px;
	min-height: 38px;
	place-items: center;
	border: 1px solid var(--ark-border);
	border-radius: 999px;
	color: var(--ark-primary-deep);
	background: var(--ark-white);
	font-size: .78rem;
	font-weight: 750;
}
.ark-content-timeline strong {
	font-size: 1.08rem;
	line-height: 1.35;
}
.ark-content-timeline p {
	margin: 6px 0 0;
	color: var(--ark-text-muted);
	line-height: 1.6;
}


.ark-content-timeline__copy {
	min-width: 0;
}

.ark-content-timeline__copy strong {
	display: block;
	overflow-wrap: normal;
	word-break: normal;
}

/* Stats and generic cards */
.ark-card-grid__items,
.ark-resources__grid,
.ark-team__grid,
.ark-articles__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.ark-stats__grid {
	display: grid;
	grid-template-columns: repeat(var(--ark-stats-columns, 3), minmax(0, 1fr));
	gap: 20px;
}
.ark-stats--columns-3 { --ark-stats-columns: 3; }
.ark-stats--columns-4 { --ark-stats-columns: 4; }

.ark-stats__grid article,
.ark-card-grid__items article,
.ark-resources__grid article {
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-lg);
	background: var(--ark-white);
	box-shadow: var(--ark-shadow-card);
}

.ark-card-grid__items > article {
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	align-items: stretch;
}
.ark-card-grid__items > article .ark-card-actions {
	margin-top: auto;
	padding-top: 22px;
}

.ark-stats__grid strong {
	display: block;
	color: var(--ark-primary);
	font-size: clamp(2rem, 3vw, 3.25rem);
	letter-spacing: -.018em;
	line-height: 1;
}

.ark-stats__grid h3 {
	margin: 18px 0 0;
	font-size: 1.05rem;
}

.ark-stats__copy {
	margin-top: 10px;
	color: var(--ark-text-muted);
	line-height: 1.65;
}

.ark-stats__copy p {
	margin: 0 0 .75em;
	color: inherit;
}

.ark-card-grid__number {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	margin-bottom: 24px;
	border-radius: 14px;
	color: var(--ark-primary-deep);
	background: var(--ark-tag-bg);
	font-size: .82rem;
	font-weight: 800;
}


.ark-card-grid__metric {
	display: flex;
	min-width: 0;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .06em;
	margin-bottom: 18px;
	color: var(--ark-primary);
	font-size: clamp(2.25rem, 4vw, 4rem);
	font-variant-numeric: tabular-nums;
	letter-spacing: -.035em;
	line-height: 1;
}
.ark-card-grid__metric .ark-counter-prefix,
.ark-card-grid__metric .ark-counter-suffix { font-size: .62em; letter-spacing: -.01em; }

/* Process */
.ark-process__steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.ark-process__steps li {
	position: relative;
	padding: 26px 22px;
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-lg);
	background: var(--ark-white);
}

.ark-process__steps li > span {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	margin-bottom: 26px;
	border-radius: 50%;
	color: var(--ark-white);
	background: var(--ark-primary);
	font-size: .8rem;
	font-weight: 800;
}

/* Comparison and facts */
.ark-comparison__scroll {
	overflow-x: auto;
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-lg);
	background: var(--ark-white);
}

.ark-comparison table {
	width: 100%;
	min-width: 780px;
	border-collapse: collapse;
}

.ark-comparison th,
.ark-comparison td {
	padding: 19px 20px;
	border-bottom: 1px solid var(--ark-border);
	text-align: left;
	vertical-align: top;
	line-height: 1.55;
}

.ark-comparison thead th {
	color: var(--ark-white);
	background: var(--ark-primary-deep);
}

.ark-comparison tbody th {
	color: var(--ark-primary-deep);
	background: var(--ark-bg-soft);
}

.ark-quick-facts dl,
.ark-contact-card dl {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
}

.ark-quick-facts dl > div,
.ark-contact-card dl > div {
	padding: 22px;
	border: 1px solid var(--ark-border);
	border-radius: 20px;
	background: var(--ark-white);
}

.ark-quick-facts dt,
.ark-contact-card dt {
	color: var(--ark-primary);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ark-quick-facts dd,
.ark-contact-card dd {
	margin: 10px 0 0;
	color: var(--ark-text);
	font-weight: 700;
	line-height: 1.5;
}

.ark-specs dl {
	margin: 0;
	border: 1px solid var(--ark-border);
	border-radius: 24px;
	background: var(--ark-white);
}

.ark-specs dl > div {
	display: grid;
	grid-template-columns: minmax(180px, .36fr) minmax(0, .64fr);
	gap: 28px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--ark-border);
}

.ark-specs dl > div:last-child {
	border-bottom: 0;
}

.ark-specs dt {
	color: var(--ark-primary-deep);
	font-weight: 800;
}

.ark-specs dd {
	margin: 0;
	color: var(--ark-text-muted);
	line-height: 1.6;
}

/* Team, timeline, resources */
.ark-team__grid,
.ark-articles__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ark-team article,
.ark-articles article {
	overflow: hidden;
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-lg);
	background: var(--ark-white);
	box-shadow: var(--ark-shadow-card);
}

.ark-team article img,
.ark-articles__media img {
	aspect-ratio: 4 / 3;
}

.ark-team article > div,
.ark-articles article > div {
	padding: 24px;
}

.ark-team article span {
	display: block;
	margin-bottom: 8px;
	color: var(--ark-primary);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
}



/* Latest articles: compact editorial rail. The title remains a clean desktop
 * line, while cards use a shorter image, capped title/excerpt and tighter body. */
.ark-latest-articles {
	padding-block: clamp(48px, 4.4vw, 68px);
}

.ark-latest-articles .ark-section-heading {
	display: block;
	max-width: none;
	margin-bottom: clamp(22px, 2.2vw, 30px);
}

.ark-latest-articles .ark-section-heading h2 {
	max-width: 100%;
	font-size: clamp(1.85rem, 2.25vw, 2.65rem);
	text-wrap: pretty;
}

@media (min-width: 1200px) {
	.ark-latest-articles .ark-section-heading h2 {
		white-space: nowrap;
	}
}

/* Automatically queried newest articles */
.ark-latest-articles__track {
	display: flex;
	overflow-x: auto;
	gap: 18px;
	padding: 2px 2px 14px;
	scrollbar-width: thin;
	overscroll-behavior-inline: contain;
}

.ark-latest-articles__card {
	display: flex;
	overflow: hidden;
	min-width: min(332px, 82vw);
	max-width: min(332px, 82vw);
	flex: 0 0 min(332px, 82vw);
	flex-direction: column;
	border: 1px solid var(--ark-border);
	border-radius: 24px;
	background: var(--ark-white);
	box-shadow: 0 16px 42px rgba(31, 79, 45, .075);
}

.ark-latest-articles__media {
	display: block;
	overflow: hidden;
	background: var(--ark-bg-soft);
}

.ark-latest-articles__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform .35s ease;
}

.ark-latest-articles__card:hover .ark-latest-articles__media img {
	transform: scale(1.025);
}

.ark-latest-articles__body {
	display: flex;
	min-width: 0;
	min-height: 205px;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 20px 20px 18px;
}

.ark-latest-articles__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 12px;
	margin-bottom: 10px;
	color: var(--ark-text-muted);
	font-size: .72rem;
	font-weight: 700;
}

.ark-latest-articles__meta span {
	color: var(--ark-primary);
	text-transform: uppercase;
}

.ark-latest-articles__card h3 {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	max-height: 2.68em;
	font-size: 1.08rem;
	line-height: 1.34;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ark-latest-articles__card h3 a {
	color: var(--ark-text);
	text-decoration: none;
}

.ark-latest-articles__card h3 a:hover,
.ark-latest-articles__card h3 a:focus-visible {
	color: var(--ark-primary);
}

.ark-latest-articles__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 10px 0 0;
	color: var(--ark-text-muted);
	max-height: 4.65em;
	font-size: .93rem;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ark-latest-articles__body .ark-text-link {
	margin-top: auto;
	padding-top: 16px;
}

.ark-timeline ol {
	position: relative;
	display: grid;
	gap: 22px;
	margin: 0;
	padding: 0 0 0 30px;
	list-style: none;
}

.ark-timeline ol::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 8px;
	width: 2px;
	content: "";
	background: var(--ark-border);
}

.ark-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 30px;
	padding: 28px;
	border: 1px solid var(--ark-border);
	border-radius: 24px;
	background: var(--ark-white);
}

.ark-timeline li::before {
	position: absolute;
	top: 37px;
	left: -29px;
	width: 16px;
	height: 16px;
	content: "";
	border: 4px solid var(--ark-white);
	border-radius: 50%;
	background: var(--ark-primary);
	box-shadow: 0 0 0 1px var(--ark-border);
}

.ark-timeline time {
	color: var(--ark-primary);
	font-size: 1.35rem;
	font-weight: 850;
}

.ark-timeline__copy {
	margin-top: 10px;
	color: var(--ark-text-muted);
	line-height: 1.65;
}

.ark-timeline__copy p {
	margin: 0 0 .75em;
	color: inherit;
}

/* Pain/solution */
.ark-pain-solution__grid {
	overflow: hidden;
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-lg);
	background: var(--ark-white);
}

.ark-pain-solution__head,
.ark-pain-solution__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ark-pain-solution__head {
	color: var(--ark-white);
	background: var(--ark-primary-deep);
	font-weight: 800;
}

.ark-pain-solution__head span,
.ark-pain-solution__cell {
	margin: 0;
	padding: 20px 24px;
}

.ark-pain-solution__cell {
	border-top: 1px solid var(--ark-border);
	line-height: 1.6;
}

.ark-pain-solution__cell--pain {
	color: #7f1d1d;
	background: #fff8f7;
	font-weight: 700;
}

.ark-pain-solution__cell--solution {
	color: var(--ark-primary-deep);
	background: #f7fbf8;
}

.ark-pain-solution__copy,
.ark-pain-solution__copy p {
	color: inherit;
	font: inherit;
}

/* Gallery */
.ark-gallery__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: 190px;
	gap: 16px;
}

.ark-gallery figure {
	overflow: hidden;
	margin: 0;
	border-radius: 24px;
}

.ark-gallery figure:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.ark-gallery figure:nth-child(2) { grid-column: span 5; }
.ark-gallery figure:nth-child(3) { grid-column: span 5; }
.ark-gallery figure:nth-child(4) { grid-column: span 5; }
.ark-gallery figure:nth-child(5) { grid-column: span 7; }
.ark-gallery img { height: 100%; }

/* Testimonials */
.ark-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.ark-testimonials figure {
	display: flex;
	min-width: 0;
	margin: 0;
	padding: clamp(24px, 2.35vw, 32px);
	flex-direction: column;
	border: 1px solid rgba(47, 107, 63, .14);
	border-radius: 26px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 16px 42px rgba(31, 79, 45, .07);
}

.ark-testimonials blockquote {
	display: flex;
	min-width: 0;
	margin: 0;
	flex: 1;
	flex-direction: column;
	color: var(--ark-text);
	font-size: clamp(.98rem, 1vw, 1.06rem);
	font-weight: 500;
	line-height: 1.72;
}

.ark-testimonials blockquote::before {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	margin-bottom: 18px;
	content: "“";
	border-radius: 50%;
	color: var(--ark-primary);
	background: var(--ark-tag-bg);
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1;
}

.ark-testimonial__copy,
.ark-testimonial__copy p {
	color: inherit;
	font: inherit;
}

.ark-testimonial__copy > :first-child {
	margin-top: 0;
}

.ark-testimonial__copy > :last-child {
	margin-bottom: 0;
}

.ark-testimonials figcaption {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 14px;
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid rgba(47, 107, 63, .12);
}

.ark-testimonial__avatar {
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--ark-tag-bg);
	box-shadow: 0 0 0 1px rgba(47, 107, 63, .14);
	object-fit: cover;
}

.ark-testimonial__identity {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.ark-testimonial__identity strong {
	color: var(--ark-text);
	font-size: .92rem;
	font-weight: 750;
	line-height: 1.35;
}

.ark-testimonial__identity > span {
	color: var(--ark-text-muted);
	font-size: .8rem;
	line-height: 1.4;
}

/* FAQ */
.ark-faq__grid {
	display: grid;
	grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: clamp(45px, 6vw, 90px);
}

.ark-faq__items {
	display: grid;
	gap: 12px;
}

.ark-faq details {
	border: 1px solid var(--ark-border);
	border-radius: 20px;
	background: var(--ark-white);
}

.ark-faq summary {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	color: var(--ark-text);
	font-weight: 750;
	line-height: 1.45;
	cursor: pointer;
	list-style: none;
}

.ark-faq summary::-webkit-details-marker { display: none; }
.ark-faq summary b { color: var(--ark-primary); font-size: 1.45rem; }
.ark-faq details[open] summary b { transform: rotate(45deg); }
.ark-faq details > div { padding: 0 22px 22px; color: var(--ark-text-muted); line-height: 1.7; }
.ark-faq details p { margin: 0; }
.ark-faq details p + p { margin-top: .75em; }
.ark-faq details ul,
.ark-faq details ol { margin: .75em 0 0; padding-inline-start: 1.35em; }

/* CTA */
.ark-cta {
	color: var(--ark-white);
	background: var(--ark-primary-deep) !important;
}

.ark-cta__shell {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
	align-items: center;
	gap: clamp(40px, 6vw, 90px);
	padding: clamp(34px, 5vw, 68px);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--ark-radius-xl);
	background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
}

.ark-cta h2,
.ark-cta p,
.ark-cta .ark-eyebrow {
	color: var(--ark-white);
}

.ark-cta__action {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.ark-cta__action small { color: rgba(255,255,255,.62); }

/* Case, quote, logos */
.ark-case-study__media img { aspect-ratio: 1.1 / 1; }

.ark-logo-strip__items {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.ark-logo-strip__items span {
	display: grid;
	min-height: 100px;
	place-items: center;
	padding: 18px;
	border: 1px solid var(--ark-border);
	border-radius: 20px;
	color: var(--ark-text-muted);
	background: var(--ark-white);
	font-weight: 800;
	text-align: center;
}

.ark-quote figure {
	max-width: 1050px;
	margin: 0 auto;
	padding: clamp(36px, 6vw, 78px);
	border-radius: var(--ark-radius-xl);
	color: var(--ark-white);
	background: linear-gradient(135deg, var(--ark-primary), var(--ark-primary-deep));
	text-align: center;
}

.ark-quote blockquote {
	margin: 0;
	font-size: clamp(1.55rem, 3vw, 3rem);
	font-weight: 760;
	letter-spacing: -.015em;
	line-height: 1.25;
	text-wrap: balance;
}

.ark-quote figcaption {
	margin-top: 24px;
	color: rgba(255,255,255,.72);
}

/* Tabs visual prototype */
.ark-tabs__shell {
	overflow: hidden;
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-lg);
	background: var(--ark-white);
}

.ark-tabs__labels {
	display: flex;
	overflow-x: auto;
	gap: 4px;
	padding: 8px;
	border-bottom: 1px solid var(--ark-border);
	background: var(--ark-bg-soft);
}

.ark-tabs__labels button {
	min-height: 44px;
	padding: 10px 18px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	font-weight: 750;
	white-space: nowrap;
}

.ark-tabs__labels button[aria-selected="true"] {
	color: var(--ark-white);
	background: var(--ark-primary);
}

.ark-tabs__panels article {
	padding: clamp(28px, 4vw, 48px);
}

.ark-tabs__panels article h3 { margin: 0; font-size: 1.45rem; }
.ark-tabs__panels article p { margin: 14px 0 0; color: var(--ark-text-muted); line-height: 1.7; }

/* Inquiry shell */
.ark-inquiry-shell__grid {
	align-items: start;
}

.ark-inquiry-shell__form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: clamp(24px, 4vw, 40px);
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-xl);
	background: var(--ark-white);
	box-shadow: var(--ark-shadow-card);
}

.ark-inquiry-shell__form > div {
	display: grid;
	gap: 7px;
}

.ark-inquiry-shell__wide { grid-column: 1 / -1; }
.ark-inquiry-shell label { color: var(--ark-text); font-size: .82rem; font-weight: 750; }
.ark-inquiry-shell input,
.ark-inquiry-shell textarea,
.ark-inquiry-shell__form > div > button:not(.ark-button) {
	width: 100%;
	min-height: 46px;
	padding: 11px 13px;
	border: 1px solid var(--ark-border);
	border-radius: 13px;
	color: var(--ark-text-muted);
	background: var(--ark-bg-soft);
}
.ark-inquiry-shell textarea { resize: none; }
.ark-inquiry-shell small { margin-left: 12px; color: var(--ark-text-muted); }

/* Catalogue CTA */
.ark-catalog-cta__grid {
	grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
	padding: clamp(30px, 5vw, 64px);
	border: 1px solid var(--ark-border);
	border-radius: var(--ark-radius-xl);
	background: var(--ark-white);
	box-shadow: var(--ark-shadow-card);
}
.ark-catalog-cta__media img { aspect-ratio: .82 / 1; border-radius: 24px; }

/* Module library intro */
.ark-module-library-intro {
	padding-block: clamp(54px, 7vw, 92px);
	background: var(--ark-primary-deep);
}
.ark-module-library-intro h1 { max-width: 900px; margin: 0; color: var(--ark-white); font-size: clamp(2.35rem, 3.7vw, 3.8rem); letter-spacing: -.02em; line-height: 1.05; text-wrap: balance; }
.ark-module-library-intro p:last-child { max-width: 760px; margin: 24px 0 0; color: rgba(255,255,255,.74); font-size: 1.08rem; line-height: 1.75; }
.ark-module-library-intro .ark-eyebrow { color: #bfe7c8; }


.ark-library-group {
	padding-block: 34px;
	border-top: 1px solid var(--ark-border);
	border-bottom: 1px solid var(--ark-border);
	background: var(--ark-white);
}
.ark-library-group--soft { background: var(--ark-bg-soft); }
.ark-library-group span {
	color: var(--ark-primary);
	font-size: .74rem;
	font-weight: 750;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.ark-library-group h2 {
	max-width: 820px;
	margin: 6px 0 0;
	font-size: clamp(1.65rem, 2.4vw, 2.45rem);
	font-weight: 740;
	letter-spacing: -.012em;
	line-height: 1.15;
}
.ark-library-group p {
	max-width: 760px;
	margin: 8px 0 0;
	color: var(--ark-text-muted);
}

@media (max-width: 1180px) {
	.ark-hero__grid { grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr); gap: 36px; }
	.ark-hero__title { font-size: clamp(2.3rem, 3.7vw, 3.45rem); }
	.ark-hero--data .ark-hero__grid { grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); }
	.ark-product-collection__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ark-product-collection--categories .ark-product-collection__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ark-stats__grid,
	.ark-card-grid__items,
	.ark-resources__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ark-process__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ark-logo-strip__items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


@media (max-width: 900px) {
	:root { --ark-section-space: clamp(50px, 7vw, 70px); }
	.ark-hero__grid,
	.ark-hero--split-reverse .ark-hero__grid,
	.ark-hero--data .ark-hero__grid,
	.ark-hero--video .ark-hero__grid,
	.ark-compact-banner__grid,
	.ark-content-block__shell,
	.ark-content-block--dual-image .ark-content-block__shell,
	.ark-content-block--feature-image .ark-content-block__shell,
	.ark-content-block--factory .ark-content-block__shell,
	.ark-content-block--founder .ark-content-block__shell,
	.ark-content-block--dark .ark-content-block__shell,
	.ark-content-block--soft-card .ark-content-block__shell,
	.ark-content-block--timeline .ark-content-block__shell,
	.ark-case-study__grid,
	.ark-catalog-cta__grid,
	.ark-inquiry-shell__grid,
	.ark-faq__grid,
	.ark-cta__shell { grid-template-columns: 1fr; }
	.ark-hero__content { max-width: 780px; }
	.ark-hero__title { max-width: 760px; font-size: clamp(2.25rem, 5.4vw, 3.35rem); }
	.ark-hero__media { max-width: 720px; }
	.ark-hero--split-reverse .ark-hero__media,
	.ark-hero--video .ark-hero__media { order: 2; }
	.ark-hero--split-reverse .ark-hero__content,
	.ark-hero--video .ark-hero__content { order: 1; }
	.ark-hero--split-reverse .ark-hero__content { padding-left: 24px; }
	.ark-content-block--split-right .ark-content-block__media,
	.ark-content-block--text-top .ark-content-block__media,
	.ark-content-block--founder .ark-content-block__media,
	.ark-content-block--greenhouse .ark-content-block__media,
	.ark-content-block--dark .ark-content-block__media { order: 0; }
	.ark-content-block--split-right .ark-content-block__content,
	.ark-content-block--text-top .ark-content-block__content,
	.ark-content-block--founder .ark-content-block__content,
	.ark-content-block--greenhouse .ark-content-block__content,
	.ark-content-block--dark .ark-content-block__content { order: 1; }
	.ark-content-block--image-top .ark-content-block__content,
	.ark-content-block--text-top .ark-content-block__content { grid-template-columns: 1fr; gap: 18px; }
	.ark-content-block--factory .ark-content-block__content { margin-left: 0; }
	.ark-content-block--timeline .ark-content-block__content { display: block; }
	.ark-content-block--timeline .ark-content-block__heading { position: static; }
	.ark-product-collection__items,
	.ark-product-collection--categories .ark-product-collection__items,
	.ark-team__grid,
	.ark-articles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ark-product-collection--list .ark-product-card { grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); }
	.ark-quick-facts dl,
	.ark-contact-card dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ark-gallery__grid { grid-auto-rows: 150px; }
	.ark-cta__action { align-items: flex-start; }
}

@media (max-width: 640px) {
	.ark-module { padding-block: 54px; }
	.ark-container { width: min(calc(100% - 30px), var(--ark-container)); }
	.ark-section-heading h2,
	.ark-content-block h2,
	.ark-compact-banner h2,
	.ark-case-study h2,
	.ark-catalog-cta h2,
	.ark-inquiry-shell h2,
	.ark-cta h2 { font-size: clamp(1.85rem, 9vw, 2.65rem); line-height: 1.1; }
	.ark-hero { padding-block: 46px 58px; }
	.ark-hero__title { font-size: clamp(2rem, 8.7vw, 2.85rem); line-height: 1.1; letter-spacing: -.012em; }
	.ark-hero__grid { gap: 36px; }
	.ark-hero__facts { display: grid; grid-template-columns: 1fr; }
	.ark-hero--factory .ark-hero__facts { grid-template-columns: 1fr; }
	.ark-hero__data-grid { grid-template-columns: 1fr; }
	.ark-content-block--image-top .ark-content-points { grid-template-columns: 1fr; }
	.ark-content-block--dual-image .ark-content-block__media { grid-template-columns: 1fr 1fr; }
	.ark-content-timeline li { grid-template-columns: 78px minmax(0,1fr); gap: 14px; }
	.ark-content-timeline li > span { width: 78px; }
	.ark-content-timeline::before { left: 39px; }
	.ark-actions { align-items: stretch; }
	.ark-actions .ark-button { width: 100%; }
	.ark-product-collection__items,
	.ark-product-collection--categories .ark-product-collection__items,
	.ark-stats__grid,
	.ark-card-grid__items,
	.ark-resources__grid,
	.ark-team__grid,
	.ark-articles__grid,
	.ark-testimonials__grid,
	.ark-quick-facts dl,
	.ark-contact-card dl { grid-template-columns: 1fr; }
	.ark-product-collection--list .ark-product-card { grid-template-columns: 1fr; }
	.ark-process__steps { grid-template-columns: 1fr; }
	.ark-specs dl > div { grid-template-columns: 1fr; gap: 8px; }
	.ark-pain-solution__head { display: none; }
	.ark-pain-solution__row { grid-template-columns: 1fr; }
	.ark-pain-solution__cell--pain::before { display: block; margin-bottom: 6px; content: "Buyer concern"; color: #7f1d1d; font-size: .72rem; text-transform: uppercase; }
	.ark-pain-solution__cell--solution::before { display: block; margin-bottom: 6px; content: "ARK plants response"; color: var(--ark-primary); font-size: .72rem; text-transform: uppercase; }
	.ark-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 145px; }
	.ark-gallery figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
	.ark-gallery figure:first-child { grid-column: 1 / -1; }
	.ark-latest-articles__card { min-width: min(310px, 86vw); max-width: min(310px, 86vw); flex-basis: min(310px, 86vw); }
	.ark-timeline li { grid-template-columns: 1fr; gap: 12px; }
	.ark-logo-strip__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ark-inquiry-shell__form { grid-template-columns: 1fr; }
	.ark-inquiry-shell__wide { grid-column: auto; }
	.ark-inquiry-shell small { display: block; margin: 10px 0 0; }
	.ark-card-actions { align-items: stretch; }
	.ark-card-actions .ark-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.ark-module *,
	.ark-module *::before,
	.ark-module *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}


/* Image banner and video showcase */
.ark-media-banner {
	--ark-media-banner-title: #ffffff;
	--ark-media-banner-copy: rgba(255,255,255,.92);
	--ark-media-banner-eyebrow: #ddf5e5;
}

.ark-media-banner--text-dark {
	--ark-media-banner-title: #111827;
	--ark-media-banner-copy: #374151;
	--ark-media-banner-eyebrow: #1f6b3b;
}

.ark-media-banner--text-brand {
	--ark-media-banner-title: #173f28;
	--ark-media-banner-copy: #365a43;
	--ark-media-banner-eyebrow: #1f6b3b;
}

.ark-media-banner--text-blue-gray {
	--ark-media-banner-title: #0f172a;
	--ark-media-banner-copy: #334155;
	--ark-media-banner-eyebrow: #23613b;
}

.ark-media-banner--text-ivory {
	--ark-media-banner-title: #fffdf7;
	--ark-media-banner-copy: #f3eee4;
	--ark-media-banner-eyebrow: #d9f0de;
}

.ark-media-banner__shell {
	position: relative;
	overflow: hidden;
	min-height: 430px;
	border: 1px solid rgba(47, 107, 63, .12);
	border-radius: var(--ark-radius-xl);
	background: #eaf3ec;
	box-shadow: 0 22px 60px rgba(31, 79, 45, .08);
}

.ark-media-banner--layout-full .ark-media-banner__shell {
	min-height: clamp(410px, 31vw, 500px);
	border-inline: 0;
	border-radius: 0;
	box-shadow: none;
}

.ark-media-banner__shell > img,
.ark-media-banner__picture,
.ark-media-banner__picture > img,
.ark-media-banner__video,
.ark-media-banner__video > img,
.ark-media-banner__video video,
.ark-media-banner__video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 1;
}

.ark-media-banner__picture {
	display: block;
}

.ark-media-banner__content-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: inherit;
	align-items: center;
}

.ark-media-banner--layout-full .ark-media-banner__content-wrap {
	width: min(calc(100% - 40px), var(--ark-container));
	margin-inline: auto;
}

.ark-media-banner__content {
	max-width: 820px;
	padding: clamp(40px, 4.6vw, 64px);
}

.ark-media-banner--layout-full .ark-media-banner__content {
	max-width: 760px;
	padding-inline: 0;
}

.ark-media-banner .ark-eyebrow {
	margin: 0 0 14px;
	color: var(--ark-media-banner-eyebrow);
}

.ark-media-banner h2 {
	max-width: 760px;
	margin: 0 0 16px;
	color: var(--ark-media-banner-title);
	font-size: clamp(2rem, 2.5vw, 2.8rem);
	letter-spacing: -.018em;
	line-height: 1.06;
	text-wrap: pretty;
}

.ark-media-banner .ark-rich-text {
	max-width: 690px;
	color: var(--ark-media-banner-copy);
	font-size: clamp(.94rem, .95vw, 1rem);
	line-height: 1.62;
}

.ark-media-banner .ark-rich-text > * {
	margin-block: 0;
}

.ark-media-banner .ark-rich-text > * + * {
	margin-top: 14px;
}

.ark-media-banner__action {
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.ark-video-showcase__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr); align-items: center; gap: clamp(42px,6vw,88px); }
.ark-video-showcase__poster { position: relative; overflow: hidden; border-radius: var(--ark-radius-xl); box-shadow: var(--ark-shadow-media); }
.ark-video-showcase__poster img { aspect-ratio: 16 / 10; }
.ark-video-showcase h2 { margin: 0; font-size: clamp(1.95rem,2.9vw,3.1rem); letter-spacing: -.018em; line-height: 1.08; text-wrap: balance; }
.ark-video-showcase__note { margin: 20px 0 0; padding: 15px 18px; border-left: 4px solid var(--ark-primary); color: var(--ark-text-muted); background: var(--ark-bg-soft); line-height: 1.6; }
.ark-video-showcase__action { display: flex; align-items: center; margin-top: 24px; }

/* FAQ with direct form visual */
.ark-faq-inquiry__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(430px,.9fr); align-items: start; gap: clamp(38px,5vw,72px); }
.ark-faq-inquiry .ark-faq__items details { border: 1px solid var(--ark-border); border-radius: 20px; background: var(--ark-white); }
.ark-faq-inquiry .ark-faq__items summary { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; font-weight: 750; cursor: pointer; list-style: none; }
.ark-faq-inquiry .ark-faq__items summary::-webkit-details-marker { display: none; }
.ark-faq-inquiry .ark-faq__items details > div { padding: 0 20px 20px; color: var(--ark-text-muted); line-height: 1.7; }
.ark-faq-inquiry .ark-faq__items details p { margin: 0; }
.ark-faq-inquiry .ark-faq__items details p + p { margin-top: .75em; }
.ark-faq-inquiry .ark-faq__items details ul,
.ark-faq-inquiry .ark-faq__items details ol { margin: .75em 0 0; padding-inline-start: 1.35em; }

@media (max-width: 900px) {
	.ark-hero--split-reverse .ark-hero__media { order: 2; }
	.ark-hero--split-reverse .ark-hero__content { order: 1; }
	.ark-video-showcase__grid,
	.ark-faq-inquiry__grid { grid-template-columns: 1fr; }
	.ark-video-showcase__poster { max-width: 760px; }
}

@media (max-width: 640px) {
	.ark-hero--full-background .ark-hero__grid { min-height: auto; padding: 34px 24px; background-image: var(--ark-hero-bg-mobile, var(--ark-hero-bg)); }
	.ark-media-banner__shell,
	.ark-media-banner--layout-full .ark-media-banner__shell { min-height: 460px; }
	.ark-media-banner--layout-full .ark-media-banner__content-wrap { width: min(calc(100% - 40px), var(--ark-container)); }
	.ark-media-banner__content,
	.ark-media-banner--layout-full .ark-media-banner__content { max-width: 100%; padding: 42px 26px; }
	.ark-media-banner--layout-full .ark-media-banner__content { padding-inline: 0; }
	.ark-media-banner .ark-eyebrow { margin-bottom: 16px; }
	.ark-media-banner h2 { margin-bottom: 18px; font-size: clamp(2rem, 9vw, 2.55rem); }
	.ark-media-banner .ark-rich-text { font-size: .95rem; line-height: 1.68; }
	.ark-media-banner .ark-rich-text > * + * { margin-top: 18px; }
	.ark-media-banner__action { margin-top: 24px; }
	.ark-video-play { width: 62px; height: 62px; }
}

/* Stage 4 editable rich-text wrappers. */
.ark-rich-text > :first-child {
	margin-top: 0;
}

.ark-rich-text > :last-child {
	margin-bottom: 0;
}

.ark-rich-text ul,
.ark-rich-text ol {
	margin: .85em 0 0;
	padding-inline-start: 1.35em;
}

.ark-rich-text li + li {
	margin-top: .35em;
}

.ark-rich-text a {
	color: var(--ark-primary);
	text-underline-offset: .16em;
}

.ark-quick-fact__copy,
.ark-spec__copy {
	margin-top: 8px;
	color: var(--ark-text-muted);
	font-weight: 400;
}

.ark-quick-facts dd > strong,
.ark-specs dd > strong {
	display: block;
	color: var(--ark-text);
	font-weight: 700;
}

.ark-hero__text.ark-rich-text {
	max-width: 720px;
}

.ark-hero__text.ark-rich-text p {
	margin: 0;
}

.ark-content-block__body .ark-lead.ark-rich-text,
.ark-case-study .ark-lead.ark-rich-text,
.ark-catalog-cta .ark-lead.ark-rich-text,
.ark-video-showcase .ark-lead.ark-rich-text {
	color: var(--ark-text-muted);
}

.ark-gallery figcaption {
	padding-top: 10px;
	color: var(--ark-text-muted);
	font-size: 0.9rem;
}

.ark-logo-strip__items a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	text-decoration: none;
}

.ark-logo-strip__items img {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.ark-inquiry-privacy {
	margin: 0 0 10px;
	color: var(--ark-text-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.ark-inquiry-shell__form small {
	display: block;
	margin-top: 6px;
	color: var(--ark-text-muted);
	font-size: 0.74rem;
	line-height: 1.4;
}

/* Stage 6 product page functional components */
.single-ark_product .site-main {
	min-width: 0;
}

.single-ark_product .ark-module {
	scroll-margin-top: calc(var(--ark-header-height, 84px) + 24px);
}

.ark-product-contact-cta h2 {
	margin: 0;
	color: var(--ark-text);
	font-size: clamp(2rem, 3.2vw, 3.75rem);
	font-weight: 740;
	letter-spacing: -.012em;
	line-height: 1.1;
	text-wrap: balance;
}

.ark-product-contact-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
	align-items: center;
	gap: clamp(30px, 5vw, 72px);
	padding: clamp(34px, 5vw, 66px);
	border-radius: var(--ark-radius-xl);
	color: var(--ark-white);
	background: var(--ark-primary-deep);
	box-shadow: var(--ark-shadow-card);
}

.ark-product-contact-cta h2,
.ark-product-contact-cta .ark-eyebrow,
.ark-product-contact-cta .ark-rich-text {
	color: var(--ark-white);
}

.ark-product-contact-cta .ark-actions {
	justify-content: flex-end;
	margin-top: 0;
}

.ark-product-contact-cta .ark-button {
	border-color: var(--ark-white);
	color: var(--ark-primary-deep);
	background: var(--ark-white);
}

.ark-tabs__labels button[aria-selected="true"] {
	color: var(--ark-white);
	background: var(--ark-primary);
}

.ark-tabs__labels button:focus-visible,
.ark-tabs__panels [role="tabpanel"]:focus-visible {
	outline: 3px solid rgba(47, 107, 63, .22);
	outline-offset: 3px;
}

.ark-tabs__panels [role="tabpanel"][hidden] {
	display: none;
}

.ark-tabs__panels [role="tabpanel"] {
	min-width: 0;
}

@media (max-width: 900px) {
	.ark-product-contact-cta__inner {
		grid-template-columns: 1fr;
	}

	.ark-product-contact-cta .ark-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.ark-product-contact-cta h2 {
		font-size: clamp(1.9rem, 8.8vw, 2.65rem);
		line-height: 1.1;
	}

	.ark-product-contact-cta__inner {
		padding: 28px 22px;
		border-radius: 26px;
	}

	.ark-product-contact-cta .ark-actions,
	.ark-product-contact-cta .ark-button {
		width: 100%;
	}
}

.ark-card-grid__media {
	display: block;
	overflow: hidden;
	margin: -8px -8px 20px;
	border-radius: 18px;
	background: var(--ark-bg-soft);
}

.ark-card-grid__media img {
	aspect-ratio: 13 / 8;
	transition: transform .2s ease;
}

@media (hover: hover) and (pointer: fine) {
	.ark-card-grid__media:hover img {
		transform: scale(1.025);
	}
}



/* Stage r58: opt-in responsive dynamic images for Hero and image banner. */
.ark-hero__picture,
.ark-hero__picture-link,
.ark-hero__mini-picture {
	display: block;
	width: 100%;
}

.ark-hero__background-picture {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.ark-hero__background-picture > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/* Stage r59: responsive dynamic media for single-visual modules. */
.ark-compact-banner__picture,
.ark-case-study__picture,
.ark-catalog-cta__picture,
.ark-cta__picture,
.ark-cta__mini-picture,
.ark-video-showcase__picture,
.ark-faq-inquiry__support-picture {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
}

.ark-compact-banner__picture > img,
.ark-case-study__picture > img,
.ark-catalog-cta__picture > img,
.ark-cta__picture > img,
.ark-cta__mini-picture > img,
.ark-video-showcase__picture > img,
.ark-faq-inquiry__support-picture > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ark-content-block__primary-picture {
	display: block;
	width: 100%;
	max-height: 470px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid rgba(47,107,63,.08);
	border-radius: 28px;
	box-shadow: 0 20px 54px rgba(31,79,45,.1);
}

.ark-content-block__primary-picture > img,
picture.ark-content-block__media-secondary > img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: inherit;
	aspect-ratio: inherit;
	object-fit: cover;
	border-radius: inherit;
}

picture.ark-content-block__media-secondary {
	display: block;
	overflow: hidden;
}

.ark-content-block--split-right .ark-content-block__primary-picture {
	max-height: 500px;
	aspect-ratio: 4 / 5;
}
.ark-content-block--image-top .ark-content-block__primary-picture {
	max-height: 330px;
	aspect-ratio: 16 / 5;
}
.ark-content-block--text-top .ark-content-block__primary-picture {
	max-height: 300px;
	aspect-ratio: 16 / 5;
}
.ark-content-block--dual-image .ark-content-block__primary-picture {
	position: static;
	width: 100%;
	max-height: 360px;
	aspect-ratio: 4 / 5;
	border: 0;
	border-radius: 22px;
	box-shadow: var(--ark-shadow-card);
}
.ark-content-block--feature-image .ark-content-block__primary-picture {
	max-height: 430px;
	aspect-ratio: 16 / 11;
}
.ark-content-block--factory .ark-content-block__primary-picture {
	max-height: 430px;
	aspect-ratio: 16 / 10;
	box-shadow: none;
}
.ark-content-block--founder .ark-content-block__primary-picture {
	max-height: 410px;
	aspect-ratio: 4 / 5;
	box-shadow: none;
}
.ark-content-block--laboratory .ark-content-block__primary-picture {
	max-height: 390px;
	box-shadow: none;
}
.ark-content-block--greenhouse .ark-content-block__primary-picture {
	max-height: 440px;
	aspect-ratio: 5 / 4;
}
.ark-content-block--dark .ark-content-block__primary-picture {
	max-height: 300px;
	aspect-ratio: 4 / 3;
	box-shadow: none;
}
.ark-content-block--soft-card .ark-content-block__primary-picture {
	max-height: 280px;
	aspect-ratio: 1 / 1;
	box-shadow: none;
}

@media (min-width: 1100px) {
	.ark-module-type-product-top-content .ark-content-block__primary-picture {
		max-height: 530px;
		aspect-ratio: 4 / 3;
	}
}

.ark-module-type-packing-shipping .ark-content-block__primary-picture {
	position: static;
	width: 100%;
	height: 100%;
	max-height: 330px;
	aspect-ratio: 4 / 5;
	border: 0;
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(24,70,39,.1);
}
