:root {
 --paper:#EAE3D3;
--paper-dim:#DDD4BE;
--ink:#211A13;
--ink-soft:#4a4238;
 --walnut:#5B3A22;
--walnut-dark:#3E2716;
--birch:#D8BD8E;
--birch-light:#EFE2C4;
 --stamp:#A63C28;
--stamp-dark:#7E2C1C;
--slate:#435049;
--line:rgba(33,26,19,0.14);
 --shadow:0 18px 40px -20px rgba(33,26,19,0.35);
--maxw:1240px;
 --display:'Big Shoulders Display', sans-serif;
--body:'Inter', sans-serif;
--mono:'IBM Plex Mono', monospace;
}
*, *::before, *::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--body);
	background: var(--paper);
	color: var(--ink);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 28px;
}
h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 800;
	line-height: 1.02;
	margin: 0;
	letter-spacing: 0.2px;
}
p {
	margin: 0;
}
.eyebrow {
	font-family: var(--mono);
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--stamp);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--stamp);
	display: inline-block;
}
:focus-visible {
outline:3px solid var(--stamp);
outline-offset:3px;
}

@media (prefers-reduced-motion: reduce) {
* {
	animation-duration: 0.001ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.001ms !important;
	scroll-behavior: auto !important;
}
}
.ply-divider {
	height: 16px;
	width: 100%;
	background: repeating-linear-gradient(to bottom, var(--birch) 0 3px, var(--walnut) 3px 5px, var(--birch-light) 5px 8px, var(--walnut-dark) 8px 9px, var(--birch) 9px 12px, var(--walnut) 12px 13px, var(--birch-light) 13px 16px);
	background-size: 100% 16px;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 78px;
	gap: 20px;
}
.logo {
	font-family: var(--display);
	font-weight: 900;
	font-size: 24px;
	letter-spacing: 0.5px;
	color: var(--walnut-dark);
}
.logo span {
	color: var(--stamp);
}
.nav {
	display: flex;
	gap: 30px;
}
.nav a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink-soft);
	position: relative;
	padding: 4px 0;
}
.nav a:hover, .nav a.current {
	color: var(--walnut-dark);
}
.nav a.current::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 2px;
	background: var(--stamp);
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}
.phone {
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 600;
	color: var(--walnut-dark);
	white-space: nowrap;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--body);
	font-weight: 700;
	font-size: 14.5px;
	padding: 12px 22px;
	border-radius: 3px;
	border: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .15s ease, background .15s ease;
}
.btn-stamp {
	background: var(--stamp);
	color: var(--birch-light);
}
.btn-stamp:hover {
	background: var(--stamp-dark);
	transform: translateY(-2px);
}
.btn-outline {
	border-color: var(--walnut);
	color: var(--walnut-dark);
	background: transparent;
}
.btn-outline:hover {
	background: var(--walnut);
	color: var(--birch-light);
	transform: translateY(-2px);
}
.hamburger {
	display: none;
	background: none;
	border: 2px solid var(--walnut);
	width: 44px;
	height: 44px;
	border-radius: 3px;
	cursor: pointer;
	position: relative;
}
.hamburger span {
	content: "";
	position: absolute;
	left: 11px;
	right: 11px;
	height: 2px;
	background: var(--walnut-dark);
	top: 21px;
}
.hamburger span::before, .hamburger span::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--walnut-dark);
}
.hamburger span::before {
	top: -7px;
}
.hamburger span::after {
	top: 7px;
}
.btn-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.stamp-badge {
	width: 118px;
	height: 118px;
	border-radius: 50%;
	border: 2px dashed var(--stamp);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-shrink: 0;
	font-family: var(--mono);
	color: var(--stamp-dark);
	background: radial-gradient(circle, rgba(166,60,40,0.06), transparent 70%);
}
.stamp-badge b {
	font-family: var(--display);
	font-size: 26px;
	font-weight: 900;
	color: var(--stamp);
	line-height: 1;
	display: block;
}
.stamp-badge small {
	font-size: 9.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: block;
	margin-top: 4px;
	padding: 0 8px;
}
.site-footer {
	background: var(--walnut-dark);
	color: var(--birch-light);
	padding: 64px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(216,189,142,0.18);
}
.footer-grid h5 {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--birch);
	margin-bottom: 18px;
}
.footer-grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-grid a {
	font-size: 14px;
	color: rgba(239,226,196,0.85);
}
.footer-grid a:hover {
	color: #fff;
}
.footer-brand .logo {
	color: var(--birch-light);
}
.footer-brand p {
	margin-top: 14px;
	font-size: 14px;
	color: rgba(239,226,196,0.75);
	max-width: 320px;
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0;
	font-size: 13px;
	color: rgba(239,226,196,0.6);
	flex-wrap: wrap;
	gap: 10px;
}
.footer-bottom a {
	color: var(--birch);
	font-weight: 600;
}
.wa-float {
	position: fixed;
	bottom: 26px;
	right: 26px;
	z-index: 60;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #3E8E5B;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 26px -8px rgba(0,0,0,0.5);
	transition: transform .15s ease;
}
.wa-float:hover {
	transform: scale(1.08);
}

@media (max-width:960px) {
.nav {
	position: fixed;
	top: 78px;
	left: 0;
	right: 0;
	background: var(--paper);
	flex-direction: column;
	gap: 0;
	border-bottom: 1px solid var(--line);
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}
.nav.open {
	max-height: 400px;
}
.nav a {
	padding: 16px 28px;
	border-top: 1px solid var(--line);
	display: block;
}
.phone {
	display: none;
}
.hamburger {
	display: block;
}
.footer-grid {
	grid-template-columns: 1fr 1fr;
}
}

@media (max-width:600px) {
.footer-grid {
	grid-template-columns: 1fr;
}
.wrap {
	padding: 0 20px;
}
}
/* ---- products page specific ---- */
.page-hero {
	padding: 64px 0 50px;
}
.page-hero h1 {
	font-size: clamp(36px, 5vw, 58px);
	color: var(--walnut-dark);
	max-width: 720px;
}
.page-hero p {
	margin-top: 18px;
	font-size: 16.5px;
	color: var(--ink-soft);
	max-width: 600px;
}
.cat-jump {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}
.cat-jump a {
	font-family: var(--mono);
	font-size: 12.5px;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: 2px;
	color: var(--walnut-dark);
}
.cat-jump a:hover {
	border-color: var(--stamp);
	color: var(--stamp);
}
.pd-row {
	padding: 70px 0;
	border-top: 1px solid var(--line);
	scroll-margin-top: 90px;
}
.pd-row:nth-child(even) {
	background: var(--birch-light);
}
.pd-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}
.pd-row.reverse .pd-grid {
	grid-template-columns: 1.1fr 0.9fr;
}
.pd-row.reverse .pd-media {
	order: 2;
}
.pd-media img {
	border-radius: 2px;
	box-shadow: var(--shadow);
	width: 100%;
	height: 360px;
	object-fit: cover;
}
.pd-media .swatch-panel {
	width: 100%;
	height: 360px;
	border-radius: 2px;
	box-shadow: var(--shadow);
}
.pd-num {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--stamp);
	letter-spacing: 0.1em;
}
.pd-copy h2 {
	font-size: clamp(28px, 3.6vw, 42px);
	color: var(--walnut-dark);
	margin-top: 8px;
}
.pd-copy p.pd-desc {
	margin-top: 16px;
	font-size: 15.5px;
	color: var(--ink-soft);
	max-width: 520px;
}
.spec-table {
	margin-top: 26px;
	width: 100%;
	border-collapse: collapse;
	max-width: 520px;
}
.spec-table tr {
	border-top: 1px solid var(--line);
}
.spec-table tr:first-child {
	border-top: none;
}
.spec-table td {
	padding: 11px 0;
	font-size: 14px;
}
.spec-table td:first-child {
	font-family: var(--mono);
	color: var(--ink-soft);
	width: 38%;
}
.spec-table td:last-child {
	font-weight: 600;
	color: var(--walnut-dark);
}
.pd-uses {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.pd-uses span {
	font-family: var(--mono);
	font-size: 11.5px;
	background: rgba(91,58,34,0.09);
	color: var(--walnut-dark);
	padding: 6px 10px;
	border-radius: 2px;
}
.pd-copy .btn {
	margin-top: 26px;
}
.swatch-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	height: 360px;
}
.swatch-grid div {
	border-radius: 2px;
}
.louver-panel {
	height: 360px;
	border-radius: 2px;
	box-shadow: var(--shadow);
	background: repeating-linear-gradient(180deg, #EFE2C4 0 26px, #C9B287 26px 32px);
	position: relative;
	overflow: hidden;
}
.louver-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(33,26,19,0.15), transparent 40%);
}

@media (max-width:900px) {
.pd-grid, .pd-row.reverse .pd-grid {
	grid-template-columns: 1fr;
}
.pd-row.reverse .pd-media {
	order: 0;
}
.pd-media img, .pd-media .swatch-panel, .swatch-grid, .louver-panel {
	height: 260px;
}
}
.logo img {
	width: 120px;
}
