:root {
	--color-ink: #16212b;
	--color-muted: #63717d;
	--color-line: #dbe5ea;
	--color-surface: #ffffff;
	--color-soft: #f4f8fa;
	--color-deep: #122330;
	--color-deep-2: #263743;
	--color-brass: #1f7a8c;
	--color-brass-dark: #145d6c;
	--color-red: #c76f43;
	--color-cool: #e8f4f6;
	--color-mint: #2d9d8f;
	--shadow-soft: 0 18px 45px rgba(22, 33, 43, 0.09);
	--shadow-lift: 0 24px 60px rgba(22, 33, 43, 0.15);
	--radius: 8px;
	--container: 1180px;
	--ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(90deg, rgba(31, 122, 140, 0.045) 1px, transparent 1px),
		linear-gradient(180deg, #fff 0, #f8fbfc 48%, #fff 100%);
	background-size: 44px 44px, auto;
	color: var(--color-ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.22s ease;
}

a:hover,
a:focus {
	color: var(--color-brass-dark);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 14px;
	color: var(--color-ink);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: 0;
}

h1 {
	font-size: 4.25rem;
	max-width: 860px;
}

h2 {
	font-size: 2.35rem;
}

h3 {
	font-size: 1.15rem;
}

p {
	margin: 0 0 18px;
	color: var(--color-muted);
}

ul,
ol {
	color: var(--color-muted);
}

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

.narrow {
	width: min(100% - 40px, 820px);
}

.center {
	text-align: center;
}

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

.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--color-deep);
	color: #fff;
	clip: auto;
}

.top-bar {
	background: linear-gradient(90deg, #122330, #1f7a8c);
	color: #fff;
	font-size: 0.9rem;
}

.top-bar__inner {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.top-bar__links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.top-bar a {
	color: #fff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid var(--color-line);
	backdrop-filter: blur(12px);
	transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 12px 30px rgba(22, 33, 43, 0.08);
}

.site-header__inner {
	min-height: 84px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-ink);
}

.site-logo__mark {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-brass), var(--color-mint));
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(31, 122, 140, 0.26);
}

.site-logo strong,
.site-logo small {
	display: block;
}

.site-logo small {
	color: var(--color-muted);
	font-size: 0.78rem;
}

.custom-logo-link img {
	max-height: 64px;
	width: auto;
}

.primary-navigation {
	margin-left: auto;
}

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

.nav-menu a {
	position: relative;
	display: block;
	padding: 10px 13px;
	border-radius: 6px;
	color: var(--color-ink);
	font-weight: 700;
	font-size: 0.95rem;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	right: 12px;
	bottom: 7px;
	left: 12px;
	height: 2px;
	background: var(--color-brass);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.24s var(--ease-out);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
	background: var(--color-cool);
	color: var(--color-brass-dark);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.header-cta,
.button {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid var(--color-brass);
	border-radius: 6px;
	background: var(--color-brass);
	color: #fff;
	font-weight: 700;
	text-align: center;
	box-shadow: 0 12px 28px rgba(31, 122, 140, 0.18);
	transition: transform 0.22s var(--ease-out), background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.header-cta::before,
.button::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.5s var(--ease-out);
}

.header-cta:hover::before,
.button:hover::before,
.header-cta:focus::before,
.button:focus::before {
	transform: translateX(120%);
}

.header-cta:hover,
.button:hover,
.header-cta:focus,
.button:focus {
	background: var(--color-brass-dark);
	border-color: var(--color-brass-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lift);
}

.button--ghost {
	background: transparent;
	color: var(--color-ink);
	border-color: var(--color-line);
}

.button--ghost:hover,
.button--ghost:focus {
	background: var(--color-deep);
	border-color: var(--color-deep);
	color: #fff;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 28px;
}

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

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-brass-dark);
	font-weight: 700;
}

.text-link::after {
	content: "";
	width: 20px;
	height: 1px;
	background: currentColor;
	transition: width 0.22s var(--ease-out);
}

.text-link:hover::after,
.text-link:focus::after {
	width: 34px;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border: 1px solid var(--color-line);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	width: 20px;
	height: 2px;
	background: var(--color-ink);
}

.hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(110deg, rgba(255, 255, 255, 0.97), rgba(232, 244, 246, 0.9)),
		repeating-linear-gradient(135deg, rgba(31, 122, 140, 0.055) 0, rgba(31, 122, 140, 0.055) 1px, transparent 1px, transparent 18px),
		linear-gradient(45deg, #ffffff, #e8f4f6);
	color: var(--color-ink);
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 12px;
	background: linear-gradient(90deg, var(--color-brass), var(--color-mint), var(--color-red));
}

.hero::before {
	content: "";
	position: absolute;
	top: 16%;
	right: -70px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(31, 122, 140, 0.18);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(45, 157, 143, 0.12), transparent 66%);
	pointer-events: none;
}

.hero__grid {
	position: relative;
	z-index: 1;
	min-height: 620px;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
	align-items: center;
	gap: 48px;
	padding-block: 72px 84px;
}

.hero h1 {
	color: var(--color-ink);
}

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

.hero__copy > p:not(.eyebrow) {
	max-width: 680px;
	font-size: 1.1rem;
	color: var(--color-muted);
}

.eyebrow {
	margin-bottom: 12px;
	color: var(--color-brass);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero .eyebrow {
	color: var(--color-brass-dark);
}

.hero__visual {
	position: relative;
	padding: 24px;
	border: 1px solid rgba(31, 122, 140, 0.16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 28px 70px rgba(22, 33, 43, 0.12);
}

.hero__visual img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	filter: drop-shadow(0 22px 24px rgba(22, 33, 43, 0.14));
	animation: float-soft 5.5s ease-in-out infinite;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.stat-card {
	padding: 18px;
	border: 1px solid rgba(31, 122, 140, 0.16);
	border-radius: var(--radius);
	background: #ffffff;
	transition: transform 0.22s var(--ease-out), background 0.22s ease;
}

.stat-card:hover {
	transform: translateY(-4px);
	background: var(--color-cool);
}

.stat-card strong {
	display: block;
	color: var(--color-brass-dark);
	font-size: 2.25rem;
	line-height: 1;
}

.stat-card span {
	color: var(--color-muted);
	font-weight: 700;
}

.section,
.product-detail {
	padding-block: 82px;
}

.section {
	position: relative;
}

.section--muted {
	background:
		linear-gradient(90deg, rgba(232, 244, 246, 0.72), rgba(255, 255, 255, 0.72)),
		var(--color-soft);
}

.section-heading {
	max-width: 820px;
	margin-bottom: 36px;
}

.section-heading.center {
	text-align: center;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
	gap: 48px;
	align-items: start;
}

.feature-list {
	display: grid;
	gap: 14px;
}

.feature-list > div,
.info-card,
.listing-card,
.contact-panel {
	padding: 26px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-soft);
	transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-list > div:hover,
.info-card:hover,
.listing-card:hover,
.contact-panel:hover {
	transform: translateY(-5px);
	border-color: rgba(31, 122, 140, 0.42);
	box-shadow: var(--shadow-lift);
}

.section-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-soft);
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.section-image:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: var(--shadow-lift);
}

.section-image--tall {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	padding: 24px;
	background: #fff;
}

.feature-list strong,
.feature-list span {
	display: block;
}

.feature-list span {
	color: var(--color-muted);
}

.cards-3,
.product-grid,
.machine-grid,
.quality-list,
.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cards-3--stack {
	grid-template-columns: 1fr;
}

.product-card {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 12px 30px rgba(22, 33, 43, 0.07);
	transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover,
.product-card:focus-within {
	transform: translateY(-8px);
	border-color: rgba(31, 122, 140, 0.46);
	box-shadow: var(--shadow-lift);
}

.product-card__image {
	aspect-ratio: 4 / 3;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #e8f4f6, #fff);
	color: var(--color-brass-dark);
	font-weight: 700;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s var(--ease-out);
}

.product-card:hover .product-card__image img,
.product-card:focus-within .product-card__image img {
	transform: scale(1.06);
}

.product-card__body {
	padding: 22px;
}

.product-card__body h2 {
	font-size: 1.15rem;
}

.product-card__category {
	margin-bottom: 8px;
	color: var(--color-brass-dark);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.process-step,
.machine-card,
.quality-item {
	padding: 26px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: #fff;
	transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-step:hover,
.machine-card:hover,
.quality-item:hover {
	transform: translateY(-6px);
	border-color: rgba(31, 122, 140, 0.42);
	box-shadow: var(--shadow-lift);
}

.process-step img {
	width: 74px;
	height: 86px;
	object-fit: contain;
	margin-bottom: 14px;
	transition: transform 0.28s var(--ease-out);
}

.process-step:hover img {
	transform: translateY(-4px) rotate(-2deg);
}

.process-step span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--color-cool);
	color: var(--color-brass-dark);
	font-weight: 700;
}

.machine-card dl {
	margin: 0;
	display: grid;
	gap: 14px;
}

.machine-card img,
.quality-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	margin-bottom: 18px;
	border-radius: 6px;
	background: var(--color-cool);
	transition: transform 0.32s var(--ease-out);
}

.machine-card:hover img,
.quality-item:hover img {
	transform: scale(1.025);
}

.quality-item img {
	object-fit: cover;
}

.machine-card dt {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.machine-card dd {
	margin: 3px 0 0;
	color: var(--color-ink);
}

.page-hero {
	padding-block: 76px;
	background:
		linear-gradient(90deg, rgba(31, 122, 140, 0.13), transparent 46%),
		var(--color-soft);
	border-bottom: 1px solid var(--color-line);
}

.page-hero h1 {
	color: var(--color-ink);
}

.page-hero p:not(.eyebrow) {
	max-width: 760px;
	font-size: 1.08rem;
}

.taxonomy-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.taxonomy-filter a {
	padding: 8px 12px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	color: var(--color-ink);
	font-weight: 700;
	font-size: 0.88rem;
	transition: transform 0.2s var(--ease-out), background 0.2s ease, border-color 0.2s ease;
}

.taxonomy-filter a:hover,
.taxonomy-filter a:focus {
	transform: translateY(-2px);
	border-color: var(--color-brass);
	background: var(--color-cool);
}

.product-detail__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: start;
}

.product-detail__media img,
.product-placeholder {
	width: 100%;
	border-radius: var(--radius);
	border: 1px solid var(--color-line);
	background: var(--color-cool);
}

.product-placeholder {
	aspect-ratio: 4 / 3;
	display: grid;
	place-items: center;
	color: var(--color-brass-dark);
	font-weight: 700;
}

.content-body {
	color: var(--color-muted);
}

.content-body a {
	color: var(--color-brass-dark);
	text-decoration: underline;
}

.content-body table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.content-body th,
.content-body td {
	padding: 12px;
	border: 1px solid var(--color-line);
	text-align: left;
	vertical-align: top;
}

.content-list {
	display: grid;
	gap: 18px;
}

.contact-band {
	padding-block: 48px;
	background:
		repeating-linear-gradient(135deg, rgba(31, 122, 140, 0.07) 0, rgba(31, 122, 140, 0.07) 1px, transparent 1px, transparent 18px),
		linear-gradient(100deg, #ffffff, #e8f4f6);
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
	color: var(--color-ink);
}

.contact-band h2 {
	color: var(--color-ink);
}

.contact-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.contact-list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	color: var(--color-muted);
}

.contact-list a {
	color: inherit;
}

.contact-list--large li {
	display: grid;
	gap: 5px;
}

.contact-list--large strong {
	color: var(--color-ink);
}

.site-footer {
	background:
		linear-gradient(180deg, #ffffff, #f4f8fa);
	border-top: 1px solid var(--color-line);
	color: var(--color-muted);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.7fr 1fr;
	gap: 36px;
	padding-block: 58px;
}

.site-footer h2,
.site-footer h3 {
	color: var(--color-ink);
}

.site-footer p,
.site-footer .contact-list {
	color: var(--color-muted);
}

.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
	display: grid;
	gap: 9px;
}

.footer-menu a,
.site-footer a {
	color: var(--color-muted);
}

.footer-menu a:hover,
.site-footer a:hover {
	color: var(--color-brass-dark);
}

.site-footer__bottom {
	border-top: 1px solid var(--color-line);
	padding-block: 18px;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.9rem;
}

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.page-numbers {
	display: inline-grid;
	min-width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--color-line);
	border-radius: 6px;
	background: #fff;
	color: var(--color-ink);
}

.page-numbers.current {
	background: var(--color-brass);
	color: #fff;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.hero__visual.reveal {
	transform: translateY(24px) scale(0.98);
}

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

@keyframes float-soft {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

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

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

@media (max-width: 980px) {
	h1 {
		font-size: 3.2rem;
	}

	h2 {
		font-size: 2rem;
	}

	.header-cta {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.primary-navigation {
		position: absolute;
		inset: 100% 0 auto;
		display: none;
		padding: 16px 20px 22px;
		background: #fff;
		border-bottom: 1px solid var(--color-line);
		box-shadow: var(--shadow-soft);
	}

	.nav-open .primary-navigation {
		display: block;
	}

	.nav-menu {
		display: grid;
		gap: 4px;
	}

	.nav-menu a {
		padding: 12px;
	}

	.hero__grid,
	.split,
	.product-detail__grid,
	.contact-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.hero__grid {
		min-height: auto;
	}

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

	.cards-3,
	.product-grid,
	.machine-grid,
	.quality-list,
	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	h1 {
		font-size: 2.35rem;
	}

	h2 {
		font-size: 1.65rem;
	}

	.container,
	.narrow {
		width: min(100% - 28px, var(--container));
	}

	.top-bar__inner,
	.top-bar__links,
	.contact-band__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.top-bar__inner {
		padding-block: 10px;
		gap: 6px;
	}

	.site-header__inner {
		min-height: 74px;
	}

	.site-logo small {
		display: none;
	}

	.hero__grid,
	.section,
	.product-detail,
	.page-hero {
		padding-block: 54px;
	}

	.cards-3,
	.product-grid,
	.machine-grid,
	.quality-list,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.button,
	.button--ghost {
		width: 100%;
	}

	.button-row {
		width: 100%;
	}
}
