: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;
}
.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;
}
}
/* ---- gallery page specific ---- */
.page-hero {
	padding: 64px 0 46px;
}
.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;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 220px;
	gap: 14px;
	padding: 0 0 80px;
}
.gallery-grid button {
	border: none;
	padding: 0;
	background: none;
	cursor: zoom-in;
	overflow: hidden;
	border-radius: 2px;
	position: relative;
	display: block;
}
.gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.gallery-grid button:hover img {
	transform: scale(1.08);
}
.gallery-grid button:focus-visible {
outline:3px solid var(--stamp);
outline-offset:2px;
}
.g-tall {
	grid-row: span 2;
}
.g-wide {
	grid-column: span 2;
}
.g-cap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 12px;
	font-family: var(--mono);
	font-size: 11px;
	color: #fff;
	background: linear-gradient(to top, rgba(33,26,19,0.75), transparent);
	text-align: left;
	letter-spacing: 0.04em;
}
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(33,26,19,0.92);
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.lightbox.open {
	display: flex;
}
.lightbox figure {
	margin: 0;
	max-width: 900px;
	max-height: 85vh;
}
.lightbox img {
	max-height: 80vh;
	width: auto;
	margin: 0 auto;
	border-radius: 2px;
}
.lightbox figcaption {
	color: var(--birch-light);
	font-family: var(--mono);
	font-size: 12.5px;
	text-align: center;
	margin-top: 14px;
}
.lb-close, .lb-prev, .lb-next {
	position: absolute;
	background: rgba(239,226,196,0.12);
	border: 1px solid rgba(239,226,196,0.4);
	color: #fff;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
}
.lb-close {
	top: 26px;
	right: 26px;
}
.lb-prev {
	left: 26px;
	top: 50%;
	transform: translateY(-50%);
}
.lb-next {
	right: 26px;
	top: 50%;
	transform: translateY(-50%);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
	background: rgba(239,226,196,0.24);
}

@media (max-width:900px) {
.gallery-grid {
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 190px;
}
.g-wide {
	grid-column: span 2;
}
.lb-prev {
	left: 10px;
}
.lb-next {
	right: 10px;
}
}

@media (max-width:520px) {
.gallery-grid {
	grid-template-columns: 1fr;
}
.g-wide, .g-tall {
	grid-column: span 1;
	grid-row: span 1;
}
}
.logo img {
	width: 120px;
}
