:root {
 --walnut: #2A1A10;
 --walnut-deep: #1A0F08;
 --cream: #F3E8D6;
 --cream-soft: #ECDEC6;
 --oak: #B8763A;
 --oak-light: #D69A5D;
 --charcoal: #17130F;
 --brass: #C9A24B;
 --plank-1: #C9995F;
 --plank-2: #A9723F;
 --plank-3: #8B5A34;
 --plank-4: #6E4527;
 --plank-5: #4E3120;
 --plank-6: #D9B78C;
 --ink: #241609;
 --line: rgba(42,26,16,0.14);
 --radius: 3px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Work Sans', sans-serif;
	background: var(--cream);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
h1, h2, h3, h4 {
	font-family: 'Fraunces', serif;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.01em;
}
.mono {
	font-family: 'Space Mono', monospace;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
}

@media(max-width:640px) {
.wrap {
	padding: 0 24px;
}
}

@media(max-width:400px) {
.wrap {
	padding: 0 20px;
}
}
/* ---------- HEADER ---------- */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--walnut);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 16px;
	gap: 16px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--cream);
}
.logo-image{
	max-width:200px;
}
.logo-mark {
	width: 34px;
	height: 34px;
	border-radius: 2px;
	background: linear-gradient(135deg, var(--plank-1), var(--plank-4));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-weight: 900;
	color: var(--walnut-deep);
	font-size: 17px;
}
.logo-text {
	font-family: 'Fraunces', serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.01em;
}
.logo-text span {
	color: var(--oak-light);
	font-weight: 400;
	font-style: italic;
}
nav.links {
	display: flex;
	gap: 34px;
	align-items: center;
}
nav.links a {
	color: rgba(243,232,214,0.78);
	font-size: 14.5px;
	font-weight: 500;
	transition: color .2s ease;
}
nav.links a:hover {
	color: var(--cream);
}
.nav-cta {
	background: var(--oak);
	color: var(--walnut-deep)!important;
	padding: 10px 20px;
	border-radius: 2px;
	font-weight: 600!important;
	font-size: 14px!important;
}
.nav-cta:hover {
	background: var(--oak-light);
}
.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin: -8px -8px -8px 0;
	flex-shrink: 0;
}
.burger span {
	width: 22px;
	height: 2px;
	background: var(--cream);
}
.logo {
	min-width: 0;
	flex-shrink: 1;
}
.logo-text {
	white-space: nowrap;
}
.mobile-menu {
	display: none;
	flex-direction: column;
	background: var(--walnut);
	padding: 0 0 20px;
}
.mobile-menu a {
	color: var(--cream);
	padding: 12px 32px;
	border-top: 1px solid rgba(255,255,255,0.08);
	font-size: 15px;
}

@media(max-width:860px) {
nav.links {
	display: none;
}
.burger {
	display: flex;
}
.mobile-menu.open {
	display: flex;
}
}

@media(max-width:380px) {
.logo-text {
	font-size: 17px;
}
.logo-mark {
	width: 30px;
	height: 30px;
	font-size: 15px;
}
}
/* ---------- HERO ---------- */
.hero {
	/*background: radial-gradient(ellipse 900px 500px at 85% 15%, rgba(184,118,58,0.14), transparent 60%),  linear-gradient(180deg, rgba(17,10,5,0.88) 0%, rgba(17,10,5,0.75) 40%, rgba(17,10,5,0.93) 100%),  url('https://plus.unsplash.com/premium_photo-1723579291057-8be421f61ef4?auto=compress&cs=tinysrgb&w=1600');*/
	background: radial-gradient(ellipse 900px 500px at 85% 15%, rgba(184,118,58,0.14), transparent 60%),  linear-gradient(180deg, rgba(17,10,5,0.88) 0%, rgba(17,10,5,0.65) 40%, rgba(17,10,5,0.93) 100%),  url('bannerone.jpg?auto=compress&cs=tinysrgb&w=1600');

	background-size: auto, auto, cover;
	background-position: center, center, center 55%;
	color: var(--cream);
	position: relative;
	overflow: hidden;
	padding: 88px 0 0;
}
.hero-top {
	max-width: 640px;
	padding-bottom: 48px;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--oak-light);
	text-transform: uppercase;
	margin-bottom: 22px;
}
.eyebrow::before {
	content: '';
	width: 26px;
	height: 1px;
	background: var(--oak-light);
}
.hero h1 {
	font-size: clamp(38px, 5.4vw, 62px);
	color: var(--cream);
	margin-bottom: 22px;
}
.hero h1 em {
	font-style: italic;
	color: var(--oak-light);
	font-weight: 500;
}
.hero p.lead {
	font-size: 17.5px;
	line-height: 1.65;
	color: rgba(243,232,214,0.72);
	max-width: 480px;
	margin-bottom: 34px;
}
.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 44px;
}
.btn-primary {
	background: var(--oak);
	color: var(--walnut-deep);
	padding: 15px 28px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid var(--oak);
	transition: all .2s ease;
	cursor: pointer;
	display: inline-block;
}
.btn-primary:hover {
	background: var(--oak-light);
	border-color: var(--oak-light);
}
.btn-ghost {
	padding: 15px 28px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid rgba(243,232,214,0.3);
	color: var(--cream);
	transition: all .2s ease;
}
.btn-ghost:hover {
	border-color: var(--cream);
	background: rgba(243,232,214,0.06);
}
.hero-stats {
	display: flex;
	gap: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(243,232,214,0.14);
}
.hero-stats div strong {
	display: block;
	font-family: 'Fraunces', serif;
	font-size: 26px;
	color: var(--oak-light);
	font-weight: 700;
}
.hero-stats div span {
	font-size: 12.5px;
	color: rgba(243,232,214,0.55);
	font-family: 'Space Mono', monospace;
}
/* Hero badges — sit directly on the hero background photo */
.hero-badges {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	z-index: 1;
	margin-top: 56px;
	padding-bottom: 40px;
}
.hero-tag {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(17,10,5,0.55);
	border: 1px solid rgba(243,232,214,0.16);
	backdrop-filter: blur(6px);
	border-radius: 3px;
	padding: 12px 16px;
}
.tag-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--oak-light);
	box-shadow: 0 0 0 4px rgba(214,154,93,0.22);
	flex-shrink: 0;
}
.hero-tag strong {
	display: block;
	font-family: 'Fraunces', serif;
	font-size: 14.5px;
	color: var(--cream);
	font-weight: 600;
}
.hero-tag span {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	color: rgba(243,232,214,0.65);
}
.hero-float-card {
	background: var(--oak);
	color: var(--walnut-deep);
	width: 84px;
	height: 84px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 14px 30px -10px rgba(0,0,0,0.55);
	border: 3px solid var(--cream);
	transform: rotate(8deg);
	flex-shrink: 0;
}
.hero-float-card strong {
	font-family: 'Fraunces', serif;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}
.hero-float-card span {
	font-family: 'Space Mono', monospace;
	font-size: 8.5px;
	line-height: 1.25;
	margin-top: 3px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

@media(max-width:640px) {
.hero-badges {
	margin-top: 40px;
	padding-bottom: 28px;
}
.hero-float-card {
	width: 64px;
	height: 64px;
}
.hero-float-card strong {
	font-size: 14px;
}
.hero-float-card span {
	font-size: 7.5px;
}
}

@media(max-width:420px) {
.hero-badges {
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.hero-float-card {
	align-self: flex-end;
}
}
/* ---------- MARQUEE ---------- */
.marquee-band {
	background: var(--charcoal);
	color: var(--cream-soft);
	padding: 14px 0;
	overflow: hidden;
	border-top: 1px solid rgba(255,255,255,0.06);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
	display: flex;
	gap: 48px;
	white-space: nowrap;
	animation: scroll 26s linear infinite;
	width: max-content;
}
.marquee-track span {
	font-family: 'Space Mono', monospace;
	font-size: 13px;
	letter-spacing: 0.05em;
	opacity: 0.7;
}
 @keyframes scroll {
from {
transform:translateX(0);
}
to {
transform:translateX(-50%);
}
}
/* ---------- SECTION HEADERS ---------- */
.section {
	padding: 100px 0;
}

@media(max-width:640px) {
.section {
	padding: 64px 0;
}
}
.section-head {
	max-width: 600px;
	margin-bottom: 58px;
}
.section-head .eyebrow {
	color: var(--plank-3);
}
.section-head .eyebrow::before {
	background: var(--plank-3);
}
.section-head h2 {
	font-size: clamp(28px, 3.6vw, 40px);
	color: var(--ink);
}
.section-head p {
	font-size: 16px;
	color: rgba(36,22,9,0.62);
	margin-top: 14px;
	line-height: 1.6;
}
.light-on-dark .section-head h2, .light-on-dark .section-head p {
	color: var(--cream);
}
/* ---------- PRODUCT RACK (signature) ---------- */
.rack {
	display: flex;
	flex-direction: column;
}
.rack-row {
	display: grid;
	grid-template-columns: 120px 1fr 1.4fr;
	align-items: stretch;
	border-top: 1px solid var(--line);
	transition: background .2s ease;
}
.rack-row:last-child {
	border-bottom: 1px solid var(--line);
}
.rack-row:hover {
	background: rgba(184,118,58,0.06);
}
.rack-index {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	color: rgba(36,22,9,0.4);
	display: flex;
	align-items: center;
	padding: 26px 0;
}
.rack-board {
	display: flex;
	align-items: center;
	padding: 22px 20px 22px 0;
}
.board-swatch {
	width: 100%;
	height: 76px;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 -5px 9px rgba(0,0,0,0.28), inset 0 2px 3px rgba(255,255,255,0.12);
	background-size: cover;
	background-position: center;
}
.board-swatch::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.18));
}
.sw-1 {
	background-image: url('https://images.pexels.com/photos/7479035/pexels-photo-7479035.jpeg?auto=compress&cs=tinysrgb&w=600');
}
.sw-2 {
	background-image: url('https://images.pexels.com/photos/326862/pexels-photo-326862.jpeg?auto=compress&cs=tinysrgb&w=600');
}
.sw-3 {
	background-image: url('https://images.pexels.com/photos/2920371/pexels-photo-2920371.jpeg?auto=compress&cs=tinysrgb&w=600');
}
.sw-4 {
	background-image: url('https://images.pexels.com/photos/9467701/pexels-photo-9467701.jpeg?auto=compress&cs=tinysrgb&w=600');
}
.sw-5 {
	background-image: url('https://images.pexels.com/photos/8021316/pexels-photo-8021316.jpeg?auto=compress&cs=tinysrgb&w=600');
}
.sw-6 {
	background-image: url('https://images.pexels.com/photos/5101388/pexels-photo-5101388.jpeg?auto=compress&cs=tinysrgb&w=600');
}
.sw-7 {
	background-image: url('https://images.pexels.com/photos/4554338/pexels-photo-4554338.jpeg?auto=compress&cs=tinysrgb&w=600');
}
.rack-info {
	padding: 22px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.rack-info h3 {
	font-size: 19px;
	color: var(--ink);
	margin-bottom: 6px;
	font-weight: 600;
}
.rack-info p {
	font-size: 14.5px;
	color: rgba(36,22,9,0.6);
	line-height: 1.55;
	max-width: 440px;
}

@media(max-width:760px) {
.rack-row {
	grid-template-columns: 56px 1fr;
	grid-template-areas: "idx board" "info info";
}
.rack-index {
	grid-area: idx;
}
.rack-board {
	grid-area: board;
	padding: 22px 0;
}
.rack-info {
	grid-area: info;
	padding-bottom: 22px;
}
}
/* ---------- WHY US STATS ---------- */
.why {
	background: var(--walnut-deep);
	color: var(--cream);
	position: relative;
}
.why::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 700px 400px at 10% 90%, rgba(184,118,58,0.12), transparent 60%);
}
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(243,232,214,0.1);
	border: 1px solid rgba(243,232,214,0.1);
	position: relative;
	z-index: 1;
}

@media(max-width:760px) {
.why-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
.why-item {
	background: var(--walnut-deep);
	padding: 36px 28px;
}
.why-item strong {
	font-family: 'Fraunces', serif;
	font-size: 38px;
	font-weight: 700;
	color: var(--oak-light);
	display: block;
}
.why-item span {
	font-size: 13.5px;
	color: rgba(243,232,214,0.6);
	display: block;
	margin-top: 8px;
	line-height: 1.5;
}
/* ---------- GALLERY ---------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 190px;
	grid-auto-flow: dense;
	gap: 10px;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	border: none;
	padding: 0;
	cursor: pointer;
	background: var(--walnut);
	grid-column: span 1;
	grid-row: span 1;
}
.gallery-item.wide {
	grid-column: span 2;
}
.gallery-item.tall {
	grid-row: span 2;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease, filter .5s ease;
}
.gallery-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17,10,5,0) 55%, rgba(17,10,5,0.78) 100%);
	opacity: 0;
	transition: opacity .3s ease;
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
	opacity: 1;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
	transform: scale(1.06);
}
.gallery-item:focus-visible {
	outline: 2px solid var(--oak-light);
	outline-offset: 2px;
}
.gallery-caption {
	position: absolute;
	left: 14px;
	bottom: 12px;
	right: 14px;
	z-index: 1;
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--cream);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .3s ease, transform .3s ease;
	text-align: left;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
	opacity: 1;
	transform: translateY(0);
}

@media(max-width:900px) {
.gallery-grid {
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 160px;
}
}

@media(max-width:640px) {
.gallery-grid {
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 150px;
	gap: 8px;
}
.gallery-item.wide {
	grid-column: span 2;
}
.gallery-item.tall {
	grid-row: span 1;
}
.gallery-caption {
	opacity: 1;
	transform: none;
	background: linear-gradient(180deg, rgba(17,10,5,0) 0%, rgba(17,10,5,0.55) 100%);
	padding-top: 24px;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 24px 10px 8px;
}
.gallery-item::after {
	opacity: 1;
}
}
/* ---------- LIGHTBOX ---------- */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(10,6,3,0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease;
	padding: 24px;
}
.lightbox.open {
	opacity: 1;
	visibility: visible;
}
body.lightbox-lock {
	overflow: hidden;
}
.lightbox-content {
	position: relative;
	max-width: min(1100px, 92vw);
	max-height: 88vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.lightbox-content img {
	max-width: 100%;
	max-height: 78vh;
	width: auto;
	height: auto;
	border-radius: 2px;
	box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
}
.lightbox-content figcaption {
	margin-top: 14px;
	font-family: 'Space Mono', monospace;
	font-size: 12.5px;
	letter-spacing: 0.04em;
	color: rgba(243,232,214,0.85);
	text-align: center;
	max-width: 640px;
}
.lightbox-count {
	margin-top: 8px;
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	color: rgba(243,232,214,0.45);
	letter-spacing: 0.05em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: fixed;
	background: rgba(243,232,214,0.08);
	border: 1px solid rgba(243,232,214,0.22);
	color: var(--cream);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease;
	z-index: 1001;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: var(--oak);
	border-color: var(--oak);
	color: var(--walnut-deep);
}
.lightbox-close {
	top: 22px;
	right: 22px;
}
.lightbox-prev {
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-next {
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
}

@media(max-width:640px) {
.lightbox {
	padding: 16px;
}
.lightbox-close {
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	font-size: 19px;
}
.lightbox-prev,
.lightbox-next {
	width: 38px;
	height: 38px;
	font-size: 18px;
}
.lightbox-prev {
	left: 10px;
}
.lightbox-next {
	right: 10px;
}
.lightbox-content img {
	max-height: 70vh;
}
}
/* ---------- SWATCH GALLERY (finishes) ---------- */
.finish-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2px;
}

@media(max-width:760px) {
.finish-grid {
	grid-template-columns: repeat(3, 1fr);
}
}
.finish {
	aspect-ratio: 1;
	position: relative;
	overflow: hidden;
	cursor: default;
}
.finish::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(100deg, rgba(0,0,0,0.05) 0px, transparent 3px, transparent 26px, rgba(0,0,0,0.06) 29px);
}
.finish span {
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.03em;
	color: rgba(0,0,0,0.55);
	text-transform: uppercase;
}
.f1 {
	background: linear-gradient(160deg, #E7CBA0, #C08D50);
}
.f2 {
	background: linear-gradient(160deg, #9C6B3E, #6E4527);
}
.f3 {
	background: linear-gradient(160deg, #DED2BE, #B7A688);
}
.f4 {
	background: linear-gradient(160deg, #4A3222, #241608);
}
.f5 {
	background: linear-gradient(160deg, #C97B4E, #8B4A2B);
}
.f6 {
	background: linear-gradient(160deg, #EDEAE2, #D3CCBC);
}
.f7 {
	background: linear-gradient(160deg, #7A5233, #4E3120);
}
.f8 {
	background: linear-gradient(160deg, #D9B78C, #A9723F);
}
.f9 {
	background: linear-gradient(160deg, #2E2A26, #131110);
}
.f10 {
	background: linear-gradient(160deg, #E3D8C4, #C4B497);
}
.f11 {
	background: linear-gradient(160deg, #B08658, #7A5233);
}
.f12 {
	background: linear-gradient(160deg, #F0E4CC, #DCC79A);
}
/* ---------- CONTACT ---------- */
.contact {
	background: var(--cream-soft);
}
.contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 60px;
}

@media(max-width:900px) {
.contact-grid {
	grid-template-columns: 1fr;
	gap: 44px;
}
}
.contact-info h2 {
	font-size: clamp(26px, 3.2vw, 34px);
	margin-bottom: 16px;
}
.contact-info p {
	font-size: 15.5px;
	line-height: 1.65;
	color: rgba(36,22,9,0.62);
	margin-bottom: 30px;
	max-width: 400px;
}
.info-row {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-top: 1px solid var(--line);
}
.info-row:last-of-type {
	border-bottom: 1px solid var(--line);
}
.info-icon {
	width: 36px;
	height: 36px;
	border-radius: 2px;
	background: var(--oak);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cream);
	font-family: 'Space Mono', monospace;
	font-size: 14px;
	font-weight: 700;
}
.info-row div h4 {
	font-size: 14.5px;
	font-weight: 600;
	margin-bottom: 3px;
	font-family: 'Work Sans';
}
.info-row div p {
	font-size: 14px;
	color: rgba(36,22,9,0.6);
	margin: 0;
	max-width: none;
}
.form-card {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 38px;
	box-shadow: 0 20px 50px -20px rgba(42,26,16,0.15);
}

@media(max-width:520px) {
.form-card {
	padding: 26px;
}
}
.form-card h3 {
	font-size: 20px;
	margin-bottom: 6px;
}
.form-card > p {
	font-size: 14px;
	color: rgba(36,22,9,0.55);
	margin-bottom: 26px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

@media(max-width:480px) {
.form-row {
	grid-template-columns: 1fr;
}
}
.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}
.field label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
	border: 1px solid rgba(42,26,16,0.22);
	background: #fff;
	border-radius: 2px;
	padding: 12px 14px;
	font-family: 'Work Sans';
	font-size: 14.5px;
	color: var(--ink);
	outline: none;
	transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
	border-color: var(--oak);
}
.field textarea {
	resize: vertical;
	min-height: 90px;
}
.submit-btn {
	width: 100%;
	background: var(--oak);
	color: var(--walnut-deep);
	border: none;
	padding: 15px;
	border-radius: 2px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: background .2s ease;
	font-family: 'Work Sans';
}
.submit-btn:hover {
	background: var(--oak-light);
}
.form-note {
	font-size: 12px;
	color: rgba(36,22,9,0.45);
	margin-top: 12px;
	text-align: center;
}
.success-msg {
	display: none;
	background: #EAF2E7;
	border: 1px solid #B9D4AE;
	color: #2C4A22;
	padding: 14px 16px;
	border-radius: 2px;
	font-size: 13.5px;
	margin-bottom: 16px;
}
.success-msg.error-msg {
	background: #FBEAEA;
	border-color: #E3B0B0;
	color: #7A2222;
}
/* ---------- FOOTER ---------- */
footer {
	background: var(--walnut-deep);
	color: rgba(243,232,214,0.6);
	padding: 52px 0 30px;
}
.foot-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 36px;
}
.foot-brand .logo-text, .foot-brand .logo-text span {
	color: var(--cream);
}
.foot-brand p {
	font-size: 13.5px;
	margin-top: 12px;
	max-width: 280px;
	line-height: 1.6;
}
.foot-links {
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
}
.foot-col h5 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(243,232,214,0.4);
	margin-bottom: 14px;
	font-family: 'Space Mono';
}
.foot-col a {
	display: block;
	font-size: 14px;
	margin-bottom: 10px;
	color: rgba(243,232,214,0.75);
}
.foot-col a:hover {
	color: var(--oak-light);
}
.foot-bottom {
	border-top: 1px solid rgba(243,232,214,0.1);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12.5px;
}
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
html {
	scroll-behavior: auto;
}
.marquee-track {
	animation-duration: 90s;
}
.reveal {
	opacity: 1;
	transform: none;
	transition: none;
	margin: 0 10px 10px 10px;
}
.plank, .plank:hover {
	transition: none;
}
.gallery-item img {
	transition: none;
}
.lightbox {
	transition: none;
}
}