:root {
	--liven-green: #2f7b59;
	--liven-green-bright: #49a179;
	--liven-green-deep: #0d3f2d;
	--liven-ink: #0b1510;
	--liven-muted: #52615a;
	--liven-paper: #ffffff;
	--liven-mist: #f4f7f4;
	--liven-line: #d9e3dc;
	--liven-gold: #efbd3c;
	--liven-shell: 1440px;
	--liven-header-height: 112px;
	--liven-admin-bar-height: 0px;
	--liven-gutter: clamp(24px, 4vw, 64px);
	--liven-section: clamp(76px, 8vw, 124px);
	--liven-radius: 16px;
	--liven-shadow: 0 20px 50px rgba(14, 59, 43, 0.12);
	--liven-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--liven-header-height);
}

body.liven-site {
	margin: 0;
	background: var(--liven-paper);
	color: var(--liven-ink);
	font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

body.liven-site img {
	display: block;
	max-width: 100%;
}

body.liven-site a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

body.liven-site button,
body.liven-site a {
	-webkit-tap-highlight-color: transparent;
}

body.liven-site :focus-visible {
	outline: 3px solid #f3c74f;
	outline-offset: 4px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	height: auto;
	left: 20px;
	top: 20px;
	width: auto;
	z-index: 100000;
	background: #fff;
	color: #111;
	padding: 12px 18px;
	border-radius: 8px;
}

.liven-shell {
	width: min(100%, var(--liven-shell));
	margin-inline: auto;
	padding-inline: var(--liven-gutter);
}

.section {
	padding-block: var(--liven-section);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

h2 {
	font-size: clamp(2rem, 3.5vw, 3.45rem);
	margin-bottom: 24px;
}

h3 {
	font-size: 1.15rem;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto clamp(44px, 5vw, 70px);
	text-align: center;
}

.section-heading h2 {
	margin-bottom: 16px;
}

.section-heading p,
.section-copy {
	color: var(--liven-muted);
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	line-height: 1.75;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 220ms var(--liven-ease), background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--liven-green);
	color: #fff !important;
	box-shadow: 0 12px 26px rgba(47, 123, 89, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: var(--liven-green-bright);
	color: var(--liven-ink) !important;
	box-shadow: 0 16px 32px rgba(47, 123, 89, 0.24);
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.84);
	color: #fff !important;
	background: rgba(47, 123, 89, 0.18);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	border-color: var(--liven-green-bright);
	background: var(--liven-green-bright);
	color: var(--liven-ink) !important;
}

/* Header */
.site-header {
	position: sticky;
	top: var(--liven-admin-bar-height);
	z-index: 50;
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	height: var(--liven-header-height);
	overflow: visible;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(14, 59, 43, 0.06);
	transition: box-shadow 200ms ease;
}

.admin-bar {
	--liven-admin-bar-height: 32px;
}

.site-header.is-scrolled {
	box-shadow: 0 12px 35px rgba(17, 53, 40, 0.1);
}

body.liven-site > .site-header,
body.liven-site > .site-footer {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	height: 100%;
	gap: clamp(18px, 2.5vw, 48px);
}

.site-logo {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	align-self: start;
	width: 124px;
	height: 124px;
	margin-top: 8px;
	padding: 6px;
	border: 4px solid var(--liven-paper);
	border-radius: 50%;
	background: var(--liven-paper);
	box-shadow:
		0 6px 18px rgba(13, 63, 45, 0.1),
		0 18px 40px rgba(13, 63, 45, 0.08);
	text-decoration: none;
}

.site-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.2vw, 38px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav--right .site-nav__list {
	justify-content: flex-end;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--liven-ink);
	font-size: clamp(0.84rem, 1vw, 1rem);
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms ease;
}

.site-nav a:hover {
	color: var(--liven-green);
}

.site-nav__cta a {
	min-height: 46px;
	padding: 10px 22px;
	background: var(--liven-green);
	color: #fff !important;
	border-radius: 999px;
}

.site-nav__cta a:hover,
.site-nav__cta a:focus-visible {
	background: var(--liven-green-bright);
	color: var(--liven-ink) !important;
}

.menu-toggle,
.mobile-nav {
	display: none;
}

/* Hero */
.hero {
	position: relative;
	min-height: calc(100vh - var(--liven-header-height) - var(--liven-admin-bar-height));
	min-height: calc(100svh - var(--liven-header-height) - var(--liven-admin-bar-height));
	background-color: #153727;
	background-position: center 48%;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	overflow: clip;
}

.hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 17, 11, 0.78) 0%, rgba(2, 17, 11, 0.4) 37%, rgba(2, 17, 11, 0.03) 68%),
		linear-gradient(0deg, rgba(2, 15, 10, 0.6) 0%, transparent 55%);
}

.hero__inner {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: inherit;
	padding-bottom: clamp(72px, 9vw, 132px);
}

.hero__content {
	max-width: 920px;
}

.hero__location {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	margin-bottom: 22px;
	padding: 8px 22px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 999px;
	background: rgba(6, 38, 25, 0.38);
	font-size: clamp(0.95rem, 1.4vw, 1.18rem);
	backdrop-filter: blur(6px);
}

.hero h1 {
	max-width: 900px;
	margin-bottom: 20px;
	font-size: clamp(2.7rem, 4.5vw, 4.85rem);
	line-height: 1.03;
	letter-spacing: -0.04em;
	text-shadow: 0 3px 24px rgba(0, 0, 0, 0.26);
}

.hero__content > p {
	max-width: 620px;
	margin-bottom: 32px;
	font-size: clamp(1.08rem, 1.65vw, 1.35rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.94);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__scroll {
	position: absolute;
	right: var(--liven-gutter);
	bottom: clamp(24px, 3vw, 40px);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 48px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.hero__scroll-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 999px;
	background: rgba(13, 63, 45, 0.28);
	color: #fff;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero__scroll-mark::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-3px) rotate(45deg);
	animation: liven-scroll-cue 1.8s var(--liven-ease) infinite;
}

.hero__scroll:hover,
.hero__scroll:focus-visible {
	color: #fff;
}

.hero__scroll:hover .hero__scroll-mark,
.hero__scroll:focus-visible .hero__scroll-mark {
	border-color: var(--liven-green-bright);
	background: var(--liven-green-bright);
	color: var(--liven-ink);
}

@keyframes liven-scroll-cue {
	0%,
	100% {
		transform: translateY(-3px) rotate(45deg);
	}
	50% {
		transform: translateY(4px) rotate(45deg);
	}
}

.motion-ready .hero__content > * {
	opacity: 0;
	transform: translateY(26px);
	filter: blur(6px);
	transition: opacity 800ms var(--liven-ease), transform 800ms var(--liven-ease), filter 800ms var(--liven-ease);
}

.motion-ready .hero__content.is-visible > * {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.motion-ready .hero__content.is-visible > :nth-child(2) { transition-delay: 90ms; }
.motion-ready .hero__content.is-visible > :nth-child(3) { transition-delay: 180ms; }
.motion-ready .hero__content.is-visible > :nth-child(4) { transition-delay: 270ms; }

/* Global markets */
.markets {
	position: relative;
	min-height: 760px;
	padding-bottom: 176px;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.markets__inner {
	position: relative;
	min-height: 540px;
}

.markets__copy {
	width: min(44%, 600px);
	padding-top: 34px;
}

.markets__copy p {
	max-width: 62ch;
	color: #28372f;
	font-size: 1.06rem;
	line-height: 1.72;
}

.stats-band {
	position: absolute;
	left: var(--liven-gutter);
	right: var(--liven-gutter);
	bottom: -142px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 38px 24px;
	background: #276e50;
	color: #fff;
	border-radius: 24px;
	box-shadow: var(--liven-shadow);
}

.stat {
	display: grid;
	grid-template-columns: 64px 1fr;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 16px;
	min-width: 0;
	padding-inline: 20px;
}

.stat + .stat {
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.stat__icon {
	grid-row: 1 / 3;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

.stat__icon svg,
.feature__icon svg,
.why-item__icon svg,
.responsibility li svg,
.site-footer__contact svg,
.product-card__mark svg,
.circle-link svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.stat__value {
	font-size: clamp(1.75rem, 2.8vw, 2.75rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.stat__label {
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.9rem;
	line-height: 1.3;
}

/* Supply chain */
.supply {
	padding-top: calc(var(--liven-section) + 12px);
}

.supply__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
	align-items: center;
	gap: clamp(50px, 7vw, 100px);
}

.supply__media {
	margin: 0;
	border-radius: var(--liven-radius);
	overflow: hidden;
	box-shadow: var(--liven-shadow);
}

.supply__media img {
	width: 100%;
	aspect-ratio: 1.15;
	object-fit: cover;
	transition: transform 800ms var(--liven-ease);
}

.supply__media:hover img {
	transform: scale(1.025);
}

.supply__content > h2 {
	max-width: 650px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 34px;
	margin-block: 38px 42px;
}

.feature {
	display: grid;
	grid-template-columns: 52px 1fr;
	align-items: start;
	gap: 15px;
}

.feature__icon,
.why-item__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--liven-green);
	color: #fff;
}

.feature__icon svg {
	width: 24px;
	height: 24px;
}

.feature h3 {
	margin: 1px 0 7px;
	color: var(--liven-green-deep);
}

.feature p {
	margin: 0;
	color: var(--liven-muted);
	font-size: 0.95rem;
	line-height: 1.45;
}

/* Products */
.products {
	background-color: #f3f7f4;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.product-card {
	position: relative;
	min-width: 0;
	background: #fff;
	border-radius: var(--liven-radius);
	overflow: hidden;
	box-shadow: 0 15px 42px rgba(17, 60, 44, 0.1);
	transition: transform 300ms var(--liven-ease), box-shadow 300ms ease;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 54px rgba(17, 60, 44, 0.16);
}

.product-card__media {
	display: block;
	overflow: hidden;
}

.product-card__media img {
	width: 100%;
	aspect-ratio: 1.3;
	object-fit: cover;
	transition: transform 700ms var(--liven-ease);
}

.product-card:hover .product-card__media img {
	transform: scale(1.045);
}

.product-card__body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 275px;
	padding: 48px 26px 28px;
	text-align: center;
}

.product-card__mark {
	position: absolute;
	top: -28px;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	background: #fff;
	border: 1px solid var(--liven-green);
	border-radius: 50%;
	color: var(--liven-green);
}

.product-card__body h3 {
	margin-bottom: 10px;
	font-size: 1.13rem;
}

.product-card__body p {
	margin-bottom: 22px;
	color: #35443c;
	font-size: 0.95rem;
	line-height: 1.55;
}

.circle-link {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-top: auto;
	border-radius: 50%;
	background: var(--liven-green);
	color: #fff !important;
	transition: transform 200ms var(--liven-ease), background-color 200ms ease;
}

.circle-link:hover,
.circle-link:focus-visible {
	transform: translateX(3px);
	background: var(--liven-green-bright);
	color: var(--liven-ink) !important;
}

.circle-link svg {
	width: 19px;
	height: 19px;
}

.section-action {
	margin-top: 48px;
	text-align: center;
}

/* Why Liven */
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
	margin-bottom: clamp(64px, 8vw, 108px);
}

.why-item {
	position: relative;
	padding: 36px 26px 32px;
	border: 1px dashed #acc3b4;
	border-radius: var(--liven-radius);
	text-align: center;
}

.why-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(100% + 1px);
	width: 34px;
	border-top: 1px dashed #acc3b4;
}

.why-item__icon {
	margin: 0 auto 20px;
}

.why-item h3 {
	margin-bottom: 8px;
}

.why-item p {
	margin: 0;
	color: var(--liven-muted);
	font-size: 0.96rem;
	line-height: 1.5;
}

.responsibility {
	min-height: 500px;
	display: flex;
	align-items: center;
	padding: clamp(44px, 6vw, 78px);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: var(--liven-radius);
	overflow: hidden;
}

.responsibility__content {
	width: min(46%, 590px);
}

.responsibility__content p {
	color: #25362d;
	font-size: 1.02rem;
	line-height: 1.68;
}

.responsibility ul {
	display: grid;
	gap: 13px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.responsibility li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
}

.responsibility li > span {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--liven-green);
	color: #fff;
}

.responsibility li svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.4;
}

/* Industries */
.industries {
	padding-top: 0;
}

.industry-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.industry-card {
	position: relative;
	min-height: 330px;
	border-radius: var(--liven-radius);
	overflow: hidden;
	color: #fff !important;
	text-decoration: none;
	box-shadow: 0 18px 42px rgba(17, 48, 37, 0.1);
}

.industry-card::after {
	content: "";
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(0deg, rgba(2, 20, 13, 0.82), transparent);
}

.industry-card img {
	width: 100%;
	height: 100%;
	min-height: 330px;
	object-fit: cover;
	transition: transform 700ms var(--liven-ease);
}

.industry-card:hover img {
	transform: scale(1.05);
}

.industry-card span {
	position: absolute;
	z-index: 1;
	left: 24px;
	right: 24px;
	bottom: 22px;
	font-size: 1.1rem;
	font-weight: 800;
	text-align: center;
}

/* Testimonials */
.testimonials {
	padding-top: 0;
}

.testimonials__notice {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	margin-top: 10px;
	padding: 6px 14px;
	border: 1px solid var(--liven-line);
	border-radius: 999px;
	background: var(--liven-mist);
	color: var(--liven-green-deep);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

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

.testimonial {
	display: flex;
	flex-direction: column;
	min-height: 320px;
	padding: 38px 34px 30px;
	border: 1px solid #e5ebe7;
	border-radius: var(--liven-radius);
	background: #fff;
	box-shadow: 0 14px 38px rgba(13, 51, 37, 0.07);
}

.testimonial__stars {
	margin-bottom: 20px;
	color: var(--liven-gold);
	font-size: 1.35rem;
	letter-spacing: 0.08em;
}

.testimonial blockquote {
	margin: 0 0 28px;
	color: #27372f;
	font-size: 1rem;
	line-height: 1.65;
}

.testimonial footer {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
}

.testimonial footer > span:last-child {
	display: grid;
}

.testimonial footer small {
	color: var(--liven-muted);
}

.testimonial__avatar {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--liven-green);
	color: #fff;
	font-weight: 800;
}

.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 42px;
}

.testimonial-dots i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d8dfda;
}

.testimonial-dots i:first-child {
	background: var(--liven-green);
	box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--liven-green);
}

/* Closing call to action */
.closing {
	padding-top: 0;
}

.closing__card {
	min-height: 520px;
	display: flex;
	align-items: flex-start;
	padding: clamp(48px, 6vw, 86px);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: var(--liven-radius);
	overflow: hidden;
}

.closing__content {
	max-width: 600px;
}

.closing__content p {
	max-width: 58ch;
	margin-bottom: 30px;
	color: #26372e;
	font-size: 1.05rem;
}

/* Footer */
.site-footer {
	width: 100%;
	max-width: none;
	margin: 0;
	background: #050806;
	color: #fff;
	padding-top: clamp(68px, 8vw, 112px);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.75fr 0.85fr 1fr;
	gap: clamp(38px, 5vw, 82px);
	padding-bottom: 70px;
}

.site-footer__brand p {
	max-width: 39ch;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.96rem;
	line-height: 1.65;
}

.site-footer__logo {
	display: inline-block;
	margin-bottom: 24px;
}

.site-footer__logo img {
	width: 108px;
	height: 108px;
	object-fit: contain;
}

.site-footer h2 {
	margin-bottom: 22px;
	font-size: 1.06rem;
	letter-spacing: -0.01em;
}

.footer-links,
.site-footer__contact ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links a,
.site-footer__contact a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: color 160ms ease;
}

.footer-links a:hover,
.site-footer__contact a:hover {
	color: #fff;
}

.site-footer__contact li {
	display: grid;
	grid-template-columns: 24px 1fr;
	align-items: start;
	gap: 12px;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer__contact li > span:first-child {
	color: #fff;
}

.site-footer__contact svg {
	width: 20px;
	height: 20px;
}

.site-footer address {
	font-style: normal;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 28px;
}

.social-links a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	color: #050806;
	font-size: 0.85rem;
	font-weight: 800;
	text-decoration: none;
}

.site-footer__bottom {
	padding-block: 20px;
	background: #111512;
	text-align: center;
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.88rem;
}

/* Default content pages */
.entry-page {
	min-height: 55vh;
	background: var(--liven-mist);
}

.entry-page__inner {
	padding-block: var(--liven-section);
}

.entry-page article {
	max-width: 860px;
	margin: 0 auto;
	padding: clamp(30px, 5vw, 64px);
	background: #fff;
	border-radius: var(--liven-radius);
}

.entry-page h1 {
	font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.post-summary + .post-summary {
	margin-top: 24px;
}

/* Tablet */
@media (max-width: 1180px) {
	.site-nav__list {
		gap: 15px;
	}

	.site-nav a {
		font-size: 0.78rem;
	}

	.site-nav__cta a {
		padding-inline: 16px;
	}

	.stats-band {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 0;
		bottom: -205px;
	}

	.stat:nth-child(3) {
		border-left: 0;
	}

	.markets {
		padding-bottom: 240px;
	}

	.product-grid,
	.why-grid,
	.industry-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.why-item::after {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1.25fr 0.75fr 0.9fr;
	}

	.site-footer__contact {
		grid-column: 1 / -1;
	}

	.site-footer__contact ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Mobile navigation and single-column composition */
@media (max-width: 900px) {
	:root {
		--liven-header-height: 82px;
	}

	html {
		scroll-padding-top: var(--liven-header-height);
	}

	.site-header {
		height: var(--liven-header-height);
	}

	.site-header__inner {
		display: flex;
		justify-content: space-between;
	}

	.site-logo {
		width: 86px;
		height: 86px;
		margin-top: 4px;
		padding: 5px;
		border-width: 3px;
		box-shadow:
			0 5px 14px rgba(13, 63, 45, 0.1),
			0 12px 28px rgba(13, 63, 45, 0.07);
	}

	.site-logo img {
		width: 100%;
		height: 100%;
	}

	.site-nav {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		min-height: 44px;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--liven-ink);
		font: inherit;
		font-weight: 800;
		cursor: pointer;
	}

	.menu-toggle:hover,
	.menu-toggle:focus,
	.menu-toggle:active {
		background: transparent;
		color: var(--liven-ink);
		box-shadow: none;
	}

	.menu-toggle__lines {
		display: grid;
		gap: 7px;
		width: 28px;
	}

	.menu-toggle__lines span {
		display: block;
		height: 2px;
		background: currentColor;
		transition: transform 240ms var(--liven-ease);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child {
		transform: translateY(4.5px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child {
		transform: translateY(-4.5px) rotate(-45deg);
	}

	.mobile-nav {
		position: fixed;
		z-index: 45;
		top: calc(var(--liven-header-height) + var(--liven-admin-bar-height));
		left: 0;
		right: 0;
		bottom: 0;
		display: grid;
		align-content: start;
		gap: 4px;
		padding: 24px var(--liven-gutter) 44px;
		background: #fff;
		overflow-y: auto;
	}

	.mobile-nav[hidden] {
		display: none;
	}

	.mobile-nav a {
		display: flex;
		align-items: center;
		min-height: 54px;
		border-bottom: 1px solid var(--liven-line);
		font-size: 1.08rem;
		font-weight: 800;
		text-decoration: none;
	}

	.mobile-nav__cta {
		justify-content: center;
		margin-top: 16px;
		border: 0 !important;
		border-radius: 999px;
		background: var(--liven-green);
		color: #fff !important;
	}

	.mobile-nav__cta:hover,
	.mobile-nav__cta:focus-visible {
		background: var(--liven-green-bright);
		color: var(--liven-ink) !important;
	}

	.hero {
		background-position: 48% center;
	}

	.hero__veil {
		background: linear-gradient(90deg, rgba(2, 17, 11, 0.8) 0%, rgba(2, 17, 11, 0.4) 64%, rgba(2, 17, 11, 0.12)), linear-gradient(0deg, rgba(2, 15, 10, 0.65), transparent 65%);
	}

	.hero__inner {
		padding-bottom: 72px;
	}

	.markets {
		min-height: 900px;
		padding-bottom: 255px;
		background-position: 62% center;
	}

	.markets::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.18) 88%);
	}

	.markets__copy {
		position: relative;
		width: min(72%, 580px);
	}

	.supply__grid {
		grid-template-columns: 1fr;
	}

	.supply__media img {
		aspect-ratio: 1.55;
	}

	.responsibility__content {
		width: 56%;
	}

	.testimonial-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding: 4px 4px 24px;
		margin-inline: -4px;
	}

	.testimonial {
		flex: 0 0 min(78vw, 430px);
		scroll-snap-align: start;
	}

	.closing__card {
		min-height: 500px;
		background-position: 58% center;
	}

	.closing__content {
		max-width: 52%;
	}
}

@media (max-width: 640px) {
	:root {
		--liven-gutter: 20px;
		--liven-section: 72px;
	}

	.hero {
		background-position: 42% center;
	}

	.hero__scroll {
		right: var(--liven-gutter);
		bottom: 14px;
		gap: 0;
	}

	.hero__scroll-label {
		display: none;
	}

	.hero__scroll-mark {
		width: 40px;
	}

	.hero__veil {
		background: linear-gradient(90deg, rgba(2, 17, 11, 0.82), rgba(2, 17, 11, 0.26)), linear-gradient(0deg, rgba(2, 15, 10, 0.78), transparent 72%);
	}

	.hero h1 {
		font-size: clamp(2.45rem, 12vw, 3.7rem);
	}

	.hero__location {
		font-size: 0.88rem;
	}

	.hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 300px;
	}

	.markets {
		min-height: auto;
		padding-bottom: var(--liven-section);
		background-position: 67% 26%;
	}

	.markets::before {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 44%, rgba(255, 255, 255, 0.62) 72%, rgba(255, 255, 255, 0.95) 100%);
	}

	.markets__inner {
		min-height: auto;
	}

	.markets__copy {
		width: 100%;
		padding-top: 0;
	}

	.stats-band {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		grid-template-columns: 1fr 1fr;
		gap: 0;
		margin-top: 330px;
		padding: 12px;
		border-radius: var(--liven-radius);
	}

	.stat {
		grid-template-columns: 44px 1fr;
		padding: 18px 12px;
	}

	.stat + .stat {
		border-left: 0;
	}

	.stat:nth-child(even) {
		border-left: 1px solid rgba(255, 255, 255, 0.22);
	}

	.stat:nth-child(n + 3) {
		border-top: 1px solid rgba(255, 255, 255, 0.22);
	}

	.stat__icon {
		width: 44px;
		height: 44px;
	}

	.stat__icon svg {
		width: 21px;
		height: 21px;
	}

	.stat__value {
		font-size: 1.35rem;
	}

	.stat__label {
		font-size: 0.75rem;
	}

	.supply {
		padding-top: var(--liven-section);
	}

	.supply__media img {
		aspect-ratio: 1.16;
	}

	.feature-grid,
	.product-grid,
	.why-grid,
	.industry-grid {
		grid-template-columns: 1fr;
	}

	.feature-grid {
		gap: 24px;
	}

	.product-card__body {
		min-height: 235px;
	}

	.why-grid {
		gap: 18px;
	}

	.why-item {
		display: grid;
		grid-template-columns: 52px 1fr;
		column-gap: 16px;
		text-align: left;
	}

	.why-item__icon {
		grid-row: 1 / 3;
		margin: 0;
	}

	.why-item h3 {
		align-self: end;
	}

	.responsibility {
		min-height: 590px;
		align-items: flex-start;
		padding: 34px 26px;
		background-position: 63% center;
	}

	.responsibility::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.06) 78%);
	}

	.responsibility {
		position: relative;
	}

	.responsibility__content {
		position: relative;
		width: 100%;
		padding: 22px;
		background: rgba(255, 255, 255, 0.9);
		border-radius: 12px;
		backdrop-filter: blur(5px);
	}

	.industry-card,
	.industry-card img {
		min-height: 280px;
	}

	.testimonial {
		flex-basis: 86vw;
	}

	.closing__card {
		position: relative;
		min-height: 590px;
		align-items: flex-start;
		padding: 34px 26px;
		background-position: 68% center;
	}

	.closing__card::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.06) 78%);
	}

	.closing__content {
		position: relative;
		max-width: none;
	}

	.site-footer__grid,
	.site-footer__contact ul {
		grid-template-columns: 1fr;
	}

	.site-footer__contact {
		grid-column: auto;
	}

	.entry-page article {
		padding: 26px 22px;
	}
}

@media (max-width: 380px) {
	.menu-toggle__label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.stats-band {
		grid-template-columns: 1fr;
	}

	.stat:nth-child(even) {
		border-left: 0;
	}

	.stat + .stat {
		border-top: 1px solid rgba(255, 255, 255, 0.22);
	}
}

@media (max-width: 782px) {
	.admin-bar {
		--liven-admin-bar-height: 46px;
	}
}

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

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

	.motion-ready .hero__content > * {
		opacity: 1;
		transform: none;
		filter: none;
	}
}
