/* ==========================================================================
   Lucawood — single stylesheet. Mobile first, no framework, no external fetch.
   ========================================================================== */

/* Latin: Lato. Cyrillic: Noto Sans, mapped onto the same family name so
   Bulgarian text keeps the same rhythm without a second font stack. */
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/lato-400-latin.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/lato-400-latin-ext.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/lato-700-latin.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/lato-700-latin-ext.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(../fonts/lato-900-latin.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(../fonts/lato-900-latin-ext.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url(../fonts/notosans-cyrillic.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* --------------------------------------------------------------- tokens -- */

:root {
	--lw-primary: #14344d;
	--lw-primary-dark: #0f2739;
	--lw-button: #1a4160;
	--lw-secondary: #d4e5f5;
	--lw-tertiary: #f0f5f7;
	--lw-hover: #3ea4e7;
	--lw-text: #2f302c;
	--lw-muted: #414141;
	--lw-bg: #ffffff;
	--lw-line: #e3e8ec;

	--lw-container: 1200px;
	--lw-gap: 1.5rem;
	--lw-radius: 10px;
	--lw-radius-shaped: 50px 10px 10px 50px;

	--lw-space-s: 1rem;
	--lw-space-m: 2.25rem;
	--lw-space-l: 3.375rem;
	--lw-space-xl: 5.0625rem;

	--lw-header-h: 84px;
}

/* ------------------------------------------------------------------ base -- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--lw-header-h) + 1rem);
}

body {
	margin: 0;
	background: var(--lw-bg);
	color: var(--lw-text);
	font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}

img,
svg,
iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--lw-hover);
}

h1,
h2,
h3 {
	margin: 0 0 0.5em;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1rem;
}

:focus-visible {
	outline: 3px solid var(--lw-hover);
	outline-offset: 2px;
}

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

.lw-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: 0.75rem 1rem;
	background: var(--lw-primary);
	color: #fff;
}

.lw-skip:focus {
	left: 0;
}

/* ---------------------------------------------------------------- layout -- */

.lw-container {
	width: 100%;
	max-width: var(--lw-container);
	margin-inline: auto;
	padding-inline: 1.125rem;
}

.lw-section {
	padding-block: var(--lw-space-l);
}

.lw-section--tight {
	padding-block: var(--lw-space-m);
}

.lw-main {
	display: block;
}

.lw-heading {
	font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3rem);
}

.lw-heading--page {
	margin-top: 0;
}

.lw-heading--product {
	font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.25rem);
}

.lw-lead {
	max-width: 60ch;
	font-size: 1.125rem;
	color: var(--lw-muted);
}

.lw-eyebrow {
	margin: 0 0 0.35rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.85rem;
	color: var(--lw-hover);
}

.lw-eyebrow--dark {
	color: var(--lw-primary);
}

.lw-prose {
	max-width: 74ch;
}

.lw-prose p {
	color: var(--lw-muted);
}

.lw-prose__lead {
	font-size: 1.125rem;
	color: var(--lw-primary) !important;
}

/* --------------------------------------------------------------- buttons -- */

/* `body` prefix keeps WooCommerce's `.woocommerce button { padding: 10px 20px }`
   from resizing the submit button, and `font: inherit` stops <button> falling
   back to the 13px UA default while <a> buttons sit at body size. */
body .lw-btn {
	display: inline-block;
	font: inherit;
	padding: 0.8rem 1.6rem;
	border: 2px solid var(--lw-button);
	border-radius: var(--lw-radius);
	background: var(--lw-button);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.2;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

/* Modifiers carry the same `body` prefix so they keep outranking the base rule. */
body .lw-btn:hover,
body .lw-btn:focus-visible {
	background: var(--lw-primary-dark);
	border-color: var(--lw-primary-dark);
	color: #fff;
}

body .lw-btn--ghost {
	background: rgba(26, 65, 96, 0.4);
	border-color: rgba(255, 255, 255, 0.7);
}

body .lw-btn--light {
	background: #fff;
	border-color: #fff;
	color: var(--lw-primary);
}

body .lw-btn--light:hover,
body .lw-btn--light:focus-visible {
	background: var(--lw-secondary);
	border-color: var(--lw-secondary);
	color: var(--lw-primary);
}

body .lw-btn--phone {
	padding: 0.55rem 1.1rem;
	font-size: 0.95rem;
	white-space: nowrap;
}

/* ---------------------------------------------------------------- header -- */

.lw-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--lw-line);
}

.lw-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--lw-header-h);
	padding-block: 0.75rem;
}

.lw-logo {
	flex: 0 0 auto;
	line-height: 0;
}

.lw-logo__img {
	width: 180px;
	height: auto;
}

.lw-burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 10px;
	border: 1px solid var(--lw-line);
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
}

.lw-burger__bar {
	display: block;
	height: 2px;
	background: var(--lw-primary);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.lw-burger[aria-expanded='true'] .lw-burger__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.lw-burger[aria-expanded='true'] .lw-burger__bar:nth-child(2) {
	opacity: 0;
}

.lw-burger[aria-expanded='true'] .lw-burger__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.lw-nav {
	position: fixed;
	inset: var(--lw-header-h) 0 auto 0;
	display: none;
	flex-direction: column;
	gap: 1rem;
	padding: 1.25rem 1.125rem 2rem;
	background: #fff;
	border-bottom: 1px solid var(--lw-line);
	box-shadow: 0 18px 40px rgba(20, 52, 77, 0.12);
	max-height: calc(100dvh - var(--lw-header-h));
	overflow-y: auto;
}

.lw-nav.is-open {
	display: flex;
}

.lw-menu,
.lw-submenu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lw-menu__item {
	position: relative;
	border-bottom: 1px solid var(--lw-line);
}

.lw-menu__link {
	display: block;
	padding: 0.85rem 2.5rem 0.85rem 0;
	font-size: 1.15rem;
	text-decoration: none;
}

.lw-menu__item.is-active > .lw-menu__link {
	color: var(--lw-hover);
}

.lw-menu__toggle {
	position: absolute;
	top: 0.5rem;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--lw-primary);
	cursor: pointer;
}

.lw-menu__toggle svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s ease;
}

.lw-menu__toggle[aria-expanded='true'] svg {
	transform: rotate(180deg);
}

.lw-submenu {
	display: none;
	padding: 0 0 0.6rem 0.9rem;
}

.lw-submenu.is-open {
	display: block;
}

.lw-submenu__link {
	display: block;
	padding: 0.5rem 0;
	color: var(--lw-muted);
	text-decoration: none;
}

.lw-header__aside {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
}

/* language switcher */

.lw-langs {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.lw-lang {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.5rem;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	opacity: 0.65;
}

.lw-lang.is-current {
	border-color: var(--lw-line);
	background: var(--lw-tertiary);
	opacity: 1;
}

.lw-lang:hover {
	opacity: 1;
}

.lw-flag {
	width: 24px;
	height: 16px;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
	object-fit: cover;
}

/* ------------------------------------------------------------------ hero -- */

.lw-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(78vh, 640px);
	background: #aaa7a6;
	overflow: hidden;
}

.lw-hero__media {
	position: absolute;
	inset: 0;
}

/* Extra class on the left: WooCommerce ships `.woocommerce img { height: auto }`,
   which outranks a single-class selector and would collapse the cover crop. */
.lw-hero .lw-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 38% 62%;
}

.lw-hero__inner {
	position: relative;
	padding-block: var(--lw-space-l);
	display: flex;
	justify-content: flex-end;
}

.lw-hero__card {
	width: 100%;
	max-width: 34rem;
	padding: var(--lw-space-m) var(--lw-space-m) var(--lw-space-m);
	border-radius: var(--lw-radius);
	background: rgba(20, 52, 77, 0.72);
	backdrop-filter: blur(2px);
	color: #fff;
}

.lw-hero__eyebrow {
	margin: 0 0 0.4rem;
	letter-spacing: 3px;
	text-transform: none;
	font-size: 1rem;
}

.lw-hero__title {
	margin: 0 0 0.6rem;
	font-size: clamp(1.75rem, 1.1rem + 3.1vw, 2.85rem);
	line-height: 1.2;
}

.lw-hero__subtitle {
	margin: 0 0 1.5rem;
	font-size: 1.15rem;
	line-height: 1.5;
}

.lw-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
}

/* On a phone the card would cover almost the whole photo, so the hero stacks:
   a band of the image, then the card overlapping its lower edge. */
@media (max-width: 779px) {
	.lw-hero {
		display: block;
		min-height: 0;
		background: #fff;
	}

	.lw-hero__media {
		position: relative;
		inset: auto;
		height: 240px;
	}

	.lw-hero .lw-hero__img {
		height: 240px;
		object-position: 50% 76%;
	}

	.lw-hero__inner {
		padding-block: 0 var(--lw-space-m);
	}

	.lw-hero__card {
		max-width: none;
		margin-top: -2.25rem;
		background: var(--lw-primary);
		backdrop-filter: none;
	}
}

/* -------------------------------------------------------------- services -- */

.lw-services__heading {
	margin: 0;
	font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.4rem);
	line-height: 1.2;
	font-weight: 900;
}

.lw-features {
	display: grid;
	gap: var(--lw-gap);
}

.lw-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	padding: 1.25rem;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	background: var(--lw-tertiary);
}

.lw-feature__icon {
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
}

.lw-feature__title {
	margin: 0 0 0.25rem;
}

.lw-feature__text {
	margin: 0;
	color: var(--lw-muted);
}

/* -------------------------------------------------- duo / split / shaped -- */

.lw-duo {
	display: grid;
	gap: var(--lw-gap);
	margin-top: var(--lw-space-m);
}

.lw-duo__img {
	width: 100%;
	border-radius: var(--lw-radius);
}

.lw-split {
	display: grid;
	gap: var(--lw-space-m);
	align-items: center;
}

.lw-split__text > :last-child {
	margin-bottom: 0;
}

.lw-split__text p {
	color: var(--lw-muted);
}

.lw-shaped img {
	width: 100%;
	border-radius: var(--lw-radius-shaped);
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: var(--lw-tertiary);
}

/* -------------------------------------------------------------- products -- */

.lw-products {
	display: flex;
	flex-direction: column;
}

.lw-product {
	padding-block: var(--lw-space-m);
	border-top: 1px solid var(--lw-line);
}

.lw-product:first-child {
	border-top: 0;
}

.lw-product__spec {
	color: var(--lw-primary) !important;
}

/* ----------------------------------------------------------------- video -- */

.lw-video {
	position: relative;
	aspect-ratio: 4 / 3;
	max-width: 900px;
	margin: var(--lw-space-m) auto 0;
	border-radius: var(--lw-radius);
	overflow: hidden;
	/* Local poster frame — the YouTube player itself is only fetched on click. */
	background: var(--lw-primary) url(../img/production-1200.webp) center / cover no-repeat;
}

.lw-video__btn {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	border: 0;
	background: linear-gradient(180deg, rgba(20, 52, 77, 0.25) 0%, rgba(20, 52, 77, 0.6) 100%);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease;
}

.lw-video__btn:hover {
	background: linear-gradient(180deg, rgba(20, 52, 77, 0.15) 0%, rgba(20, 52, 77, 0.45) 100%);
}

.lw-video__label {
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: rgba(20, 52, 77, 0.85);
}

.lw-video__play svg {
	width: 78px;
	height: auto;
	filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

.lw-video iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* ----------------------------------------------------------------- forms -- */

.lw-section--contact {
	background: var(--lw-primary);
	color: #fff;
}

.lw-contact__heading {
	margin-bottom: var(--lw-space-m);
	font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3rem);
}

.lw-contact__form {
	max-width: 640px;
}

.lw-form__row {
	margin: 0 0 1rem;
}

.lw-form__label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 700;
}

.lw-form__req {
	color: #ffb4b4;
}

.lw-form__input {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font: inherit;
}

.lw-form__input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.lw-form__input:focus {
	background: rgba(255, 255, 255, 0.16);
	outline: 2px solid var(--lw-hover);
	outline-offset: 1px;
}

.lw-form__textarea {
	min-height: 140px;
	resize: vertical;
}

.lw-form__counter {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.85rem;
	opacity: 0.75;
}

.lw-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.lw-form__row--submit {
	margin-top: 1.5rem;
}

.lw-form__notice {
	padding: 0.85rem 1rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.14);
}

.lw-form__notice.is-error {
	background: rgba(214, 38, 18, 0.28);
}

/* ---------------------------------------------------------------- footer -- */

.lw-footer {
	padding-block: var(--lw-space-l) var(--lw-space-m);
	background: var(--lw-primary);
	color: #fff;
}

.lw-footer a {
	text-decoration: none;
}

.lw-footer a:hover {
	text-decoration: underline;
}

.lw-footer__grid {
	display: grid;
	gap: var(--lw-space-m);
}

.lw-footer__logo {
	width: 200px;
	height: auto;
	margin-bottom: 1rem;
}

.lw-footer__tagline {
	font-size: 1.05rem;
}

.lw-footer__heading {
	margin-bottom: 0.6rem;
	font-size: 1.2rem;
}

.lw-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
}

.lw-social {
	list-style: none;
	display: flex;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
}

.lw-social__link svg {
	width: 32px;
	height: 32px;
}

.lw-footer__shots {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
}

.lw-footer__shots img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 6px;
}

.lw-footer__legal {
	margin-top: var(--lw-space-m);
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.9rem;
	opacity: 0.85;
}

.lw-footer__legal p {
	margin: 0;
}

/* --------------------------------------------------------------- content -- */

.lw-address {
	font-style: normal;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.lw-postlist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
}

.lw-postlist__link {
	font-size: 1.3rem;
	font-weight: 700;
	text-decoration: none;
}

.lw-postmeta {
	color: var(--lw-muted);
	font-size: 0.9rem;
}

/* ----------------------------------------------------------- breakpoints -- */

@media (min-width: 600px) {
	.lw-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.lw-duo {
		grid-template-columns: repeat(2, 1fr);
		align-items: end;
	}
}

@media (min-width: 900px) {
	:root {
		--lw-header-h: 96px;
	}

	.lw-container {
		padding-inline: 1.5rem;
	}

	.lw-section {
		padding-block: var(--lw-space-xl);
	}

	.lw-section--tight {
		padding-block: var(--lw-space-l);
	}

	.lw-logo__img {
		width: 240px;
	}

	.lw-burger {
		display: none;
	}

	.lw-nav {
		position: static;
		display: flex;
		flex: 1 1 auto;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
		max-height: none;
		padding: 0;
		overflow: visible;
		background: none;
		border: 0;
		box-shadow: none;
	}

	.lw-nav__menu {
		margin-inline: auto;
	}

	.lw-menu {
		display: flex;
		align-items: center;
		gap: 0.35rem;
	}

	.lw-menu__item {
		border: 0;
	}

	.lw-menu__link {
		padding: 0.6rem 0.85rem;
		font-size: 1.05rem;
	}

	.lw-menu__item.has-children > .lw-menu__link {
		padding-right: 1.9rem;
	}

	.lw-menu__toggle {
		top: 50%;
		right: 0.15rem;
		width: 26px;
		height: 26px;
		transform: translateY(-50%);
	}

	.lw-submenu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 40;
		display: block;
		visibility: hidden;
		opacity: 0;
		min-width: 210px;
		padding: 0.4rem 0;
		background: #fff;
		border: 1px solid var(--lw-line);
		border-radius: var(--lw-radius);
		box-shadow: 0 16px 34px rgba(20, 52, 77, 0.16);
		transition: opacity 0.15s ease, visibility 0.15s ease;
	}

	.lw-menu__item.has-children:hover > .lw-submenu,
	.lw-menu__item.has-children:focus-within > .lw-submenu,
	.lw-submenu.is-open {
		visibility: visible;
		opacity: 1;
	}

	.lw-submenu__link {
		padding: 0.55rem 1rem;
	}

	.lw-submenu__link:hover {
		background: var(--lw-tertiary);
	}

	.lw-features {
		grid-template-columns: repeat(3, 1fr);
	}

	.lw-split {
		grid-template-columns: 1fr 1fr;
		gap: var(--lw-space-l);
	}

	.lw-product--reverse .lw-split__text {
		order: 2;
		text-align: right;
	}

	.lw-product--reverse .lw-split__media {
		order: 1;
	}

	.lw-product--reverse .lw-shaped img {
		border-radius: 10px 50px 50px 10px;
	}

	.lw-hero__card {
		padding: var(--lw-space-l);
	}

	.lw-footer__grid {
		grid-template-columns: 35% 15% 20% 30%;
		gap: var(--lw-space-m) 1.5rem;
	}
}

@media (min-width: 1100px) {
	.lw-footer__shots {
		gap: 0.75rem;
	}
}

/* -------------------------------------------------------------- niceties -- */

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.lw-header,
	.lw-footer,
	.lw-section--contact,
	.lw-video {
		display: none !important;
	}
}
