:root {
	--accent: #c94016;
	--accent-dark: #b73510;
	--accent-light: #ff8a65;
	--ink: #222;
	--muted: #666;
	--surface: #f5f5f3;
	--line: #e1e1dd;
	--white: #fff;
	--footer: #171a19;
	--radius: 18px;
	--shadow: 0 16px 45px rgba(24, 24, 24, 0.08);
	--shell: min(1200px, calc(100% - 40px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--white);
	color: var(--ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

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

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

.uiccer-picture {
	display: contents;
}

a {
	color: inherit;
}

h1,
h2,
h3 {
	letter-spacing: -0.025em;
	line-height: 1.14;
	margin-top: 0;
}

h1 {
	font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h2 {
	font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
	font-size: 1.35rem;
}

.site-shell {
	margin-inline: auto;
	width: var(--shell);
}

.narrow-shell {
	max-width: 820px;
}

.section {
	padding-block: clamp(64px, 8vw, 112px);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus,
.skip-link:focus {
	background: var(--white);
	clip: auto;
	clip-path: none;
	color: var(--ink);
	height: auto;
	left: 12px;
	padding: 12px 16px;
	top: 12px;
	width: auto;
	z-index: 10000;
}

.button {
	align-items: center;
	background: var(--accent);
	border: 2px solid var(--accent);
	border-radius: 999px;
	color: var(--white);
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	min-height: 48px;
	padding: 10px 24px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
	background: var(--accent-dark);
	border-color: var(--accent-dark);
	transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(201, 64, 22, 0.35);
	outline-offset: 3px;
}

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

.text-link {
	color: var(--accent-dark);
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.eyebrow {
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(34, 34, 34, 0.08);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: auto 1fr auto;
	min-height: 82px;
}

.custom-logo {
	max-height: 54px;
	width: auto;
}

.wordmark {
	color: var(--ink);
	font-size: 1.55rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-decoration: none;
}

.primary-navigation {
	justify-self: center;
}

.site-menu,
.footer-menu,
.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-menu {
	align-items: center;
	display: flex;
	gap: 8px;
}

.site-menu a {
	border-radius: 999px;
	display: block;
	font-weight: 650;
	padding: 10px 16px;
	text-decoration: none;
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
	background: var(--accent);
	color: var(--white);
}

.menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	padding: 8px;
}

.menu-toggle > span:not(.screen-reader-text) {
	background: var(--ink);
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 25px;
}

.hero {
	background: linear-gradient(125deg, #282828 0%, #101010 75%);
	color: var(--white);
	display: grid;
	min-height: min(700px, 78vh);
	overflow: hidden;
	place-items: center;
	position: relative;
}

.hero-media,
.hero-media::after {
	inset: 0;
	position: absolute;
}

.hero-media::after {
	background: linear-gradient(90deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.2));
	content: "";
}

.hero-media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hero-content {
	padding-block: 84px;
	position: relative;
	z-index: 1;
}

.hero-content h1 {
	max-width: 820px;
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.45rem);
	margin: -10px 0 32px;
	max-width: 680px;
}

.section-heading {
	margin-bottom: 42px;
	max-width: 780px;
}

.split-heading {
	align-items: end;
	display: flex;
	justify-content: space-between;
	max-width: none;
}

.split-heading h2 {
	margin-bottom: 0;
}

.category-section,
.page-main {
	background: var(--surface);
}

.category-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	text-decoration: none;
	transition: transform 180ms ease;
}

.category-card:hover {
	transform: translateY(-4px);
}

.category-card-media {
	align-items: center;
	aspect-ratio: 3 / 2;
	background: linear-gradient(135deg, #333, #111);
	color: rgba(255, 255, 255, 0.2);
	display: flex;
	font-size: 4.8rem;
	font-weight: 900;
	justify-content: center;
	overflow: hidden;
}

.category-card-media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.category-card-content {
	padding: 22px 24px;
}

.category-card-content h3 {
	margin-bottom: 4px;
}

.category-card-content p {
	color: var(--muted);
	margin: 0;
}

.factory-facts {
	background: var(--ink);
	color: var(--white);
	padding-block: 40px;
}

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

.fact {
	border-right: 1px solid rgba(255, 255, 255, 0.18);
	padding: 12px 28px;
	text-align: center;
}

.fact:last-child {
	border-right: 0;
}

.fact strong,
.fact span {
	display: block;
}

.fact strong {
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.fact span {
	color: rgba(255, 255, 255, 0.7);
}

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

.product-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.product-card-image {
	align-items: center;
	aspect-ratio: 1;
	background: #f1f1ef;
	display: flex;
	justify-content: center;
	overflow: hidden;
	text-decoration: none;
}

.product-card-image img {
	height: 100%;
	object-fit: cover;
	transition: transform 200ms ease;
	width: 100%;
}

.product-card:hover .product-card-image img {
	transform: scale(1.025);
}

.image-placeholder {
	color: var(--muted);
	padding: 24px;
	text-align: center;
}

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

.product-card-content h2 {
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.product-card-content h2 a {
	text-decoration: none;
}

.product-model,
.post-meta {
	color: var(--muted);
	font-size: 0.92rem;
}

.status-tag {
	background: #f1ecea;
	border-radius: 999px;
	color: #7a2d1b;
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	margin-bottom: 10px;
	padding: 4px 9px;
}

.cta-section {
	background: var(--accent);
	color: var(--white);
}

.cta-section .eyebrow {
	color: rgba(255, 255, 255, 0.75);
}

.cta-inner {
	align-items: center;
	display: flex;
	gap: 40px;
	justify-content: space-between;
}

.cta-inner h2 {
	margin: 0;
	max-width: 740px;
}

.site-footer {
	background: var(--footer);
	color: rgba(255, 255, 255, 0.72);
	padding-top: 72px;
}

.footer-grid {
	display: grid;
	gap: 60px;
	grid-template-columns: 1.8fr 1fr 1fr;
}

.footer-grid h2 {
	color: var(--white);
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-brand {
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 800;
}

.footer-menu li,
.contact-list li {
	margin: 8px 0;
}

.footer-menu a,
.contact-list a {
	color: inherit;
	text-decoration: none;
}

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

.footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	justify-content: space-between;
	margin-top: 56px;
	padding-block: 22px;
}

.footer-bottom p {
	margin: 0;
}

.local-badge,
.sample-notice {
	background: #fff3cd;
	border: 1px solid #efcf69;
	border-radius: 8px;
	color: #6a4c00;
	padding: 8px 12px;
}

.archive-main {
	min-height: 60vh;
}

.page-header {
	margin-bottom: 48px;
	max-width: 820px;
}

.page-header h1 {
	font-size: clamp(2.4rem, 4vw, 4rem);
	margin-bottom: 16px;
}

.empty-state {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 48px;
	text-align: center;
}

.nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 44px;
}

.page-numbers {
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 8px 13px;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--white);
}

.product-main {
	padding-block: 34px 100px;
}

.breadcrumbs {
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.9rem;
	gap: 8px;
	margin-bottom: 26px;
}

.breadcrumbs a {
	text-decoration: none;
}

.sample-notice {
	margin-bottom: 24px;
}

.product-hero-grid {
	display: grid;
	gap: clamp(36px, 6vw, 80px);
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	margin-bottom: 84px;
}

.product-main-image {
	align-items: center;
	aspect-ratio: 1;
	background: var(--surface);
	border-radius: var(--radius);
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.product-main-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.product-thumbnails {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.product-thumbnails img {
	border: 1px solid var(--line);
	border-radius: 8px;
	height: 84px;
	object-fit: cover;
	width: 84px;
}

.product-summary {
	align-self: center;
}

.product-summary h1 {
	font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.product-intro {
	color: var(--muted);
	font-size: 1.08rem;
}

.discontinued-banner {
	background: #f9e5df;
	border-left: 4px solid var(--accent);
	padding: 12px 14px;
}

.summary-list,
.data-list {
	margin-block: 28px;
}

.summary-list > div,
.data-list > div {
	border-bottom: 1px solid var(--line);
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(110px, 0.8fr) 1.2fr;
	padding: 12px 0;
}

.summary-list dt,
.data-list dt {
	color: var(--muted);
}

.summary-list dd,
.data-list dd {
	font-weight: 650;
	margin: 0;
}

.product-section {
	border-top: 1px solid var(--line);
	padding-block: 56px;
}

.product-section h2 {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.data-columns {
	display: grid;
	gap: 70px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	padding: 0;
}

.check-grid li {
	background: var(--surface);
	border-radius: 10px;
	font-weight: 650;
	padding: 14px 16px 14px 42px;
	position: relative;
}

.check-grid li::before {
	color: var(--accent);
	content: "✓";
	font-weight: 900;
	left: 17px;
	position: absolute;
}

.detail-image-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list details {
	border-bottom: 1px solid var(--line);
	padding: 18px 0;
}

.faq-list summary {
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 700;
	transition: color 160ms ease, transform 160ms ease;
}

.faq-list details[open] summary {
	color: var(--accent-dark);
}

.entry-content > * {
	max-width: 760px;
}

.entry-content > .alignwide {
	max-width: 1100px;
}

.blog-card {
	border-bottom: 1px solid var(--line);
	padding: 28px 0;
}

.blog-card h2 {
	font-size: 1.8rem;
	margin-bottom: 6px;
}

.centered-heading {
	margin-inline: auto;
	text-align: center;
}

.centered-heading p {
	margin-inline: auto;
	max-width: 760px;
}

.category-card-media {
	background: #fff;
}

.category-card-media img,
.product-card-image img,
.product-main-image img {
	object-fit: contain;
}

.process-section,
.brand-section {
	background: #fff;
}

.quality-section {
	background: #f4f0e9;
}

.faq-section {
	background: #fff;
	border-top: 1px solid #ebe5dc;
}

.process-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
	background: var(--surface);
	border-radius: var(--radius);
	overflow: hidden;
}

.process-image {
	aspect-ratio: 4 / 3;
	background: #ececea;
	overflow: hidden;
}

.process-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.process-copy {
	display: grid;
	gap: 12px;
	grid-template-columns: auto 1fr;
	padding: 20px;
}

.process-copy > span {
	color: var(--accent);
	font-size: 1.45rem;
	font-weight: 900;
}

.process-copy h3 {
	font-size: 1.05rem;
	margin: 4px 0 0;
}

.factory-section,
.oem-section,
.about-section {
	background: var(--surface);
}

.split-heading > p {
	color: var(--muted);
	margin: 0;
	max-width: 560px;
}

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

.factory-gallery figure {
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	margin: 0;
	overflow: hidden;
}

.factory-gallery .is-featured {
	grid-column: span 2;
	grid-row: span 2;
}

.factory-gallery img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

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

.brand-grid > div {
	align-items: center;
	aspect-ratio: 2 / 1;
	border: 1px solid var(--line);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 7px 10px;
}

.brand-grid img {
	height: 100%;
	max-height: 96px;
	object-fit: contain;
	transform: scale(1.14);
	width: 100%;
}

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

.oem-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
}

.oem-card img {
	aspect-ratio: 1;
	object-fit: contain;
	width: 100%;
}

.oem-card h3 {
	font-size: 1rem;
	margin: 0;
	padding: 16px;
	text-align: center;
}

.why-section {
	background: #1c2624;
	color: var(--white);
}

.why-section .eyebrow,
.project-cta-section .eyebrow {
	color: var(--accent-light);
}

.why-grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	background: rgba(255, 255, 255, 0.15);
}

.why-grid article {
	background: #1c2624;
	padding: clamp(30px, 4vw, 56px);
}

.why-grid p {
	color: rgba(255, 255, 255, 0.68);
	margin-bottom: 0;
}

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

.certificate-grid a {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
}

.certificate-grid img {
	aspect-ratio: 3 / 4;
	object-fit: contain;
	width: 100%;
}

.about-grid,
.contact-grid,
.inner-split {
	align-items: center;
	display: grid;
	gap: clamp(36px, 7vw, 88px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-grid > div:first-child {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
}

.about-grid > div:first-child img {
	width: 100%;
}

.faq-list details:first-child {
	border-top: 1px solid var(--line);
}

.faq-list details > div {
	color: var(--muted);
	padding-right: 40px;
}

.contact-section {
	background: linear-gradient(135deg, #c94016 0%, #922c10 100%);
	color: var(--white);
}

.contact-section .eyebrow {
	color: var(--white);
}

.contact-card {
	background: var(--white);
	border-radius: var(--radius);
	color: var(--ink);
	display: flex;
	flex-direction: column;
	font-style: normal;
	gap: 12px;
	padding: clamp(28px, 5vw, 52px);
}

.contact-card strong {
	font-size: 1.2rem;
}

.contact-card a {
	color: var(--accent-dark);
}

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

.archive-main .page-header {
	margin-inline: auto;
}

.category-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: center;
	margin: -18px 0 40px;
}

.category-tabs a {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 8px 14px;
	text-decoration: none;
}

.category-tabs a:hover,
.category-tabs a.is-active {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--white);
}

.inner-hero {
	background: var(--ink);
	color: var(--white);
	min-height: 360px;
	position: relative;
	overflow: hidden;
}

.inner-hero-media,
.inner-hero-media::after {
	inset: 0;
	position: absolute;
}

.inner-hero-media::after {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25));
	content: "";
}

.inner-hero-media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.inner-hero-content {
	padding-block: 100px;
	position: relative;
	z-index: 1;
}

.inner-hero h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	margin-bottom: 0;
}

.contact-details {
	display: grid;
	gap: 18px;
}

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

.contact-details strong,
.contact-details span,
.contact-details a {
	display: block;
}

@media (max-width: 1000px) {
	.header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.menu-toggle {
		display: block;
		grid-column: 2;
	}

	.primary-navigation {
		display: none;
		grid-column: 1 / -1;
		justify-self: stretch;
		padding-bottom: 18px;
	}

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

	.site-menu {
		align-items: stretch;
		flex-direction: column;
	}

	.header-cta {
		display: none;
	}

	.category-grid,
	.product-grid,
	.archive-main .product-grid,
	.oem-grid,
	.certificate-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.product-hero-grid {
		grid-template-columns: 1fr;
	}
}

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

	:root {
		--shell: min(100% - 28px, 1200px);
	}

	.header-inner {
		min-height: 68px;
	}

	.custom-logo {
		max-height: 44px;
	}

	.section {
		padding-block: 52px;
	}

	.hero {
		min-height: 560px;
	}

	.category-grid,
	.product-grid,
	.data-columns,
	.detail-image-grid,
	.footer-grid,
	.about-grid,
	.contact-grid,
	.inner-split {
		grid-template-columns: 1fr;
	}

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

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

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

	.fact:nth-child(2) {
		border-right: 0;
	}

	.fact:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}

	.split-heading,
	.cta-inner,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.footer-grid {
		gap: 30px;
	}
}

@media (max-width: 520px) {
	.category-grid,
	.product-grid,
	.archive-main .product-grid,
	.check-grid,
	.facts-grid,
	.why-grid {
		grid-template-columns: 1fr;
	}

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

	.factory-gallery .is-featured {
		grid-column: span 2;
		grid-row: auto;
	}

	.fact {
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
		border-right: 0;
	}

	.fact:last-child {
		border-bottom: 0;
	}

	.product-hero-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.summary-list > div,
	.data-list > div {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Phase 5: lightweight B2B conversion and inquiry experience. */
.button-secondary {
	background: var(--white);
	border-color: var(--line);
	color: var(--accent-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: #fff4f0;
	border-color: var(--accent);
}

.button-outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.76);
	color: var(--white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
	background: var(--white);
	border-color: var(--white);
	color: var(--accent-dark);
}

.hero-actions,
.cta-actions,
.product-cta-actions,
.contact-action-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.buyer-journey-section {
	background: var(--white);
}

.buyer-journey-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.buyer-journey-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
}

.buyer-journey-card > span {
	color: var(--accent);
	display: block;
	font-size: 1.35rem;
	font-weight: 900;
	margin-bottom: 20px;
}

.buyer-journey-card p {
	color: var(--muted);
}

.project-cta-section {
	background: #3a261f;
	color: var(--white);
	padding-block: clamp(48px, 7vw, 82px);
}

.project-cta-inner {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1.5fr) auto;
}

.project-cta-inner h2 {
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	margin-bottom: 12px;
}

.project-cta-inner p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 0;
	max-width: 720px;
}

.certificate-grid figure {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
	margin: 0;
	overflow: hidden;
}

.certificate-grid figure a {
	border: 0;
	border-radius: 0;
	display: block;
}

.certificate-grid figcaption {
	background: var(--white);
	border-top: 1px solid var(--line);
	font-size: 0.88rem;
	font-weight: 700;
	padding: 12px 14px;
}

.quality-note {
	color: var(--muted);
	margin: 28px auto 0;
	max-width: 760px;
	text-align: center;
}

.product-cta-note {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 26px 0 14px;
}

.product-proof-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.product-proof-links a {
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration-color: var(--line);
	text-underline-offset: 4px;
}

.specification-request {
	align-items: center;
	background: var(--surface);
	border: 0;
	border-radius: var(--radius);
	display: flex;
	gap: 48px;
	justify-content: space-between;
	margin-bottom: 56px;
	padding-inline: clamp(26px, 5vw, 58px);
}

.specification-request h2 {
	margin-bottom: 10px;
}

.specification-request p:last-child {
	color: var(--muted);
	margin-bottom: 0;
	max-width: 740px;
}

.rfq-page-section {
	background: var(--surface);
}

.rfq-panel {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	margin-block: 56px;
	padding: clamp(26px, 5vw, 58px);
	scroll-margin-top: 104px;
}

.rfq-page-section .rfq-panel {
	margin-block: 0;
}

.rfq-panel-heading {
	margin-bottom: 34px;
	max-width: 760px;
}

.rfq-panel-heading h2 {
	margin-bottom: 12px;
}

.rfq-panel-heading > p:last-child {
	color: var(--muted);
}

.rfq-fields {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rfq-fields label,
.rfq-consent {
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 7px;
}

.rfq-fields label > span b {
	color: var(--accent-dark);
}

.rfq-fields input,
.rfq-fields textarea,
.rfq-fields select {
	background: var(--white);
	border: 1px solid #c9c9c4;
	border-radius: 9px;
	color: var(--ink);
	font: inherit;
	font-weight: 400;
	min-height: 48px;
	padding: 10px 12px;
	width: 100%;
}

.rfq-fields textarea {
	min-height: 100px;
	resize: vertical;
}

.rfq-fields input:focus,
.rfq-fields textarea:focus,
.rfq-fields select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(201, 64, 22, 0.14);
	outline: 0;
}

.rfq-fields input[readonly] {
	background: var(--surface);
}

.rfq-fields small {
	color: var(--muted);
	font-weight: 400;
}

.rfq-field-wide {
	grid-column: 1 / -1;
}

.rfq-advanced {
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 0;
}

.rfq-advanced summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-weight: 750;
	gap: 16px;
	justify-content: space-between;
	list-style: none;
	padding: 15px 16px;
}

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

.rfq-advanced summary span {
	color: var(--accent-dark);
	font-size: 1.25rem;
	line-height: 1;
	transition: transform 160ms ease;
}

.rfq-advanced[open] summary span {
	transform: rotate(45deg);
}

.rfq-advanced-fields {
	border-top: 1px solid var(--line);
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 20px 16px 16px;
}

.rfq-consent a {
	color: var(--accent-dark);
	font-weight: 700;
}

.rfq-consent {
	align-items: flex-start;
	flex-direction: row;
	font-size: 0.92rem;
	font-weight: 500;
	margin-top: 22px;
}

.rfq-consent input {
	margin: 5px 4px 0 0;
}

.rfq-submit-row {
	align-items: center;
	display: flex;
	gap: 22px;
	margin-top: 24px;
}

.rfq-submit-row p {
	color: var(--muted);
	font-size: 0.84rem;
	margin: 0;
	max-width: 520px;
}

.rfq-honeypot {
	left: -10000px;
	position: absolute;
	top: auto;
}

.form-message {
	border-radius: 10px;
	margin-bottom: 26px;
	padding: 14px 16px;
}

.form-message.is-success {
	background: #eaf7ee;
	border: 1px solid #82bd91;
	color: #215b31;
}

.form-message.is-error {
	background: #fff0ec;
	border: 1px solid #db8f7c;
	color: #7c2814;
}

.contact-action-list {
	margin-top: 28px;
}

.floating-whatsapp {
	align-items: center;
	background: #168f4b;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	bottom: 28px;
	box-shadow: 0 14px 36px rgba(18, 83, 48, 0.3);
	color: var(--white);
	display: flex;
	gap: 11px;
	min-height: 58px;
	padding: 10px 18px 10px 13px;
	position: fixed;
	right: 24px;
	text-decoration: none;
	z-index: 190;
}

.floating-whatsapp svg {
	fill: currentColor;
	height: 30px;
	width: 30px;
}

.floating-whatsapp span,
.floating-whatsapp strong,
.floating-whatsapp small {
	display: block;
}

.floating-whatsapp strong {
	font-size: 0.96rem;
	line-height: 1.1;
}

.floating-whatsapp small {
	font-size: 0.72rem;
	line-height: 1.2;
	margin-top: 3px;
	opacity: 0.85;
}

@keyframes uiccer-fade-up {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.hero-content > .eyebrow,
	.hero-content > h1,
	.hero-content > .hero-subtitle,
	.hero-content > .hero-actions {
		animation: uiccer-fade-up 420ms ease-out both;
	}

	.hero-content > h1 {
		animation-delay: 60ms;
	}

	.hero-content > .hero-subtitle {
		animation-delay: 120ms;
	}

	.hero-content > .hero-actions {
		animation-delay: 180ms;
	}

	.floating-whatsapp {
		animation: uiccer-fade-up 360ms 240ms ease-out both;
		transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	}

	.menu-toggle > span:not(.screen-reader-text) {
		transition: opacity 160ms ease, transform 160ms ease;
	}

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

	.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
		opacity: 0;
	}

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

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
	.product-card,
	.process-card,
	.oem-card,
	.brand-grid > div,
	.certificate-grid figure {
		transition: box-shadow 180ms ease, transform 180ms ease;
	}

	.product-card:hover,
	.process-card:hover,
	.oem-card:hover,
	.brand-grid > div:hover,
	.certificate-grid figure:hover {
		box-shadow: var(--shadow);
		transform: translateY(-4px);
	}

	.floating-whatsapp:hover,
	.floating-whatsapp:focus-visible {
		background: #0f7a3e;
		box-shadow: 0 18px 42px rgba(18, 83, 48, 0.38);
		transform: translateY(-3px);
	}

	.faq-list summary:hover {
		color: var(--accent-dark);
		transform: translateX(3px);
	}
}

.mobile-contact-bar {
	display: none;
}

@media (max-width: 900px) {
	.buyer-journey-grid {
		grid-template-columns: 1fr;
	}

	.project-cta-inner {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.specification-request {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 782px) {
	body {
		padding-bottom: calc(56px + env(safe-area-inset-bottom));
	}

	.rfq-fields {
		grid-template-columns: 1fr;
	}

	.rfq-field-wide {
		grid-column: auto;
	}

	.rfq-advanced-fields {
		grid-template-columns: 1fr;
	}

	.rfq-submit-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.floating-whatsapp {
		display: none;
	}

	.mobile-contact-bar {
		background: var(--white);
		border-top: 1px solid var(--line);
		bottom: 0;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		left: 0;
		padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
		position: fixed;
		right: 0;
		z-index: 200;
	}

	.mobile-contact-bar a {
		align-items: center;
		border-radius: 8px;
		display: flex;
		font-size: 0.82rem;
		font-weight: 800;
		justify-content: center;
		min-height: 40px;
		padding: 6px 8px;
		text-decoration: none;
	}

	.mobile-contact-bar a:first-child {
		background: var(--accent);
		color: var(--white);
	}

	.mobile-contact-bar a:last-child:not(:first-child) {
		color: var(--accent-dark);
	}
}

/* Homepage and product-page visual optimization. */
.hero-content h1 {
	font-size: clamp(2.65rem, 4.6vw, 4.35rem);
	max-width: 860px;
}

.hero-subtitle {
	margin: -4px 0 22px;
}

.hero-trust {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0 0 28px;
	max-width: 760px;
	padding: 0;
}

.hero-trust li {
	border-left: 1px solid rgba(255, 255, 255, 0.26);
	padding: 2px 18px;
}

.hero-trust li:first-child {
	border-left: 0;
	padding-left: 0;
}

.hero-trust strong,
.hero-trust span {
	display: block;
}

.hero-trust strong {
	font-size: 1rem;
	line-height: 1.25;
}

.hero-trust sup,
.fact sup {
	font-size: 0.48em;
	line-height: 0;
	margin-left: 0.06em;
	position: relative;
	top: -0.48em;
}

.hero-trust span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.72rem;
	margin-top: 3px;
}

.category-card-content {
	align-items: end;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.category-card-content h3 {
	font-size: 1.2rem;
}

.category-card-content p {
	font-size: 0.82rem;
	margin-top: 6px;
}

.category-card-content .text-link {
	flex: 0 0 auto;
	font-size: 0.84rem;
}

.factory-facts {
	border-radius: var(--radius);
	margin-top: 18px;
	overflow: hidden;
	padding-block: 28px;
}

.brand-grid img {
	filter: grayscale(1);
	opacity: 0.72;
	transition: filter 180ms ease, opacity 180ms ease;
}

.brand-grid > div:hover img {
	filter: grayscale(0);
	opacity: 1;
}

.contact-section {
	background: linear-gradient(135deg, #c94016 0%, #922c10 100%);
}

.contact-section .eyebrow {
	color: var(--accent-light);
}

.footer-brand {
	font-size: 2rem;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.footer-legal-name {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.92rem;
	font-weight: 700;
	margin: 0 0 14px;
}

.product-main {
	background: linear-gradient(180deg, #f7f7f4 0, #fff 760px);
}

.product-hero-grid {
	align-items: start;
	gap: clamp(34px, 5vw, 64px);
	margin-bottom: 38px;
}

.product-main-image {
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: 0 20px 60px rgba(24, 24, 24, 0.07);
}

.product-summary {
	align-self: start;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: clamp(26px, 3.5vw, 44px);
}

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

.product-summary .summary-list {
	margin-block: 22px;
}

.product-inquiry-note {
	background: #fff5f1;
	border-left: 4px solid var(--accent);
	border-radius: 8px;
	display: grid;
	gap: 3px;
	margin: 22px 0;
	padding: 13px 15px;
}

.product-inquiry-note strong {
	font-size: 0.94rem;
}

.product-inquiry-note span {
	color: var(--muted);
	font-size: 0.84rem;
}

.button-whatsapp {
	background: #168f4b;
	border-color: #168f4b;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
	background: #0f7a3e;
	border-color: #0f7a3e;
}

.product-proof-links a {
	background: var(--surface);
	border-radius: 999px;
	display: inline-block;
	padding: 6px 10px;
	text-decoration: none;
}

.product-trust-strip {
	background: var(--ink);
	border-radius: var(--radius);
	color: var(--white);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 30px;
	overflow: hidden;
}

.product-trust-strip > div {
	border-right: 1px solid rgba(255, 255, 255, 0.14);
	padding: 24px;
	text-align: center;
}

.product-trust-strip > div:last-child {
	border-right: 0;
}

.product-trust-strip strong,
.product-trust-strip span {
	display: block;
}

.product-trust-strip strong {
	font-size: 1.1rem;
}

.product-trust-strip span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.78rem;
	margin-top: 4px;
}

.data-columns > div {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(24px, 3vw, 38px);
}

.data-columns > div h2 {
	font-size: clamp(1.55rem, 2vw, 2rem);
}

@media (min-width: 1001px) {
	.product-summary {
		position: sticky;
		top: 118px;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.hero-content > .hero-trust {
		animation: uiccer-fade-up 420ms 180ms ease-out both;
	}

	.hero-content > .hero-actions {
		animation-delay: 240ms;
	}

	.product-summary,
	.product-trust-strip {
		animation: uiccer-fade-up 380ms ease-out both;
	}

	.product-trust-strip {
		animation-delay: 120ms;
	}
}

@media (max-width: 782px) {
	.hero-content {
		padding-block: 58px;
	}

	.hero-content h1 {
		font-size: clamp(2.35rem, 11vw, 3.15rem);
	}

	.hero-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 24px;
	}

	.hero-trust li,
	.hero-trust li:first-child {
		border-left: 1px solid rgba(255, 255, 255, 0.22);
		padding: 6px 14px;
	}

	.hero-trust li:nth-child(odd) {
		border-left: 0;
		padding-left: 0;
	}

	.product-summary {
		padding: 26px;
	}

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

	.product-trust-strip > div:nth-child(2) {
		border-right: 0;
	}

	.product-trust-strip > div:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.data-columns {
		gap: 18px;
	}
}

@media (max-width: 520px) {
	.category-card-content {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

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

	.brand-grid img {
		max-height: 78px;
		transform: scale(1.1);
	}

	.factory-facts .fact:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.18);
	}

	.factory-facts .fact:nth-child(even) {
		border-right: 0;
	}

	.product-cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

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

/* Owner-approved About, Contact and RFQ page refinements. */
.about-page .about-intro-section {
	background: var(--white);
}

.about-page .inner-hero-media img {
	object-position: 62% center;
}

.about-intro-grid {
	align-items: center;
	display: grid;
	gap: clamp(38px, 6vw, 76px);
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-intro-media {
	aspect-ratio: 4 / 3;
	background: #f0f0ed;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.about-intro-media img {
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	width: 100%;
}

.about-heading span {
	display: block;
}

.about-heading span + span {
	margin-top: 0.08em;
}

.about-intro-copy-text {
	color: var(--muted);
	font-size: 1.02rem;
}

.about-intro-copy-text p {
	margin: 0 0 1em;
}

.about-intro-copy-text p:last-child {
	margin-bottom: 0;
}

.about-facts {
	border-radius: 0;
	margin-top: 0;
}

.about-factory-section {
	background: linear-gradient(180deg, #f6f1eb 0%, #f7f7f4 100%);
}

.about-factory-gallery {
	grid-auto-flow: dense;
}

.about-factory-gallery figure {
	background: #e9e4de;
	box-shadow: 0 12px 28px rgba(42, 35, 28, 0.08);
}

.about-story-section {
	background: var(--white);
}

.about-story-card {
	border-left: 4px solid var(--accent);
	max-width: 920px;
	padding-left: clamp(26px, 5vw, 64px);
}

@media (max-width: 782px) {
	.about-page .inner-hero-media img {
		object-position: 70% center;
	}

	.about-intro-grid {
		grid-template-columns: 1fr;
	}

	.about-intro-media {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 520px) {
	.about-intro-media {
		aspect-ratio: 4 / 3;
	}

	.about-heading {
		font-size: 1.72rem;
	}

	.about-facts .fact {
		padding-inline: 10px;
	}

	.about-facts .fact strong {
		white-space: nowrap;
	}

	.about-story-card {
		padding-left: 20px;
	}
}
