:root {
	--red: #b3181e;
	--red-dark: #821015;
	--ink: #17191d;
	--muted: #666b73;
	--line: #e4e5e8;
	--soft: #f4f5f6;
	--white: #fff;
	--yellow: #f0b51f;
	--container: 1200px;
	--shadow: 0 18px 50px rgba(24, 28, 35, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	overflow-x: hidden;
	color: var(--ink);
	background: var(--white);
	font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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 {
	position: fixed;
	top: -100px;
	left: 16px;
	z-index: 9999;
	padding: 10px 16px;
	background: var(--ink);
	color: #fff;
}
.skip-link:focus { top: 12px; }
.eyebrow {
	margin: 0 0 12px;
	color: var(--red);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .18em;
}
.eyebrow--light { color: #f3c5c7; }
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 11px 24px;
	border: 1px solid var(--red);
	border-radius: 2px;
	background: var(--red);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	transition: .2s ease;
	cursor: pointer;
}
.button:hover, .button:focus-visible {
	transform: translateY(-2px);
	border-color: var(--red-dark);
	background: var(--red-dark);
	box-shadow: 0 10px 24px rgba(179, 24, 30, .2);
}
.button--small { min-height: 40px; padding: 8px 18px; }
.button--ghost { border-color: rgba(255,255,255,.55); background: transparent; color: #fff; }
.button--ghost:hover, .button--ghost:focus-visible { border-color: #fff; background: #fff; color: var(--ink); }
.button--dark { border-color: var(--ink); background: var(--ink); }
.button--dark:hover, .button--dark:focus-visible { border-color: #000; background: #000; }
.button--light { border-color: #fff; background: #fff; color: var(--red-dark); }
.button--light:hover, .button--light:focus-visible { border-color: #f4f4f4; background: #f4f4f4; color: var(--red-dark); }
.button--outline { border-color: var(--line); background: transparent; color: var(--ink); }
.button--outline:hover, .button--outline:focus-visible { border-color: var(--ink); background: var(--ink); color: #fff; }
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--red);
	font-size: 14px;
	font-weight: 800;
}
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link--strong { margin-top: 8px; font-size: 16px; }

/* Header */
.site-header {
	position: relative;
	z-index: 1000;
	background: #fff;
	box-shadow: 0 1px 0 rgba(12, 15, 20, .08);
}
.topbar { background: var(--ink); color: #d6d7da; font-size: 12px; }
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}
.topbar__contact { display: flex; align-items: center; gap: 12px; }
.topbar a { color: #fff; font-weight: 700; letter-spacing: .04em; }
.topbar__dot { color: #757981; }
.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand__mark {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 60px;
	height: 42px;
	flex: 0 0 auto;
	font-family: Arial, sans-serif;
	font-size: 40px;
	font-style: italic;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -12px;
	transform: skew(-8deg);
}
.brand__mark b { color: var(--red); }
.brand__mark i { color: #333842; font-style: normal; }
.brand__copy { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.brand__copy strong { font-size: 20px; letter-spacing: .08em; white-space: nowrap; }
.brand__copy small { margin-top: 5px; color: #71747b; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.site-nav__list > li > a {
	position: relative;
	display: block;
	padding: 28px 0;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
}
.site-nav__list > li > a::after {
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 2px;
	background: var(--red);
	content: "";
	transform: scaleX(0);
	transition: transform .2s;
}
.site-nav__list > li > a:hover::after,
.site-nav__list > .current-menu-item > a::after,
.site-nav__list > .current_page_item > a::after,
.site-nav__list > .current-menu-parent > a::after { transform: scaleX(1); }
.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s; }

/* Hero */
.hero {
	position: relative;
	min-height: 690px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--ink);
	color: #fff;
}
.hero__media {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	transform: scale(1.02);
}
.hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11,14,17,.92) 0%, rgba(11,14,17,.72) 46%, rgba(11,14,17,.18) 78%, rgba(11,14,17,.06) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 76px 0 170px; }
.hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(48px, 6.5vw, 86px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.055em;
}
.hero h1 em { color: #fff; font-style: normal; }
.hero h1 em::after {
	display: inline-block;
	width: .65em;
	height: .11em;
	margin-left: .15em;
	background: var(--red);
	content: "";
	vertical-align: .17em;
}
.hero__lead { max-width: 680px; margin: 28px 0 0; color: #dbdde0; font-size: 18px; line-height: 1.9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__rail { position: absolute; right: 0; bottom: 0; left: 0; z-index: 3; border-top: 1px solid rgba(255,255,255,.18); background: rgba(13,16,20,.78); backdrop-filter: blur(10px); }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__stats div { min-height: 112px; padding: 25px 30px; border-right: 1px solid rgba(255,255,255,.14); }
.hero__stats div:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.hero__stats strong, .hero__stats span { display: block; }
.hero__stats strong { color: #fff; font-size: 22px; line-height: 1.3; }
.hero__stats span { margin-top: 6px; color: #aeb2b8; font-size: 13px; }

/* Shared sections */
.section { padding: 100px 0; }
.section--soft { background: var(--soft); }
.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	align-items: end;
	gap: 50px;
	margin-bottom: 45px;
}
.section-heading h2, .about-copy h2, .contact-info h2, .delivery-panel h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.25;
	letter-spacing: -.035em;
}
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 16px; }
.section-heading--light h2 { color: #fff; }
.section-heading--light > p { color: #afb3ba; }
.section-action { margin-top: 46px; text-align: center; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.product-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow); }
.product-card__image { display: block; overflow: hidden; aspect-ratio: 1.28 / 1; background: #e7e8ea; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card__image img { transform: scale(1.045); }
.product-card__body { padding: 23px 22px 26px; }
.product-card__category {
	display: inline-flex;
	padding: 4px 9px;
	background: #fae9ea;
	color: var(--red);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
}
.product-card h2, .product-card h3 { margin: 12px 0 9px; font-size: 20px; line-height: 1.4; }
.product-card h2 a:hover, .product-card h3 a:hover { color: var(--red); }
.product-card p { display: -webkit-box; min-height: 4.9em; margin: 0 0 18px; overflow: hidden; color: var(--muted); font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

/* About */
.section--about { background: #fff; }
.split-layout { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(50px, 7vw, 96px); }
.about-image { position: relative; padding-bottom: 40px; }
.about-image img { width: 100%; min-height: 430px; object-fit: cover; }
.about-image::before {
	position: absolute;
	top: -18px;
	left: -18px;
	z-index: -1;
	width: 55%;
	height: 48%;
	border: 8px solid #eceef0;
	content: "";
}
.about-image__badge {
	position: absolute;
	right: -22px;
	bottom: 0;
	display: flex;
	flex-direction: column;
	min-width: 245px;
	padding: 22px 27px;
	background: var(--red);
	color: #fff;
	box-shadow: 0 18px 36px rgba(127, 14, 19, .28);
}
.about-image__badge strong { font-size: 19px; }
.about-image__badge span { margin-top: 5px; color: #f0c7c8; font-size: 13px; }
.about-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); }
.check-list { margin: 27px 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 10px 0; padding-left: 30px; font-weight: 700; }
.check-list li::before {
	position: absolute;
	top: .55em;
	left: 0;
	width: 16px;
	height: 8px;
	border-bottom: 2px solid var(--red);
	border-left: 2px solid var(--red);
	content: "";
	transform: rotate(-45deg);
}

/* Industries */
.section--industries { overflow: hidden; background: #191c21; color: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #383c43; border-left: 1px solid #383c43; }
.industry-grid div { min-height: 250px; padding: 34px 28px; border-right: 1px solid #383c43; border-bottom: 1px solid #383c43; transition: background .2s; }
.industry-grid div:hover { background: var(--red); }
.industry-grid span { display: block; margin-bottom: 45px; color: #858a93; font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }
.industry-grid div:hover span { color: #f1b7ba; }
.industry-grid strong { display: block; font-size: 23px; }
.industry-grid p { margin: 12px 0 0; color: #b2b6bd; font-size: 14px; }
.industry-grid div:hover p { color: #f2d8d9; }

/* Gallery */
.section--gallery { background: var(--soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 245px; gap: 12px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #ddd; }
.gallery-grid__wide { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 38px 18px 13px;
	background: linear-gradient(transparent, rgba(0,0,0,.72));
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

/* CTA and footer */
.cta-band { padding: 65px 0; background: var(--red); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.25; }
.cta-band p:not(.eyebrow) { max-width: 700px; margin: 12px 0 0; color: #f1d0d1; }
.cta-band__actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 12px; }
.site-footer { padding-top: 70px; background: #111317; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .7fr 1fr; gap: 70px; padding-bottom: 58px; }
.brand--footer .brand__copy small { color: #969ba4; }
.brand--footer .brand__mark i { color: #f0f1f3; }
.footer-brand > p { max-width: 540px; margin: 24px 0 0; color: #9da2aa; font-size: 14px; }
.site-footer h2 { margin: 4px 0 20px; font-size: 16px; }
.footer-links, .footer-contact { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 8px 0; }
.footer-links a { color: #b2b6bd; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-contact li { margin: 0 0 14px; color: #b2b6bd; font-size: 14px; }
.footer-contact span { display: block; margin-bottom: 2px; color: #777c84; font-size: 11px; }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-bottom { border-top: 1px solid #2a2d32; color: #70757e; font-size: 12px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; }
.floating-phone {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 900;
	display: flex;
	flex-direction: column;
	padding: 11px 18px;
	border-radius: 2px;
	background: var(--red);
	color: #fff;
	box-shadow: 0 12px 28px rgba(94, 8, 12, .3);
	line-height: 1.25;
}
.floating-phone span { font-size: 10px; opacity: .8; }
.floating-phone b { margin-top: 2px; font-size: 14px; }

/* Inner pages */
.page-hero {
	position: relative;
	overflow: hidden;
	padding: 90px 0;
	background:
		linear-gradient(100deg, rgba(19,21,25,.96), rgba(19,21,25,.78)),
		url("../images/manganese-woven.webp") center/cover;
	color: #fff;
}
.page-hero::after {
	position: absolute;
	top: 0;
	right: 8%;
	width: 260px;
	height: 100%;
	background: rgba(179,24,30,.75);
	clip-path: polygon(48% 0, 100% 0, 52% 100%, 0 100%);
	content: "";
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin: 0; font-size: clamp(42px, 6vw, 68px); line-height: 1.2; }
.page-hero p:not(.eyebrow) { max-width: 660px; margin: 18px 0 0; color: #d2d5da; font-size: 17px; }
.filter-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-nav a { padding: 9px 18px; border: 1px solid var(--line); background: #fff; color: #555b63; font-size: 14px; font-weight: 700; }
.filter-nav a:hover, .filter-nav a.is-active { border-color: var(--red); background: var(--red); color: #fff; }
.product-grid--archive { grid-template-columns: repeat(3, 1fr); }
.product-grid--archive .product-card__image { aspect-ratio: 1.5 / 1; }
.breadcrumb-bar { border-bottom: 1px solid var(--line); background: #fafafa; }
.breadcrumb-bar .container { display: flex; align-items: center; gap: 9px; min-height: 50px; color: #737880; font-size: 12px; }
.breadcrumb-bar a:hover { color: var(--red); }
.breadcrumb-bar strong { color: #34383e; font-weight: 700; }
.product-detail { padding-top: 70px; }
.product-detail__hero { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(45px, 6vw, 82px); }
.product-detail__image { overflow: hidden; aspect-ratio: 1.23 / 1; background: #eee; box-shadow: var(--shadow); }
.product-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__intro h1 { margin: 15px 0 17px; font-size: clamp(38px, 5vw, 58px); line-height: 1.2; letter-spacing: -.035em; }
.product-detail__lead { margin: 0; color: var(--muted); font-size: 17px; }
.product-detail__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 28px; background: var(--line); border: 1px solid var(--line); }
.product-detail__meta div { padding: 16px; background: #fff; }
.product-detail__meta span, .product-detail__meta strong { display: block; }
.product-detail__meta span { margin-bottom: 6px; color: #8a8e95; font-size: 11px; }
.product-detail__meta strong { font-size: 13px; }
.product-detail__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.product-detail__content { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 60px; }
.prose h2 { margin: 0 0 20px; font-size: 34px; line-height: 1.3; }
.prose h3 { margin-top: 32px; font-size: 24px; }
.prose p { color: #555b63; }
.prose--page { max-width: 920px; }
.prose--page > *:first-child { margin-top: 0; }
.application-box { margin-top: 30px; padding: 24px 26px; border-left: 4px solid var(--red); background: #fff; }
.application-box p { margin: 7px 0 0; }
.feature-panel { align-self: start; padding: 38px 34px; background: #1a1d22; color: #fff; }
.feature-panel h2 { margin: 0; font-size: 30px; }
.feature-panel ul { margin: 26px 0; padding: 0; list-style: none; }
.feature-panel li { position: relative; margin: 13px 0; padding: 0 0 13px 26px; border-bottom: 1px solid #353940; }
.feature-panel li::before { position: absolute; top: 8px; left: 0; width: 8px; height: 8px; background: var(--red); content: ""; transform: rotate(45deg); }
.feature-panel > p:last-child { margin: 0; color: #a8adb5; font-size: 13px; }
.product-grid--related { grid-template-columns: repeat(3, 1fr); }
.product-grid--related .product-card__image { aspect-ratio: 1.5 / 1; }

/* About and contact pages */
.page-hero--about { background: linear-gradient(100deg, rgba(19,21,25,.94), rgba(19,21,25,.7)), url("../images/binzhou-city.webp") center/cover; }
.split-layout--about { align-items: start; }
.about-image--page { margin-top: 15px; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-grid > div { min-height: 240px; padding: 30px 26px; border-top: 4px solid transparent; background: #fff; transition: .2s; }
.value-grid > div:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: var(--shadow); }
.value-grid span { color: var(--red); font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }
.value-grid h3 { margin: 46px 0 10px; font-size: 22px; }
.value-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.delivery-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.delivery-panel img { width: 100%; max-height: 440px; object-fit: cover; }
.delivery-panel p:not(.eyebrow) { margin: 20px 0 28px; color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info > p:not(.eyebrow) { margin: 22px 0 30px; color: var(--muted); }
.contact-cards { display: grid; gap: 12px; }
.contact-cards > * { display: flex; flex-direction: column; padding: 22px 24px; border: 1px solid var(--line); background: #fff; transition: .2s; }
.contact-cards > a:hover { border-color: var(--red); box-shadow: 0 12px 30px rgba(20,23,28,.07); }
.contact-cards span { color: #8a8e95; font-size: 11px; }
.contact-cards strong { margin-top: 4px; font-size: 21px; }
.contact-cards small { margin-top: 4px; color: var(--muted); }
.enquiry-card { padding: 42px; background: var(--soft); }
.enquiry-card h2 { margin: 0; font-size: 34px; }
.enquiry-card > p { margin: 8px 0 24px; color: var(--muted); }
.enquiry-card label { display: block; margin-bottom: 18px; font-size: 13px; font-weight: 700; }
.enquiry-card label span { color: var(--red); }
.enquiry-card input, .enquiry-card textarea {
	display: block;
	width: 100%;
	margin-top: 7px;
	padding: 12px 14px;
	border: 1px solid #d8dade;
	border-radius: 0;
	background: #fff;
	color: var(--ink);
	outline: none;
}
.enquiry-card input:focus, .enquiry-card textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(179,24,30,.08); }
.enquiry-card textarea { resize: vertical; }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-notice { margin-bottom: 20px; padding: 12px 14px; font-size: 13px; }
.form-notice--success { border: 1px solid #add6ba; background: #e9f7ed; color: #1f6b35; }
.form-notice--error { border: 1px solid #e0b2b2; background: #f9eaea; color: #8b2020; }
.not-found { display: flex; align-items: center; min-height: 65vh; padding: 100px 0; text-align: center; }
.not-found span { color: var(--red); font-size: 100px; font-weight: 900; line-height: 1; }
.not-found h1 { margin: 20px 0 5px; font-size: 42px; }
.not-found p { margin: 0 0 25px; color: var(--muted); }

@media (max-width: 1040px) {
	.header-main { min-height: 76px; }
	.brand__copy strong { font-size: 18px; }
	.site-nav { gap: 18px; }
	.site-nav__list { gap: 18px; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.industry-grid { grid-template-columns: repeat(2, 1fr); }
	.value-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1.35fr .65fr 1fr; gap: 38px; }
}

@media (max-width: 860px) {
	.container { width: min(calc(100% - 32px), var(--container)); }
	.topbar__inner > span:first-child { display: none; }
	.topbar__inner { justify-content: flex-end; }
	button.menu-toggle {
		position: relative;
		z-index: 3;
		display: block !important;
		width: 44px !important;
		min-width: 44px;
		height: 44px !important;
		flex: 0 0 44px;
		padding: 10px !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}
	button.menu-toggle span {
		display: block !important;
		width: 100% !important;
		height: 2px !important;
		margin: 5px 0 !important;
		background: var(--ink) !important;
		opacity: 1;
	}
	.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
	.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.site-nav {
		position: fixed;
		top: 110px;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 2;
		display: block;
		padding: 26px 24px 40px;
		overflow-y: auto;
		background: #fff;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: .2s;
	}
	.menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
	.site-nav__list { display: block; }
	.site-nav__list > li > a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 18px; }
	.site-nav__list > li > a::after { display: none; }
	.nav-enquiry { width: 100%; margin-top: 22px; }
	.hero { min-height: 720px; align-items: flex-start; }
	.hero__shade { background: linear-gradient(90deg, rgba(11,14,17,.9), rgba(11,14,17,.4)); }
	.hero__content { padding-top: 100px; }
	.hero__rail { background: rgba(13,16,20,.9); }
	.hero__stats { grid-template-columns: repeat(2, 1fr); }
	.hero__stats div { min-height: 90px; padding: 17px 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
	.hero__stats strong { font-size: 17px; }
	.section { padding: 76px 0; }
	.section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
	.split-layout, .product-detail__hero, .product-detail__content, .contact-layout, .delivery-panel { grid-template-columns: 1fr; }
	.about-image { order: 2; }
	.about-copy { order: 1; }
	.about-image__badge { right: 0; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.cta-band__inner { display: block; }
	.cta-band__actions { margin-top: 28px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.product-detail__content { gap: 35px; }
	.contact-layout { gap: 45px; }
	.delivery-panel { gap: 35px; }
}

@media (max-width: 580px) {
	body { font-size: 15px; }
	.topbar__contact { width: 100%; justify-content: center; gap: 8px; }
	.header-main { min-height: 70px; }
	.brand { gap: 9px; }
	.brand__mark { width: 46px; height: 35px; font-size: 33px; letter-spacing: -10px; }
	.brand__copy strong { font-size: 15px; letter-spacing: .03em; }
	.brand__copy small { font-size: 7px; letter-spacing: .07em; }
	.site-nav { top: 104px; }
	.hero { min-height: 720px; }
	.hero__media { background-position: 45% center; }
	.hero__content { padding: 72px 0 220px; }
	.hero h1 {
		max-width: 100%;
		font-size: 40px;
		letter-spacing: -.07em;
		overflow-wrap: anywhere;
	}
	.hero h1 em {
		display: block;
		font-size: .84em;
		line-height: 1.3;
		letter-spacing: -.085em;
	}
	.hero__lead { margin-top: 20px; font-size: 15px; line-height: 1.75; }
	.hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
	.hero__actions .button { width: 100%; min-width: 0; padding-right: 7px; padding-left: 7px; font-size: 14px; }
	.hero__stats div:first-child { border-left: 0; }
	.section { padding: 62px 0; }
	.section-heading h2, .about-copy h2, .contact-info h2, .delivery-panel h2 { font-size: 34px; }
	.product-grid, .product-grid--archive, .product-grid--related, .industry-grid, .value-grid { grid-template-columns: 1fr; }
	.product-card__image, .product-grid--archive .product-card__image, .product-grid--related .product-card__image { aspect-ratio: 1.45 / 1; }
	.industry-grid div { min-height: 190px; }
	.industry-grid span { margin-bottom: 25px; }
	.about-image img { min-height: 300px; }
	.about-image__badge { min-width: 210px; }
	.gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
	.gallery-grid__wide { grid-column: span 2; }
	.cta-band { padding: 55px 0; }
	.cta-band__actions .button { width: 100%; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-brand { grid-column: auto; }
	.footer-bottom .container { display: block; }
	.footer-bottom span { display: block; margin: 3px 0; }
	.floating-phone {
		right: 10px !important;
		left: auto !important;
		bottom: 10px;
		width: auto !important;
		max-width: calc(100vw - 20px);
		transform: none !important;
	}
	.page-hero { padding: 70px 0; }
	.page-hero::after { right: -80px; opacity: .6; }
	.product-detail { padding-top: 45px; }
	.product-detail__image { aspect-ratio: 1.2 / 1; }
	.product-detail__intro h1 { font-size: 38px; }
	.product-detail__meta { grid-template-columns: 1fr; }
	.product-detail__actions .button { width: 100%; }
	.feature-panel { padding: 30px 24px; }
	.enquiry-card { padding: 30px 22px; }
}
