:root {
	--apex-blue: #0866c6;
	--apex-blue-dark: #054b96;
	--apex-blue-soft: #eaf3fc;
	--apex-ink: #10141a;
	--apex-muted: #5d6570;
	--apex-line: #dfe3e8;
	--apex-surface: #f5f7f9;
	--apex-white: #ffffff;
	--apex-radius-sm: 12px;
	--apex-radius: 22px;
	--apex-radius-lg: 34px;
	--apex-shadow: 0 22px 60px rgba(15, 35, 60, 0.1);
	--apex-shell: 1240px;
	--apex-header: 74px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--apex-white);
	color: var(--apex-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.search-open,
body.menu-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

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

button,
select {
	cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
	font-weight: 680;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.shell {
	width: min(calc(100% - 40px), var(--apex-shell));
	margin-inline: auto;
}

.narrow {
	max-width: 860px;
}

.section {
	padding-block: clamp(72px, 9vw, 128px);
}

.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;
}

.screen-reader-text:focus,
.skip-link:focus {
	top: 10px;
	left: 10px;
	z-index: 99999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 16px;
	margin: 0;
	background: var(--apex-ink);
	color: var(--apex-white);
	border-radius: 8px;
}

:focus-visible {
	outline: 3px solid rgba(8, 102, 198, 0.35);
	outline-offset: 3px;
}

.eyebrow {
	margin-bottom: 14px;
	color: var(--apex-blue);
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.button,
.wp-element-button,
.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid var(--apex-blue);
	border-radius: 999px;
	background: var(--apex-blue);
	color: var(--apex-white);
	font-size: 0.94rem;
	font-weight: 680;
	line-height: 1;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.wp-element-button:hover,
.wpcf7-submit:hover {
	background: var(--apex-blue-dark);
	border-color: var(--apex-blue-dark);
	transform: translateY(-1px);
}

.button-small {
	min-height: 40px;
	padding-inline: 18px;
	font-size: 0.86rem;
}

.button-secondary {
	background: transparent;
	color: var(--apex-blue);
}

.button-secondary:hover {
	background: var(--apex-blue-soft);
	color: var(--apex-blue-dark);
}

.button-light {
	background: var(--apex-white);
	border-color: var(--apex-white);
	color: var(--apex-blue-dark);
}

.button-light:hover {
	background: #edf5fd;
	border-color: #edf5fd;
}

.button-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--apex-blue);
	font-weight: 680;
	transition: color 180ms ease;
}

.text-link span {
	transition: transform 180ms ease;
}

.text-link:hover {
	color: var(--apex-blue-dark);
}

.text-link:hover span {
	transform: translateX(3px);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--apex-header);
	border-bottom: 1px solid rgba(15, 20, 26, 0.08);
	background: rgba(255, 255, 255, 0.86);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
	backdrop-filter: blur(18px) saturate(150%);
	transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 8px 28px rgba(15, 35, 60, 0.07);
}

.header-inner {
	display: grid;
	grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
	align-items: center;
	height: 100%;
	gap: 26px;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 10px;
	min-width: 0;
}

.brand-logo {
	display: block;
	width: auto;
	max-width: 275px;
	height: 43px;
	object-fit: contain;
	object-position: left center;
}

.brand-word {
	color: var(--apex-blue);
	font-size: 1.48rem;
	font-weight: 850;
	font-style: italic;
	letter-spacing: -0.06em;
}

.brand-sub {
	font-size: 0.88rem;
	font-weight: 720;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.site-nav {
	justify-self: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.nav-menu > li {
	position: relative;
}

.nav-menu a {
	display: block;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 580;
	line-height: 1;
	transition: color 180ms ease, background-color 180ms ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
	background: var(--apex-surface);
	color: var(--apex-blue);
}

.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 220px;
	padding: 8px;
	margin: 0;
	list-style: none;
	border: 1px solid var(--apex-line);
	border-radius: 14px;
	background: var(--apex-white);
	box-shadow: var(--apex-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-actions {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 8px;
}

.icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--apex-ink);
	transition: background-color 180ms ease, color 180ms ease;
}

.icon-button:hover {
	background: var(--apex-surface);
	color: var(--apex-blue);
}

.icon-button svg,
.catalog-search svg,
.instant-search svg,
.empty-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
}

.menu-toggle {
	display: none;
	position: relative;
}

.menu-toggle > span:not(.screen-reader-text) {
	position: absolute;
	width: 19px;
	height: 1.5px;
	background: currentColor;
	transition: transform 180ms ease;
}

.menu-toggle > span:nth-child(2) {
	transform: translateY(-4px);
}

.menu-toggle > span:nth-child(3) {
	transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
	transform: rotate(-45deg);
}

/* Search overlay */
.search-panel {
	position: fixed;
	inset: 0;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 200ms ease, visibility 200ms ease;
}

.search-panel.is-open {
	opacity: 1;
	visibility: visible;
}

.search-panel-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 16, 28, 0.42);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.search-panel-dialog {
	position: relative;
	max-height: min(720px, 90vh);
	overflow-y: auto;
	background: var(--apex-white);
	box-shadow: 0 26px 80px rgba(5, 18, 34, 0.22);
	transform: translateY(-18px);
	transition: transform 260ms ease;
}

.search-panel.is-open .search-panel-dialog {
	transform: translateY(0);
}

.search-panel-inner {
	padding-block: 40px 48px;
}

.search-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.search-panel-head .eyebrow {
	margin: 0;
}

.search-close svg {
	width: 20px;
	height: 20px;
}

.instant-search,
.catalog-search {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid var(--apex-line);
}

.instant-search {
	color: var(--apex-blue);
}

.instant-search input,
.catalog-search input {
	width: 100%;
	min-width: 0;
	padding: 18px 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--apex-ink);
}

.instant-search input {
	font-size: clamp(1.45rem, 3vw, 2.6rem);
	font-weight: 620;
	letter-spacing: -0.035em;
}

.instant-search input::placeholder,
.catalog-search input::placeholder {
	color: #9aa1aa;
}

.instant-search button,
.catalog-search button {
	padding: 10px 4px;
	border: 0;
	background: transparent;
	color: var(--apex-blue);
	font-weight: 700;
}

.search-quick-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 24px;
	font-size: 0.9rem;
}

.search-quick-links > span {
	color: var(--apex-muted);
}

.search-quick-links a {
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--apex-surface);
	font-weight: 620;
}

.search-quick-links a:hover {
	background: var(--apex-blue-soft);
	color: var(--apex-blue);
}

.search-suggestions:not(:empty) {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding-top: 22px;
}

.search-result {
	display: grid;
	grid-template-columns: 74px 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 10px;
	border: 1px solid transparent;
	border-radius: 15px;
	background: var(--apex-surface);
	transition: border-color 180ms ease, background-color 180ms ease;
}

.search-result:hover,
.search-result:focus-visible {
	border-color: #c8d9ec;
	background: var(--apex-white);
}

.search-result img,
.search-result-placeholder {
	width: 74px;
	height: 64px;
	object-fit: contain;
	border-radius: 10px;
	background: var(--apex-white);
}

.search-result-placeholder {
	display: grid;
	place-items: center;
	color: var(--apex-blue);
	font-size: 0.72rem;
	font-weight: 800;
}

.search-result strong,
.search-result small {
	display: block;
}

.search-result strong {
	font-size: 0.94rem;
	line-height: 1.3;
}

.search-result small {
	margin-top: 5px;
	color: var(--apex-muted);
	font-size: 0.78rem;
}

.search-result-arrow {
	color: var(--apex-blue);
}

.search-status {
	grid-column: 1 / -1;
	padding: 20px 2px;
	color: var(--apex-muted);
}

/* Home hero */
.hero {
	position: relative;
	overflow: hidden;
	min-height: min(780px, calc(100vh - var(--apex-header)));
	background:
		radial-gradient(circle at 78% 45%, rgba(120, 188, 242, 0.24), transparent 34%),
		linear-gradient(180deg, #f8fbfe 0%, #eef5fb 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
	align-items: center;
	gap: clamp(20px, 5vw, 76px);
	min-height: inherit;
	padding-block: 70px;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 24px;
	font-size: clamp(3rem, 6.2vw, 5.8rem);
	letter-spacing: -0.065em;
}

.hero-lead {
	max-width: 640px;
	margin-bottom: 34px;
	color: var(--apex-muted);
	font-size: clamp(1.05rem, 1.55vw, 1.3rem);
	line-height: 1.55;
}

.hero-products {
	position: relative;
	min-height: 560px;
}

.hero-orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(100%, 540px);
	aspect-ratio: 1;
	border: 1px solid rgba(8, 102, 198, 0.18);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.hero-orbit::before,
.hero-orbit::after {
	content: "";
	position: absolute;
	inset: 12%;
	border: 1px solid rgba(8, 102, 198, 0.11);
	border-radius: 50%;
}

.hero-orbit::after {
	inset: 27%;
}

.hero-product {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: var(--apex-radius);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--apex-shadow);
	transition: transform 240ms ease, box-shadow 240ms ease;
}

.hero-product:hover {
	box-shadow: 0 28px 70px rgba(15, 50, 85, 0.16);
}

.hero-product img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-product span {
	position: absolute;
	right: 12px;
	bottom: 12px;
	left: 12px;
	padding: 8px 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 0.75rem;
	font-weight: 650;
	line-height: 1.25;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.hero-product:hover span,
.hero-product:focus-visible span {
	opacity: 1;
	transform: translateY(0);
}

.hero-product-1 {
	top: 6%;
	right: 2%;
	width: 58%;
	height: 56%;
	transform: rotate(3deg);
}

.hero-product-1:hover {
	transform: rotate(1deg) translateY(-5px);
}

.hero-product-2 {
	bottom: 6%;
	left: 0;
	width: 49%;
	height: 46%;
	transform: rotate(-4deg);
}

.hero-product-2:hover {
	transform: rotate(-2deg) translateY(-5px);
}

.hero-product-3 {
	right: 0;
	bottom: 2%;
	width: 34%;
	height: 32%;
	transform: rotate(5deg);
}

.hero-product-3:hover {
	transform: rotate(3deg) translateY(-5px);
}

.trust-strip {
	border-block: 1px solid var(--apex-line);
	background: var(--apex-white);
}

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

.trust-grid > div {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 10px;
	padding: 28px 20px;
	text-align: center;
}

.trust-grid > div + div {
	border-left: 1px solid var(--apex-line);
}

.trust-grid strong {
	color: var(--apex-blue);
	font-size: 1.45rem;
	letter-spacing: -0.04em;
}

.trust-grid span {
	color: var(--apex-muted);
	font-size: 0.9rem;
}

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

.section-heading h2 {
	margin-bottom: 0;
	font-size: clamp(2.2rem, 4.4vw, 4.2rem);
}

.discovery-section {
	background: var(--apex-white);
}

.discovery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.discovery-card {
	position: relative;
	min-height: 300px;
	padding: 30px;
	overflow: hidden;
	border-radius: var(--apex-radius);
	background: var(--apex-surface);
	transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.discovery-card:hover {
	background: var(--apex-blue-soft);
	box-shadow: 0 18px 45px rgba(20, 55, 90, 0.1);
	transform: translateY(-4px);
}

.discovery-card:nth-child(2) {
	background: #eff5fb;
}

.discovery-card:nth-child(3) {
	background: #f7f5f2;
}

.discovery-card:nth-child(4) {
	background: #eef3f6;
}

.discovery-icon {
	display: block;
	width: 54px;
	height: 8px;
	margin-bottom: 86px;
	border-radius: 999px;
	background: var(--apex-blue);
	box-shadow: 0 14px 0 rgba(8, 102, 198, 0.38), 0 28px 0 rgba(8, 102, 198, 0.16);
	transform: rotate(-7deg);
}

.discovery-card:nth-child(2) .discovery-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	box-shadow: 26px 10px 0 rgba(8, 102, 198, 0.32), 7px 34px 0 rgba(8, 102, 198, 0.16);
}

.discovery-card:nth-child(3) .discovery-icon {
	width: 60px;
	height: 45px;
	border: 6px solid var(--apex-blue);
	border-radius: 7px;
	background: transparent;
	box-shadow: 9px 9px 0 rgba(8, 102, 198, 0.16);
	transform: none;
}

.discovery-card:nth-child(4) .discovery-icon {
	width: 68px;
	height: 4px;
	box-shadow: 0 10px 0 rgba(8, 102, 198, 0.3);
	transform: rotate(18deg);
}

.discovery-card h3 {
	margin-bottom: 12px;
	font-size: 1.32rem;
}

.discovery-card p {
	margin-bottom: 0;
	color: var(--apex-muted);
	font-size: 0.92rem;
}

.round-arrow {
	position: absolute;
	right: 24px;
	bottom: 24px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--apex-white);
	color: var(--apex-blue);
	font-weight: 720;
}

.brands-section,
.latest-section {
	background: var(--apex-surface);
}

.brand-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.brand-card {
	display: grid;
	grid-template-columns: 74px 1fr auto;
	align-items: center;
	gap: 16px;
	min-height: 104px;
	padding: 14px;
	border: 1px solid transparent;
	border-radius: 18px;
	background: var(--apex-white);
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.brand-card:hover {
	border-color: #ccd8e4;
	box-shadow: 0 14px 34px rgba(15, 35, 60, 0.08);
	transform: translateY(-2px);
}

.brand-card-media {
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	padding: 7px;
	border-radius: 14px;
	background: var(--apex-surface);
}

.brand-card-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.brand-card-media > span {
	color: var(--apex-blue);
	font-size: 1.8rem;
	font-weight: 780;
}

.brand-card h3 {
	margin-bottom: 5px;
	font-size: 1rem;
	letter-spacing: -0.02em;
}

.brand-card p {
	margin: 0;
	color: var(--apex-muted);
	font-size: 0.8rem;
}

.brand-card > span {
	padding-right: 4px;
	color: var(--apex-blue);
}

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

.product-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(15, 35, 60, 0.08);
	border-radius: var(--apex-radius);
	background: var(--apex-white);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
	border-color: rgba(8, 102, 198, 0.2);
	box-shadow: 0 20px 50px rgba(15, 35, 60, 0.1);
	transform: translateY(-4px);
}

.product-card-link {
	display: block;
	height: 100%;
}

.product-card-media {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	padding: 28px;
	background: #f8f9fa;
	border-bottom: 1px solid rgba(15, 35, 60, 0.06);
}

.product-card-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 280ms ease;
}

.product-card:hover .product-card-media img {
	transform: scale(1.035);
}

.product-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border: 1px dashed #c8d0d9;
	border-radius: 16px;
	color: #a3acb6;
}

.product-placeholder span {
	font-size: 1.4rem;
	font-weight: 820;
	font-style: italic;
}

.product-card-copy {
	padding: 22px;
}

.product-category {
	margin-bottom: 9px;
	color: var(--apex-blue);
	font-size: 0.72rem;
	font-weight: 720;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-card h2 {
	min-height: 3.2em;
	margin-bottom: 20px;
	font-size: 1.02rem;
	letter-spacing: -0.02em;
	line-height: 1.38;
}

.product-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	color: var(--apex-muted);
	font-size: 0.79rem;
}

.product-card-meta svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--apex-blue);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.product-card:hover .product-card-meta svg {
	transform: translateX(3px);
}

.story-section {
	padding-bottom: 0;
}

.story-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: center;
	gap: 70px;
	min-height: 520px;
	padding: clamp(42px, 7vw, 90px);
	overflow: hidden;
	border-radius: var(--apex-radius-lg);
	background: var(--apex-blue);
	color: var(--apex-white);
}

.story-card .eyebrow {
	color: #b9dcff;
}

.story-card h2 {
	margin-bottom: 22px;
	font-size: clamp(2.6rem, 5vw, 5rem);
}

.story-card p:not(.eyebrow) {
	max-width: 690px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.08rem;
}

.story-mark {
	display: grid;
	place-items: center;
	width: 390px;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	box-shadow: inset 0 0 0 55px rgba(255, 255, 255, 0.06), inset 0 0 0 110px rgba(255, 255, 255, 0.04);
	transform: rotate(-9deg);
}

.story-mark span {
	font-size: 10rem;
	font-weight: 800;
	font-style: italic;
	letter-spacing: -0.12em;
}

.contact-cta {
	padding-block: 90px;
}

.contact-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 44px 50px;
	border: 1px solid var(--apex-line);
	border-radius: var(--apex-radius);
}

.contact-card h2 {
	max-width: 760px;
	margin-bottom: 0;
	font-size: clamp(1.8rem, 3.4vw, 3rem);
}

/* Catalog */
.catalog-hero,
.page-hero {
	padding-block: clamp(74px, 10vw, 132px) clamp(60px, 8vw, 104px);
	background: var(--apex-surface);
}

.catalog-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
	align-items: end;
	gap: 70px;
}

.catalog-hero h1,
.page-hero h1 {
	margin-bottom: 18px;
	font-size: clamp(3rem, 6vw, 5.5rem);
}

.catalog-hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
	max-width: 690px;
	margin-bottom: 0;
	color: var(--apex-muted);
	font-size: 1.08rem;
}

.catalog-search {
	color: var(--apex-blue);
}

.catalog-search input {
	font-size: 1rem;
}

.catalog-section {
	padding-top: 56px;
}

.catalog-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	margin-bottom: 24px;
}

.catalog-count {
	display: flex;
	align-items: baseline;
	gap: 6px;
	color: var(--apex-muted);
	font-size: 0.9rem;
}

.catalog-count strong {
	color: var(--apex-ink);
	font-size: 1.15rem;
}

.catalog-sort {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
}

.catalog-sort label {
	color: var(--apex-muted);
}

.catalog-sort select {
	min-height: 42px;
	padding: 0 36px 0 14px;
	border: 1px solid var(--apex-line);
	border-radius: 12px;
	background: var(--apex-white);
	color: var(--apex-ink);
}

.category-filter {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 22px;
	margin-bottom: 34px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.category-filter a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 9px 14px;
	border: 1px solid var(--apex-line);
	border-radius: 999px;
	background: var(--apex-white);
	font-size: 0.83rem;
	font-weight: 620;
}

.category-filter a:hover,
.category-filter a.is-active {
	border-color: var(--apex-blue);
	background: var(--apex-blue);
	color: var(--apex-white);
}

.category-filter span {
	opacity: 0.68;
	font-size: 0.72rem;
}

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

.pagination {
	margin-top: 54px;
}

.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 7px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.pagination a,
.pagination span {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 12px;
	border: 1px solid var(--apex-line);
	border-radius: 11px;
	font-size: 0.86rem;
}

.pagination .current,
.pagination a:hover {
	border-color: var(--apex-blue);
	background: var(--apex-blue);
	color: var(--apex-white);
}

.catalog-empty {
	max-width: 650px;
	padding: 60px;
	margin: 50px auto;
	border-radius: var(--apex-radius);
	background: var(--apex-surface);
	text-align: center;
}

.empty-icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--apex-blue-soft);
	color: var(--apex-blue);
}

.catalog-empty h2 {
	font-size: 2rem;
}

.catalog-empty p {
	margin-bottom: 25px;
	color: var(--apex-muted);
}

/* Product detail */
.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 30px;
	overflow: hidden;
	color: var(--apex-muted);
	font-size: 0.78rem;
	white-space: nowrap;
}

.breadcrumbs a:hover {
	color: var(--apex-blue);
}

.breadcrumbs > span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
	align-items: center;
	gap: clamp(44px, 7vw, 100px);
	padding-block: clamp(48px, 8vw, 110px);
}

.product-visual {
	display: grid;
	place-items: center;
	min-height: 570px;
	padding: clamp(34px, 6vw, 74px);
	border-radius: var(--apex-radius-lg);
	background: var(--apex-surface);
}

.product-visual img {
	width: 100%;
	max-height: 600px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.product-placeholder-large {
	min-height: 420px;
}

.category-link {
	display: inline-block;
}

.product-summary h1 {
	margin-bottom: 18px;
	font-size: clamp(2.4rem, 4.8vw, 4.8rem);
}

.product-code {
	margin-bottom: 26px;
	color: var(--apex-muted);
	font-size: 0.9rem;
}

.product-intro {
	margin-bottom: 32px;
	color: var(--apex-muted);
	font-size: 1.05rem;
}

.product-intro p:last-child {
	margin-bottom: 0;
}

.product-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.product-assistance {
	margin-top: 18px;
	color: var(--apex-muted);
	font-size: 0.8rem;
}

.product-details {
	padding-top: 40px;
}

.spec-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	border-top: 1px solid var(--apex-line);
}

.spec-grid > div {
	display: grid;
	grid-template-columns: minmax(120px, 0.7fr) 1fr;
	gap: 24px;
	padding: 22px 4px;
	border-bottom: 1px solid var(--apex-line);
}

.spec-grid > div:nth-child(odd) {
	margin-right: 30px;
}

.spec-grid dt {
	color: var(--apex-muted);
	font-size: 0.85rem;
}

.spec-grid dd {
	margin: 0;
	font-weight: 620;
}

.related-products {
	background: var(--apex-surface);
}

/* Pages and forms */
.page-content .prose,
.prose {
	font-size: 1.05rem;
}

.prose > * {
	max-width: 760px;
	margin-inline: auto;
}

.prose h2,
.prose h3 {
	margin-top: 2em;
	margin-bottom: 0.8em;
}

.prose h2 {
	font-size: 2rem;
}

.prose a {
	color: var(--apex-blue);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	align-items: start;
	gap: clamp(30px, 6vw, 82px);
}

.contact-form-card,
.contact-info-card {
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid var(--apex-line);
	border-radius: var(--apex-radius);
}

.contact-form-card h2 {
	margin-bottom: 28px;
	font-size: 2rem;
}

.contact-info-card {
	background: var(--apex-surface);
}

.contact-info-card > div {
	padding-block: 18px;
	border-bottom: 1px solid var(--apex-line);
}

.contact-info-card > div:first-child {
	padding-top: 0;
}

.contact-info-card > div:last-of-type {
	margin-bottom: 24px;
}

.contact-info-card span,
.contact-info-card a,
.contact-info-card p {
	display: block;
}

.contact-info-card span {
	margin-bottom: 6px;
	color: var(--apex-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-info-card p {
	margin-bottom: 0;
}

.wpcf7-form label {
	display: block;
	margin-bottom: 18px;
	font-size: 0.88rem;
	font-weight: 650;
}

.wpcf7-form-control:not(.wpcf7-submit),
.prose input:not([type="submit"]),
.prose textarea,
.prose select {
	width: 100%;
	margin-top: 7px;
	padding: 13px 15px;
	border: 1px solid #cfd5dc;
	border-radius: 11px;
	background: var(--apex-white);
	color: var(--apex-ink);
}

.wpcf7-form-control:focus {
	border-color: var(--apex-blue);
	outline: 3px solid rgba(8, 102, 198, 0.12);
}

.wpcf7-not-valid-tip {
	margin-top: 5px;
	font-size: 0.78rem;
}

.wpcf7-response-output {
	padding: 12px 14px !important;
	margin: 20px 0 0 !important;
	border-width: 1px !important;
	border-radius: 10px;
}

.not-found {
	display: grid;
	place-items: center;
	min-height: calc(100vh - var(--apex-header));
	padding-block: 90px;
	text-align: center;
}

.not-found h1 {
	margin-bottom: 20px;
	font-size: clamp(2.8rem, 6vw, 5rem);
}

.not-found p:not(.eyebrow) {
	margin-bottom: 30px;
	color: var(--apex-muted);
	font-size: 1.08rem;
}

.not-found .button-row {
	justify-content: center;
}

.journal-entry {
	padding-block: 28px;
	border-bottom: 1px solid var(--apex-line);
}

.journal-entry h2 {
	font-size: 1.7rem;
}

/* Footer */
.site-footer {
	padding-block: 72px 28px;
	background: #0d1825;
	color: var(--apex-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(300px, 1.5fr) minmax(180px, 0.7fr) minmax(260px, 1fr);
	gap: 60px;
}

.brand-footer {
	margin-bottom: 20px;
}

.brand-footer .brand-word,
.brand-footer .brand-sub {
	color: var(--apex-white);
}

.footer-brand p {
	max-width: 440px;
	color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
	margin-bottom: 18px;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-links {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links li + li {
	margin-top: 9px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
	color: var(--apex-white);
}

.footer-contact a {
	display: block;
	margin-bottom: 8px;
}

.footer-contact p {
	max-width: 320px;
	margin-top: 18px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 45px;
	margin-top: 55px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.78rem;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	.header-inner {
		grid-template-columns: minmax(170px, 1fr) auto minmax(130px, 1fr);
		gap: 12px;
	}

	.brand-logo {
		max-width: 220px;
		height: 38px;
	}

	.nav-menu a {
		padding-inline: 9px;
		font-size: 0.82rem;
	}

	.hero-grid {
		grid-template-columns: 0.95fr 1.05fr;
	}

	.discovery-grid,
	.brand-grid,
	.product-grid,
	.catalog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.catalog-hero-inner {
		gap: 40px;
	}
}

@media (max-width: 820px) {
	:root {
		--apex-header: 66px;
	}

	.shell {
		width: min(calc(100% - 30px), var(--apex-shell));
	}

	.header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.brand {
		justify-self: center;
		grid-column: 2;
		grid-row: 1;
	}

	.brand-logo {
		max-width: 215px;
		height: 36px;
	}

	.menu-toggle {
		display: inline-flex;
		grid-column: 1;
		grid-row: 1;
	}

	.header-actions {
		grid-column: 3;
		grid-row: 1;
	}

	.header-contact {
		display: none;
	}

	.site-nav {
		position: fixed;
		top: var(--apex-header);
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 22px 20px 40px;
		overflow-y: auto;
		background: rgba(255, 255, 255, 0.98);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav-menu {
		display: block;
	}

	.nav-menu a {
		padding: 18px 8px;
		border-bottom: 1px solid var(--apex-line);
		border-radius: 0;
		font-size: 1.25rem;
	}

	.nav-menu a:hover,
	.nav-menu .current-menu-item > a,
	.nav-menu .current_page_item > a {
		background: transparent;
	}

	.nav-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 0 16px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.nav-menu .sub-menu a {
		font-size: 1rem;
	}

	.hero {
		min-height: auto;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding-block: 76px 35px;
	}

	.hero-copy {
		text-align: center;
	}

	.hero h1,
	.hero-lead {
		margin-inline: auto;
	}

	.hero-copy .button-row {
		justify-content: center;
	}

	.hero-products {
		min-height: 490px;
	}

	.hero-product-1 {
		right: 7%;
		width: 54%;
	}

	.hero-product-2 {
		left: 4%;
	}

	.trust-grid > div {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.story-card {
		grid-template-columns: 1fr 220px;
		gap: 30px;
		min-height: 450px;
	}

	.story-mark {
		width: 270px;
	}

	.story-mark span {
		font-size: 7rem;
	}

	.catalog-hero-inner,
	.product-hero-grid,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.catalog-hero-inner {
		gap: 36px;
	}

	.product-visual {
		min-height: 430px;
	}

	.product-summary {
		max-width: 680px;
	}

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

	.spec-grid > div:nth-child(odd) {
		margin-right: 0;
	}

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

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

@media (max-width: 600px) {
	.section {
		padding-block: 70px;
	}

	.brand-logo {
		max-width: 176px;
		height: 32px;
	}

	.search-panel-inner {
		padding-block: 24px 34px;
	}

	.instant-search {
		grid-template-columns: auto 1fr;
	}

	.instant-search button {
		grid-column: 2;
		justify-self: start;
		padding-top: 0;
		padding-bottom: 16px;
	}

	.search-suggestions:not(:empty) {
		grid-template-columns: 1fr;
	}

	.search-quick-links {
		align-items: flex-start;
	}

	.search-quick-links > span {
		width: 100%;
	}

	.hero-grid {
		padding-top: 58px;
	}

	.hero h1 {
		font-size: clamp(2.75rem, 13.5vw, 4rem);
	}

	.hero-products {
		min-height: 390px;
	}

	.hero-product {
		padding: 14px;
		border-radius: 17px;
	}

	.hero-product-1 {
		top: 3%;
		right: 2%;
		width: 58%;
		height: 54%;
	}

	.hero-product-2 {
		bottom: 7%;
		left: 0;
		width: 54%;
		height: 48%;
	}

	.hero-product-3 {
		right: 0;
		bottom: 5%;
		width: 37%;
		height: 34%;
	}

	.trust-grid {
		grid-template-columns: 1fr;
		padding-block: 8px;
	}

	.trust-grid > div {
		flex-direction: row;
		justify-content: flex-start;
		padding: 14px 5px;
	}

	.trust-grid > div + div {
		border-top: 1px solid var(--apex-line);
		border-left: 0;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.discovery-grid,
	.brand-grid,
	.product-grid,
	.catalog-grid {
		grid-template-columns: 1fr;
	}

	.discovery-card {
		min-height: 260px;
	}

	.product-grid {
		gap: 14px;
	}

	.product-card-link {
		display: grid;
		grid-template-columns: 132px 1fr;
	}

	.product-card-media {
		aspect-ratio: auto;
		min-height: 170px;
		padding: 16px;
		border-right: 1px solid rgba(15, 35, 60, 0.06);
		border-bottom: 0;
	}

	.product-card-copy {
		padding: 19px 16px;
	}

	.product-card h2 {
		min-height: 0;
		margin-bottom: 14px;
		font-size: 0.92rem;
	}

	.product-card-meta {
		font-size: 0.72rem;
	}

	.story-card {
		grid-template-columns: 1fr;
		gap: 30px;
		min-height: 0;
		padding: 44px 30px;
	}

	.story-mark {
		position: absolute;
		right: -100px;
		bottom: -100px;
		width: 260px;
		opacity: 0.17;
	}

	.contact-card {
		align-items: flex-start;
		flex-direction: column;
		padding: 32px;
	}

	.catalog-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.catalog-sort {
		width: 100%;
	}

	.catalog-sort select {
		flex: 1;
	}

	.catalog-empty {
		padding: 38px 24px;
	}

	.product-hero-grid {
		padding-top: 34px;
	}

	.product-visual {
		min-height: 330px;
		padding: 26px;
	}

	.product-actions .button {
		width: 100%;
	}

	.spec-grid > div {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.footer-brand {
		grid-column: auto;
	}
}

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

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

	.reveal {
		opacity: 1;
		transform: none;
	}
}

