@font-face {
	font-family: "Montserrat Brand";
	src: url("brand-fonts/montserrat-light.woff") format("opentype");
	font-style: normal;
	font-weight: 300;
	font-display: swap;
}


@font-face {
	font-family: "Montserrat Brand";
	src: url("brand-fonts/montserrat-regular.woff") format("opentype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat Brand";
	src: url("brand-fonts/montserrat-bold.woff") format("opentype");
	font-style: normal;
	font-weight: 700 900;
	font-display: swap;
}

:root {
	--so-bg: #f7f5f0;
	--so-panel: #ffffff;
	--so-muted: #ece7dd;
	--so-text: #262b2a;
	--so-soft: #6d746f;
	--so-green: #4f6f5f;
	--so-green-dark: #385145;
	--so-wood: #b48a5a;
	--so-line: rgba(38, 43, 42, .12);
	--so-shadow: 0 22px 60px rgba(38, 43, 42, .12);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--so-bg);
	color: var(--so-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
}

.so-page h1,
.so-page h2,
.so-page h3,
.so-page h4,
.so-page h5,
.so-page h6,
.so-page .h1,
.so-page .h2,
.so-page .h3,
.so-page .h4,
.so-page .h5,
.so-page .h6 {
	font-family: "Montserrat Brand", "Montserrat", Arial, sans-serif;
	letter-spacing: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.so-container {
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
}

.so-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(247, 245, 240, .96);
	box-shadow: 0 10px 28px rgba(38, 43, 42, .06);
	backdrop-filter: blur(12px);
}

.so-topbar__inner {
	min-height: 84px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.so-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 360px;
}

.so-brand__icon {
	width: 62px;
	min-width: 62px;
	height: 68px;
	object-fit: contain;
}

.so-brand__text {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.so-brand__name {
	color: #171918;
	font-family: "Montserrat Brand", "Montserrat", Arial, sans-serif;
	font-size: 26px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 3.6px;
	text-transform: uppercase;
	white-space: nowrap;
}

.so-brand__accent {
	color: #b48a5a;
}

.so-brand__tagline {
	color: #2b2d2c;
	font-family: "Montserrat Brand", "Montserrat", Arial, sans-serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	white-space: nowrap;
}

.so-contactline {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 10px;
	flex: 1 1 auto;
	color: var(--so-text);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.1;
	white-space: nowrap;
}

.so-contactline a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.so-contactline a:hover {
	border-color: rgba(79, 111, 95, .18);
	background: rgba(255, 255, 255, .68);
	color: var(--so-green-dark);
	text-decoration: none;
	transform: translateY(-1px);
}

.so-contactline .so-mail {
	font-weight: 700;
	color: var(--so-green-dark);
}

.so-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	flex: 0 0 auto;
	min-width: 0;
}

.so-header__cta {
	position: relative;
	overflow: hidden;
	min-height: 46px;
	padding: 0 22px;
	background: linear-gradient(135deg, #f0c879, #c69445);
	border-color: rgba(180, 138, 90, .4);
	color: #1f2a26;
	box-shadow: 0 14px 30px rgba(180, 138, 90, .24);
}

.so-header__cta::before {
	content: "";
	position: absolute;
	inset: -2px auto -2px -45%;
	width: 38%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
	transform: skewX(-18deg);
	transition: left .55s ease;
}

.so-header__cta:hover {
	background: linear-gradient(135deg, #ffd88d, #d7a556);
	border-color: rgba(180, 138, 90, .55);
	color: #17211d;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: none;
}

.so-header__cta:hover::before {
	left: 112%;
}

.so-social {
	display: flex;
	align-items: center;
	gap: 8px;
}

.so-social__link {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(79, 111, 95, .16);
	border-radius: 50%;
	background: rgba(79, 111, 95, .08);
	color: var(--so-green-dark);
	font-size: 19px;
	line-height: 1;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.so-social__link:hover {
	border-color: var(--so-green);
	background: var(--so-green);
	color: #fff;
	transform: translateY(-2px);
}

.so-nav {
	min-height: 50px;
	display: flex;
	align-items: center;
	gap: 4px;
	padding-bottom: 8px;
}

.so-nav__item {
	position: relative;
}

.so-nav__link {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 50px;
	padding: 0 11px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--so-text);
	white-space: nowrap;
	overflow: hidden;
	transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.so-nav__link:hover,
.so-nav__item:hover > .so-nav__link {
	background: linear-gradient(135deg, rgba(79, 111, 95, .1), rgba(180, 138, 90, .08));
	color: var(--so-green-dark);
	box-shadow: none;
	text-decoration: none;
	transform: translateY(-1px);
}

.so-nav__dropdown {
	position: absolute;
	left: 0;
	top: 100%;
	width: 300px;
	padding: 10px;
	display: grid;
	gap: 2px;
	background: var(--so-panel);
	border: 1px solid var(--so-line);
	box-shadow: var(--so-shadow);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
	pointer-events: none;
}

.so-nav__item:hover .so-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition-delay: 0s;
	pointer-events: auto;
}

.so-nav__dropdown a {
	padding: 9px 10px;
	border-radius: 6px;
	color: var(--so-soft);
	transition: background .18s ease, color .18s ease, transform .18s ease, padding-left .18s ease;
}

.so-nav__dropdown a:hover {
	padding-left: 14px;
	background: linear-gradient(90deg, rgba(79, 111, 95, .12), rgba(180, 138, 90, .1));
	color: var(--so-green-dark);
	text-decoration: none;
	transform: translateX(2px);
}

.so-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 24px;
	border-radius: 999px;
	background: var(--so-green);
	color: #fff;
	font-weight: 800;
	border: 1px solid var(--so-green);
	white-space: nowrap;
	box-shadow: 0 12px 28px rgba(79, 111, 95, .2);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.so-btn:hover {
	background: var(--so-green-dark);
	border-color: var(--so-green-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(79, 111, 95, .28);
}

.so-btn--small {
	min-height: 40px;
	padding: 0 16px;
}

.so-btn--light {
	background: #fff;
	color: var(--so-green-dark);
	border-color: var(--so-line);
	box-shadow: 0 12px 28px rgba(38, 43, 42, .1);
}

.so-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .35);
}

.so-hero {
	position: relative;
	overflow: hidden;
	background: var(--so-text);
}

.so-hero-slider {
	min-height: clamp(560px, 68vh, 720px);
}

.so-hero-slider__track {
	position: absolute;
	inset: 0;
}

.so-hero-slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: stretch;
	background-position: center;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.35s ease, visibility 0s linear 1.35s;
	pointer-events: none;
}

.so-hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 48%, rgba(21, 31, 27, .72) 0%, rgba(21, 31, 27, .46) 34%, rgba(21, 31, 27, 0) 62%),
		linear-gradient(90deg, rgba(12, 18, 16, .9) 0%, rgba(12, 18, 16, .68) 34%, rgba(12, 18, 16, .2) 70%, rgba(12, 18, 16, .08) 100%),
		linear-gradient(0deg, rgba(12, 18, 16, .24), rgba(12, 18, 16, .14));
}

.so-hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .11) 48%, transparent 62%);
	opacity: 0;
	transform: translateX(-28%);
	pointer-events: none;
}

.so-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
	pointer-events: auto;
	z-index: 1;
}

.so-hero-slide.is-active::after {
	animation: so-slide-light 1.25s ease-out .2s both;
}

.so-hero-slide .so-hero__content,
.so-hero-slide h1,
.so-hero-slide .so-lead,
.so-hero-slide .so-actions {
	transform: none;
	transition: none;
}

.so-hero-slide__inner {
	position: relative;
	z-index: 2;
	min-height: clamp(560px, 68vh, 720px);
	display: flex;
	align-items: center;
	padding: 82px 0 110px;
}

.so-hero__content {
	max-width: 760px;
	position: relative;
	padding: 0 0 0 24px;
}

.so-hero__content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 7px;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, #f0c879, rgba(240, 200, 121, .18));
	box-shadow: 0 0 28px rgba(240, 200, 121, .45);
}

.so-eyebrow {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--so-wood);
}

.so-hero h1,
.so-section h2,
.so-final-cta h2 {
	margin: 0;
	font-weight: 800;
	line-height: 1.08;
	color: var(--so-text);
}

.so-hero h1 {
	font-size: 50px;
	max-width: 720px;
}

.so-hero-slide .so-eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #f3d391;
	text-shadow: 0 6px 24px rgba(0, 0, 0, .55);
}

.so-hero-slide h1,
.so-hero-slide .so-lead {
	color: #fff;
	text-shadow: 0 4px 18px rgba(0, 0, 0, .82), 0 18px 44px rgba(0, 0, 0, .42);
}

.so-hero-slide .so-lead {
	max-width: 650px;
	color: #fff;
	text-shadow: 0 3px 14px rgba(0, 0, 0, .9), 0 14px 34px rgba(0, 0, 0, .55);
}

.so-hero-slide .so-btn {
	min-height: 52px;
	padding: 0 28px;
	background: linear-gradient(135deg, #f0c879, #c69445);
	border-color: rgba(255, 255, 255, .18);
	color: #1f2a26;
	box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
}

.so-hero-slide .so-btn:hover {
	background: linear-gradient(135deg, #ffd88d, #d7a556);
	color: #17211d;
	box-shadow: 0 24px 48px rgba(0, 0, 0, .3);
}

.so-hero-slide .so-btn--light {
	background: rgba(255, 255, 255, .14);
	border-color: rgba(255, 255, 255, .42);
	color: #fff;
	box-shadow: none;
	backdrop-filter: blur(10px);
}

.so-hero-slide .so-btn--light:hover {
	background: #fff;
	border-color: #fff;
	color: var(--so-green-dark);
}

.so-lead,
.so-section__head p,
.so-hero__content > p:not(.so-eyebrow),
.so-accent p,
.so-final-cta p {
	color: var(--so-soft);
}

.so-hero-slide .so-hero__content > p.so-lead {
	color: rgba(255, 255, 255, .92);
	text-shadow: 0 4px 18px rgba(0, 0, 0, .82), 0 18px 44px rgba(0, 0, 0, .42);
}

.so-lead {
	font-size: 19px;
	margin: 22px 0 0;
}

.so-content a:not(.so-btn):not(.works-card) {
	color: var(--so-green-dark);
	font-weight: 700;
	background: linear-gradient(90deg, rgba(79, 111, 95, .12), rgba(180, 138, 90, .1)) left bottom / 100% 0 no-repeat;
	transition: color .18s ease, background-size .18s ease;
}

.so-content a:not(.so-btn):not(.works-card):hover {
	color: var(--so-wood);
	background-size: 100% 38%;
}

.so-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.so-benefits div,
.so-steps div,
.so-mini-cards a {
	background: rgba(255, 255, 255, .75);
	border: 1px solid var(--so-line);
	border-radius: 8px;
}

.so-hero-slider__nav {
	position: relative;
	z-index: 4;
	min-height: clamp(560px, 68vh, 720px);
	display: flex;
	align-items: end;
	gap: 12px;
	padding-bottom: 36px;
	pointer-events: none;
}

.so-slider-btn {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 999px;
	background: rgba(255, 255, 255, .18);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: background .2s ease, transform .2s ease;
	pointer-events: auto;
}

.so-slider-btn:hover,
.so-slider-btn:focus {
	background: rgba(255, 255, 255, .3);
	transform: translateY(-1px);
}

.so-slider-dots {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 4px;
	pointer-events: auto;
}

.so-slider-dots button {
	width: 42px;
	height: 4px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .38);
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.so-slider-dots button.is-active {
	width: 64px;
	background: #fff;
}

@keyframes so-slide-light {
	0% {
		opacity: 0;
		transform: translateX(-34%);
	}
	34% {
		opacity: .75;
	}
	100% {
		opacity: 0;
		transform: translateX(38%);
	}
}

.so-section {
	padding: 72px 0;
}

.so-section--muted {
	background: var(--so-muted);
}

.so-section__head {
	max-width: 720px;
	margin-bottom: 30px;
}

.so-directions .so-section__head {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.so-directions .so-section__head h2 + p {
	margin-top: 18px;
}

.so-section__head--row {
	max-width: none;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.so-section h2,
.so-final-cta h2 {
	font-size: 38px;
}

.so-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.so-feature-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 520px;
	padding: 0;
	background: var(--so-panel);
	border: 1px solid var(--so-line);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(38, 43, 42, .08);
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.so-feature-card:hover {
	border-color: rgba(79, 111, 95, .34);
	transform: translateY(-3px);
	box-shadow: 0 24px 54px rgba(38, 43, 42, .12);
}

.so-feature-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform .35s ease;
}

.so-feature-card:hover img {
	transform: scale(1.035);
}

.so-feature-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 26px;
}

.so-feature-card span {
	color: var(--so-wood);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.so-feature-card h3 {
	margin: 10px 0 10px;
	font-size: 26px;
	line-height: 1.2;
}

.so-feature-card p {
	margin: 0;
	color: var(--so-soft);
	font-size: 16px;
	line-height: 1.55;
}

.so-feature-card b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin: 24px auto 0;
	padding: 0 20px;
	border: 1px solid rgba(79, 111, 95, .28);
	border-radius: 999px;
	background: rgba(79, 111, 95, .08);
	color: var(--so-green-dark);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.so-feature-card:hover b {
	background: var(--so-green);
	border-color: var(--so-green);
	color: #fff;
}

.so-catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.so-catalog-card {
	display: flex;
	flex-direction: column;
	min-height: 460px;
	overflow: hidden;
	background: rgba(255, 255, 255, .88);
	border: 1px solid var(--so-line);
	border-radius: 8px;
	box-shadow: 0 16px 38px rgba(38, 43, 42, .07);
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.so-catalog-card:hover {
	border-color: rgba(79, 111, 95, .32);
	transform: translateY(-3px);
	box-shadow: 0 24px 52px rgba(38, 43, 42, .11);
}

.so-catalog-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .35s ease;
}

.so-catalog-card:hover img {
	transform: scale(1.035);
}

.so-catalog-card span,
.so-catalog-card h3,
.so-catalog-card p,
.so-catalog-card b {
	margin-left: 22px;
	margin-right: 22px;
}

.so-catalog-card span {
	margin-top: 22px;
	color: var(--so-wood);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.so-catalog-card h3 {
	margin-top: 9px;
	margin-bottom: 8px;
	font-size: 21px;
	line-height: 1.2;
	color: var(--so-text);
}

.so-catalog-card p {
	margin-top: 0;
	margin-bottom: 20px;
	color: var(--so-soft);
	font-size: 15px;
	line-height: 1.5;
}

.so-catalog-card b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 40px;
	margin-top: auto;
	margin-bottom: 22px;
	padding: 0 18px;
	border: 1px solid rgba(79, 111, 95, .26);
	border-radius: 999px;
	background: rgba(79, 111, 95, .08);
	color: var(--so-green-dark);
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.so-catalog-card:hover b {
	background: var(--so-green);
	border-color: var(--so-green);
	color: #fff;
}

.so-mini-cards a:hover {
	border-color: var(--so-green);
	color: var(--so-green-dark);
}

.so-split {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: 42px;
	align-items: start;
}

.so-process-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(243, 238, 228, .92)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.so-process-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(79, 111, 95, .08) 1px, transparent 1px),
		linear-gradient(0deg, rgba(79, 111, 95, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
	pointer-events: none;
}

.so-process-section .so-container {
	position: relative;
	z-index: 1;
}

.so-process-section .so-split > div:first-child {
	padding: 28px;
	border-left: 4px solid var(--so-wood);
	background: rgba(255, 255, 255, .62);
	backdrop-filter: blur(8px);
}

.so-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	counter-reset: process-step;
}

.so-steps::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 44px;
	bottom: 44px;
	width: 2px;
	background: linear-gradient(180deg, transparent, rgba(79, 111, 95, .28), rgba(180, 138, 90, .42), transparent);
	transform: translateX(-50%);
	pointer-events: none;
}

.so-steps div {
	position: relative;
	overflow: hidden;
	min-height: 190px;
	padding: 24px;
	background: rgba(255, 255, 255, .86);
	border-color: rgba(79, 111, 95, .14);
	box-shadow: 0 18px 42px rgba(38, 43, 42, .08);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.so-steps div::after {
	content: "";
	position: absolute;
	right: -34px;
	top: -34px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(79, 111, 95, .1), rgba(180, 138, 90, .14));
}

.so-steps div:hover {
	transform: translateY(-3px);
	border-color: rgba(180, 138, 90, .42);
	box-shadow: 0 24px 58px rgba(38, 43, 42, .12);
}

.so-steps b {
	position: relative;
	z-index: 1;
	display: flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--so-green), var(--so-green-dark));
	color: #fff;
	font-size: 18px;
	box-shadow: 0 14px 28px rgba(79, 111, 95, .22);
}

.so-steps h3 {
	position: relative;
	z-index: 1;
	margin: 18px 0 8px;
	font-size: 21px;
	color: var(--so-green-dark);
}

.so-steps p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--so-soft);
	line-height: 1.55;
}

.so-accent {
	background: var(--so-green-dark);
	color: #fff;
}

.so-accent h2,
.so-accent .so-eyebrow {
	color: #fff;
}

.so-accent p,
.so-accent li {
	color: rgba(255, 255, 255, .82);
}

.so-accent__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	gap: 46px;
	align-items: center;
}

.so-accent__grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
}

.so-checklist {
	display: grid;
	gap: 8px;
	padding-left: 20px;
	margin: 22px 0 0;
}

.so-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.so-benefits-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(247, 245, 240, .96), rgba(247, 245, 240, .86) 48%, rgba(247, 245, 240, .78)),
		url("../images/benefits/benefits-bg.png") center/cover no-repeat;
}

.so-benefits-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(180, 138, 90, .18), transparent 34%),
		radial-gradient(circle at 84% 74%, rgba(79, 111, 95, .16), transparent 34%);
	pointer-events: none;
}

.so-benefits-section .so-container {
	position: relative;
	z-index: 1;
}

.so-benefits-section .so-section__head {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.so-benefits-section .so-section__head h2 {
	color: var(--so-green-dark);
}

.so-benefits div {
	position: relative;
	overflow: hidden;
	min-height: 225px;
	padding: 24px;
	background: rgba(255, 255, 255, .78);
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 42px rgba(38, 43, 42, .08);
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.so-benefits div::after {
	content: "";
	position: absolute;
	right: -26px;
	bottom: -34px;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(79, 111, 95, .1), rgba(180, 138, 90, .12));
}

.so-benefits div:hover {
	border-color: rgba(79, 111, 95, .38);
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 24px 56px rgba(38, 43, 42, .12);
	transform: translateY(-2px);
}

.so-benefits i {
	position: relative;
	z-index: 1;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(79, 111, 95, .96), rgba(56, 81, 69, .96)),
		linear-gradient(135deg, var(--so-green), var(--so-green-dark));
	color: #fff;
	font-size: 21px;
	box-shadow: 0 14px 28px rgba(79, 111, 95, .22);
	transition: transform .2s ease, background .2s ease;
}

.so-benefits div:hover i {
	transform: translateY(-2px) rotate(-3deg);
	background: linear-gradient(135deg, var(--so-wood), #d0a060);
}

.so-benefits h3 {
	position: relative;
	z-index: 1;
	margin: 18px 0 8px;
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
	color: var(--so-green-dark);
}

.so-benefits p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--so-soft);
	font-size: 15px;
	line-height: 1.5;
}

.so-b2b-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(239, 244, 240, .94)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .08));
}

.so-b2b-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(79, 111, 95, .07) 1px, transparent 1px),
		linear-gradient(180deg, rgba(79, 111, 95, .06) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: .45;
	pointer-events: none;
}

.so-b2b {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 34px;
	align-items: center;
}

.so-b2b__content {
	padding: 34px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .76);
	box-shadow: 0 24px 58px rgba(38, 43, 42, .08);
}

.so-b2b__content h2 {
	margin: 8px 0 16px;
	color: var(--so-green-dark);
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.05;
}

.so-b2b__content > p:not(.so-eyebrow) {
	max-width: 760px;
	margin: 0;
	color: var(--so-soft);
	font-size: 18px;
	line-height: 1.65;
}

.so-b2b__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 26px 0 28px;
}

.so-b2b__points span {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	padding: 14px 16px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: rgba(247, 245, 240, .84);
	color: var(--so-green-dark);
	font-weight: 750;
	line-height: 1.3;
}

.so-b2b__points i {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--so-green), var(--so-green-dark));
	color: #fff;
	font-size: 15px;
}

.so-b2b__visual {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 26px 64px rgba(38, 43, 42, .18);
}

.so-b2b__visual img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.so-b2b__note {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 42px rgba(38, 43, 42, .14);
}

.so-b2b__note b {
	color: var(--so-wood);
	font-size: 34px;
	line-height: 1;
}

.so-b2b__note span {
	color: var(--so-green-dark);
	font-weight: 750;
	line-height: 1.25;
}

.so-home-gallery-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(247, 245, 240, 1), rgba(255, 255, 255, .94)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.so-home-gallery-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(79, 111, 95, .055) 1px, transparent 1px),
		linear-gradient(0deg, rgba(79, 111, 95, .045) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
	pointer-events: none;
}

.so-home-gallery-section .so-container {
	position: relative;
	z-index: 1;
}

.so-home-gallery {
	display: grid;
	grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr);
	grid-template-areas: "thumbs main";
	gap: 18px;
	padding: 18px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(247, 245, 240, .7));
	box-shadow: 0 28px 78px rgba(38, 43, 42, .14);
	backdrop-filter: blur(10px);
}

.so-home-gallery__main,
.so-home-gallery__thumbs button {
	position: relative;
	overflow: hidden;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: #111;
	cursor: pointer;
}

.so-home-gallery__main {
	grid-area: main;
	height: 100%;
	min-height: 0;
	box-shadow: 0 24px 64px rgba(38, 43, 42, .14);
}

.so-home-gallery__main img,
.so-home-gallery__thumbs img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .35s ease, opacity .24s ease;
}

.so-home-gallery__main img.is-changing,
.so-home-lightbox img.is-changing {
	opacity: 0;
}

.so-home-gallery__main:hover img,
.so-home-gallery__thumbs button:hover img {
	transform: scale(1.035);
}

.so-home-gallery__main span {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	display: inline-flex;
	width: fit-content;
	max-width: calc(100% - 36px);
	padding: 12px 16px;
	border-radius: 8px;
	background: rgba(22, 27, 25, .72);
	color: #fff;
	font-weight: 800;
	backdrop-filter: blur(8px);
}

.so-home-gallery__thumbs {
	grid-area: thumbs;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-content: stretch;
	gap: 12px;
}

.so-home-gallery__thumbs button {
	aspect-ratio: 1 / 1;
	border: 2px solid transparent;
	box-shadow: 0 14px 32px rgba(38, 43, 42, .08);
}

.so-home-gallery__thumbs button.is-active {
	border-color: var(--so-wood);
}

.so-home-gallery__thumbs button::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(22, 27, 25, .12);
	transition: background .2s ease;
}

.so-home-gallery__thumbs button:hover::after,
.so-home-gallery__thumbs button.is-active::after {
	background: rgba(22, 27, 25, 0);
}

.so-home-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(14, 18, 17, .92);
}

.so-home-lightbox.is-open {
	display: flex;
}

.so-home-lightbox__stage {
	position: relative;
	width: min(1180px, 100%);
	height: min(780px, calc(100vh - 48px));
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 54px 78px;
}

.so-home-lightbox img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
	transition: opacity .22s ease, transform .22s ease;
}

.so-home-lightbox__caption {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 10px 14px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .92);
	color: var(--so-text);
	font-weight: 800;
}

.so-home-lightbox button {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	color: var(--so-green-dark);
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}

.so-home-lightbox button:hover {
	background: #fff;
}

.so-home-lightbox__close {
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	font-size: 26px;
}

.so-home-lightbox__prev,
.so-home-lightbox__next {
	top: 50%;
	width: 48px;
	height: 48px;
	font-size: 28px;
	transform: translateY(-50%);
}

.so-home-lightbox__prev:hover,
.so-home-lightbox__next:hover {
	transform: translateY(-50%);
}

.so-home-lightbox__prev {
	left: 18px;
}

.so-home-lightbox__next {
	right: 18px;
}

.so-home-lightbox-open {
	overflow: hidden;
}

.so-terrace {
	background: linear-gradient(135deg, rgba(180, 138, 90, .18), rgba(79, 111, 95, .13));
}

.so-mini-cards {
	display: grid;
	gap: 12px;
}

.so-mini-cards a {
	padding: 24px;
	font-size: 20px;
	font-weight: 800;
}

.so-final-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(247, 245, 240, .98), rgba(247, 245, 240, .82) 42%, rgba(247, 245, 240, .72)),
		url("../images/cta/final-cta-bg.png") center/cover no-repeat;
}

.so-final-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .2) 58%, rgba(79, 111, 95, .18)),
		radial-gradient(circle at 16% 22%, rgba(180, 138, 90, .18), transparent 30%);
	pointer-events: none;
}

.so-final-section .so-container {
	position: relative;
	z-index: 1;
}

.so-final-cta {
	width: min(900px, 100%);
	max-width: none;
	padding: clamp(30px, 5vw, 58px);
	border: 1px solid rgba(79, 111, 95, .16);
	border-radius: 8px;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 28px 78px rgba(38, 43, 42, .14);
	text-align: center;
	backdrop-filter: blur(10px);
}

.so-final-cta h2 {
	color: var(--so-green-dark);
}

.so-final-cta p {
	max-width: 560px;
	margin: 18px auto 0;
	font-size: 18px;
	line-height: 1.62;
	color: rgba(55, 63, 61, .82);
}

.so-final-cta .so-actions {
	margin-top: 28px;
	justify-content: center;
}

.so-inner {
	padding: 46px 0 70px;
}

.so-content {
	background: var(--so-panel);
	border: 1px solid var(--so-line);
	border-radius: 8px;
	padding: 34px;
}

.so-content h1,
.so-content h2,
.so-content h3,
.so-content h4 {
	color: var(--so-text);
	line-height: 1.16;
}

.so-content h1 {
	font-size: 34px;
	margin-top: 0;
}

.landing-service h1 {
	margin: 0 0 20px;
	font-size: 42px;
	line-height: 1.08;
	color: var(--so-text);
}

.landing-service h2 {
	margin: 0 0 14px;
	font-size: 24px;
}

.landing-service__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 32px 0;
}

.landing-service__grid > div,
.landing-cta {
	padding: 24px;
	border: 1px solid var(--so-line);
	border-radius: 8px;
	background: var(--so-bg);
}

.landing-service ul {
	margin: 0;
	padding-left: 20px;
	color: var(--so-soft);
}

.landing-service li + li {
	margin-top: 8px;
}

.landing-cta {
	background: linear-gradient(135deg, rgba(79, 111, 95, .14), rgba(180, 138, 90, .14));
}

.landing-cta p {
	color: var(--so-soft);
}

.so-content:has(.outdoor-landing) {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-inner:has(.outdoor-landing) {
	padding: 0;
}

.so-inner > .so-container:has(.outdoor-landing) {
	width: 100%;
	max-width: none;
}

.so-content:has(.outdoor-landing) .story > .box_in > .title {
	display: none;
}

.so-content:has(.outdoor-landing) .story > .box_in {
	padding: 0;
}

.outdoor-landing {
	display: grid;
	gap: 0;
}

.outdoor-hero {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	border-radius: 0;
	background: var(--so-green-dark);
	color: #fff;
}

.outdoor-hero__slide {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	align-items: end;
	padding: clamp(34px, 5vw, 64px);
	background-position: center;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: scale(1.025);
	transition: opacity .75s ease, transform 1.1s ease, visibility 0s linear .75s;
}

.outdoor-hero__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(12, 18, 16, .88), rgba(12, 18, 16, .56) 48%, rgba(12, 18, 16, .18)),
		linear-gradient(0deg, rgba(12, 18, 16, .52), rgba(12, 18, 16, 0) 48%);
}

.outdoor-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: scale(1);
	transition-delay: 0s;
}

.outdoor-hero__content {
	position: relative;
	z-index: 1;
	width: min(1160px, calc(100% - 32px));
	max-width: 680px;
	margin: 0 auto;
}

.outdoor-hero__content h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(36px, 5vw, 62px);
	line-height: 1.02;
	font-weight: 900;
}

.outdoor-hero__content p:not(.so-eyebrow) {
	max-width: 620px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, .9);
	font-size: 19px;
	line-height: 1.55;
	text-shadow: 0 12px 34px rgba(0, 0, 0, .35);
}

.outdoor-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 680px;
	margin-top: 26px;
}

.outdoor-hero__stats span {
	padding: 13px 14px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 8px;
	background: rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .92);
	font-weight: 800;
	backdrop-filter: blur(8px);
}

.outdoor-hero__nav {
	position: absolute;
	z-index: 2;
	right: clamp(22px, 4vw, 52px);
	bottom: clamp(22px, 4vw, 52px);
	display: flex;
	align-items: center;
	gap: 12px;
}

.outdoor-slider-btn {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, .36);
	border-radius: 999px;
	background: rgba(255, 255, 255, .16);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: background .2s ease, border-color .2s ease;
}

.outdoor-slider-btn:hover {
	border-color: rgba(255, 255, 255, .7);
	background: rgba(255, 255, 255, .24);
}

.outdoor-slider-dots {
	display: flex;
	gap: 7px;
}

.outdoor-slider-dots button {
	width: 26px;
	height: 4px;
	padding: 0;
	border: 0;
	border-radius: 99px;
	background: rgba(255, 255, 255, .42);
	cursor: pointer;
	transition: width .25s ease, background .25s ease;
}

.outdoor-slider-dots button.is-active {
	width: 44px;
	background: var(--so-wood);
}

.outdoor-section {
	padding: 78px 0;
}

.outdoor-section__inner {
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
}

.outdoor-section--muted {
	background:
		linear-gradient(135deg, rgba(247, 245, 240, 1), rgba(255, 255, 255, .94)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.outdoor-section--visual {
	background: linear-gradient(135deg, rgba(36, 54, 45, .96), rgba(79, 111, 95, .92));
}

.outdoor-section--cta {
	padding-top: 0;
}

.outdoor-head {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.outdoor-head h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.08;
}

.outdoor-head p {
	margin: 16px 0 0;
	color: var(--so-soft);
	font-size: 18px;
	line-height: 1.6;
}

.outdoor-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.outdoor-card {
	position: relative;
	overflow: hidden;
	min-height: 220px;
	padding: 24px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 18px 46px rgba(38, 43, 42, .08);
}

.outdoor-card i {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--so-green), var(--so-green-dark));
	color: #fff;
	font-size: 21px;
}

.outdoor-card h3 {
	margin: 0 0 10px;
	color: var(--so-green-dark);
	font-size: 21px;
	line-height: 1.2;
}

.outdoor-card p {
	margin: 0;
	color: var(--so-soft);
	line-height: 1.55;
}

.outdoor-split {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 34px;
	align-items: center;
}

.outdoor-panel {
	padding: clamp(28px, 4vw, 48px);
	border-radius: 8px;
	background: var(--so-green-dark);
	color: #fff;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .14);
}

.outdoor-photo-card {
	overflow: hidden;
	min-height: 440px;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .14);
	background: #111;
}

.outdoor-photo-card img {
	width: 100%;
	height: 100%;
	min-height: 440px;
	display: block;
	object-fit: cover;
}

.outdoor-text-panel {
	padding: clamp(28px, 4vw, 48px);
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

.outdoor-text-panel h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.08;
}

.outdoor-text-panel p {
	margin: 18px 0 0;
	color: var(--so-soft);
	font-size: 18px;
	line-height: 1.62;
}

.outdoor-mini-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 24px;
}

.outdoor-mini-grid span {
	padding: 13px 14px;
	border-radius: 8px;
	background: rgba(79, 111, 95, .09);
	color: var(--so-green-dark);
	font-weight: 800;
}

.outdoor-panel h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.08;
}

.outdoor-panel p,
.outdoor-panel li {
	color: rgba(255, 255, 255, .84);
}

.outdoor-checks {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.outdoor-checks li {
	position: relative;
	padding-left: 30px;
	line-height: 1.5;
}

.outdoor-checks li::before {
	content: "\f00c";
	position: absolute;
	left: 0;
	top: 1px;
	font-family: FontAwesome;
	color: #f0c879;
}

.outdoor-use-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.outdoor-use {
	padding: 24px;
	border-left: 4px solid var(--so-wood);
	border-radius: 8px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 16px 40px rgba(38, 43, 42, .08);
}

.outdoor-use h3 {
	margin: 0 0 8px;
	color: var(--so-green-dark);
	font-size: 22px;
}

.outdoor-use p {
	margin: 0;
	color: var(--so-soft);
	line-height: 1.55;
}

.outdoor-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.outdoor-process div {
	padding: 24px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 46px rgba(38, 43, 42, .08);
}

.outdoor-process b {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--so-wood), #d0a060);
	color: #fff;
	font-size: 18px;
}

.outdoor-process h3 {
	margin: 0 0 8px;
	color: var(--so-green-dark);
	font-size: 20px;
}

.outdoor-process p {
	margin: 0;
	color: var(--so-soft);
	line-height: 1.5;
}

.outdoor-faq {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.outdoor-faq div {
	padding: 24px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .86);
	border: 1px solid rgba(79, 111, 95, .12);
}

.outdoor-faq h3 {
	margin: 0 0 8px;
	color: var(--so-green-dark);
	font-size: 20px;
}

.outdoor-faq p {
	margin: 0;
	color: var(--so-soft);
	line-height: 1.55;
}

.outdoor-cta {
	padding: clamp(30px, 5vw, 58px);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .86)),
		url("../images/outdoor/outdoor-terrace.png") center/cover no-repeat;
	color: #fff;
	text-align: center;
	box-shadow: 0 28px 78px rgba(38, 43, 42, .14);
}

.outdoor-cta--electric {
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .84)),
		url("../images/electric/electric-living.png") center/cover no-repeat;
}

.outdoor-cta--awning {
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .84)),
		url("../images/awnings/awning-terrace.png") center/cover no-repeat;
}

.outdoor-cta h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 4vw, 46px);
}

.outdoor-cta p {
	max-width: 680px;
	margin: 16px auto 0;
	color: rgba(255, 255, 255, .86);
	font-size: 18px;
	line-height: 1.6;
}

.outdoor-cta .so-actions {
	justify-content: center;
	margin-top: 28px;
}

.so-content:has(.catalog-landing) {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-inner:has(.catalog-landing) {
	padding: 0;
}

.so-inner > .so-container:has(.catalog-landing) {
	width: 100%;
	max-width: none;
}

.so-inner > .so-container:has(.catalog-landing) > .speedbar {
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
}

.so-content:has(.catalog-landing) .content_left {
	width: 100%;
	float: none;
}

.so-content:has(.catalog-landing) .right_sidebar,
.so-content:has(.catalog-landing) .sidebar_widget,
.so-content:has(.catalog-landing) .hed {
	display: none;
}

.catalog-landing {
	display: grid;
	gap: 0;
}

.catalog-hero {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: end;
	background: var(--so-green-dark);
	color: #fff;
}

.catalog-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(12, 18, 16, .9), rgba(12, 18, 16, .58) 48%, rgba(12, 18, 16, .18)),
		linear-gradient(0deg, rgba(12, 18, 16, .52), rgba(12, 18, 16, 0) 50%),
		var(--catalog-hero-image, none) center/cover no-repeat;
}

.catalog-hero__inner {
	position: relative;
	z-index: 1;
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
	padding: clamp(42px, 6vw, 72px) 0;
}

.catalog-hero__content {
	max-width: 710px;
}

.catalog-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(36px, 5vw, 62px);
	line-height: 1.02;
	font-weight: 900;
}

.catalog-hero p:not(.so-eyebrow) {
	max-width: 640px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, .9);
	font-size: 19px;
	line-height: 1.58;
	text-shadow: 0 12px 34px rgba(0, 0, 0, .35);
}

.catalog-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.catalog-hero__badges span {
	padding: 11px 14px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 8px;
	background: rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .92);
	font-weight: 800;
	backdrop-filter: blur(8px);
}

.catalog-section {
	padding: 76px 0;
}

.catalog-section--muted {
	background:
		linear-gradient(135deg, rgba(247, 245, 240, 1), rgba(255, 255, 255, .94)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.catalog-section__inner {
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
}

.catalog-head {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.catalog-head h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.08;
}

.catalog-head p {
	margin: 16px 0 0;
	color: var(--so-soft);
	font-size: 18px;
	line-height: 1.6;
}

.catalog-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.catalog-card {
	min-height: 220px;
	padding: 24px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .84);
	box-shadow: 0 18px 46px rgba(38, 43, 42, .08);
}

.catalog-card i {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--so-green), var(--so-green-dark));
	color: #fff;
	font-size: 21px;
}

.catalog-card h3 {
	margin: 0 0 10px;
	color: var(--so-green-dark);
	font-size: 21px;
	line-height: 1.2;
}

.catalog-card p {
	margin: 0;
	color: var(--so-soft);
	line-height: 1.55;
}

.catalog-split {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 34px;
	align-items: center;
}

.catalog-panel {
	padding: clamp(28px, 4vw, 48px);
	border-radius: 8px;
	background: var(--so-green-dark);
	color: #fff;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .14);
}

.catalog-panel h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.08;
}

.catalog-panel p,
.catalog-panel li {
	color: rgba(255, 255, 255, .84);
}

.catalog-list {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.catalog-list li {
	position: relative;
	padding-left: 30px;
	line-height: 1.5;
}

.catalog-list li::before {
	content: "\f00c";
	position: absolute;
	left: 0;
	top: 1px;
	font-family: FontAwesome;
	color: #f0c879;
}

.catalog-photo {
	overflow: hidden;
	min-height: 440px;
	border-radius: 8px;
	background: #111;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .14);
}

.catalog-photo img {
	width: 100%;
	height: 100%;
	min-height: 440px;
	display: block;
	object-fit: cover;
}

.catalog-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.catalog-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(38, 43, 42, .08);
}

.catalog-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.catalog-process div {
	padding: 24px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 46px rgba(38, 43, 42, .08);
}

.catalog-process b {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--so-wood), #d0a060);
	color: #fff;
	font-size: 18px;
}

.catalog-process h3 {
	margin: 0 0 8px;
	color: var(--so-green-dark);
	font-size: 20px;
}

.catalog-process p {
	margin: 0;
	color: var(--so-soft);
	line-height: 1.5;
}

.catalog-cta {
	padding: clamp(30px, 5vw, 58px);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .84)),
		var(--catalog-hero-image, none) center/cover no-repeat;
	color: #fff;
	text-align: center;
	box-shadow: 0 28px 78px rgba(38, 43, 42, .14);
}

.catalog-cta h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 4vw, 46px);
}

.catalog-cta p {
	max-width: 680px;
	margin: 16px auto 0;
	color: rgba(255, 255, 255, .86);
	font-size: 18px;
	line-height: 1.6;
}

.catalog-cta .so-actions {
	justify-content: center;
	margin-top: 28px;
}

.so-content:has(.catalog-list-card) {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	border: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.catalog-list-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 18px 46px rgba(38, 43, 42, .08);
}

.catalog-list-card__image {
	display: block;
	overflow: hidden;
	background: #111;
}

.catalog-list-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	transition: transform .3s ease;
}

.catalog-list-card:hover .catalog-list-card__image img {
	transform: scale(1.035);
}

.catalog-list-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.catalog-list-card__title {
	color: var(--so-green-dark);
	font-size: 21px;
	font-weight: 900;
	line-height: 1.2;
}

.catalog-list-card__body p {
	margin: 12px 0 20px;
	color: var(--so-soft);
	line-height: 1.55;
}

.catalog-list-card__more {
	width: fit-content;
	margin-top: auto;
	padding: 11px 16px;
	border-radius: 999px;
	background: rgba(79, 111, 95, .1);
	color: var(--so-green-dark);
	font-weight: 900;
}

.catalog-list-card__more:hover {
	background: var(--so-green);
	color: #fff;
}

.so-content:has(.catalog-list-card) .clr {
	display: none;
}

.so-content:has(.catalog-list-card) .page_next-prev {
	grid-column: 1 / -1;
}

.so-content:has(.featured_section74) {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	border: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.so-content:has(.featured_section74) .one_third,
.so-content:has(.featured_section74) .one_third.last {
	width: auto;
	float: none;
	margin: 0;
}

.so-content:has(.featured_section74) .clr {
	display: none;
}

.featured_section74 {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 18px 46px rgba(38, 43, 42, .08);
}

.featured_section74 > a {
	display: block;
	overflow: hidden;
	background: #111;
}

.featured_section74 img {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	transition: transform .3s ease;
}

.featured_section74:hover img {
	transform: scale(1.035);
}

.featured_section74 span {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.featured_section74 h4 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: 21px;
	font-weight: 900;
	line-height: 1.2;
}

.featured_section74 p {
	margin: 12px 0 20px;
	color: var(--so-soft);
	line-height: 1.55;
}

.featured_section74 center {
	margin-top: auto;
	text-align: left;
}

.featured_section74 .button.four {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgba(79, 111, 95, .1);
	color: var(--so-green-dark);
	font-weight: 900;
	line-height: 1;
}

.featured_section74 .button.four:hover {
	background: var(--so-green);
	color: #fff;
}

.so-content:has(.featured_section74) .page_next-prev {
	grid-column: 1 / -1;
}

.works-page {
	display: grid;
	gap: 28px;
}

.works-page__hero {
	padding: 30px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(79, 111, 95, .13), rgba(180, 138, 90, .16));
}

.works-page__hero h1,
.works-page__hero h2 {
	margin: 0 0 14px;
	font-size: 42px;
	line-height: 1.08;
}

.works-page__hero p {
	max-width: 760px;
	margin: 0;
	color: var(--so-soft);
	font-size: 18px;
}

.works-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.works-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.works-filter {
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid var(--so-line);
	border-radius: 6px;
	background: #fff;
	color: var(--so-soft);
	font-weight: 800;
	cursor: pointer;
}

.works-filter:hover,
.works-filter.is-active {
	background: var(--so-green);
	border-color: var(--so-green);
	color: #fff;
}

.works-count {
	color: var(--so-soft);
	font-weight: 800;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.works-card {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 8px;
	overflow: hidden;
	background: var(--so-muted);
	cursor: pointer;
	aspect-ratio: 1 / 1;
}

.works-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease;
}

.works-card span {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	padding: 8px 10px;
	border-radius: 6px;
	background: rgba(38, 43, 42, .76);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-align: left;
}

.works-card:hover img {
	transform: scale(1.04);
}

.works-help {
	padding: 22px;
	border: 1px dashed rgba(79, 111, 95, .36);
	border-radius: 8px;
	background: rgba(255, 255, 255, .65);
	color: var(--so-soft);
}

.works-help code {
	color: var(--so-green-dark);
	font-weight: 800;
}

.works-status {
	color: #9b2c2c;
	font-weight: 800;
}

.works-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(22, 27, 25, .86);
}

.works-lightbox.is-open {
	display: flex;
}

.works-lightbox__body {
	position: relative;
	width: min(1100px, 100%);
	max-height: calc(100vh - 48px);
	display: grid;
	gap: 12px;
}

.works-lightbox img {
	max-height: calc(100vh - 110px);
	width: 100%;
	object-fit: contain;
	border-radius: 8px;
	background: #111;
}

.works-lightbox__caption {
	color: #fff;
	font-weight: 800;
}

.works-lightbox__close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--so-text);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.works-lightbox-open {
	overflow: hidden;
}

.so-content:has(.works-page) {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.works-page) .box,
.so-content:has(.works-page) .box_in,
.so-content:has(.works-page) .text,
.so-content:has(.works-page) .title {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.works-page) .title,
.so-content:has(.works-page) .box > h1:first-child,
.so-content:has(.works-page) .box > h2:first-child,
.so-content:has(.works-page) .box_in > h1:first-child,
.so-content:has(.works-page) .box_in > h2:first-child {
	display: none;
}

.so-inner:has(.works-page) {
	padding-top: 0;
}

.so-inner > .so-container:has(.works-page) {
	width: 100%;
	max-width: none;
}

.so-inner > .so-container:has(.works-page) > .speedbar {
	width: min(1160px, calc(100% - 32px));
	margin: 18px auto;
}

.works-page {
	display: block;
	margin: 0;
	background: #f7f5f0;
}

.works-page--simple {
	padding-top: 18px;
}

.works-page--simple .works-section:first-child {
	padding-top: 58px;
}

.works-page__hero {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	display: flex;
	align-items: flex-end;
	padding: 0;
	border-radius: 0;
	background:
		linear-gradient(90deg, rgba(12, 18, 16, .88), rgba(12, 18, 16, .5) 52%, rgba(12, 18, 16, .14)),
		url("/templates/abmnew/images/gallery/gallery-bg.png") center/cover no-repeat;
}

.works-page__hero-inner {
	position: relative;
	z-index: 1;
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
	padding: clamp(56px, 8vw, 96px) 0;
}

.works-page__hero h1,
.works-page__hero h2 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.03;
	font-weight: 900;
}

.works-page__hero p {
	max-width: 680px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, .86);
	font-size: 19px;
	line-height: 1.6;
	text-shadow: 0 12px 34px rgba(0, 0, 0, .36);
}

.works-page__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.works-page__stats span {
	padding: 11px 14px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 8px;
	background: rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .94);
	font-weight: 800;
	backdrop-filter: blur(8px);
}

.works-section {
	padding: 76px 0;
}

.works-section--muted {
	background:
		linear-gradient(135deg, rgba(247, 245, 240, 1), rgba(255, 255, 255, .94)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.works-section__inner {
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
}

.works-viewer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 22px;
	align-items: stretch;
}

.works-viewer__stage {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	border-radius: 8px;
	background: #202724;
	box-shadow: 0 28px 80px rgba(38, 43, 42, .15);
}

.works-viewer__stage img {
	width: 100%;
	height: 100%;
	min-height: 620px;
	display: block;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.018);
	transition: opacity .32s ease, transform .55s ease;
}

.works-viewer__stage img.is-loaded {
	opacity: 1;
	transform: scale(1);
}

.works-viewer__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	padding: 28px;
	background: linear-gradient(0deg, rgba(12, 18, 16, .78), rgba(12, 18, 16, 0));
	color: #fff;
}

.works-viewer__overlay h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(26px, 3vw, 38px);
}

.works-viewer__overlay p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, .82);
}

.works-viewer__controls,
.works-lightbox__controls {
	display: flex;
	gap: 10px;
}

.works-nav {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.works-nav:hover {
	background: var(--so-green);
	transform: translateY(-2px);
}

.works-viewer__side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.works-viewer__intro {
	padding: 24px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

.works-viewer__intro h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: 28px;
	line-height: 1.15;
}

.works-viewer__intro p {
	margin: 12px 0 0;
	color: var(--so-soft);
	line-height: 1.6;
}

.works-thumbs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-height: 420px;
	overflow: auto;
	padding-right: 4px;
}

.works-thumb {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 0;
	border: 3px solid transparent;
	border-radius: 8px;
	background: #fff;
	aspect-ratio: 1 / 1;
	cursor: pointer;
}

.works-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .25s ease;
}

.works-thumb:hover img {
	transform: scale(1.05);
}

.works-thumb.is-active {
	border-color: var(--so-green);
}

.works-grid-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.works-grid-head--intro {
	position: relative;
	align-items: center;
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(247, 245, 240, .9)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .08));
	box-shadow: 0 22px 52px rgba(38, 43, 42, .08);
}

.works-grid-head--intro::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 8% 8%, rgba(180, 138, 90, .14), transparent 30%),
		radial-gradient(circle at 92% 80%, rgba(79, 111, 95, .12), transparent 32%);
	pointer-events: none;
}

.works-grid-head--intro > * {
	position: relative;
	z-index: 1;
}

.works-grid-head--intro .works-count {
	padding: 12px 16px;
	border: 1px solid rgba(79, 111, 95, .16);
	border-radius: 999px;
	background: rgba(255, 255, 255, .74);
	box-shadow: 0 12px 28px rgba(38, 43, 42, .06);
}

.works-media-switch {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.works-media-block {
	scroll-margin-top: 130px;
	margin-top: 42px;
}

.works-media-block--videos {
	margin-top: 64px;
}

.works-media-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.works-media-head h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.08;
}

.works-media-head span {
	padding: 10px 14px;
	border: 1px solid rgba(79, 111, 95, .16);
	border-radius: 999px;
	background: rgba(255, 255, 255, .76);
	color: var(--so-green-dark);
	font-weight: 900;
	white-space: nowrap;
}

.works-media-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.works-media-card {
	position: relative;
	overflow: hidden;
	display: block;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(38, 43, 42, .09);
}

.works-media-card--photo {
	aspect-ratio: 4 / 3;
}

.works-media-card img,
.works-media-card video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease, filter .25s ease;
}

.works-media-card--video {
	aspect-ratio: 16 / 10;
	background: #17211d;
}

.works-media-card--video video {
	background: #17211d;
}

.works-media-card span {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	color: var(--so-green-dark);
	font-size: 13px;
	font-weight: 900;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease;
}

.works-media-card:hover img {
	filter: saturate(1.05);
	transform: scale(1.035);
}

.works-media-card:hover span {
	opacity: 1;
	transform: translateY(0);
}

.works-media-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 34px 88px;
	background: rgba(12, 18, 16, .92);
	backdrop-filter: blur(8px);
}

.works-media-lightbox.is-open {
	display: flex;
}

.works-media-lightbox__stage {
	position: relative;
	display: grid;
	gap: 14px;
	width: min(1180px, 100%);
	margin: 0;
}

.works-media-lightbox__stage img {
	display: block;
	width: 100%;
	max-height: calc(100vh - 150px);
	object-fit: contain;
	border-radius: 8px;
	background: rgba(255, 255, 255, .06);
	box-shadow: 0 26px 70px rgba(0, 0, 0, .38);
}

.works-media-lightbox__stage figcaption {
	color: rgba(255, 255, 255, .86);
	font-size: 15px;
	font-weight: 800;
	text-align: center;
}

.works-media-lightbox__close,
.works-media-lightbox__arrow {
	border: 1px solid rgba(255, 255, 255, .28);
	background: rgba(247, 245, 240, .92);
	color: var(--so-green-dark);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.works-media-lightbox__close:hover,
.works-media-lightbox__arrow:hover {
	border-color: rgba(180, 138, 90, .56);
	background: linear-gradient(135deg, #f0c879, #c69445);
	color: #17211d;
	transform: translateY(-2px);
}

.works-media-lightbox__close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
}

.works-media-lightbox__close::before,
.works-media-lightbox__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.works-media-lightbox__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.works-media-lightbox__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.works-media-lightbox__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 42px;
	line-height: 1;
}

.works-media-lightbox__arrow--prev {
	left: 24px;
}

.works-media-lightbox__arrow--next {
	right: 24px;
}

.works-grid-head h1,
.works-grid-head h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.08;
}

.works-grid-head p {
	max-width: 620px;
	margin: 12px 0 0;
	color: var(--so-soft);
	font-size: 18px;
	line-height: 1.55;
}

.works-count {
	white-space: nowrap;
	color: var(--so-green-dark);
	font-weight: 900;
}

.works-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.works-card {
	box-shadow: 0 16px 42px rgba(38, 43, 42, .08);
}

.works-card span {
	left: 12px;
	right: 12px;
	bottom: 12px;
	background: rgba(36, 54, 45, .82);
	text-align: center;
}

.works-lightbox {
	background: rgba(12, 18, 16, .92);
}

.works-lightbox__body {
	width: min(1180px, 100%);
}

.works-lightbox__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.works-lightbox__caption {
	color: #fff;
	font-weight: 800;
}

.works-lightbox__close {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
}

.works-lightbox img {
	max-height: calc(100vh - 150px);
}

.contacts-page {
	display: grid;
	gap: 28px;
}

.so-content:has(.contacts-page) {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.contacts-page) .box,
.so-content:has(.contacts-page) .box_in,
.so-content:has(.contacts-page) .text {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.contacts-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: clamp(34px, 5vw, 56px);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .78)),
		url("/templates/abmnew/images/cta/final-cta-bg.png") center/cover no-repeat;
	color: #fff;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .12);
}

.contacts-hero h1 {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.04;
	font-weight: 900;
}

.contacts-hero p:not(.so-eyebrow) {
	max-width: 680px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .86);
	font-size: 18px;
	line-height: 1.6;
}

.contacts-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 26px;
	align-items: start;
}

.contacts-main {
	display: grid;
	gap: 22px;
}

.contacts-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.contacts-card {
	min-height: 150px;
	display: grid;
	align-content: start;
	gap: 10px;
	padding: 24px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	color: var(--so-text);
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

a.contacts-card:hover {
	transform: translateY(-3px);
}

.contacts-card i {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(79, 111, 95, .1);
	color: var(--so-green-dark);
	font-size: 20px;
}

.contacts-card span {
	color: var(--so-soft);
	font-weight: 800;
}

.contacts-card b {
	color: var(--so-green-dark);
	font-size: 20px;
	line-height: 1.3;
}

.contacts-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 24px;
	align-items: center;
	padding: 28px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(247, 245, 240, 1), rgba(255, 255, 255, .96)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.contacts-panel h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(28px, 3vw, 38px);
}

.contacts-panel p:not(.so-eyebrow) {
	margin: 14px 0 0;
	color: var(--so-soft);
	font-size: 17px;
	line-height: 1.65;
}

.contacts-steps {
	display: grid;
	gap: 10px;
}

.contacts-steps div {
	display: grid;
	grid-template-columns: 38px 1fr;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .72);
}

.contacts-steps b {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--so-green);
	color: #fff;
}

.contacts-steps span {
	color: var(--so-text);
	font-weight: 800;
}

.contacts-map {
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

.contacts-map iframe {
	display: block;
	border: 0;
}

.contacts-sidebar {
	position: sticky;
	top: 18px;
	display: grid;
	gap: 16px;
}

.contacts-sidebar__box,
.contacts-sidebar__cta {
	padding: 24px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

.contacts-sidebar h2 {
	margin: 0 0 16px;
	color: var(--so-green-dark);
	font-size: 24px;
	line-height: 1.15;
}

.contacts-catalog {
	display: grid;
	gap: 8px;
}

.contacts-catalog a {
	position: relative;
	display: flex;
	width: 100%;
	box-sizing: border-box;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: rgba(79, 111, 95, .07);
	color: var(--so-text);
	font-weight: 800;
	transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.contacts-catalog a::after {
	content: "›";
	color: var(--so-green);
	font-size: 24px;
	line-height: 1;
}

.contacts-catalog a:hover {
	border-color: rgba(79, 111, 95, .22);
	background-color: rgba(79, 111, 95, .13);
	color: var(--so-green-dark);
	transform: translateX(4px);
}

.contacts-catalog a:hover::after {
	color: var(--so-green-dark);
}

.contacts-sidebar__cta {
	background:
		linear-gradient(150deg, rgba(36, 54, 45, .96), rgba(79, 111, 95, .9)),
		url("/templates/abmnew/images/gallery/gallery-bg.png") center/cover no-repeat;
	color: #fff;
}

.contacts-sidebar__cta h2 {
	color: #fff;
}

.contacts-sidebar__cta p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, .84);
	line-height: 1.55;
}

.actions-page {
	display: grid;
	gap: 28px;
}

.so-content:has(.actions-page) {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.actions-page) .box,
.so-content:has(.actions-page) .box_in,
.so-content:has(.actions-page) .text {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.actions-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: clamp(34px, 5vw, 56px);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .78)),
		url("/templates/abmnew/images/catalog/catalog-day-night.png") center/cover no-repeat;
	color: #fff;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .12);
}

.actions-hero h1 {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.04;
	font-weight: 900;
}

.actions-hero p:not(.so-eyebrow) {
	max-width: 660px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .86);
	font-size: 18px;
	line-height: 1.6;
}

.actions-main {
	display: grid;
	gap: 22px;
}

.actions-grid {
	display: grid;
	gap: 18px;
}

.action-card {
	display: grid;
	grid-template-columns: 330px minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

.action-card__image {
	position: relative;
	min-height: 330px;
	background: var(--so-green-dark);
}

.action-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.action-card__image span {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(36, 54, 45, .94), rgba(79, 111, 95, .88)),
		rgba(36, 54, 45, .9);
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(18px, 1.7vw, 24px);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: 0;
	text-align: center;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .26);
	box-shadow: 0 18px 38px rgba(12, 18, 16, .22);
	backdrop-filter: blur(8px);
}

.action-card__body {
	padding: clamp(26px, 4vw, 42px);
}

.action-card__body h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.12;
}

.action-card__body p:not(.so-eyebrow) {
	margin: 16px 0 0;
	color: var(--so-soft);
	font-size: 18px;
	line-height: 1.65;
}

.action-card__body ul {
	display: grid;
	gap: 9px;
	margin: 18px 0 24px;
	padding: 0;
	list-style: none;
}

.action-card__body li {
	position: relative;
	padding-left: 24px;
	color: var(--so-text);
	line-height: 1.5;
}

.action-card__body li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .6em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--so-green);
}

.actions-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(247, 245, 240, 1), rgba(255, 255, 255, .96)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.actions-callout h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(28px, 3vw, 38px);
}

.actions-callout p:not(.so-eyebrow) {
	margin: 12px 0 0;
	color: var(--so-soft);
	font-size: 17px;
	line-height: 1.6;
}

.actions-phones {
	display: grid;
	gap: 10px;
	min-width: 250px;
}

.actions-phones a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--so-green);
	color: #fff;
	font-weight: 900;
}

.articles-page {
	display: grid;
	gap: 28px;
}

.so-content:has(.articles-page) {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.articles-page) .box,
.so-content:has(.articles-page) .box_in,
.so-content:has(.articles-page) .text {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.articles-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	align-items: end;
	gap: 24px;
	padding: clamp(34px, 5vw, 58px);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .72)),
		url("/templates/abmnew/images/catalog/catalog-decorative.png") center/cover no-repeat;
	color: #fff;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .12);
}

.articles-hero h1 {
	max-width: 820px;
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.04;
	font-weight: 900;
}

.articles-hero p:not(.so-eyebrow) {
	max-width: 720px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .86);
	font-size: 18px;
	line-height: 1.6;
}

.articles-hero__meta {
	display: grid;
	justify-items: center;
	gap: 6px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 8px;
	background: rgba(255, 255, 255, .12);
	text-align: center;
	backdrop-filter: blur(8px);
}

.articles-hero__meta b {
	color: #fff;
	font-size: 58px;
	line-height: 1;
}

.articles-hero__meta span {
	color: rgba(255, 255, 255, .86);
	font-weight: 800;
}

.articles-section {
	padding: 18px 0 0;
}

.articles-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.articles-head h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(32px, 4vw, 46px);
}

.articles-head p:not(.so-eyebrow) {
	max-width: 760px;
	margin: 12px 0 0;
	color: var(--so-soft);
	font-size: 18px;
	line-height: 1.55;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.article-card a {
	height: 100%;
	min-height: 468px;
	display: grid;
	grid-template-rows: 210px 1fr;
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	color: var(--so-text);
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

.article-card__image {
	position: relative;
	overflow: hidden;
	margin: 0;
	background:
		linear-gradient(135deg, rgba(79, 111, 95, .18), rgba(180, 138, 90, .16)),
		var(--so-muted);
}

.article-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .3s ease;
}

.article-card__image span {
	position: absolute;
	left: 16px;
	top: 16px;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(79, 111, 95, .1);
	color: var(--so-green-dark);
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(38, 43, 42, .12);
}

.article-card__body {
	display: grid;
	grid-template-rows: minmax(50px, auto) minmax(78px, 1fr) auto;
	gap: 12px;
	padding: 22px;
}

.article-card h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: 21px;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article-card p {
	margin: 0;
	color: var(--so-soft);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article-card b {
	color: var(--so-green);
	font-weight: 900;
}

.article-card a:hover {
	transform: translateY(-4px);
	border-color: rgba(79, 111, 95, .28);
}

.article-card a:hover .article-card__image img {
	transform: scale(1.04);
}

.articles-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 30px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(247, 245, 240, 1), rgba(255, 255, 255, .96)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.articles-cta h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(28px, 3vw, 38px);
}

.articles-cta p:not(.so-eyebrow) {
	max-width: 720px;
	margin: 12px 0 0;
	color: var(--so-soft);
	font-size: 17px;
	line-height: 1.6;
}

.so-content:has(.article-detail) {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.article-detail) .box,
.so-content:has(.article-detail) .box_in,
.so-content:has(.article-detail) .text {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.article-detail) .title {
	margin: 0 0 28px;
	padding: clamp(34px, 5vw, 56px);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .78)),
		url("/templates/abmnew/images/catalog/catalog-roller-classic.png") center/cover no-repeat;
	color: #fff;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.08;
	font-weight: 900;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .12);
}

.article-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 28px;
	align-items: start;
}

.article-detail__content {
	padding: clamp(26px, 4vw, 44px);
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
	color: var(--so-text);
	font-size: 18px;
	line-height: 1.75;
}

.article-detail__content p {
	margin: 0 0 20px;
	color: var(--so-text);
}

.article-detail__content h2,
.article-detail__content h3,
.article-detail__content h4 {
	margin: 34px 0 14px;
	color: var(--so-green-dark);
	line-height: 1.2;
	font-weight: 900;
}

.article-detail__content h2 {
	font-size: 32px;
}

.article-detail__content h3 {
	font-size: 26px;
}

.article-detail__content a {
	color: var(--so-green);
	font-weight: 800;
}

.article-detail__content ul,
.article-detail__content ol {
	display: grid;
	gap: 10px;
	margin: 18px 0 24px;
	padding-left: 24px;
}

.article-detail__content li {
	color: var(--so-text);
	line-height: 1.6;
}

.article-detail__content img {
	max-width: 100%;
	height: auto !important;
	border: 0 !important;
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(38, 43, 42, .14) !important;
}

.article-detail__content p:has(img) {
	margin: 26px 0;
	text-align: center;
}

.article-sidebar {
	position: sticky;
	top: 18px;
	display: grid;
	gap: 16px;
}

.article-sidebar__box,
.article-sidebar__cta {
	padding: 24px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

.article-sidebar h2 {
	margin: 0 0 16px;
	color: var(--so-green-dark);
	font-size: 24px;
	line-height: 1.15;
}

.article-side-menu {
	display: grid;
	gap: 8px;
}

.article-side-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: rgba(79, 111, 95, .07);
	color: var(--so-text);
	font-weight: 800;
	line-height: 1.35;
}

.article-side-menu a::after {
	content: "›";
	flex: 0 0 auto;
	color: var(--so-green);
	font-size: 24px;
	line-height: 1;
}

.article-side-menu a:hover {
	border-color: rgba(79, 111, 95, .22);
	background-color: rgba(79, 111, 95, .13);
	color: var(--so-green-dark);
	transform: translateX(4px);
}

.article-sidebar__cta {
	background:
		linear-gradient(150deg, rgba(36, 54, 45, .96), rgba(79, 111, 95, .9)),
		url("/templates/abmnew/images/gallery/gallery-bg.png") center/cover no-repeat;
	color: #fff;
}

.article-sidebar__cta h2 {
	color: #fff;
}

.article-sidebar__cta p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, .84);
	line-height: 1.55;
}

.beznal-page {
	display: grid;
	gap: 28px;
}

.so-content:has(.beznal-page) {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.beznal-page) .box,
.so-content:has(.beznal-page) .box_in,
.so-content:has(.beznal-page) .text {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.beznal-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: clamp(34px, 5vw, 56px);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(36, 54, 45, .96), rgba(36, 54, 45, .72)),
		url("/templates/abmnew/images/electric/electric-office.png") center/cover no-repeat;
	color: #fff;
	box-shadow: 0 24px 70px rgba(38, 43, 42, .12);
}

.beznal-hero h1 {
	max-width: 780px;
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.04;
	font-weight: 900;
}

.beznal-hero p:not(.so-eyebrow) {
	max-width: 720px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .86);
	font-size: 18px;
	line-height: 1.6;
}

.beznal-main {
	display: grid;
	gap: 22px;
}

.beznal-offer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	align-items: stretch;
	padding: 28px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(247, 245, 240, 1), rgba(255, 255, 255, .96)),
		linear-gradient(90deg, rgba(79, 111, 95, .08), rgba(180, 138, 90, .1));
}

.beznal-offer h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.12;
}

.beznal-offer p:not(.so-eyebrow) {
	margin: 14px 0 0;
	color: var(--so-soft);
	font-size: 18px;
	line-height: 1.65;
}

.beznal-offer__image {
	overflow: hidden;
	min-height: 260px;
	border-radius: 8px;
	background: var(--so-green-dark);
}

.beznal-offer__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.beznal-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.beznal-card {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 24px;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

.beznal-card i {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(79, 111, 95, .1);
	color: var(--so-green-dark);
	font-size: 20px;
}

.beznal-card h3 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: 21px;
	line-height: 1.2;
}

.beznal-card p {
	margin: 0;
	color: var(--so-soft);
	line-height: 1.6;
}

.beznal-benefits {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 24px;
	align-items: start;
	padding: 28px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(38, 43, 42, .08);
}

.beznal-benefits h2 {
	margin: 0;
	color: var(--so-green-dark);
	font-size: clamp(30px, 3vw, 40px);
	line-height: 1.12;
}

.beznal-benefits p:not(.so-eyebrow) {
	margin: 14px 0 0;
	color: var(--so-soft);
	font-size: 17px;
	line-height: 1.65;
}

.beznal-benefits__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.beznal-benefits__list span {
	position: relative;
	padding: 14px 14px 14px 38px;
	border-radius: 8px;
	background: rgba(79, 111, 95, .08);
	color: var(--so-text);
	font-size: 15px;
	font-weight: 750;
	line-height: 1.42;
	overflow-wrap: anywhere;
}

.beznal-benefits__list span::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 19px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--so-green);
}

.content_left {
	width: calc(100% - 330px);
	float: left;
}

.right_sidebar {
	width: 290px;
	float: right;
}

.content_left img {
	height: auto;
	margin: 18px 0;
	border-radius: 8px;
}

.right_sidebar .sidebar_widget,
.clientsays_widget {
	background: #fff;
	border: 1px solid var(--so-line);
	border-radius: 8px;
	padding: 18px;
	margin-bottom: 18px;
}

.right_sidebar h4,
.sidebar_title h4 {
	margin: 0 0 12px;
	color: var(--so-green-dark);
}

.arrows_list1 {
	margin: 0;
	padding: 0;
	list-style: none;
}

.arrows_list1 li a {
	display: block;
	padding: 9px 0;
	border-bottom: 1px solid var(--so-line);
	color: var(--so-soft);
}

.arrows_list1 li a:hover {
	color: var(--so-green-dark);
}

.so-footer {
	background:
		linear-gradient(135deg, rgba(37, 50, 45, .98), rgba(27, 37, 34, .98)),
		radial-gradient(circle at 14% 10%, rgba(180, 138, 90, .28), transparent 36%);
	color: rgba(255, 255, 255, .78);
	padding: 58px 0 22px;
}

.so-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: 34px;
	align-items: start;
}

.so-footer__brandbox {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	max-width: 460px;
}

.so-footer__brandbox p {
	margin: 8px 0 20px;
	color: rgba(255, 255, 255, .76);
}

.so-footer__brandbox h3 {
	margin-bottom: 8px;
}

.so-footer__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	margin: 0;
}

.so-footer__logo:hover {
	transform: none;
}

.so-footer__logo img {
	width: 56px;
	height: auto;
}

.so-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 24px;
	text-align: center;
	border: 1px solid rgba(240, 200, 121, .62);
	border-radius: 999px;
	background: rgba(240, 200, 121, .1);
	color: #f7d69a;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.so-footer__cta:hover {
	background: #f0c879;
	border-color: #f0c879;
	color: #1f2a26;
	transform: translateY(-2px);
}

.so-footer h3 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 20px;
	line-height: 1.15;
}

.so-footer a {
	display: inline-block;
	margin: 7px 0;
	color: rgba(255, 255, 255, .82);
	transition: color .18s ease, transform .18s ease, background .18s ease;
}

.so-footer__grid > div:not(.so-footer__brand) a {
	display: block;
	width: fit-content;
}

.so-footer .so-social {
	margin-top: 12px;
}

.so-footer__grid > div:not(.so-footer__brand) .so-social a,
.so-footer .so-social__link {
	width: 42px;
	height: 42px;
	display: inline-flex;
	margin: 0;
	border-color: rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .08);
	color: #fff;
}

.so-footer .so-social__link:hover {
	border-color: #f0c879;
	background: rgba(240, 200, 121, .18);
	color: #ffd98f;
	transform: translateY(-2px);
}

.so-footer a.so-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	line-height: 46px;
	padding-top: 0;
	padding-bottom: 0;
	vertical-align: middle;
}

.so-footer a:hover {
	color: #fff;
	transform: translateX(3px);
}

.so-footer__logo:hover,
.so-footer__cta:hover,
.so-footer__bottom a:hover {
	transform: none;
}

.so-footer p {
	color: rgba(255, 255, 255, .72);
}

.so-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	font-size: 13px;
	color: rgba(255, 255, 255, .68);
}

.so-footer__bottom a {
	margin: 0;
	color: #f0c879;
	font-weight: 800;
}

.so-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.so-footer__credit::before {
	content: "";
	width: 26px;
	height: 1px;
	background: rgba(240, 200, 121, .42);
}

.so-footer__credit a {
	padding: 3px 8px;
	border: 1px solid rgba(240, 200, 121, .42);
	border-radius: 999px;
	background: rgba(240, 200, 121, .12);
	color: #ffd98f;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
}

.so-footer__credit a:hover {
	background: rgba(240, 200, 121, .2);
	border-color: rgba(240, 200, 121, .62);
	color: #ffe3a8;
}

.abm-request {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.abm-request.is-open {
	display: flex;
}

.abm-request__overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 26, 24, .72);
	backdrop-filter: blur(8px);
}

.abm-request__dialog {
	position: relative;
	z-index: 1;
	width: min(1180px, 100%);
	height: min(620px, calc(100vh - 40px));
	max-height: calc(100vh - 40px);
	display: grid;
	grid-template-columns: minmax(560px, 620px) minmax(340px, 560px);
	align-items: stretch;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.abm-request__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	cursor: pointer;
}

.abm-request__close::before,
.abm-request__close::after {
	content: "";
	position: absolute;
	left: 13px;
	top: 20px;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background: var(--so-green-dark);
}

.abm-request__close::before {
	transform: rotate(45deg);
}

.abm-request__close::after {
	transform: rotate(-45deg);
}

.abm-request__media {
	width: 100%;
	height: 100%;
	min-height: 0;
	display: flex;
	align-items: end;
	padding: 0;
	background-color: #eee7df;
	background-image: url("../images/request-modal-brand.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	color: #fff;
}

.abm-request__media div {
	display: none;
}

.abm-request__media span {
	display: inline-flex;
	margin-bottom: 10px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(240, 200, 121, .18);
	color: #f4d28d;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.abm-request__media p {
	margin: 0;
	color: rgba(255, 255, 255, .88);
	font-size: 18px;
	line-height: 1.45;
	text-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.abm-request__form {
	height: 100%;
	padding: 24px clamp(28px, 3vw, 42px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	overflow-y: hidden;
	color: var(--so-text);
}

.abm-request__kicker {
	width: fit-content;
	margin-bottom: 10px;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(79, 111, 95, .1);
	color: var(--so-green-dark);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.abm-request__form h2 {
	margin: 0 0 10px;
	color: var(--so-green-dark);
	font-size: clamp(28px, 3.2vw, 38px);
	line-height: 1.08;
	font-weight: 900;
}

.abm-request__form p {
	margin: 0 0 18px;
	color: var(--so-soft);
	font-size: 16px;
	line-height: 1.45;
}

.abm-request__form label {
	display: block;
	margin-bottom: 12px;
}

.abm-request__form label span {
	display: block;
	margin-bottom: 8px;
	color: var(--so-green-dark);
	font-size: 14px;
	font-weight: 900;
}

.abm-request__form input,
.abm-request__form textarea {
	width: 100%;
	padding: 0 14px;
	border: 1px solid rgba(79, 111, 95, .24);
	border-radius: 8px;
	background: #f7f5f0;
	color: var(--so-text);
	font-family: inherit;
	font-size: 16px;
	outline: none;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.abm-request__form input {
	height: 48px;
}

.abm-request__form textarea {
	min-height: 78px;
	padding-top: 12px;
	resize: vertical;
}

.abm-request__form input:focus,
.abm-request__form textarea:focus {
	border-color: var(--so-green);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(79, 111, 95, .14);
}

.abm-request__trap {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.abm-request__form button[type="submit"] {
	position: relative;
	align-self: stretch;
	width: 100%;
	height: 58px;
	min-height: 58px;
	flex: 0 0 58px;
	margin: 14px auto 0;
	overflow: hidden;
	border: 1px solid rgba(180, 138, 90, .4);
	border-radius: 999px;
	background: linear-gradient(135deg, #f0c879, #c69445);
	color: #1f2a26;
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
	box-shadow: 0 14px 30px rgba(180, 138, 90, .24);
}

.abm-request__form button[type="submit"]::before {
	content: "";
	position: absolute;
	inset: -2px auto -2px -45%;
	width: 38%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
	transform: skewX(-18deg);
	transition: left .55s ease;
}

.abm-request__form button[type="submit"]:hover {
	background: linear-gradient(135deg, #ffd88d, #d7a556);
	border-color: rgba(180, 138, 90, .55);
	color: #17211d;
	transform: translateY(-2px);
	box-shadow: none;
}

.abm-request__form button[type="submit"]:hover::before {
	left: 112%;
}

.abm-request__form.is-sending button[type="submit"] {
	opacity: .72;
	pointer-events: none;
}

.abm-request__message {
	min-height: 22px;
	margin-top: 15px;
	color: var(--so-green-dark);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
}

.abm-request__message.is-error {
	color: #9b2c2c;
}

.abm-request-lock {
	overflow: hidden;
}

@media (max-width: 1100px) {
	.so-nav {
		overflow-x: auto;
	}

	.so-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.so-benefits,
	.so-gallery-preview {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.so-b2b {
		grid-template-columns: 1fr;
	}

	.outdoor-card-grid,
	.outdoor-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.catalog-card-grid,
	.catalog-process,
	.catalog-gallery,
	.so-content:has(.catalog-list-card),
	.so-content:has(.featured_section74) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.so-topbar__inner,
	.so-contactline {
		justify-content: flex-start;
	}

	.so-topbar__inner {
		flex-wrap: wrap;
		padding: 14px 0;
	}

	.so-brand {
		min-width: 0;
		width: 100%;
	}

	.so-contactline {
		font-size: 16px;
		justify-content: flex-start;
	}

	.so-split,
	.so-accent__grid,
	.outdoor-split,
	.catalog-split,
	.so-footer__grid {
		grid-template-columns: 1fr;
	}

	.so-home-gallery {
		grid-template-columns: 1fr;
		grid-template-areas:
			"main"
			"thumbs";
	}

	.so-home-gallery__main {
		aspect-ratio: 16 / 9;
		height: auto;
		min-height: 360px;
	}

	.so-home-gallery__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.abm-request__dialog {
		grid-template-columns: 1fr;
		height: auto;
		overflow: auto;
	}

	.abm-request__media {
		min-height: 220px;
		aspect-ratio: 16 / 10;
	}

	.so-hero-slider,
	.so-hero-slide__inner,
	.so-hero-slider__nav {
		min-height: 620px;
	}

	.so-hero-slide::before {
		background:
			radial-gradient(circle at 22% 58%, rgba(21, 31, 27, .72) 0%, rgba(21, 31, 27, .5) 38%, rgba(21, 31, 27, 0) 70%),
			linear-gradient(90deg, rgba(12, 18, 16, .92) 0%, rgba(12, 18, 16, .74) 58%, rgba(12, 18, 16, .34) 100%),
			linear-gradient(0deg, rgba(12, 18, 16, .28), rgba(12, 18, 16, .24));
	}

	.so-hero h1 {
		font-size: 38px;
	}

	.so-hero__content {
		max-width: 680px;
	}

	.so-catalog-grid,
	.so-steps,
	.so-benefits,
	.outdoor-card-grid,
	.outdoor-process,
	.works-grid,
	.works-media-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.works-viewer {
		grid-template-columns: 1fr;
	}

	.contacts-layout,
	.contacts-panel,
	.article-detail,
	.action-card,
	.actions-callout,
	.articles-hero,
	.articles-cta {
		grid-template-columns: 1fr;
	}

	.actions-callout,
	.articles-cta {
		display: grid;
	}

	.articles-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.beznal-offer,
	.beznal-card-grid,
	.beznal-benefits {
		grid-template-columns: 1fr;
	}

	.contacts-sidebar {
		position: static;
	}

	.article-sidebar {
		position: static;
	}

	.works-viewer__stage,
	.works-viewer__stage img {
		min-height: 520px;
	}

	.works-thumbs {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		max-height: none;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.landing-service__grid {
		grid-template-columns: 1fr;
	}

	.outdoor-hero__slide {
		padding-bottom: 100px;
	}

	.outdoor-hero__nav {
		left: 28px;
		right: 28px;
		justify-content: center;
	}

	.content_left,
	.right_sidebar {
		width: 100%;
		float: none;
	}
}

@media (max-width: 620px) {
	.so-container {
		width: min(100% - 20px, 1160px);
	}

	.so-brand {
		width: 100%;
	}

	.so-brand__icon {
		width: 54px;
		min-width: 54px;
		height: 60px;
	}

	.so-brand__name {
		font-size: 21px;
		letter-spacing: 2.7px;
	}

	.so-brand__tagline {
		font-size: 8.5px;
		letter-spacing: 1.7px;
	}

	.so-contactline {
		display: grid;
		gap: 6px;
		width: 100%;
	}

	.so-header__actions {
		width: 100%;
		flex-wrap: wrap;
	}

	.so-header__cta {
		flex: 1 1 220px;
	}

	.so-section {
		padding: 48px 0;
	}

	.so-hero {
		padding: 0;
	}

	.so-hero-slider,
	.so-hero-slide__inner,
	.so-hero-slider__nav {
		min-height: 600px;
	}

	.so-hero-slide__inner {
		align-items: end;
		padding: 92px 0 118px;
	}

	.so-hero__content {
		padding: 0 0 0 18px;
	}

	.so-hero h1 {
		font-size: 32px;
	}

	.so-hero-slide .so-btn {
		width: 100%;
		min-height: 50px;
	}

	.so-section h2,
	.so-final-cta h2 {
		font-size: 30px;
	}

	.so-feature-grid,
	.so-catalog-grid,
	.so-steps,
	.so-benefits,
	.so-b2b__points,
	.outdoor-card-grid,
	.outdoor-mini-grid,
	.outdoor-use-grid,
	.outdoor-process,
	.outdoor-faq,
	.catalog-card-grid,
	.catalog-process,
	.catalog-gallery,
		.so-content:has(.catalog-list-card),
		.so-content:has(.featured_section74),
		.so-home-gallery__thumbs,
		.so-gallery-preview,
		.works-grid,
		.works-media-grid {
		grid-template-columns: 1fr;
	}

	.so-b2b__content {
		padding: 24px;
	}

	.so-b2b__visual,
	.so-b2b__visual img {
		min-height: 300px;
	}

	.so-b2b__note {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.works-section {
		padding: 48px 0;
	}

	.works-media-switch .so-btn {
		width: 100%;
	}

	.works-media-lightbox {
		padding: 62px 14px 26px;
	}

	.works-media-lightbox__arrow {
		top: auto;
		bottom: 18px;
		width: 48px;
		height: 48px;
		font-size: 34px;
	}

	.works-media-lightbox__arrow--prev {
		left: calc(50% - 60px);
	}

	.works-media-lightbox__arrow--next {
		right: calc(50% - 60px);
	}

	.works-media-lightbox__close {
		top: 12px;
		right: 12px;
	}

	.works-page__hero {
		min-height: 560px;
	}

	.works-viewer__stage,
	.works-viewer__stage img {
		min-height: 420px;
	}

	.works-viewer__overlay,
	.works-grid-head,
	.works-media-head {
		display: grid;
	}

	.works-media-switch {
		justify-content: flex-start;
	}

	.works-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.contacts-hero,
	.actions-hero,
	.beznal-hero,
	.contacts-card-grid,
	.articles-grid,
	.contacts-layout,
	.contacts-panel,
	.article-detail,
	.beznal-card-grid,
	.beznal-benefits,
	.beznal-benefits__list,
	.beznal-offer,
	.action-card {
		grid-template-columns: 1fr;
	}

	.article-detail__content {
		padding: 24px;
		font-size: 17px;
	}

	.contacts-hero,
	.actions-hero,
	.beznal-hero {
		display: grid;
		align-items: start;
		padding: 28px;
	}

	.action-card__image {
		min-height: 260px;
	}

	.outdoor-section {
		padding: 48px 0;
	}

	.outdoor-hero {
		min-height: 620px;
	}

	.outdoor-hero__slide {
		padding: 28px 28px 100px;
	}

	.outdoor-photo-card,
	.outdoor-photo-card img {
		min-height: 280px;
	}

	.catalog-section {
		padding: 48px 0;
	}

	.catalog-hero {
		min-height: 600px;
	}

	.catalog-photo,
	.catalog-photo img {
		min-height: 280px;
	}

	.outdoor-hero__stats {
		grid-template-columns: 1fr;
	}

	.outdoor-hero__nav {
		left: 28px;
		right: auto;
	}

	.so-home-gallery__main {
		min-height: 280px;
	}

	.so-final-section {
		background-position: 62% center;
	}

	.so-final-cta .so-actions {
		justify-content: stretch;
	}

	.so-final-cta .so-btn {
		width: 100%;
	}

	.so-home-lightbox {
		padding: 14px;
	}

	.so-home-lightbox__caption {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.so-slider-btn {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}

	.so-slider-dots button {
		width: 28px;
	}

	.so-slider-dots button.is-active {
		width: 42px;
	}

	.works-page__hero {
		padding: 22px;
	}

	.works-page__hero h1,
	.works-page__hero h2 {
		font-size: 32px;
	}

	.so-section__head--row,
	.so-footer__bottom {
		display: grid;
	}

	.so-footer__brandbox {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 14px;
	}

	.so-footer__logo {
		width: 64px;
		height: 64px;
	}

	.so-footer__logo img {
		width: 50px;
	}

	.so-footer__credit {
		white-space: normal;
	}

	.abm-request {
		padding: 12px;
	}

	.abm-request__media {
		display: none;
	}

	.abm-request__form {
		padding: 34px 22px 24px;
	}

	.abm-request__close {
		top: 10px;
		right: 10px;
	}

	.so-content,
	.so-final-cta {
		padding: 22px;
	}
}

/* Mobile navigation */
.so-mobile-menu-toggle,
.so-mobile-menu {
	display: none;
}

@media (max-width: 900px) {
	html,
	body,
	.so-page,
	.so-main,
	.so-inner,
	.so-content {
		max-width: 100%;
		min-width: 0;
	}

	html,
	body {
		overflow-x: hidden;
	}

	.so-topbar__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 48px;
		gap: 10px 12px;
		padding: 10px 0 12px;
	}

	.so-brand {
		width: auto;
		min-width: 0;
		gap: 11px;
	}

	.so-brand__icon {
		width: 50px;
		min-width: 50px;
		height: 56px;
	}

	.so-brand__name {
		font-size: 20px;
		letter-spacing: 2.4px;
	}

	.so-brand__tagline {
		font-size: 8px;
		letter-spacing: 1.45px;
	}

	.so-mobile-menu-toggle {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		align-self: center;
		justify-self: end;
		width: 48px;
		height: 48px;
		padding: 0;
		border: 1px solid rgba(79, 111, 95, .2);
		border-radius: 50%;
		background: #fff;
		color: var(--so-green-dark);
		box-shadow: 0 8px 20px rgba(38, 43, 42, .1);
		cursor: pointer;
	}

	.so-mobile-menu-toggle span {
		position: absolute;
		width: 21px;
		height: 2px;
		border-radius: 2px;
		background: currentColor;
		transition: transform .2s ease, opacity .2s ease;
	}

	.so-mobile-menu-toggle span:nth-child(1) {
		transform: translateY(-7px);
	}

	.so-mobile-menu-toggle span:nth-child(3) {
		transform: translateY(7px);
	}

	.so-contactline {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		width: 100%;
		font-size: 13.5px;
		font-weight: 800;
	}

	.so-contactline a {
		justify-content: center;
		min-width: 0;
		min-height: 42px;
		padding: 0 8px;
		border: 1px solid rgba(79, 111, 95, .16);
		border-radius: 8px;
		background: rgba(255, 255, 255, .78);
		white-space: nowrap;
	}

	.so-header__actions,
	.so-menubar {
		display: none;
	}

	.so-mobile-menu {
		position: fixed;
		inset: 0;
		z-index: 1000;
		display: block;
		visibility: hidden;
		pointer-events: none;
	}

	.so-mobile-menu__overlay {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: rgba(20, 26, 24, .68);
		opacity: 0;
		backdrop-filter: blur(5px);
		transition: opacity .25s ease;
	}

	.so-mobile-menu__panel {
		position: absolute;
		top: 0;
		right: 0;
		width: min(92vw, 390px);
		height: 100vh;
		height: 100dvh;
		padding: 20px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: #f7f5f0;
		box-shadow: -24px 0 60px rgba(20, 26, 24, .24);
		transform: translateX(104%);
		transition: transform .28s ease;
	}

	.so-mobile-menu.is-open {
		visibility: visible;
		pointer-events: auto;
	}

	.so-mobile-menu.is-open .so-mobile-menu__overlay {
		opacity: 1;
	}

	.so-mobile-menu.is-open .so-mobile-menu__panel {
		transform: translateX(0);
	}

	html.so-mobile-menu-lock,
	body.so-mobile-menu-lock {
		overflow: hidden;
	}

	.so-mobile-menu__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 52px;
		margin-bottom: 12px;
		padding-bottom: 12px;
		border-bottom: 1px solid var(--so-line);
		color: var(--so-green-dark);
		font-family: "Montserrat Brand", "Montserrat", Arial, sans-serif;
		font-size: 23px;
		font-weight: 700;
	}

	.so-mobile-menu__close {
		position: relative;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 1px solid rgba(79, 111, 95, .18);
		border-radius: 50%;
		background: #fff;
		cursor: pointer;
	}

	.so-mobile-menu__close::before,
	.so-mobile-menu__close::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 19px;
		height: 2px;
		border-radius: 2px;
		background: var(--so-green-dark);
	}

	.so-mobile-menu__close::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.so-mobile-menu__close::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	.so-mobile-nav {
		display: grid;
		gap: 4px;
	}

	.so-mobile-nav > a,
	.so-mobile-nav summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 48px;
		padding: 0 14px;
		border-radius: 7px;
		color: var(--so-text);
		font-size: 16px;
		font-weight: 800;
		list-style: none;
		cursor: pointer;
		transition: background .18s ease, color .18s ease;
	}

	.so-mobile-nav > a:hover,
	.so-mobile-nav summary:hover,
	.so-mobile-nav details[open] > summary {
		background: rgba(79, 111, 95, .1);
		color: var(--so-green-dark);
	}

	.so-mobile-nav summary::-webkit-details-marker {
		display: none;
	}

	.so-mobile-nav summary::after {
		content: "\f107";
		font-family: FontAwesome;
		font-size: 18px;
		transition: transform .2s ease;
	}

	.so-mobile-nav details[open] > summary::after {
		transform: rotate(180deg);
	}

	.so-mobile-nav__submenu {
		display: grid;
		gap: 2px;
		padding: 5px 0 8px 12px;
	}

	.so-mobile-nav__submenu a {
		display: flex;
		align-items: center;
		min-height: 42px;
		padding: 8px 12px;
		border-left: 2px solid rgba(180, 138, 90, .42);
		color: var(--so-soft);
		font-size: 14px;
		font-weight: 700;
		line-height: 1.3;
	}

	.so-mobile-menu__actions {
		display: grid;
		gap: 12px;
		margin-top: 18px;
		padding-top: 18px;
		border-top: 1px solid var(--so-line);
	}

	.so-mobile-menu__request {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 54px;
		padding: 0 20px;
		border: 1px solid rgba(180, 138, 90, .42);
		border-radius: 999px;
		background: linear-gradient(135deg, #f0c879, #c69445);
		color: #1f2a26;
		font-size: 16px;
		font-weight: 900;
	}

	.so-mobile-menu__phones {
		display: grid;
		gap: 8px;
	}

	.so-mobile-menu__phones a {
		display: grid;
		grid-template-columns: 38px minmax(0, 1fr);
		align-items: center;
		min-height: 50px;
		border: 1px solid rgba(79, 111, 95, .16);
		border-radius: 8px;
		background: #fff;
		color: var(--so-green-dark);
		font-size: 16px;
		font-weight: 900;
	}

	.so-mobile-menu__phones i {
		text-align: center;
		color: var(--so-wood);
	}

	.so-mobile-menu__social {
		display: flex;
		gap: 10px;
	}

	.so-mobile-menu__social a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 46px;
		border-radius: 50%;
		background: var(--so-green-dark);
		color: #fff;
		font-size: 19px;
	}

	.so-content,
	.so-content * {
		min-width: 0;
	}

	.so-content img,
	.so-content video,
	.so-content iframe,
	.so-content canvas,
	.so-content svg {
		max-width: 100%;
	}

	.so-content img,
	.so-content video {
		height: auto;
	}

	.so-content iframe {
		width: 100%;
	}

	.so-content table {
		display: block;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.so-content pre,
	.so-content code {
		max-width: 100%;
		overflow-x: auto;
	}

	.so-content input,
	.so-content select,
	.so-content textarea,
	.so-content button {
		max-width: 100%;
	}

	.so-content h1,
	.so-content h2,
	.so-content h3,
	.so-content h4,
	.so-content p,
	.so-content a,
	.so-content li {
		overflow-wrap: anywhere;
	}
}

@media (max-width: 620px) {
	.so-inner {
		padding: 26px 0 48px;
	}

	.so-content:not(:has(.outdoor-landing)):not(:has(.catalog-landing)):not(:has(.works-page)):not(:has(.contacts-page)):not(:has(.actions-page)):not(:has(.articles-page)):not(:has(.article-detail)):not(:has(.beznal-page)) {
		padding: 18px;
	}

	.so-content h1 {
		font-size: clamp(28px, 9vw, 36px);
		line-height: 1.12;
	}

	.so-content h2 {
		font-size: clamp(24px, 7.5vw, 31px);
		line-height: 1.16;
	}

	.so-content h3 {
		font-size: clamp(20px, 6vw, 25px);
		line-height: 1.2;
	}

	.so-actions,
	.landing-actions,
	.outdoor-actions,
	.catalog-actions {
		align-items: stretch;
		width: 100%;
	}

	.so-actions .so-btn,
	.landing-actions .so-btn,
	.outdoor-actions .so-btn,
	.catalog-actions .so-btn {
		width: 100%;
		white-space: normal;
		text-align: center;
	}

	.contacts-hero,
	.actions-hero,
	.beznal-hero,
	.articles-hero,
	.article-detail__content,
	.actions-callout,
	.articles-cta {
		padding: 22px;
	}

	.contacts-hero h1,
	.actions-hero h1,
	.beznal-hero h1,
	.articles-hero h1,
	.outdoor-hero h1,
	.catalog-hero h1 {
		font-size: clamp(30px, 10vw, 40px);
		line-height: 1.08;
	}

	.outdoor-hero__slide,
	.catalog-hero__content {
		padding: 22px;
	}

	.outdoor-hero {
		min-height: clamp(700px, calc(1038px - 55vw), 840px);
	}

	.outdoor-hero__slide {
		padding: 22px 22px 96px;
	}

	.outdoor-hero__content {
		width: 100%;
		max-width: none;
		text-align: center;
	}

	.outdoor-hero__content p:not(.so-eyebrow) {
		margin-right: auto;
		margin-left: auto;
	}

	.outdoor-hero__content .so-actions {
		justify-content: center;
	}

	.outdoor-hero__stats {
		width: 100%;
		margin-top: 18px;
	}

	.outdoor-hero__stats span {
		text-align: center;
	}

	.outdoor-hero__nav,
	.catalog-hero__nav {
		left: 22px;
		right: 22px;
	}

	.outdoor-hero__nav {
		justify-content: center;
	}

	.so-footer__grid {
		gap: 30px;
		justify-items: center;
		text-align: center;
	}

	.so-footer__grid > div {
		width: 100%;
	}

	.so-footer__brandbox {
		grid-template-columns: 1fr;
		justify-items: center;
		margin: 0 auto;
	}

	.so-footer__grid > div:not(.so-footer__brand) a {
		margin-right: auto;
		margin-left: auto;
	}

	.so-footer .so-social {
		justify-content: center;
	}

	.so-footer__bottom {
		gap: 12px;
		justify-items: center;
		text-align: center;
	}

	.so-footer__bottom > span,
	.so-footer__credit {
		width: 100%;
		justify-self: center;
	}

	.so-footer__credit {
		justify-content: center;
	}

	.article-card a {
		height: auto;
		min-height: 0;
		grid-template-rows: 200px auto;
	}

	.article-card__body {
		grid-template-rows: auto;
	}

	.article-card h2,
	.article-card p {
		display: block;
		overflow: visible;
		-webkit-line-clamp: unset;
		-webkit-box-orient: initial;
	}
}

@media (max-width: 380px) {
	.so-topbar__inner {
		grid-template-columns: minmax(0, 1fr) 46px;
		gap: 8px;
	}

	.so-brand {
		gap: 8px;
	}

	.so-brand__icon {
		width: 44px;
		min-width: 44px;
		height: 50px;
	}

	.so-brand__name {
		font-size: 17px;
		letter-spacing: 1.7px;
	}

	.so-brand__tagline {
		font-size: 7px;
		letter-spacing: .9px;
	}

	.so-mobile-menu-toggle {
		width: 46px;
		height: 46px;
	}

	.so-contactline {
		font-size: 12px;
	}

	.so-contactline a {
		padding: 0 4px;
	}

	.so-mobile-menu__panel {
		width: 94vw;
		padding: 16px;
	}
}

/* Reviews page */
.so-content:has(.reviews-page) > .box.story {
	border: 0;
	background: transparent;
	box-shadow: none;
}

.so-content:has(.reviews-page) .box_in,
.so-content:has(.reviews-page) .box_in > .text {
	padding: 0;
}

.so-content:has(.reviews-page) .box_in > .title,
.so-content:has(.reviews-page) .box_in > .text + div {
	display: none;
}

.reviews-page {
	--reviews-ink: #15261f;
	--reviews-green: #1e6a4d;
	--reviews-soft: #eef7f1;
	--reviews-gold: #e3a529;
	color: var(--reviews-ink);
}

.reviews-hero {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
	gap: 42px;
	align-items: center;
	padding: clamp(38px, 6vw, 76px);
	border-radius: 32px;
	background:
		radial-gradient(circle at 92% 15%, rgba(255, 255, 255, .2), transparent 32%),
		linear-gradient(135deg, #163f31 0%, #287153 100%);
	color: #fff;
	box-shadow: 0 24px 60px rgba(20, 63, 47, .16);
}

.reviews-hero::after {
	content: "“";
	position: absolute;
	right: 38px;
	bottom: -96px;
	color: rgba(255, 255, 255, .08);
	font-family: Georgia, serif;
	font-size: 330px;
	line-height: 1;
}

.reviews-hero__content,
.reviews-hero__summary {
	position: relative;
	z-index: 1;
}

.reviews-hero .so-eyebrow {
	color: #bce8ce;
}

.reviews-hero h1 {
	max-width: 720px;
	margin: 10px 0 18px;
	color: #fff;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.02;
	letter-spacing: -.04em;
}

.reviews-hero__lead {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.65;
}

.reviews-hero__summary {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 24px;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(12px);
	text-align: center;
}

.reviews-hero__score {
	display: block;
	margin-bottom: 6px;
	font-size: 50px;
	font-weight: 800;
	line-height: 1;
}

.reviews-stars {
	color: var(--reviews-gold);
	font-size: 18px;
	letter-spacing: 3px;
}

.reviews-hero__summary p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .78);
}

.reviews-intro {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: end;
	padding: clamp(50px, 7vw, 86px) 0 30px;
}

.reviews-intro h2 {
	max-width: 720px;
	margin: 8px 0 0;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.12;
	letter-spacing: -.03em;
}

.reviews-intro p {
	max-width: 430px;
	margin: 0;
	color: #607069;
	font-size: 16px;
	line-height: 1.7;
}

.reviews-list {
	display: grid;
	gap: 28px;
	margin-top: clamp(36px, 6vw, 72px);
}

.review-card {
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid #dfe9e3;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 16px 45px rgba(25, 60, 46, .08);
}

.review-card__head {
	display: flex;
	align-items: center;
	gap: 16px;
}

.review-card__avatar {
	display: none;
}

.review-card__person {
	flex: 1;
	min-width: 0;
}

.review-card__person h3 {
	margin: 0 0 5px;
	font-size: 21px;
}

.review-card__verified {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6d7b75;
	font-size: 13px;
}

.review-card__verified::before {
	content: "✓";
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	border-radius: 50%;
	background: #dff3e7;
	color: var(--reviews-green);
	font-size: 11px;
	font-weight: 800;
}

.review-card blockquote {
	position: relative;
	max-width: 970px;
	margin: 26px 0 28px;
	padding: 0 0 0 28px;
	border-left: 3px solid #93c8aa;
	color: #34463f;
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.75;
}

.review-card__gallery,
.review-card .xfieldimagegallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.review-card .xfieldimagegallery {
	margin: 0;
	padding: 0;
	list-style: none;
}

.review-card .xfieldimagegallery li {
	margin: 0;
	padding: 0;
}

.review-card__gallery a,
.review-card .xfieldimagegallery a {
	position: relative;
	overflow: hidden;
	display: block;
	aspect-ratio: 16 / 10;
	border-radius: 17px;
	background: #e8eee9;
	cursor: zoom-in;
}

.review-card__gallery img,
.review-card .xfieldimagegallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.review-card__gallery a:hover img,
.review-card .xfieldimagegallery a:hover img {
	transform: scale(1.04);
}

.reviews-form-section {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
	gap: clamp(30px, 6vw, 80px);
	align-items: center;
	margin-top: clamp(54px, 8vw, 100px);
	padding: clamp(32px, 6vw, 70px);
	border-radius: 32px;
	background: var(--reviews-soft);
}

.reviews-form-section h2 {
	margin: 10px 0 18px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.08;
	letter-spacing: -.03em;
}

.reviews-form-section__lead {
	margin: 0;
	color: #5c7067;
	font-size: 17px;
	line-height: 1.7;
}

.reviews-form {
	display: grid;
	gap: 18px;
	padding: clamp(24px, 4vw, 38px);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(25, 60, 46, .1);
}

.reviews-form label {
	display: grid;
	gap: 8px;
}

.reviews-form label span {
	color: #263b32;
	font-size: 14px;
	font-weight: 750;
}

.reviews-form input,
.reviews-form textarea {
	width: 100%;
	border: 1px solid #cfddd5;
	border-radius: 13px;
	background: #fbfdfb;
	color: #172820;
	font: inherit;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.reviews-form input {
	height: 52px;
	padding: 0 16px;
}

.reviews-form textarea {
	min-height: 150px;
	padding: 15px 16px;
	resize: vertical;
	line-height: 1.6;
}

.reviews-form input:focus,
.reviews-form textarea:focus {
	border-color: #4b9573;
	box-shadow: 0 0 0 4px rgba(75, 149, 115, .13);
}

.reviews-form__trap {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.reviews-form__photos {
	display: grid;
	gap: 8px;
}

.reviews-form__photos > input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.reviews-form .reviews-form__upload {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 52px;
	padding: 10px 18px;
	border: 1px dashed #82aa96;
	border-radius: 13px;
	background: #f6faf7;
	color: var(--reviews-green);
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.reviews-form .reviews-form__upload:hover,
.reviews-form__photos > input[type="file"]:focus + .reviews-form__upload {
	border-color: var(--reviews-green);
	background: #edf6f0;
	transform: translateY(-1px);
}

.reviews-form__photos-note,
.reviews-form__photos-status {
	margin: 0;
	color: #6a7c73;
	font-size: 12px;
	line-height: 1.45;
}

.reviews-form__photos-status {
	min-height: 17px;
	color: var(--reviews-green);
	font-weight: 700;
}

.reviews-form__photos-status.is-error {
	color: #b43636;
}

.reviews-form button {
	min-height: 54px;
	border: 0;
	border-radius: 13px;
	background: var(--reviews-green);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}

.reviews-form button:hover {
	background: #17583f;
	transform: translateY(-1px);
}

.reviews-form button:disabled {
	cursor: wait;
	opacity: .68;
	transform: none;
}

.reviews-form__message {
	min-height: 22px;
	margin: 0;
	color: #4e6259;
	font-size: 14px;
	line-height: 1.5;
}

.reviews-form__message.is-success {
	color: #147044;
}

.reviews-form__message.is-error {
	color: #b43636;
}

.gallery-additions {
	display: grid;
	gap: 26px;
	margin-top: clamp(44px, 7vw, 90px);
}

.gallery-additions:not(:has(.gallery-entry)) {
	display: none;
}

.gallery-additions__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding: 0 4px;
}

.gallery-additions__head h2 {
	margin: 8px 0 0;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.08;
}

.gallery-additions__head > p {
	max-width: 440px;
	margin: 0;
	color: var(--so-soft);
	font-size: 16px;
	line-height: 1.65;
}

.gallery-additions__list {
	display: grid;
	gap: 28px;
}

.gallery-entry {
	display: grid;
	gap: 22px;
	padding: clamp(22px, 4vw, 38px);
	border: 1px solid rgba(79, 111, 95, .15);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 16px 44px rgba(25, 60, 46, .08);
}

.gallery-entry__head h3 {
	margin: 7px 0 0;
	color: #263b32;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
}

.gallery-entry__media {
	display: grid;
	gap: 18px;
	scroll-margin-top: 110px;
}

.gallery-entry__media-head h3 {
	margin: 6px 0 0;
	color: #263b32;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
}

.gallery-page-cta {
	margin-top: clamp(44px, 7vw, 90px);
}

.gallery-entry {
	display: block;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gallery-xfield-grid .xfieldimagegallery {
	display: contents;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gallery-xfield-grid .xfieldimagegallery li {
	min-width: 0;
	margin: 0;
	padding: 0;
}

.gallery-xfield-grid .xfieldimagegallery a {
	position: relative;
	overflow: hidden;
	display: block;
	height: 100%;
	border: 1px solid rgba(79, 111, 95, .14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(38, 43, 42, .09);
	aspect-ratio: 4 / 3;
}

.gallery-xfield-grid .xfieldimagegallery img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease, filter .25s ease;
}

.gallery-xfield-grid .xfieldimagegallery a:hover img {
	transform: scale(1.035);
	filter: brightness(.88);
}

.gallery-entry__photos .xfieldimagegallery {
	display: contents;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gallery-entry__photos .xfieldimagegallery li {
	min-width: 0;
	margin: 0;
	padding: 0;
}

.gallery-entry__photos .xfieldimagegallery a {
	display: block;
	height: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	aspect-ratio: 4 / 3;
}

.gallery-entry__photos .xfieldimagegallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.gallery-entry__photos .xfieldimagegallery a:hover img {
	transform: scale(1.04);
}

.gallery-entry__videos .dleplyrplayer {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: 100% !important;
	max-width: none !important;
}

.gallery-entry__videos video,
.gallery-entry__videos .plyr {
	width: 100%;
	max-width: 100%;
	border-radius: 15px;
	overflow: hidden;
	background: #17201c;
}

@media (max-width: 860px) {
	.reviews-hero,
	.reviews-form-section {
		grid-template-columns: 1fr;
	}

	.reviews-hero__summary {
		max-width: 320px;
		text-align: left;
	}

	.reviews-intro {
		display: block;
	}

	.reviews-intro p {
		margin-top: 18px;
	}

	.gallery-entry__photos .xfieldimagegallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.reviews-hero,
	.review-card,
	.reviews-form-section {
		border-radius: 22px;
	}

	.reviews-hero {
		padding: 32px 24px;
	}

	.review-card__head {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.review-card__head .reviews-stars {
		width: 100%;
		padding-left: 0;
	}

	.review-card blockquote {
		padding-left: 18px;
	}

	.review-card__gallery,
	.review-card .xfieldimagegallery {
		grid-template-columns: 1fr 1fr;
	}

	.review-card__gallery a:first-child,
	.review-card .xfieldimagegallery li:first-child {
		grid-column: 1 / -1;
	}

	.reviews-form-section {
		padding: 28px 18px;
	}

	.gallery-additions__head {
		display: grid;
		align-items: start;
	}

	.gallery-entry {
		border-radius: 20px;
	}

	.gallery-entry__photos .xfieldimagegallery,
	.gallery-entry__videos .dleplyrplayer {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

