:root {
 --ink:#1c1410;
 --umber:#3c2818;
 --saddle:#a9683d;
 --saddle-dark:#8a5230;
 --brass:#c79a56;
 --parchment:#efe7d8;
 --paper:#faf6ee;
 --charcoal:#2a2118;
 --charcoal-soft:#5c4c3e;
 --cream:#f3ecdd;
 --line: rgba(28,20,16,0.14);
 --line-light: rgba(243,236,221,0.24);
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--paper);
	color: var(--charcoal);
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
h1, h2, h3, h4 {
	font-family: 'Fraunces', serif;
	margin: 0;
	font-weight: 500;
}
p {
	margin: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.eyebrow {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--saddle-dark);
}
.eyebrow.on-dark {
	color: var(--brass);
}
.wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 32px;
}

@media(max-width:640px) {
.wrap {
	padding: 0 20px;
}
}
/* stitched divider - signature motif */
.stitch {
	width: 100%;
	height: 1px;
	/*background-image: repeating-linear-gradient(90deg, currentColor 0 10px, transparent 10px 20px);*/
	color: var(--line);
	opacity: 0.9;
}
.stitch.on-dark {
	color: var(--line-light);
}
/* ===== TOP BAR ===== */
.topbar {
	background: var(--ink);
	color: var(--cream);
	font-size: 12.5px;
}
.topbar .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 9px;
	padding-bottom: 9px;
	letter-spacing: 0.01em;
}
.topbar a {
	color: var(--cream);
	opacity: 0.85;
	transition: opacity .2s;
}
.topbar a:hover {
	opacity: 1;
	color: var(--brass);
}
.topbar .contact-links {
	display: flex;
	gap: 22px;
}
.topbar .socials {
	display: flex;
	gap: 14px;
}
.topbar .socials i {
	font-size: 13px;
	color: var(--cream);
	opacity: 0.75;
	transition: opacity .2s, color .2s;
}
.topbar a:hover i {
	opacity: 1;
	color: var(--brass);
}

@media(max-width:780px) {
.topbar .contact-links span:last-child {
	display: none;
}
.nav-row {
  padding: 5px 10px !important;
}
}

@media(max-width:520px) {
.topbar {
	font-size: 11px;
}
.topbar .socials {
	gap: 10px;
}
}
/* ===== HEADER ===== */
header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250,246,238,0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
}
.brand {
	display: flex;
	flex-direction: column;
	line-height: 1;
	gap: 3px;
}
.brand img.logo-mark {
	height: 70px;
	width: auto;
	display: block;
}
.brand .sub {
	font-size: 9.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--saddle-dark);
	font-weight: 600;
}

@media(max-width:520px) {
.brand img.logo-mark {
	height: 56px;
}
}
nav.main-nav {
	display: flex;
	align-items: center;
	gap: 36px;
}
nav.main-nav ul {
	display: flex;
	gap: 34px;
}
nav.main-nav li {
	position: relative;
}
nav.main-nav > ul > li > a {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--charcoal);
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: 'Fraunces', serif;
}
nav.main-nav > ul > li > a:hover {
	color: var(--saddle-dark);
}
nav.main-nav li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown {
	position: absolute;
	top: 100%;
	left: -16px;
	background: var(--paper);
	border: 1px solid var(--line);
	min-width: 200px;
	padding: 8px;
	box-shadow: 0 18px 34px rgba(28,20,16,0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all .18s ease;
}
.dropdown a {
	display: block;
	padding: 9px 14px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 2px;
}
.dropdown a:hover {
	background: var(--parchment);
	color: var(--saddle-dark);
}
.caret {
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-top: -3px;
	opacity: 0.6;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 12px 22px;
	border: 1px solid var(--ink);
	color: var(--ink);
	white-space: nowrap;
	transition: all .22s ease;
}
.btn:hover {
	background: var(--ink);
	color: var(--cream);
}
.btn.solid {
	background: var(--ink);
	color: var(--cream);
}
.btn.solid:hover {
	background: var(--saddle-dark);
	border-color: var(--saddle-dark);
}
.btn.on-dark {
	border-color: var(--line-light);
	color: var(--cream);
}
.btn.on-dark:hover {
	background: var(--brass);
	border-color: var(--brass);
	color: var(--ink);
}
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 6px;
}
.hamburger span {
	width: 24px;
	height: 2px;
	background: var(--ink);
}

@media(max-width:980px) {
nav.main-nav {
	display: none;
}
.hamburger {
	display: flex;
}
.header-cta {
	display: none;
}
}
/* mobile menu */
.mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100;
	background: var(--ink);
	color: var(--cream);
	padding: 26px 26px 40px;
	overflow-y: auto;
}
.mobile-menu.open {
	display: block;
}
.mobile-menu-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 36px;
}
.mobile-menu .close-btn {
	background: none;
	border: none;
	color: var(--cream);
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
}
.mobile-menu ul {
	display: flex;
	flex-direction: column;
}
.mobile-menu li {
	border-bottom: 1px solid var(--line-light);
}
.mobile-menu li a {
	display: block;
	padding: 16px 2px;
	font-family: 'Fraunces', serif;
	font-size: 21px;
}
.mobile-menu .sub-links {
	padding-left: 16px;
	display: flex;
	flex-direction: column;
}
.mobile-menu .sub-links a {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	padding: 10px 2px;
	opacity: 0.75;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
}
/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	background: var(--ink);
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('https://picsum.photos/seed/leatherhide9/1800/1200');
	background-size: cover;
	background-position: center 30%;
	filter: sepia(0.55) contrast(1.05) brightness(0.42);
}
.hero-grain {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 20% 10%, rgba(28,20,16,0.05), rgba(28,20,16,0.82) 72%),  linear-gradient(180deg, rgba(28,20,16,0.55) 0%, rgba(28,20,16,0.35) 35%, rgba(28,20,16,0.92) 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 150px 0 0;
}
.hero-inner {
	max-width: 820px;
}
.hero h1 {
	color: var(--cream);
	font-size: clamp(38px, 6vw, 74px);
	line-height: 1.04;
	font-weight: 500;
	letter-spacing: -0.01em;
}
.hero h1 em {
	font-style: italic;
	font-weight: 400;
	color: var(--brass);
}
.hero p.lede {
	color: rgba(243,236,221,0.82);
	font-size: 17px;
	line-height: 1.65;
	max-width: 520px;
	margin-top: 22px;
}
.hero-cta-row {
	display: flex;
	gap: 16px;
	margin-top: 38px;
	flex-wrap: wrap;
}
.hero-stats {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line-light);
	margin-top: 70px;
}
.hero-stats > div {
	padding: 22px 0 30px;
	border-right: 1px solid var(--line-light);
}
.hero-stats > div:last-child {
	border-right: none;
}
.hero-stats .num {
	font-family: 'Fraunces', serif;
	font-size: clamp(24px, 3vw, 34px);
	color: var(--cream);
	font-weight: 500;
}
.hero-stats .lbl {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brass);
	margin-top: 6px;
	font-weight: 600;
}

@media(max-width:780px) {
.hero-content {
	padding-top: 120px;
}
.hero-stats {
	grid-template-columns: repeat(2, 1fr);
}
.hero-stats > div:nth-child(2) {
	border-right: none;
}
.hero-stats > div {
	padding: 18px 0 22px;
}
}

@media(max-width:520px) {
.hero {
	min-height: 100vh;
}
.hero-cta-row {
	flex-direction: column;
	align-items: flex-start;
}
.hero-cta-row .btn {
	width: 100%;
	justify-content: center;
}
}
section {
	padding: 100px 0;
}

@media(max-width:780px) {
section {
	padding: 64px 0;
}
}
/* ===== PROMO STRIP ===== */
.promo-strip {
	background: var(--saddle-dark);
	color: var(--cream);
	text-align: center;
	font-size: 12.5px;
	letter-spacing: 0.03em;
	font-weight: 600;
	padding: 10px 16px;
}
/* ===== HERO SLIDER (split layout, image right, copy left) ===== */
.hero-slider {
	position: relative;
	background: var(--paper);
	overflow: hidden;
}
.hero-track {
	position: relative;
	min-height: 640px;
}
.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .7s ease;
}
.hero-slide.active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.hero-slide-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-height: 640px;
}
.hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 56px 60px 90px;
	max-width: 660px;
}
.nopad{
    padding:0 !important;
}
.hero-copy .eyebrow {
	margin-bottom: 18px;
}
.hero-copy h1 {
	font-size: clamp(38px, 5.2vw, 64px);
	line-height: 1.05;
	font-weight: 500;
	color: var(--ink);
}
.hero-copy h1 .hl {
	background: var(--umber);
	color: var(--cream);
	padding: 2px 16px 6px;
	font-style: italic;
	font-weight: 400;
	display: inline-block;
}
.hero-copy p.lede {
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--charcoal-soft);
	margin-top: 24px;
	max-width: 500px;
}
.hero-cta-row {
	display: flex;
	gap: 14px;
	margin-top: 34px;
	flex-wrap: wrap;
}
.hero-media {
	position: relative;
	overflow: hidden;
	background: var(--umber);
}
.hero-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(0.28) contrast(1.06);
}
.hero-slide.active .hero-media img {
	animation: heroKen 7s ease-out forwards;
}
 @keyframes heroKen {
from {
transform:scale(1.08);
}
to {
transform:scale(1);
}
}
.hero-nav {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 26px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
}
.hero-arrow {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--paper);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: var(--ink);
	cursor: pointer;
	transition: background .2s, color .2s;
}
.hero-arrow:hover {
	background: var(--ink);
	color: var(--cream);
}
.hero-dots {
	display: flex;
	gap: 9px;
}
.hero-dots .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--line);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background .2s, transform .2s;
}
.hero-dots .dot.active {
	background: var(--saddle-dark);
	transform: scale(1.3);
}

@media(max-width:900px) {
.hero-slide-inner {
	grid-template-columns: 1fr;
}
.hero-track, .hero-slide-inner {
	min-height: 0;
}
.hero-copy {
	padding: 52px 24px 32px;
	max-width: none;
	order: 2;
}
.hero-media {
	height: 340px;
	order: 1;
}
.hero-nav {
	position: relative;
	bottom: 0;
	padding: 20px 0 36px;
	background: var(--paper);
}
.hero-cta-row .btn {
	flex: 1;
	justify-content: center;
}
}
/* ===== MARQUEE ===== */
.marquee {
	background: var(--ink);
	color: var(--brass);
	overflow: hidden;
	white-space: nowrap;
	padding: 16px 0;
	border-top: 1px solid var(--line-light);
	border-bottom: 1px solid var(--line-light);
}
.marquee-track {
	display: inline-flex;
	animation: scrollmq 34s linear infinite;
}
.marquee-track span {
	display: inline-flex;
	align-items: center;
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-size: 17px;
	padding: 0 34px;
	color: var(--cream);
}
.marquee-track span::after {
	content: "◆";
	font-family: 'Inter', sans-serif;
	font-style: normal;
	margin-left: 34px;
	color: var(--brass);
	font-size: 10px;
}
 @keyframes scrollmq {
0% {
transform:translateX(0);
}
100% {
transform:translateX(-50%);
}
}

@media (prefers-reduced-motion: reduce) {
.marquee-track {
	animation-duration: 70s;
}
}
/* ===== SPLIT PROMO (image / panel / image) ===== */
.split-promo {
	background: var(--paper);
	padding: 0;
}
.split-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
	min-height: 520px;
}
.split-img {
	position: relative;
	overflow: hidden;
}
.split-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(0.25) contrast(1.05);
}
.split-panel {
	background: var(--umber);
	color: var(--cream);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 52px;
	text-align: center;
}
.split-panel .eyebrow {
	color: var(--brass);
	justify-content: center;
}
.split-panel h2 {
	color: var(--cream);
	font-size: clamp(26px, 3vw, 36px);
	margin-top: 14px;
	line-height: 1.15;
}
.split-panel p {
	color: rgba(243,236,221,0.75);
	font-size: 14.5px;
	line-height: 1.75;
	margin-top: 18px;
}
.split-cta-row {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	flex-wrap: wrap;
}
.split-cta-row .text-link {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--cream);
	border-bottom: 1px solid var(--brass);
	padding-bottom: 3px;
}

@media(max-width:900px) {
.split-grid {
	grid-template-columns: 1fr;
	min-height: 0;
}
.split-img {
	height: 500px;
}
.split-panel {
	padding: 52px 30px;
}
}
/* ===== SOCIAL / SHOWCASE GRID (image4 style) ===== */
.social-section {
	background: var(--parchment);
}
.social-grid {
	display: grid;
	grid-template-columns: 0.85fr repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 14px;
}
.social-copy {
	grid-row: 1/3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 20px;
}
.social-copy h2 {
	font-size: clamp(26px, 3.2vw, 38px);
	line-height: 1.12;
	margin-top: 14px;
}
.social-copy p {
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--charcoal-soft);
	margin-top: 16px;
	max-width: 280px;
}
.social-copy .btn {
	margin-top: 26px;
	align-self: flex-start;
}
.social-item {
	overflow: hidden;
	position: relative;
	aspect-ratio: 1/1;
}
.social-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(0.22) contrast(1.05);
	transition: transform .5s ease;
}
.social-item:hover img {
	transform: scale(1.08);
}

@media(max-width:980px) {
.social-grid {
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
}
.social-copy {
	grid-row: auto;
	grid-column: 1/4;
	padding-right: 0;
	text-align: left;
	margin-bottom: 6px;
}
}

@media(max-width:640px) {
.social-grid {
	grid-template-columns: repeat(2, 1fr);
}
.social-copy {
	grid-column: 1/3;
}
}
.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	margin-bottom: 52px;
}
.section-head h2 {
	font-size: clamp(28px, 3.4vw, 44px);
	margin-top: 12px;
	line-height: 1.08;
}
.section-head .desc {
	max-width: 340px;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--charcoal-soft);
	padding-bottom: 6px;
}

@media(max-width:780px) {
.section-head {
	flex-direction: column;
	align-items: flex-start;
}
}
/* ===== WHAT WE DO ===== */
.wwd-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
.wwd-card {
	background: var(--paper);
	padding: 38px 34px 42px;
	position: relative;
}
.wwd-card .wwd-img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 26px;
	border: 1px solid var(--line);
}
.wwd-card .wwd-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(0.3) contrast(1.05);
}
.wwd-card h3 {
	font-size: 19px;
	margin-bottom: 12px;
	letter-spacing: 0.01em;
}
.wwd-card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--charcoal-soft);
}

@media(max-width:900px) {
.wwd-grid {
	grid-template-columns: 1fr;
}
}
/* ===== ABOUT STRIP ===== */
.about-section {
	background: var(--parchment);
}
.about-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
	align-items: center;
}
.about-media {
	position: relative;
}
.about-media img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	filter: sepia(0.35) contrast(1.05);
}
.about-media .frame {
	position: absolute;
	inset: 18px -18px -18px 18px;
	border: 1px solid var(--saddle);
	z-index: -1;
}
.about-copy .eyebrow {
	margin-bottom: 16px;
}
.about-copy h2 {
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 1.12;
	margin-bottom: 22px;
}
.about-copy p {
	font-size: 15.5px;
	line-height: 1.8;
	color: var(--charcoal-soft);
	margin-bottom: 18px;
}
.about-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 34px 0 34px;
}
.about-facts div {
	border-left: 2px solid var(--saddle);
	padding-left: 14px;
}
.about-facts .num {
	font-family: 'Fraunces', serif;
	font-size: 26px;
	color: var(--ink);
}
.about-facts .lbl {
	font-size: 11.5px;
	color: var(--charcoal-soft);
	margin-top: 3px;
}

@media(max-width:900px) {
.about-grid {
	grid-template-columns: 1fr;
	gap: 40px;
}
.about-media img {
	height: 360px;
}
.about-media .frame {
	display: none;
}
.about-facts {
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
}
/* ===== THE MAKING (signature timeline) ===== */
.making-section {
	background: var(--ink);
	color: var(--cream);
	overflow: hidden;
}
.making-section .section-head h2 {
	color: var(--cream);
}
.making-section .section-head .desc {
	color: rgba(243,236,221,0.65);
}
.making-scroll {
	display: flex;
	gap: 0;
	overflow-x: auto;
	padding-bottom: 24px;
	scrollbar-width: thin;
	scrollbar-color: var(--saddle) transparent;
}
 .making-scroll::-webkit-scrollbar {
height:5px;
}
 .making-scroll::-webkit-scrollbar-thumb {
background:var(--saddle);
}
.making-track {
	display: flex;
	position: relative;
	padding-top: 6px;
}
.making-track::before {
	content: "";
	position: absolute;
	top: 33px;
	left: 0;
	right: 0;
	height: 1px;
	background-image: repeating-linear-gradient(90deg, var(--brass) 0 10px, transparent 10px 20px);
	opacity: 0.5;
}
.make-step {
	flex: 0 0 220px;
	padding: 0 22px 0 0;
	position: relative;
}
.make-step .dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--brass);
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 0 6px var(--ink);
}
.make-step .idx {
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-size: 13px;
	color: var(--brass);
	margin-bottom: 6px;
	display: block;
}
.make-step .thumb {
	width: 100%;
	height: 150px;
	overflow: hidden;
	margin-bottom: 16px;
	border: 1px solid var(--line-light);
}
.make-step .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(0.4) contrast(1.1) brightness(0.9);
	transition: transform .5s ease;
}
.make-step:hover .thumb img {
	transform: scale(1.08);
}
.make-step h4 {
	font-size: 16.5px;
	color: var(--cream);
	font-weight: 500;
}

@media(max-width:640px) {
.make-step {
	flex: 0 0 180px;
}
.make-step .thumb {
	height: 120px;
}
}
/* ===== PRODUCTS ===== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
.product-card {
	background: var(--paper);
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.product-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(0.3) contrast(1.05) brightness(0.85);
	transition: transform .55s ease, filter .4s ease;
}
.product-card:hover img {
	transform: scale(1.09);
	filter: sepia(0.1) contrast(1.08) brightness(0.75);
}
.product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28,20,16,0) 45%, rgba(28,20,16,0.88) 100%);
}
.product-card .label {
	position: relative;
	z-index: 2;
	padding: 20px 16px;
	color: var(--cream);
}
.product-card .label .eyebrow {
	color: var(--brass);
	font-size: 10px;
}
.product-card .label h3 {
	font-size: 16px;
	margin-top: 6px;
	color: var(--cream);
	font-weight: 500;
	line-height: 1.25;
}

@media(max-width:980px) {
.products-grid {
	grid-template-columns: repeat(3, 1fr);
}
}

@media(max-width:640px) {
.products-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
/* ===== GALLERY ===== */
.gallery-section {
	background: var(--parchment);
}
.gallery-grid {
	columns: 4 220px;
	column-gap: 14px;
}
.gallery-grid img {
	width: 100%;
	margin-bottom: 14px;
	break-inside: avoid;
	filter: sepia(0.28) contrast(1.05);
	transition: filter .3s ease, opacity .3s ease;
	cursor: pointer;
}
.gallery-grid img:hover {
	filter: sepia(0.05) contrast(1.08);
}
.gallery-cta {
	text-align: center;
	margin-top: 44px;
}

@media(max-width:640px) {
.gallery-grid {
	columns: 2 150px;
}
}
/* ===== WHY US ===== */
.whyus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 44px;
}
.whyus-card {
	text-align: left;
}
.whyus-card .glyph {
	width: 52px;
	height: 52px;
	border: 1px solid var(--saddle);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}
.whyus-card .glyph svg {
	width: 22px;
	height: 22px;
	stroke: var(--saddle-dark);
	fill: none;
	stroke-width: 1.6;
}
.whyus-card h3 {
	font-size: 19px;
	margin-bottom: 10px;
}
.whyus-card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--charcoal-soft);
}

@media(max-width:780px) {
.whyus-grid {
	grid-template-columns: 1fr;
	gap: 32px;
}
}
/* ===== MISSION BAND ===== */
.mission {
	background: var(--umber);
	color: var(--cream);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.mission::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url('https://images.pexels.com/photos/4452636/pexels-photo-4452636.jpeg');
	background-size: cover;
	background-position: center;
	filter: sepia(0.5) brightness(0.28) contrast(1.1);
	opacity: 0.6;
}
.mission-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
}
.mission blockquote {
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(22px, 3vw, 32px);
	line-height: 1.4;
	color: var(--cream);
}
.mission .attribution {
	margin-top: 26px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brass);
	font-weight: 600;
}
/* ===== FOOTER ===== */
footer {
	background: var(--ink);
	color: var(--cream);
	padding: 76px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 56px;
}
footer .brand .name {
	color: var(--cream);
}
footer .foot-desc {
	font-size: 13.5px;
	line-height: 1.75;
	color: rgba(243,236,221,0.62);
	margin-top: 18px;
	max-width: 280px;
}
footer h5 {
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: 20px;
	font-weight: 700;
}
footer .flinks li {
	margin-bottom: 12px;
}
footer .flinks a {
	font-size: 14px;
	color: rgba(243,236,221,0.78);
	transition: color .2s;
}
footer .flinks a:hover {
	color: var(--brass);
}
footer .fsocials {
	display: flex;
	gap: 12px;
	margin-top: 22px;
}
footer .fsocials a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--line-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .fsocials a i {
	font-size: 14px;
	color: var(--cream);
}
footer .fsocials a:hover {
	border-color: var(--brass);
	background: var(--brass);
}
footer .fsocials a:hover i {
	color: var(--ink);
}
.foot-contact li {
	font-size: 13.5px;
	color: rgba(243,236,221,0.78);
	margin-bottom: 14px;
	line-height: 1.6;
}
.foot-bottom {
	border-top: 1px solid var(--line-light);
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: rgba(243,236,221,0.5);
}

@media(max-width:900px) {
.footer-grid {
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}
}

@media(max-width:560px) {
.footer-grid {
	grid-template-columns: 1fr;
}
.foot-bottom {
	flex-direction: column;
	gap: 10px;
	text-align: center;
}
}
/* whatsapp float */
.wa-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 60;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(0,0,0,0.28);
	transition: transform .2s ease;
}
.wa-float:hover {
	transform: scale(1.08);
}
.wa-float i {
	font-size: 28px;
	color: #fff;
}
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
html {
	scroll-behavior: auto;
}
.reveal {
	opacity: 1;
	transform: none;
	transition: none;
}
.product-card img, .make-step .thumb img {
	transition: none;
}
}

  :focus-visible {
outline:2px solid var(--saddle-dark);
outline-offset:2px;
}

/* ===================================================================
   INNER-PAGE ADDITIONS (banners, breadcrumbs, product slider, modal)
   =================================================================== */

/* nav active state */
nav.main-nav li.active > a,
.dropdown a.active {
	color: var(--saddle-dark);
}

/* --- Inner page banner --- */
.page-banner {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	background: var(--umber);
	overflow: hidden;
}
.page-banner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.38;
}
.page-banner .wrap {
	position: relative;
	z-index: 1;
	padding-bottom: 40px;
	padding-top: 90px;
}
.page-banner .eyebrow.on-dark {
	color: var(--brass);
}
.page-banner h1 {
	color: var(--cream);
	font-size: clamp(32px, 4.4vw, 52px);
	margin-top: 10px;
}
.page-banner .breadcrumb {
	margin-top: 16px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--cream);
	opacity: 0.85;
}
.page-banner .breadcrumb a {
	color: var(--cream);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.page-banner .breadcrumb span {
	margin: 0 6px;
}
@media(max-width:640px){
	.page-banner { min-height: 240px; }
	.page-banner .wrap { padding-top: 70px; }
}

/* --- Category intro line under banner --- */
.cat-intro {
	max-width: 720px;
	margin: 36px auto 0;
	padding: 0 32px;
	text-align: center;
	color: var(--charcoal-soft);
	font-size: 16px;
	line-height: 1.6;
}

/* --- Product grid on category / collection pages ---
   Fully independent classes (shop-*) so nothing here collides with
   the homepage teaser ".product-card" / ".label" rules, which use
   position:absolute for their own overlay-label layout. */
.cat-products-section {
	padding: 36px 0 90px;
}
.shop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
@media(max-width:980px){
	.shop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media(max-width:640px){
	.shop-grid { grid-template-columns: 1fr; }
}
.shop-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	background: var(--paper);
}
.shop-card-info {
	padding: 18px 18px 22px;
	color: var(--charcoal);
}
.shop-card-info .eyebrow {
	color: var(--saddle-dark);
}
.shop-card-info h3 {
	color: var(--charcoal);
	margin: 6px 0 14px;
	font-size: 20px;
}
.shop-card-info .enquire-btn {
	width: 100%;
	justify-content: center;
	border: none;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
}

/* --- Per-product photo slider --- */
.pc-slider {
	position: relative;
	aspect-ratio: 4/5;
	overflow: hidden;
	background: var(--parchment);
}
.pc-slider-track {
	display: flex;
	height: 100%;
	transition: transform .45s ease;
}
.pc-slide {
	min-width: 100%;
	height: 100%;
}
.pc-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff;
	cursor: zoom-in;
}
.pc-zoom-btn {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: rgba(250,246,238,0.88);
	color: var(--umber);
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .2s ease, background .2s ease;
	z-index: 2;
}
.pc-slider:hover .pc-zoom-btn {
	opacity: 1;
}
.pc-zoom-btn:hover {
	background: var(--cream);
}
@media (hover: none) {
	.pc-zoom-btn { opacity: 1; }
}
.pc-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: rgba(250,246,238,0.88);
	color: var(--umber);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .2s ease, background .2s ease;
}
.pc-slider:hover .pc-arrow {
	opacity: 1;
}
.pc-arrow:hover {
	background: var(--cream);
}
@media (hover: none) {
	.pc-arrow { opacity: 1; }
}
.pc-prev { left: 10px; }
.pc-next { right: 10px; }
.pc-dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 6px;
}
.pc-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(250,246,238,0.6);
	display: inline-block;
}
.pc-dot.active {
	background: var(--cream);
	transform: scale(1.3);
}

/* --- Product enquiry modal --- */
.inquiry-overlay {
	position: fixed;
	inset: 0;
	background: rgba(28,20,16,0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease;
	z-index: 999;
}
.inquiry-overlay.open {
	opacity: 1;
	visibility: visible;
}
.inquiry-box {
	position: relative;
	background: var(--paper);
	width: 100%;
	max-width: 440px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 36px 30px 30px;
	border-radius: 4px;
	transform: translateY(16px);
	transition: transform .25s ease;
}
.inquiry-overlay.open .inquiry-box {
	transform: translateY(0);
}
.inquiry-box h3 {
	font-size: 24px;
	margin-top: 6px;
	color: var(--umber);
}
.inquiry-style {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--charcoal-soft);
	margin-top: 4px;
	margin-bottom: 18px;
}
.inquiry-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: var(--charcoal-soft);
}
.inquiry-box form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.inquiry-box label {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--charcoal);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.inquiry-box input,
.inquiry-box textarea {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 3px;
	background: #fff;
	color: var(--charcoal);
	resize: vertical;
}
.inquiry-box input:focus,
.inquiry-box textarea:focus {
	outline: 2px solid var(--saddle-dark);
	outline-offset: 1px;
}
.inquiry-note {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	text-align: center;
	margin-top: -2px;
}
.inquiry-note.success { color: #2f7a3b; }
.inquiry-note.error { color: #a12a2a; }

/* --- Simple grid page (Gallery / About supporting bits) --- */
.plain-section {
	padding: 70px 0;
}
.gallery-full-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.gallery-full-grid a {
	display: block;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: 3px;
}
.gallery-full-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.gallery-full-grid a:hover img {
	transform: scale(1.06);
}
@media(max-width:780px){
	.gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px){
	.gallery-full-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* --- Contact page --- */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.contact-info h3 {
	font-size: 26px;
	color: var(--umber);
	margin-bottom: 14px;
}
.contact-info p {
	color: var(--charcoal-soft);
	line-height: 1.7;
	margin-bottom: 22px;
}
.contact-info ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: 'Inter', sans-serif;
}
.contact-info ul li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.contact-info ul li i {
	color: var(--saddle-dark);
	margin-top: 4px;
	width: 18px;
}
.contact-form-box {
	background: var(--parchment);
	padding: 34px;
	border-radius: 4px;
}
.contact-form-box form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.contact-form-box label {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.contact-form-box input,
.contact-form-box textarea {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	padding: 11px 13px;
	border: 1px solid var(--line);
	border-radius: 3px;
	background: #fff;
	resize: vertical;
}
.contact-map {
	margin-top: 60px;
	border-radius: 4px;
	overflow: hidden;
	filter: grayscale(0.15);
}
.contact-map iframe {
	width: 100%;
	height: 360px;
	border: 0;
	display: block;
}
@media(max-width:900px){
	.contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* --- About page extras --- */
.about-stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 50px;
	text-align: center;
}
.about-stats-row .num {
	font-family: 'Fraunces', serif;
	font-size: 40px;
	color: var(--saddle-dark);
}
.about-stats-row .lbl {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--charcoal-soft);
	margin-top: 4px;
}
@media(max-width:640px){
	.about-stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
}

/* --- Collections listing: editorial overlay card --- */
.collections-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.collection-card {
	position: relative;
	display: block;
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 4/5;
	box-shadow: 0 10px 30px rgba(28,20,16,0.10);
}
.collection-card-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.collection-card:hover .collection-card-photo {
	transform: scale(1.07);
}
.collection-card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px 24px 24px;
	background: linear-gradient(180deg, rgba(28,20,16,0.38) 0%, rgba(28,20,16,0) 32%, rgba(28,20,16,0) 55%, rgba(28,20,16,0.78) 100%);
}
.collection-card-top {
	display: flex;
	justify-content: flex-end;
}
.collection-mark {
	height: 30px;
	width: auto;
	opacity: 0.9;
}
.collection-card-bottom {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.collection-name {
	color: var(--cream);
	font-family: 'Fraunces', serif;
	font-weight: 600;
	font-size: 26px;
	letter-spacing: 0.01em;
	line-height: 1.15;
}
.collection-count {
	color: var(--brass);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: gap .25s ease;
}
.collection-card:hover .collection-count {
	gap: 12px;
}
@media(max-width:900px){
	.collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:560px){
	.collections-grid { grid-template-columns: 1fr; }
	.collection-card { aspect-ratio: 4/4.4; }
}

/* --- Type filter pills on category.php --- */
.type-filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0 6px;
}
.type-pill {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	padding: 9px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	color: var(--charcoal-soft);
	background: var(--paper);
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.type-pill:hover {
	border-color: var(--saddle-dark);
	color: var(--saddle-dark);
}
.type-pill.active {
	background: var(--saddle-dark);
	border-color: var(--saddle-dark);
	color: var(--cream);
}

/* --- Image lightbox (click any product photo to enlarge, no cropping) --- */
.lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20,14,10,0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease;
	z-index: 1000;
	padding: 40px;
}
.lightbox-overlay.open {
	opacity: 1;
	visibility: visible;
}
.lightbox-img {
	max-width: 90vw;
	max-height: 88vh;
	object-fit: contain;
	border-radius: 3px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-close {
	position: absolute;
	top: 20px;
	right: 28px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.12);
	color: var(--cream);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.lightbox-close:hover {
	background: rgba(255,255,255,0.22);
}
.lightbox-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.12);
	color: var(--cream);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox-arrow:hover {
	background: rgba(255,255,255,0.22);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	text-align: center;
	color: var(--cream);
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	opacity: 0.75;
}
@media(max-width:640px){
	.lightbox-overlay { padding: 16px; }
	.lightbox-arrow { width: 40px; height: 40px; font-size: 22px; }
	.lightbox-close { top: 12px; right: 12px; }
}
