:root {
	--color-bg: #f6f2eb;
	--color-surface: #fafaf9;
	--color-surface-muted: #eee4d2;
	--color-ink: #2f3136;
	--color-ink-soft: #66656a;
	--color-line: #d8c7a2;
	--color-accent: #d99a1e;
	--color-accent-hover: #a84f0b;
	--color-accent-soft: #f7e7b7;
	--color-accent-ink: #2f3136;
	--color-highlight: #ffce33;
	--color-earth: #ba6207;
	--color-earth-light: #d8c7a2;
	--color-earth-deep: #a84f0b;
	--color-navy: #2f3136;
	--color-navy-soft: #374151;
	--color-on-dark: #fafaf9;
	--container: 1240px;
	--reading: 780px;
	--page-pad: clamp(18px, 4vw, 38px);
	--section-y: clamp(72px, 9vw, 132px);
	--radius-card: 14px;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--shadow-card: 0 18px 48px rgba(47, 49, 54, 0.09);
	--shadow-hover: 0 28px 70px rgba(47, 49, 54, 0.17);
}

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

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

body {
	margin: 0;
	padding-top: 82px;
	color: var(--color-ink);
	background: var(--color-bg);
	font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
summary,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: var(--color-accent-hover);
	text-underline-offset: 4px;
	transition: color 180ms ease;
}

a:hover,
a:focus-visible {
	color: var(--color-accent);
}

:focus-visible {
	outline: 3px solid rgba(217, 154, 30, 0.48);
	outline-offset: 4px;
}

h1,
h2,
h3 {
	margin-top: 0;
	color: var(--color-ink);
	font-weight: 760;
	line-height: 1.06;
}

h1 {
	max-width: 980px;
	margin-bottom: 26px;
	font-size: clamp(44px, 6.4vw, 88px);
	letter-spacing: -0.055em;
}

h2 {
	margin-bottom: 20px;
	font-size: clamp(34px, 4.5vw, 58px);
	letter-spacing: -0.042em;
}

h3 {
	margin-bottom: 14px;
	font-size: clamp(22px, 2.2vw, 30px);
	letter-spacing: -0.025em;
}

p {
	margin-top: 0;
	margin-bottom: 18px;
}

ul,
ol {
	margin-top: 0;
}

.lv-main {
	overflow: clip;
}

/* Header */

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 900;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 82px;
	padding-inline: max(var(--page-pad), calc((100% - var(--container)) / 2));
	background: rgba(250, 248, 243, 0.9);
	border-bottom: 1px solid rgba(216, 199, 162, 0.64);
	backdrop-filter: blur(18px) saturate(1.25);
	transition: min-height 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
	min-height: 70px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 36px rgba(47, 49, 54, 0.09);
}

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

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-ink);
	font-size: 19px;
	font-weight: 780;
	letter-spacing: -0.025em;
	text-decoration: none;
}

.site-brand:hover,
.site-brand:focus-visible {
	color: var(--color-ink);
}

.site-brand img {
	width: auto;
	height: 43px;
}

.site-header-actions {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
	margin-left: auto;
}

.site-header-actions a {
	color: var(--color-ink);
	font-size: 14px;
	font-weight: 680;
	text-decoration: none;
	white-space: nowrap;
}

.site-header-link {
	position: relative;
}

.site-header-link::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	background: var(--color-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 260ms var(--ease-out);
}

.site-header-link:hover::after,
.site-header-link:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header-contact {
	padding: 10px 16px;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.site-header-contact:hover,
.site-header-contact:focus-visible {
	color: var(--color-ink);
	background: var(--color-surface);
	border-color: var(--color-accent);
	transform: translateY(-2px);
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	min-height: 46px;
	padding: 10px 17px;
	color: var(--color-on-dark);
	background: var(--color-earth-deep);
	border: 0;
	border-radius: 8px;
	font-weight: 760;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(47, 49, 54, 0.18);
	transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
	color: var(--color-accent-ink);
	background: var(--color-accent);
	box-shadow: 0 16px 34px rgba(217, 154, 30, 0.3);
	transform: translateY(-2px);
}

.menu-toggle:active {
	transform: translateY(0) scale(0.98);
}

.menu-toggle-icon {
	display: grid;
	gap: 5px;
	width: 19px;
}

.menu-toggle-icon i {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 240ms ease;
}

.menu-toggle:hover .menu-toggle-icon i:first-child {
	transform: translateX(3px);
}

.menu-toggle:hover .menu-toggle-icon i:last-child {
	transform: translateX(-3px);
}

/* Drawer catalog */

.site-drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(10, 19, 31, 0.62);
	opacity: 0;
	backdrop-filter: blur(5px);
	transition: opacity 300ms ease;
}

.site-drawer-backdrop[hidden] {
	display: none;
}

.site-drawer-backdrop.is-visible {
	opacity: 1;
}

.site-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	width: min(650px, 100%);
	height: 100vh;
	height: 100dvh;
	background: var(--color-surface);
	box-shadow: -30px 0 100px rgba(8, 18, 31, 0.28);
	transform: translate3d(105%, 0, 0);
	transition: transform 420ms var(--ease-out);
}

.site-drawer.is-open {
	transform: translate3d(0, 0, 0);
}

.admin-bar .site-drawer {
	top: 32px;
	height: calc(100dvh - 32px);
}

.site-drawer-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 30px 34px 26px;
	background: var(--color-earth-deep);
}

.site-drawer-header p,
.catalog-section-heading p {
	margin-bottom: 7px;
	color: var(--color-accent-hover);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.site-drawer-header p {
	color: var(--color-on-dark);
}

.site-drawer-header h2 {
	max-width: 430px;
	margin: 0;
	color: var(--color-on-dark);
	font-size: clamp(28px, 4vw, 39px);
}

.menu-close {
	position: relative;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	padding: 0;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	cursor: pointer;
	transition: background 200ms ease, transform 260ms var(--ease-spring);
}

.menu-close:hover,
.menu-close:focus-visible {
	background: var(--color-accent);
	transform: rotate(8deg) scale(1.05);
}

.menu-close:hover::before,
.menu-close:hover::after,
.menu-close:focus-visible::before,
.menu-close:focus-visible::after {
	background: var(--color-accent-ink);
}

.menu-close::before,
.menu-close::after {
	position: absolute;
	top: 21px;
	left: 12px;
	width: 21px;
	height: 2px;
	background: #ffffff;
	content: "";
}

.menu-close::before {
	transform: rotate(45deg);
}

.menu-close::after {
	transform: rotate(-45deg);
}

.catalog-navigation {
	flex: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.catalog-section {
	padding: 27px 34px;
	border-bottom: 1px solid var(--color-line);
}

.catalog-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 17px;
}

.catalog-section-heading p,
.catalog-section-heading h3 {
	margin-bottom: 0;
}

.catalog-section-heading h3 {
	font-size: 26px;
}

.catalog-section details {
	border-top: 1px solid var(--color-line);
}

.catalog-section details:last-child {
	border-bottom: 1px solid var(--color-line);
}

.catalog-section summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-block: 15px;
	font-size: 18px;
	font-weight: 740;
	cursor: pointer;
	list-style: none;
}

.catalog-section summary::-webkit-details-marker {
	display: none;
}

.catalog-section summary span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	color: var(--color-accent-hover);
	background: var(--color-accent-soft);
	border-radius: 50%;
	font-size: 21px;
	font-weight: 400;
	transition: transform 260ms var(--ease-spring), background 200ms ease;
}

.catalog-section details[open] summary span {
	color: var(--color-accent-ink);
	background: var(--color-accent);
	transform: rotate(45deg);
}

.catalog-links,
.catalog-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.catalog-links {
	padding-bottom: 16px;
}

.catalog-links a,
.catalog-list a {
	color: var(--color-ink);
	background: var(--color-bg);
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 650;
	text-decoration: none;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.catalog-links a {
	padding: 10px 12px;
}

.catalog-list a {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 14px;
}

.catalog-links a:hover,
.catalog-links a:focus-visible,
.catalog-list a:hover,
.catalog-list a:focus-visible {
	color: var(--color-accent-hover);
	background: #ffffff;
	border-color: var(--color-accent);
	transform: translateY(-2px);
}

.catalog-list small {
	color: var(--color-ink-soft);
	font-size: 11px;
	font-weight: 500;
}

.site-drawer-footer {
	padding: 22px 34px 27px;
	color: var(--color-accent-ink);
	background: var(--color-accent);
}

.site-drawer-footer p {
	margin-bottom: 3px;
	font-size: 13px;
	opacity: 1;
}

.site-drawer-footer > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color-accent-ink);
	font-size: 20px;
	font-weight: 760;
	text-decoration: none;
}

.site-drawer-footer > a span {
	transition: transform 220ms var(--ease-out);
}

.site-drawer-footer > a:hover span {
	transform: translate(4px, -4px);
}

.site-drawer-footer > div {
	display: flex;
	gap: 20px;
	margin-top: 15px;
}

.site-drawer-footer > div a {
	color: var(--color-accent-ink);
	font-size: 13px;
	opacity: 1;
}

/* Footer */

.site-footer {
	width: 100%;
	margin-top: clamp(80px, 11vw, 150px);
	padding-inline: max(var(--page-pad), calc((100% - var(--container)) / 2));
	color: var(--color-on-dark);
	background:
		radial-gradient(circle at 90% 10%, rgba(255, 206, 51, 0.18), transparent 30rem),
		var(--color-navy);
}

.site-footer-main {
	display: grid;
	grid-template-columns: 1.25fr 0.65fr 0.75fr 1.15fr;
	gap: clamp(30px, 5vw, 74px);
	padding-block: clamp(68px, 8vw, 108px);
}

.site-footer .site-brand {
	color: #ffffff;
}

.site-footer-brand > p {
	max-width: 320px;
	margin-top: 23px;
	color: rgba(253, 251, 246, 0.63);
	font-size: 15px;
}

.site-footer-links {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}

.site-footer-links p,
.site-footer-action > p {
	margin-bottom: 8px;
	color: var(--color-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer-links a {
	position: relative;
	color: rgba(253, 251, 246, 0.75);
	font-weight: 620;
	text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
	color: #ffffff;
}

.site-footer-action h2 {
	max-width: 380px;
	margin-bottom: 26px;
	color: #ffffff;
	font-size: clamp(27px, 3vw, 39px);
}

.site-footer-action > a {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 13px 17px;
	color: var(--color-accent-ink);
	background: var(--color-accent);
	border-radius: 8px;
	font-weight: 760;
	text-decoration: none;
	transition: background 200ms ease, transform 200ms ease;
}

.site-footer-action > a span {
	font-size: 20px;
	transition: transform 220ms var(--ease-out);
}

.site-footer-action > a:hover,
.site-footer-action > a:focus-visible {
	color: #ffffff;
	background: var(--color-accent-hover);
	transform: translateY(-2px);
}

.site-footer-action > a:hover span {
	transform: translate(3px, -3px);
}

.site-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-bottom p {
	margin: 0;
	color: rgba(253, 251, 246, 0.5);
	font-size: 13px;
}

.site-footer-bottom nav {
	display: flex;
	gap: 22px;
}

.site-footer-bottom a {
	color: rgba(253, 251, 246, 0.62);
	font-size: 13px;
}

/* Page shell and hero */

.breadcrumbs {
	width: min(100% - (var(--page-pad) * 2), var(--container));
	margin-inline: auto;
	padding-block: 22px;
	color: var(--color-ink-soft);
	font-size: 13px;
}

.breadcrumbs a {
	color: var(--color-ink);
	font-weight: 700;
}

.breadcrumbs span[aria-hidden="true"] {
	margin-inline: 8px;
	color: #86a8bc;
}

.lv-main section {
	scroll-margin-top: 100px;
}

.hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	min-height: clamp(560px, 72vh, 760px);
	margin-bottom: clamp(40px, 5vw, 72px);
	padding-block: clamp(86px, 11vw, 150px);
	padding-inline: max(var(--page-pad), calc((100% - var(--container)) / 2));
	color: var(--color-on-dark);
	background:
		radial-gradient(circle at 83% 17%, rgba(255, 206, 51, 0.26), transparent 22rem),
		linear-gradient(125deg, var(--color-navy) 0%, var(--color-earth) 100%);
	overflow: hidden;
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%),
		linear-gradient(25deg, transparent 0 72%, rgba(255, 255, 255, 0.04) 72% 73%, transparent 73%);
	background-size: 54px 54px, 100% 100%;
	content: "";
}

.hero::after {
	position: absolute;
	right: max(var(--page-pad), calc((100% - var(--container)) / 2));
	bottom: clamp(45px, 7vw, 88px);
	z-index: -1;
	width: clamp(90px, 11vw, 150px);
	height: 2px;
	background: var(--color-accent);
	content: "";
}

.hero.hero-visual::before {
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(47, 49, 54, 0.95) 0%, rgba(55, 65, 81, 0.82) 46%, rgba(186, 98, 7, 0.32) 100%);
}

.hero.hero-visual::after {
	display: block;
}

.hero h1 {
	max-width: 900px;
	margin-bottom: 26px;
	color: #ffffff;
}

.hero > h1 + p,
.hero > p:first-child {
	max-width: 680px;
	margin-bottom: 32px;
	color: rgba(253, 251, 246, 0.74);
	font-size: clamp(18px, 1.8vw, 22px);
	line-height: 1.65;
}

.hero > p:last-child,
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.hero > p:last-child a,
.hero-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 22px;
	color: var(--color-accent-ink);
	background: var(--color-accent);
	border-radius: 8px;
	font-weight: 760;
	text-decoration: none;
	box-shadow: 0 16px 35px rgba(217, 154, 30, 0.28);
	transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.hero > p:last-child a:hover,
.hero > p:last-child a:focus-visible,
.hero-actions a:hover,
.hero-actions a:focus-visible {
	color: #ffffff;
	background: var(--color-accent-hover);
	box-shadow: 0 22px 44px rgba(168, 79, 11, 0.3);
	transform: translateY(-3px);
}

.hero-actions a.is-secondary {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.46);
	box-shadow: none;
}

.hero-actions a.is-secondary:hover,
.hero-actions a.is-secondary:focus-visible {
	color: var(--color-navy);
	background: #ffffff;
	border-color: #ffffff;
	box-shadow: 0 18px 38px rgba(7, 16, 27, 0.2);
}

.hero-media {
	position: absolute;
	inset: -18px;
	z-index: -2;
	display: block;
	margin: 0;
	overflow: hidden;
	transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.035);
}

.hero-media img {
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: blur(5px) saturate(0.86);
}

/* Shared section rhythm */

.products,
.regions,
.calculator,
.benefits,
.order-process,
.additional-services,
.reviews,
.faq,
.contacts {
	width: min(100% - (var(--page-pad) * 2), var(--container));
	margin-inline: auto;
	padding-block: var(--section-y);
}

.products > h2,
.regions > h2,
.calculator > h2,
.benefits > h2,
.order-process > h2,
.additional-services > h2,
.faq > h2,
.contacts > h2 {
	max-width: 980px;
}

.products > p,
.regions > p,
.calculator > p,
.additional-services > p,
.reviews > p,
.contacts > p {
	max-width: var(--reading);
	color: var(--color-ink-soft);
	font-size: clamp(17px, 1.7vw, 20px);
}

.additional-services > p:first-child {
	margin-bottom: 13px;
	color: var(--color-accent-hover);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.company-intro.additional-services {
	position: relative;
	isolation: isolate;
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	min-height: clamp(560px, 72vh, 760px);
	margin-block: clamp(50px, 7vw, 96px);
	padding-block: clamp(100px, 14vw, 180px);
	padding-inline: max(var(--page-pad), calc((100% - var(--container)) / 2));
	color: #ffffff;
	background: transparent;
	border: 0;
	overflow: hidden;
}

.company-intro::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(47, 49, 54, 0.9) 0%, rgba(55, 65, 81, 0.74) 58%, rgba(186, 98, 7, 0.4) 100%);
	content: "";
}

.company-intro-media {
	position: absolute;
	inset: 0;
	z-index: -2;
	margin: 0;
	background: var(--color-navy);
	overflow: hidden;
	clip-path: inset(0);
}

.company-intro-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.company-intro.is-media-fixed .company-intro-media img {
	position: fixed;
	width: 100vw;
	height: 100vh;
	height: 100svh;
	backface-visibility: hidden;
}

.company-intro > h2 {
	max-width: 940px;
	margin-bottom: 30px;
	color: #ffffff;
	text-shadow: 0 3px 24px rgba(7, 16, 27, 0.34);
}

.company-intro.additional-services > p {
	max-width: 820px;
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(17px, 1.6vw, 20px);
}

.company-intro.additional-services > p:first-child {
	margin-bottom: 15px;
	color: var(--color-highlight);
}

/* Product and information cards */

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

.products > h2,
.products > p {
	grid-column: 1 / -1;
}

.products > h2 {
	order: 1;
}

.products > p {
	order: 2;
}

.products > .section-visual {
	order: 3;
}

.products > article {
	order: 4;
}

.products article {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 248px;
	padding: 26px;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: border-color 240ms ease, box-shadow 320ms ease, transform 320ms var(--ease-out);
}

.products article::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--color-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 340ms var(--ease-out);
}

.products article::after {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 9px;
	height: 9px;
	background: var(--color-accent);
	border-radius: 50%;
	content: "";
}

.products article:hover {
	border-color: rgba(217, 154, 30, 0.6);
	box-shadow: var(--shadow-hover);
	transform: translateY(-8px);
}

.products article:hover::before {
	transform: scaleX(1);
}

.products article h3 {
	padding-right: 22px;
}

.products article p {
	color: var(--color-ink-soft);
}

.products article p:last-child {
	margin-top: auto;
	margin-bottom: 0;
}

.products article a {
	color: var(--color-ink);
	font-weight: 760;
	text-decoration-color: var(--color-accent);
	text-decoration-thickness: 2px;
}

/* Homepage purchase journey */

.section-kicker {
	margin-bottom: 12px;
	color: var(--color-accent-hover);
	font-size: 11px;
	font-weight: 820;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.quick-order.contacts {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(28px, 6vw, 80px);
	margin-block: clamp(48px, 7vw, 86px);
	padding: clamp(30px, 5vw, 52px);
	background: linear-gradient(125deg, rgba(216, 199, 162, 0.52), var(--color-accent-soft));
	border: 1px solid rgba(217, 154, 30, 0.32);
	border-radius: var(--radius-card);
}

.quick-order h2 {
	max-width: 760px;
	margin-bottom: 16px;
}

.quick-order div > p:last-child {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--color-ink-soft);
	font-size: clamp(17px, 1.5vw, 19px);
}

.quick-order-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	margin: 0;
}

.quick-order-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 20px;
	color: var(--color-accent-ink);
	background: var(--color-accent);
	border: 1px solid var(--color-accent);
	border-radius: 8px;
	font-weight: 760;
	text-decoration: none;
	transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.quick-order-actions a.is-secondary {
	color: var(--color-ink);
	background: transparent;
	border-color: rgba(47, 49, 54, 0.24);
}

.quick-order-actions a:hover,
.quick-order-actions a:focus-visible {
	color: #ffffff;
	background: var(--color-navy);
	border-color: var(--color-navy);
	transform: translateY(-3px);
}

.fuel-guide article {
	min-height: 285px;
}

.fuel-guide article p:last-child {
	margin-top: 0;
}

.purchase-flow > .section-lead {
	max-width: 780px;
	color: var(--color-ink-soft);
	font-size: clamp(17px, 1.6vw, 20px);
}

.purchase-flow ol {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 40px;
}

.purchase-flow li {
	min-height: 240px;
}

.purchase-flow li strong {
	display: block;
	margin-bottom: 9px;
	color: var(--color-ink);
	font-size: 18px;
}

.purchase-details.contacts {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
	border-top: 1px solid var(--color-line);
}

.purchase-details-copy {
	align-self: center;
	padding-right: clamp(10px, 3vw, 36px);
}

.purchase-details-copy h2 {
	margin-bottom: 22px;
}

.purchase-details-copy > p:not(.section-kicker) {
	color: var(--color-ink-soft);
}

.purchase-details-copy > p:last-child {
	margin-bottom: 0;
}

.purchase-details-copy a {
	color: var(--color-ink);
	font-weight: 760;
	text-decoration-color: var(--color-accent);
	text-decoration-thickness: 2px;
}

.purchase-details article {
	position: relative;
	min-height: 320px;
	padding: clamp(26px, 3vw, 36px);
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.purchase-details article h3 {
	margin-bottom: 24px;
}

.purchase-details article ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	color: var(--color-ink-soft);
	list-style: none;
}

.purchase-details article li {
	position: relative;
	padding-left: 20px;
}

.purchase-details article li::before {
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--color-accent);
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.purchase-details .payment-card {
	color: rgba(255, 255, 255, 0.76);
	background:
		radial-gradient(circle at 90% 8%, rgba(255, 206, 51, 0.22), transparent 15rem),
		var(--color-navy);
	border-color: transparent;
}

.payment-card h3 {
	color: #ffffff;
}

.payment-card .section-kicker {
	color: var(--color-highlight);
}

.payment-card > p:last-child {
	margin-bottom: 0;
}

.fuel-product-grid {
	align-items: start;
}

.product-region-card {
	cursor: pointer;
}

.product-region-card.is-open {
	border-color: var(--color-accent);
	box-shadow: var(--shadow-hover);
}

.product-region-card.is-open::before {
	transform: scaleX(1);
}

.product-type-list {
	display: grid;
	gap: 7px;
	margin: 0 0 24px;
	padding: 0;
	color: var(--color-ink-soft);
	font-size: 14px;
	list-style: none;
}

.product-type-list li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.product-type-list li::before {
	flex: 0 0 auto;
	width: 6px;
	height: 6px;
	background: var(--color-accent);
	border-radius: 50%;
	content: "";
}

.product-region-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	margin-top: auto;
	padding: 14px 0 0;
	color: var(--color-ink);
	background: transparent;
	border: 0;
	border-top: 1px solid var(--color-line);
	font-weight: 780;
	text-align: left;
	cursor: pointer;
}

.product-region-toggle span {
	position: relative;
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 30px;
	height: 30px;
	color: var(--color-accent-hover);
	background: var(--color-accent-soft);
	border-radius: 50%;
	font-size: 0;
	line-height: 1;
	transform: rotate(0deg);
	transform-origin: 50% 50%;
	transition: color 200ms ease, background 200ms ease, transform 240ms var(--ease-out);
}

.product-region-toggle span::before,
.product-region-toggle span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	content: "";
	transform: translate(-50%, -50%);
}

.product-region-toggle span::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.product-region-card.is-open .product-region-toggle span {
	color: var(--color-accent-ink);
	background: var(--color-accent);
	transform: rotate(45deg);
}

.product-region-options {
	position: absolute;
	top: 16px;
	right: 16px;
	left: 16px;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-content: center;
	gap: 8px;
	margin: 0;
	padding: 20px;
	aspect-ratio: 4 / 3;
	background: rgba(47, 49, 54, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 9px;
	box-shadow: 0 20px 44px rgba(8, 18, 31, 0.24);
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(10px) saturate(1.15);
	transform: translate3d(0, -110%, 0);
	pointer-events: none;
	transition: opacity 240ms ease, visibility 240ms ease, transform 320ms var(--ease-out);
}

.product-region-options[hidden] {
	display: none;
}

.product-region-card.is-open .product-region-options {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	pointer-events: auto;
}

.products article .product-region-options a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 10px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	font-size: 13px;
	text-align: center;
	text-decoration: none;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.products article .product-region-options a:hover,
.products article .product-region-options a:focus-visible {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.17);
	border-color: var(--color-accent);
	transform: translateY(-2px);
}

.products article .product-region-options .product-overview-link {
	color: var(--color-accent-ink);
	background: var(--color-accent);
	border-color: var(--color-accent);
}

.products article .product-region-options .product-overview-link:hover,
.products article .product-region-options .product-overview-link:focus-visible {
	color: #ffffff;
	background: var(--color-accent-hover);
	border-color: #ffffff;
}

.card-media {
	margin: -10px -10px 23px;
	aspect-ratio: 4 / 3;
	background: var(--color-surface-muted);
	border-radius: 9px;
	overflow: hidden;
}

.section-visual {
	grid-column: 1 / -1;
	width: 100%;
	margin: 12px 0 18px;
	aspect-ratio: 5 / 2;
	background: var(--color-surface-muted);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.card-media img,
.section-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 350ms ease, transform 900ms var(--ease-out);
}

.products article:hover .card-media img,
.section-visual:hover img {
	filter: saturate(1.1) contrast(1.02);
	transform: scale(1.045);
}

/* Region navigation */

.regions {
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.regions h3 {
	margin-top: 34px;
}

.regions nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 17px;
}

.regions nav a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 9px 16px;
	color: var(--color-ink);
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: 8px;
	font-weight: 720;
	text-decoration: none;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.regions nav a:hover,
.regions nav a:focus-visible {
	color: #ffffff;
	background: var(--color-navy);
	border-color: var(--color-navy);
	transform: translateY(-3px);
}

/* Full-width dark bands */

.calculator,
.benefits,
.cta.contacts {
	width: 100%;
	max-width: none;
	padding-inline: max(var(--page-pad), calc((100% - var(--container)) / 2));
}

.calculator,
.benefits {
	color: var(--color-on-dark);
	background:
		radial-gradient(circle at 90% 10%, rgba(255, 206, 51, 0.22), transparent 28rem),
		linear-gradient(135deg, var(--color-navy-soft), var(--color-earth-deep));
}

.calculator h2,
.benefits h2 {
	color: #ffffff;
}

.calculator > p,
.benefits > p {
	color: rgba(253, 251, 246, 0.66);
}

/* Forms */

.calculator form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	max-width: 980px;
	margin-top: 38px;
}

.calculator label {
	display: grid;
	gap: 8px;
	color: rgba(253, 251, 246, 0.84);
	font-weight: 680;
}

.calculator input,
.calculator select,
.calculator textarea,
.calculator button {
	width: 100%;
	min-height: 56px;
	padding: 13px 15px;
	color: var(--color-ink);
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.calculator input:focus,
.calculator select:focus,
.calculator textarea:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 4px rgba(217, 154, 30, 0.22);
	outline: none;
}

.calculator textarea {
	min-height: 136px;
	resize: vertical;
}

.calculator .form-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 450;
}

.calculator .form-consent input[type="checkbox"] {
	flex: 0 0 auto;
	width: 19px;
	min-height: 19px;
	margin: 3px 0 0;
	padding: 0;
	accent-color: var(--color-accent);
}

.calculator button {
	align-self: end;
	color: var(--color-accent-ink);
	background: var(--color-accent);
	border-color: var(--color-accent);
	font-weight: 760;
	cursor: pointer;
	transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.calculator button:hover,
.calculator button:focus-visible {
	color: #ffffff;
	background: var(--color-accent-hover);
	box-shadow: 0 16px 36px rgba(168, 79, 11, 0.27);
	transform: translateY(-3px);
}

/* Benefit, process and link grids */

.benefits ul,
.order-process ol,
.additional-services ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	padding: 0;
	list-style: none;
}

.benefits {
	position: relative;
	overflow: hidden;
}

.benefits > h2 {
	max-width: 820px;
	margin-right: auto;
	margin-bottom: clamp(44px, 6vw, 72px);
	margin-left: auto;
	text-align: center;
}

.benefits > h2::after {
	display: block;
	width: 72px;
	height: 3px;
	margin: 24px auto 0;
	background: var(--color-accent);
	border-radius: 999px;
	content: "";
}

.benefits ul {
	max-width: 1120px;
	margin: 0 auto;
	gap: 20px;
	counter-reset: benefit;
}

.benefits li,
.order-process li,
.additional-services li {
	position: relative;
	padding: 25px;
	border-radius: 10px;
	transition: border-color 220ms ease, background 220ms ease, transform 280ms var(--ease-out);
}

.benefits li {
	min-height: 160px;
	padding: 32px 72px 32px 32px;
	color: rgba(253, 251, 246, 0.7);
	background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
	border: 1px solid rgba(255, 255, 255, 0.12);
	counter-increment: benefit;
	transition: border-color 220ms ease, background 220ms ease, box-shadow 280ms ease, translate 280ms var(--ease-out);
}

.benefits li::before {
	position: absolute;
	top: 28px;
	right: 28px;
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 820;
	letter-spacing: 0.08em;
	content: counter(benefit, decimal-leading-zero);
}

.benefits li strong {
	display: block;
	margin-bottom: 10px;
	color: #ffffff;
	font-size: clamp(18px, 1.5vw, 21px);
	line-height: 1.25;
}

.benefits li:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 206, 51, 0.72);
	box-shadow: 0 18px 40px rgba(5, 14, 25, 0.22);
	transform: none;
	translate: 0 -5px;
}

.order-process ol {
	counter-reset: step;
}

.order-process li {
	min-height: 190px;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	counter-increment: step;
}

.order-process li::before {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 22px;
	color: var(--color-accent-ink);
	background: var(--color-accent);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 800;
	content: counter(step, decimal-leading-zero);
	transition: transform 260ms var(--ease-spring);
}

.order-process li:hover {
	border-color: var(--color-accent);
	transform: translateY(-5px);
}

.order-process li:hover::before {
	transform: rotate(-7deg) scale(1.08);
}

.additional-services {
	border-top: 1px solid var(--color-line);
}

.additional-services li {
	background: transparent;
	border: 1px solid var(--color-line);
}

.additional-services li:hover {
	background: var(--color-surface);
	border-color: var(--color-accent);
	transform: translateX(5px);
}

.additional-services li a {
	color: var(--color-ink);
	font-weight: 740;
	text-decoration-color: var(--color-accent);
}

/* Related navigation */

.related-links.additional-services ul {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 34px 0 0;
}

.related-links.additional-services li {
	min-width: 0;
	min-height: 150px;
	padding: 0;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	translate: 0 0;
	transition: border-color 240ms ease, box-shadow 320ms ease, translate 320ms var(--ease-out);
}

.related-links.additional-services li::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--color-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 340ms var(--ease-out);
}

.related-links.additional-services li::after {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 9px;
	height: 9px;
	background: var(--color-accent);
	border-radius: 50%;
	content: "";
}

.related-links.additional-services li:hover,
.related-links.additional-services li:focus-within {
	border-color: rgba(217, 154, 30, 0.6);
	box-shadow: var(--shadow-hover);
	transform: none;
	translate: 0 -6px;
}

.related-links.additional-services li:hover::before,
.related-links.additional-services li:focus-within::before {
	transform: scaleX(1);
}

.related-links.additional-services li a {
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	min-height: 150px;
	padding: 48px 44px 24px 24px;
	color: var(--color-ink);
	font-size: clamp(17px, 1.35vw, 20px);
	font-weight: 760;
	line-height: 1.2;
	text-decoration-color: var(--color-accent);
	text-decoration-thickness: 2px;
}

.related-links.additional-services li a::after {
	position: absolute;
	right: 24px;
	bottom: 24px;
	color: var(--color-accent-hover);
	font-size: 18px;
	content: "→";
	transition: transform 240ms var(--ease-out);
}

.related-links.additional-services li:hover a::after,
.related-links.additional-services li:focus-within a::after {
	transform: translateX(4px);
}

/* Homepage related links orbit */

.related-links-orbit.additional-services {
	display: grid;
	grid-template-columns: minmax(250px, 0.72fr) minmax(560px, 1.28fr);
	align-items: center;
	gap: clamp(36px, 6vw, 90px);
	min-height: 560px;
	overflow: hidden;
}

.related-links-intro {
	align-self: center;
}

.related-links-intro > p:first-child {
	margin-bottom: 14px;
	color: var(--color-accent-hover);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.related-links-intro h2 {
	margin-bottom: 22px;
}

.related-links-intro > p:last-child {
	max-width: 390px;
	margin-bottom: 0;
	color: var(--color-ink-soft);
	font-size: 18px;
}

.related-links-orbit.additional-services ul {
	position: relative;
	display: block;
	width: 100%;
	max-width: 700px;
	height: 400px;
	margin: 0 auto;
	padding: 0;
}

.related-links-orbit.additional-services ul::before {
	position: absolute;
	bottom: 20px;
	left: 50%;
	width: 76%;
	aspect-ratio: 2 / 1;
	border: 1px solid rgba(186, 98, 7, 0.42);
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
	content: "";
	transform: translateX(-50%);
	pointer-events: none;
}

.related-links-orbit.additional-services li {
	position: absolute;
	width: clamp(128px, 13vw, 170px);
	min-height: 0;
	padding: 0;
	background:
		linear-gradient(110deg, rgba(216, 199, 162, 0.34), transparent 44%),
		var(--color-surface);
	border: 1px solid rgba(186, 98, 7, 0.3);
	border-radius: 999px;
	box-shadow:
		0 12px 30px rgba(47, 49, 54, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	translate: -50% -50%;
	overflow: hidden;
	scale: 1;
	transition:
		background-color 260ms ease,
		border-color 260ms ease,
		box-shadow 320ms ease,
		scale 320ms var(--ease-out),
		translate 320ms var(--ease-out);
}

.related-links-orbit.additional-services li:nth-child(1) { top: 82%; left: 14%; }
.related-links-orbit.additional-services li:nth-child(2) { top: 54%; left: 19%; }
.related-links-orbit.additional-services li:nth-child(3) { top: 29%; left: 32%; }
.related-links-orbit.additional-services li:nth-child(4) { top: 18%; left: 50%; }
.related-links-orbit.additional-services li:nth-child(5) { top: 29%; left: 68%; }
.related-links-orbit.additional-services li:nth-child(6) { top: 54%; left: 81%; }
.related-links-orbit.additional-services li:nth-child(7) { top: 82%; left: 86%; }

.related-links-orbit.additional-services li::before {
	top: 50%;
	right: auto;
	left: 17px;
	display: block;
	width: 7px;
	height: 7px;
	background: var(--color-accent);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(217, 154, 30, 0.16);
	transform: translateY(-50%);
	transition: background-color 260ms ease, box-shadow 260ms ease;
}

.related-links-orbit.additional-services li::after {
	display: none;
}

.related-links-orbit.additional-services li:hover,
.related-links-orbit.additional-services li:focus-within {
	background: var(--color-navy);
	border-color: var(--color-navy);
	box-shadow: 0 20px 42px rgba(47, 49, 54, 0.24);
	transform: none;
	translate: -50% -50%;
	scale: 1.045;
}

.related-links-orbit.additional-services li:hover::before,
.related-links-orbit.additional-services li:focus-within::before {
	background: #ffffff;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.related-links-orbit.additional-services li a {
	align-items: center;
	min-height: 62px;
	padding: 13px 48px 13px 34px;
	font-size: 15px;
	font-weight: 780;
	line-height: 1.15;
	text-decoration: none;
}

.related-links-orbit.additional-services li a::after {
	top: 50%;
	right: 12px;
	bottom: auto;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	background: rgba(255, 206, 51, 0.2);
	border: 1px solid rgba(217, 154, 30, 0.32);
	border-radius: 50%;
	font-size: 14px;
	transform: translateY(-50%);
	transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms var(--ease-out);
}

.related-links-orbit.additional-services li:hover a,
.related-links-orbit.additional-services li:focus-within a {
	color: #ffffff;
}

.related-links-orbit.additional-services li:hover a::after,
.related-links-orbit.additional-services li:focus-within a::after {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-accent-ink);
	transform: translate(3px, -50%);
}

/* Long-form content */

.seo-content.contacts,
.content-block.contacts {
	border-top: 1px solid var(--color-line);
}

.seo-content.contacts > p,
.seo-content.contacts > h3,
.content-block.contacts > p,
.content-block.contacts > h3 {
	max-width: 900px;
}

.seo-content.contacts > p,
.content-block.contacts > p {
	color: var(--color-ink-soft);
}

.seo-content.contacts h3,
.content-block.contacts h3 {
	margin-top: 38px;
}

.contacts address {
	font-style: normal;
}

.contacts address p {
	margin-bottom: 8px;
}

/* FAQ */

.faq details {
	max-width: 1000px;
	margin-bottom: 10px;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq details[open] {
	border-color: var(--color-accent);
	box-shadow: var(--shadow-card);
}

.faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px;
	font-size: 18px;
	font-weight: 740;
	cursor: pointer;
	list-style: none;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--color-accent-hover);
	background: var(--color-accent-soft);
	border-radius: 50%;
	font-size: 22px;
	font-weight: 400;
	content: "+";
	transition: color 200ms ease, background 200ms ease, transform 260ms var(--ease-spring);
}

.faq details[open] summary::after {
	color: var(--color-accent-ink);
	background: var(--color-accent);
	transform: rotate(45deg);
}

.faq details p {
	max-width: 860px;
	margin: 0;
	padding: 0 22px 22px;
	color: var(--color-ink-soft);
}

/* CTA band */

.cta.contacts {
	position: relative;
	isolation: isolate;
	color: var(--color-accent-ink);
	background: var(--color-accent);
	overflow: hidden;
}

.cta.contacts::before {
	position: absolute;
	top: -200px;
	right: 4%;
	z-index: -1;
	width: 480px;
	height: 480px;
	background: var(--color-highlight);
	border-radius: 50%;
	content: "";
	opacity: 0.42;
}

.cta.contacts h2 {
	color: var(--color-accent-ink);
}

.cta.contacts > p {
	color: rgba(47, 49, 54, 0.78);
}

.cta > p:last-child a {
	display: inline-flex;
	align-items: center;
	min-height: 52px;
	padding: 13px 20px;
	color: var(--color-ink);
	background: #ffffff;
	border-radius: 8px;
	font-weight: 760;
	text-decoration: none;
	transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.cta > p:last-child a:hover,
.cta > p:last-child a:focus-visible {
	color: #ffffff;
	background: var(--color-navy);
	transform: translateY(-3px);
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cta-actions a:last-child {
	color: var(--color-accent-ink);
	background: transparent;
	border: 1px solid rgba(47, 49, 54, 0.48);
}

.cta-actions a:last-child:hover,
.cta-actions a:last-child:focus-visible {
	color: var(--color-navy);
	background: #ffffff;
	border-color: #ffffff;
}

/* Motion system — hidden only when JavaScript is active */

.has-reveal-motion .reveal-section {
	opacity: 0;
	filter: blur(5px);
	will-change: opacity, filter, transform;
	transition:
		opacity 760ms var(--ease-out),
		filter 760ms var(--ease-out),
		transform 940ms var(--ease-out);
}

.has-reveal-motion .reveal-from-left {
	transform: translate3d(-110px, 0, 0) rotateY(2deg);
}

.has-reveal-motion .reveal-from-right {
	transform: translate3d(110px, 0, 0) rotateY(-2deg);
}

.has-reveal-motion .reveal-fade {
	transform: translate3d(0, 52px, 0) scale(0.985);
}

.has-reveal-motion .reveal-section.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0) rotateY(0) scale(1);
}

.has-reveal-motion .company-intro.reveal-section,
.has-reveal-motion .company-intro.reveal-section.is-visible {
	filter: none;
	transform: none;
	will-change: opacity;
	transition: opacity 760ms var(--ease-out);
}

.has-reveal-motion .reveal-item {
	opacity: 0;
	transform: translate3d(0, 34px, 0) scale(0.97);
	transition:
		opacity 580ms ease var(--reveal-delay, 0ms),
		transform 760ms var(--ease-out) var(--reveal-delay, 0ms),
		border-color 240ms ease,
		box-shadow 320ms ease,
		translate 320ms var(--ease-out);
}

.has-reveal-motion .reveal-section.is-visible .reveal-item {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.has-reveal-motion .benefits.reveal-benefits,
.has-reveal-motion .benefits.reveal-benefits.is-visible {
	opacity: 1;
	filter: none;
	transform: none;
	transition: none;
}

.has-reveal-motion .benefits.reveal-benefits > h2 {
	opacity: 0;
	transform: translate3d(0, 34px, 0) scale(0.96);
	transition: opacity 680ms ease, transform 820ms var(--ease-out);
}

.has-reveal-motion .benefits.reveal-benefits.is-visible > h2 {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.has-reveal-motion .benefits.reveal-benefits li.reveal-item {
	filter: blur(3px);
	transform: translate3d(-130px, 0, 0);
	transition:
		opacity 620ms ease var(--reveal-delay, 0ms),
		filter 620ms ease var(--reveal-delay, 0ms),
		transform 820ms var(--ease-out) var(--reveal-delay, 0ms),
		border-color 220ms ease,
		background 220ms ease,
		box-shadow 280ms ease,
		translate 280ms var(--ease-out);
}

.has-reveal-motion .benefits.reveal-benefits.is-visible li.reveal-item {
	filter: blur(0);
	transform: translate3d(0, 0, 0);
}

.has-reveal-motion .hero h1,
.has-reveal-motion .hero > h1 + p,
.has-reveal-motion .hero > p:last-child {
	opacity: 0;
	animation: hero-enter 900ms var(--ease-out) forwards;
}

.has-reveal-motion .hero > h1 + p {
	animation-delay: 120ms;
}

.has-reveal-motion .hero > p:last-child {
	animation-delay: 240ms;
}

.has-reveal-motion .hero.hero-visual .hero-media {
	animation: hero-background 1800ms var(--ease-out) both;
}

.has-reveal-motion .site-header {
	animation: header-enter 700ms var(--ease-out) both;
}

.site-drawer.is-open .catalog-section {
	animation: drawer-section-enter 520ms var(--ease-out) both;
}

.site-drawer.is-open .catalog-section:nth-child(2) {
	animation-delay: 70ms;
}

.site-drawer.is-open .catalog-section:nth-child(3) {
	animation-delay: 140ms;
}

@keyframes hero-enter {
	from {
		opacity: 0;
		transform: translate3d(0, 38px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes hero-background {
	from {
		opacity: 0;
		transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.11);
	}
	to {
		opacity: 1;
		transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.035);
	}
}

@keyframes header-enter {
	from {
		opacity: 0;
		transform: translate3d(0, -24px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes drawer-section-enter {
	from {
		opacity: 0;
		transform: translate3d(38px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* Responsive */

@media (max-width: 1060px) {
	.purchase-details.contacts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.purchase-details-copy {
		grid-column: 1 / -1;
		max-width: 850px;
		padding-right: 0;
		padding-bottom: 18px;
	}

	.related-links-orbit.additional-services {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.related-links-intro {
		max-width: 680px;
		text-align: center;
		justify-self: center;
	}

	.related-links-intro > p:last-child {
		margin-inline: auto;
	}

	.related-links.additional-services ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-header-link:first-of-type {
		display: none;
	}

	.site-footer-main {
		grid-template-columns: 1.2fr 0.8fr 1fr;
	}

	.site-footer-action {
		grid-column: 1 / -1;
		padding-top: 30px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}
}

@media (max-width: 900px) {
	.quick-order.contacts {
		grid-template-columns: 1fr;
	}

	.quick-order-actions {
		justify-content: flex-start;
	}

	.purchase-flow ol {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.site-header-link {
		display: none;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .site-drawer {
		top: 46px;
		height: calc(100dvh - 46px);
	}

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

	.site-footer-brand,
	.site-footer-action {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	html {
		scroll-padding-top: calc(80px + env(safe-area-inset-top));
	}

	body {
		padding-top: calc(72px + env(safe-area-inset-top));
	}

	h1 {
		font-size: clamp(42px, 13vw, 62px);
	}

	h2 {
		font-size: clamp(32px, 10vw, 44px);
	}

	.quick-order.contacts {
		margin-block: 34px;
		padding: 26px 22px;
	}

	.quick-order-actions,
	.quick-order-actions a {
		width: 100%;
	}

	.purchase-details.contacts {
		grid-template-columns: 1fr;
	}

	.purchase-details-copy {
		grid-column: auto;
	}

	.purchase-details article {
		min-height: 0;
	}

	.cta-actions,
	.cta-actions a {
		width: 100%;
	}

	.cta-actions a {
		justify-content: center;
	}

	.related-links.additional-services ul {
		grid-template-columns: 1fr;
		margin-top: 28px;
	}

	.related-links.additional-services li,
	.related-links.additional-services li a {
		min-height: 120px;
	}

	.related-links-orbit.additional-services {
		display: block;
		min-height: 0;
	}

	.related-links-orbit .related-links-intro {
		margin-bottom: 32px;
	}

	.related-links-orbit.additional-services ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		height: auto;
		margin: 0;
	}

	.related-links-orbit.additional-services ul::before {
		display: none;
	}

	.related-links-orbit.additional-services li,
	.related-links-orbit.additional-services li:nth-child(n) {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		min-height: 0;
		translate: 0 0;
	}

	.related-links-orbit.additional-services li:hover,
	.related-links-orbit.additional-services li:focus-within {
		translate: 0 -3px;
		scale: 1.01;
	}

	.related-links-orbit.additional-services li a {
		min-height: 58px;
	}

	.site-header {
		min-height: calc(72px + env(safe-area-inset-top));
		padding-top: env(safe-area-inset-top);
		padding-right: max(18px, env(safe-area-inset-right));
		padding-left: max(18px, env(safe-area-inset-left));
	}

	.site-header.is-scrolled {
		min-height: calc(64px + env(safe-area-inset-top));
	}

	.site-brand img {
		height: 37px;
	}

	.site-header .site-brand span,
	.site-header-contact {
		display: none;
	}

	.site-header-actions {
		gap: 10px;
	}

	.menu-toggle {
		min-height: 43px;
		padding: 8px 14px;
	}

	.site-drawer-header {
		padding: 23px 20px 20px;
	}

	.catalog-section {
		padding: 24px 20px;
	}

	.site-drawer-footer {
		padding: 20px;
	}

	.hero {
		min-height: 570px;
		padding-block: 88px;
	}

	.hero::after {
		display: none;
	}

	.hero.hero-visual::before {
		background: linear-gradient(180deg, rgba(47, 49, 54, 0.93) 0%, rgba(55, 65, 81, 0.72) 100%);
	}

	.hero-media img {
		object-position: 64% center;
	}

	.company-intro.additional-services {
		min-height: 520px;
		margin-block: 36px;
		padding-block: 90px;
	}

	.company-intro-media img {
		object-position: 62% center;
	}

	.benefits > h2 {
		margin-bottom: 38px;
	}

	.benefits li {
		min-height: 0;
		padding: 26px 56px 26px 24px;
	}

	.benefits li::before {
		top: 24px;
		right: 22px;
	}

	.has-reveal-motion .benefits.reveal-benefits li.reveal-item {
		transform: translate3d(-46px, 0, 0);
	}

	.products,
	.calculator form,
	.benefits ul,
	.order-process ol,
	.additional-services ul {
		grid-template-columns: 1fr;
	}

	.products,
	.regions,
	.calculator,
	.benefits,
	.order-process,
	.additional-services,
	.reviews,
	.faq,
	.contacts {
		padding-block: clamp(60px, 16vw, 86px);
	}

	.section-visual {
		aspect-ratio: 16 / 9;
	}

	.site-footer-main {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.site-footer-brand,
	.site-footer-action {
		grid-column: auto;
	}

	.site-footer-action {
		padding-top: 32px;
	}

	.site-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 22px;
	}

	.has-reveal-motion .reveal-from-left {
		transform: translate3d(-46px, 0, 0);
	}

	.has-reveal-motion .reveal-from-right {
		transform: translate3d(46px, 0, 0);
	}
}

@media (max-width: 420px) {
	.catalog-links,
	.catalog-list {
		grid-template-columns: 1fr;
	}

	.site-drawer-footer > div {
		flex-wrap: wrap;
	}
}

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

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

	.company-intro-media img {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.has-reveal-motion .reveal-section,
	.has-reveal-motion .reveal-item,
	.has-reveal-motion .hero h1,
	.has-reveal-motion .hero > h1 + p,
	.has-reveal-motion .hero > p:last-child {
		opacity: 1;
		filter: none;
		transform: none;
	}
}
