:root {
	--ink: #172123;
	--muted: #5d686a;
	--line: #dce5e2;
	--paper: #ffffff;
	--soft: #f4f7f6;
	--teal: #267c78;
	--teal-dark: #135653;
	--coral: #c96755;
	--charcoal: #242b31;
	--radius: 8px;
	--shadow: 0 18px 50px rgba(23, 33, 35, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

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

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

.container {
	width: min(1160px, calc(100% - 40px));
	margin: 0 auto;
}

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

.skip-link:focus {
	z-index: 999;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--ink);
	color: white;
}

.site-header {
	position: sticky;
	z-index: 20;
	top: 0;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
}

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

.site-brand {
	color: var(--ink);
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0;
}

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

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

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

.site-nav a {
	color: var(--charcoal);
	font-size: 0.93rem;
	font-weight: 650;
}

.site-nav a:hover {
	color: var(--teal);
}

.header-quote,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 18px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 750;
	line-height: 1.1;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-quote,
.button-primary {
	background: var(--teal);
	color: white;
}

.button-secondary {
	background: white;
	color: var(--ink);
	border-color: rgba(23, 33, 35, 0.22);
}

.header-quote:hover,
.button:hover {
	transform: translateY(-1px);
}

.button-primary:hover {
	background: var(--teal-dark);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: white;
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(760px, 78vh);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.hero::before {
	position: absolute;
	inset: 0;
	content: "";
	background: rgba(255, 255, 255, 0.42);
}

.hero-content {
	position: relative;
	max-width: 650px;
	margin-left: max(20px, calc((100vw - 1160px) / 2));
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--coral);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 12ch;
	margin: 0;
	color: var(--ink);
	font-size: clamp(3rem, 7vw, 6.8rem);
	line-height: 0.94;
	letter-spacing: 0;
}

.hero p:not(.eyebrow) {
	max-width: 560px;
	margin: 24px 0 0;
	color: #263235;
	font-size: clamp(1.05rem, 2vw, 1.24rem);
	font-weight: 520;
}

.hero-actions,
.sao-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.trust-strip {
	background: var(--charcoal);
	color: white;
}

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

.stats-row div {
	padding: 24px 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-row div:first-child {
	border-left: 0;
}

.stats-row strong {
	display: block;
	font-size: clamp(1.3rem, 2vw, 2rem);
	line-height: 1.2;
}

.stats-row span {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
}

.section {
	padding: 78px 0;
}

.section-muted {
	background: var(--soft);
}

.section-heading {
	margin-bottom: 28px;
}

.section-heading h2,
.split-section h2,
.final-cta h2 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1;
	letter-spacing: 0;
}

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

.category-card,
.placeholder-product,
.process-card,
.service-list div,
.product-inquiry-panel {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: white;
}

.category-card {
	display: flex;
	min-height: 210px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-card:nth-child(1) {
	background: #e8f2f1;
}

.category-card:nth-child(2) {
	background: #f7ece7;
}

.category-card:nth-child(3) {
	background: #edf0f3;
}

.category-card:nth-child(4) {
	background: #f5f2eb;
}

.category-card:hover {
	transform: translateY(-3px);
	border-color: rgba(38, 124, 120, 0.4);
	box-shadow: var(--shadow);
}

.category-card span,
.placeholder-product h3,
.process-card strong,
.service-list strong {
	display: block;
	color: var(--ink);
	font-size: 1.08rem;
	font-weight: 850;
	line-height: 1.2;
}

.category-card p,
.placeholder-product p,
.process-card p,
.split-section p,
.service-list span {
	margin: 10px 0 0;
	color: var(--muted);
}

.split-section {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: start;
}

.split-section p {
	max-width: 620px;
	font-size: 1.04rem;
}

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

.service-list div {
	padding: 22px;
}

.placeholder-product {
	overflow: hidden;
}

.placeholder-product h3,
.placeholder-product p {
	padding: 0 18px;
}

.placeholder-product p {
	padding-bottom: 18px;
}

.placeholder-media {
	aspect-ratio: 1 / 1.12;
	background:
		linear-gradient(135deg, rgba(38, 124, 120, 0.72), rgba(201, 103, 85, 0.58)),
		#e6eeeb;
}

.section-process {
	background: #fbfcfc;
}

.process-card {
	padding: 22px;
}

.process-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--charcoal);
	color: white;
	font-weight: 850;
}

.final-cta {
	padding: 64px 0;
	background: var(--teal-dark);
	color: white;
}

.final-cta .eyebrow {
	color: #ffb4a6;
}

.final-cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
}

.final-cta .button-secondary {
	background: transparent;
	color: white;
	border-color: rgba(255, 255, 255, 0.42);
}

.site-footer {
	padding: 54px 0 28px;
	background: #111719;
	color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.9fr;
	gap: 38px;
}

.site-footer h2,
.site-footer h3 {
	margin: 0 0 12px;
	color: white;
	line-height: 1.2;
}

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

.site-footer li + li {
	margin-top: 8px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 36px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.9rem;
}

.footer-bottom ul {
	display: flex;
	gap: 16px;
}

.floating-whatsapp {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 30;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border-radius: var(--radius);
	background: #1f9d5a;
	color: white;
	font-weight: 850;
	box-shadow: 0 12px 32px rgba(17, 23, 25, 0.24);
}

.content-layout {
	max-width: 820px;
	padding: 76px 0;
}

.entry h1 {
	margin: 0 0 18px;
	font-size: clamp(2.1rem, 5vw, 4rem);
	line-height: 1;
}

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

.woo-main {
	padding: 62px 0;
}

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

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	padding: 0 0 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: white;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
	padding: 0 16px;
}

.woocommerce ul.products li.product .button {
	margin-left: 16px;
}

.product-inquiry-panel {
	margin-top: 24px;
	padding: 22px;
}

.product-inquiry-panel h2 {
	margin: 0 0 14px;
	font-size: 1.35rem;
	line-height: 1.2;
}

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

.spec-grid span {
	display: grid;
	gap: 2px;
	padding: 12px;
	border-radius: var(--radius);
	background: var(--soft);
	color: var(--muted);
	font-size: 0.92rem;
}

.spec-grid strong {
	color: var(--ink);
}

@media (max-width: 980px) {
	.header-inner {
		grid-template-columns: 1fr auto;
	}

	.site-nav {
		grid-column: 1 / -1;
		display: none;
		width: 100%;
		justify-self: stretch;
		padding-bottom: 18px;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav ul {
		display: grid;
		gap: 10px;
	}

	.header-quote {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.hero {
		min-height: 72vh;
		background-position: 56% center;
	}

	.hero::before {
		background: rgba(255, 255, 255, 0.62);
	}

	.stats-row,
	.category-grid,
	.product-preview-grid,
	.process-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.split-section,
	.final-cta-inner,
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 28px, 1160px);
	}

	.hero {
		align-items: flex-end;
		min-height: 76vh;
		padding: 60px 0 36px;
		background-position: 61% center;
	}

	.hero-content {
		margin-left: auto;
	}

	.hero h1 {
		max-width: 11ch;
		font-size: clamp(2.7rem, 15vw, 4.5rem);
	}

	.section {
		padding: 58px 0;
	}

	.stats-row,
	.category-grid,
	.product-preview-grid,
	.process-grid,
	.woocommerce ul.products,
	.spec-grid {
		grid-template-columns: 1fr;
	}

	.category-card {
		min-height: 168px;
	}

	.footer-bottom {
		display: grid;
	}

	.floating-whatsapp {
		right: 14px;
		bottom: 14px;
	}
}


/* B2B inquiry mode: hide retail purchase UI */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price,
.woocommerce div.product form.cart,
.woocommerce ul.products li.product .button,
.woocommerce span.onsale,
.woocommerce div.product .stock {
	display: none !important;
}

.woocommerce div.product .product-inquiry-panel {
	margin-top: 0;
}
