:root {
	--ink: #171412;
	--muted: #6f6960;
	--line: #ded8cf;
	--paper: #f7f3ee;
	--surface: #fffdfa;
	--olive: #6f7a56;
	--olive-dark: #3f4d36;
	--oxblood: #783b34;
	--brass: #b08a55;
	--charcoal: #25211e;
	--shadow: 0 18px 50px rgba(31, 25, 18, .12);
	--container: 1180px;
	--header-height: 76px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
}

body.menu-open,
body.filter-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--ink);
	color: #fff;
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.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;
}

.container {
	width: min(var(--container), calc(100% - 40px));
	margin-inline: auto;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header-height);
	background: rgba(255, 253, 250, .82);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(23, 20, 18, .08);
	transition: background .22s ease, box-shadow .22s ease;
}

.site-header.is-scrolled {
	background: rgba(255, 253, 250, .96);
	box-shadow: 0 10px 34px rgba(23, 20, 18, .08);
}

.site-header__inner {
	width: min(1240px, calc(100% - 32px));
	height: 100%;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: var(--ink);
	min-width: 0;
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-family: Georgia, serif;
	font-size: 20px;
	flex: 0 0 auto;
}

.brand__text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.primary-nav,
.site-header__actions {
	display: flex;
	align-items: center;
	gap: 22px;
}

.primary-nav__list,
.mobile-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: inherit;
}

.primary-nav .menu-item {
	position: relative;
	margin: 0;
}

.primary-nav .menu-item-has-children {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.primary-nav > .primary-nav__list > .menu-item-has-children::after {
	content: "";
	position: absolute;
	top: 100%;
	left: -18px;
	right: -18px;
	height: 18px;
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: -14px;
	z-index: 20;
	display: grid;
	min-width: 190px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: rgba(255, 255, 255, .96);
	border: 1px solid var(--line);
	box-shadow: 0 24px 70px rgba(24, 28, 24, .14);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease;
}

.primary-nav .sub-menu .sub-menu {
	top: -10px;
	left: calc(100% + 10px);
	transform: translateX(8px);
}

.primary-nav .sub-menu .menu-item-has-children::after {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	width: 12px;
	height: 100%;
}

.primary-nav .sub-menu .menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	width: 100%;
}

.primary-nav .menu-item:hover > .sub-menu,
.primary-nav .menu-item:focus-within > .sub-menu,
.primary-nav .menu-item.is-submenu-open > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.primary-nav .sub-menu .menu-item:hover > .sub-menu,
.primary-nav .sub-menu .menu-item:focus-within > .sub-menu,
.primary-nav .sub-menu .menu-item.is-submenu-open > .sub-menu {
	transform: translateX(0);
}

.primary-nav .sub-menu a {
	width: 100%;
	padding: 10px 11px;
	white-space: nowrap;
}

.primary-nav .sub-menu a::after {
	display: none;
}

.submenu-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	padding: 0;
	color: currentColor;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.submenu-toggle::before {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translate(-1px, -2px);
	transition: transform .18s ease;
}

.menu-item.is-submenu-open > .submenu-toggle::before,
.menu-item:hover > .submenu-toggle::before,
.menu-item:focus-within > .submenu-toggle::before {
	transform: rotate(225deg) translate(-1px, -1px);
}

.primary-nav .sub-menu .submenu-toggle::before {
	transform: rotate(-45deg);
}

.primary-nav .sub-menu .menu-item.is-submenu-open > .submenu-toggle::before,
.primary-nav .sub-menu .menu-item:hover > .submenu-toggle::before,
.primary-nav .sub-menu .menu-item:focus-within > .submenu-toggle::before {
	transform: rotate(135deg);
}

.primary-nav a,
.header-link,
.text-link {
	position: relative;
	font-size: 14px;
	font-weight: 650;
	color: var(--charcoal);
}

.primary-nav a::after,
.header-link::after,
.text-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .22s ease;
}

.primary-nav a:hover::after,
.header-link:hover::after,
.text-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--surface);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
}

.menu-toggle span {
	width: 18px;
	height: 2px;
	background: var(--ink);
	transition: transform .2s ease;
}

.menu-open .menu-toggle span:first-child {
	transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
	transform: translateY(-4px) rotate(-45deg);
}

.mobile-panel {
	display: none;
}

.mobile-nav__list {
	display: grid;
	gap: 4px;
}

.mobile-nav__list .menu-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 2px;
}

.mobile-nav__list .menu-item:not(.menu-item-has-children) {
	grid-template-columns: 1fr;
}

.mobile-nav__list .sub-menu {
	display: none;
	grid-column: 1 / -1;
	gap: 2px;
	margin: 2px 0 8px 12px;
	padding: 0 0 0 12px;
	list-style: none;
	border-left: 1px solid var(--line);
}

.mobile-nav__list .menu-item.is-submenu-open > .sub-menu {
	display: grid;
}

.mobile-nav__list .submenu-toggle {
	width: 38px;
	height: 38px;
	color: var(--ref-green-dark);
	border: 1px solid rgba(63, 84, 50, .16);
}

.site-main {
	min-height: 70vh;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: #fff;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.2;
	white-space: nowrap;
	transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--olive-dark);
	border-color: var(--olive-dark);
}

.button--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.button--ghost:hover {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.button--light {
	background: rgba(255, 255, 255, .9);
	color: var(--ink);
	border-color: rgba(255, 255, 255, .85);
}

.button--small {
	min-height: 40px;
	padding: 9px 14px;
}

.button-row,
.hero-actions,
.contact-band__actions,
.empty-catalog__actions,
.product-card__actions,
.product-detail__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.eyebrow {
	display: block;
	margin: 0 0 14px;
	color: var(--oxblood);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 520;
	line-height: 1.05;
}

h1 {
	font-size: 68px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 24px;
}

p {
	margin: 0;
	color: var(--muted);
}

.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--paper);
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgba(255, 253, 250, .96) 0%, rgba(255, 253, 250, .80) 38%, rgba(255, 253, 250, .20) 72%),
		linear-gradient(0deg, rgba(23, 20, 18, .20), rgba(23, 20, 18, .02));
}

.hero__content {
	position: relative;
	z-index: 1;
	padding-top: var(--header-height);
	max-width: 1180px;
}

.hero-title {
	max-width: 760px;
	font-size: 72px;
}

.hero-copy {
	max-width: 620px;
	margin: 22px 0 30px;
	font-size: 18px;
	color: #4d4740;
}

.hero__peek {
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 2;
	transform: translateX(-50%);
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 253, 250, .9);
	border: 1px solid rgba(23, 20, 18, .12);
	font-size: 13px;
	font-weight: 750;
}

.section {
	padding: 100px 0;
}

.section--intro {
	padding-bottom: 64px;
}

.intro-grid,
.showcase-grid,
.contact-band__inner,
.section-heading--split {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 64px;
	align-items: end;
}

.section-heading h2,
.showcase-lead h2,
.contact-band h2 {
	max-width: 760px;
}

.intro-copy {
	display: grid;
	gap: 18px;
	align-self: center;
}

.category-showcase {
	padding-top: 40px;
	background: var(--paper);
}

.showcase-lead {
	display: grid;
	gap: 24px;
}

.showcase-lead img,
.feature-tile img,
.product-card__media img,
.product-detail__media img,
.contact-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.showcase-lead img {
	aspect-ratio: 5 / 4;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.showcase-lead p {
	max-width: 560px;
	margin-top: 16px;
}

.category-index {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 12px;
}

.category-tree {
	display: grid;
	gap: 8px;
}

.category-tree__group {
	border-bottom: 1px solid rgba(23, 20, 18, .09);
}

.category-tree__group:last-child {
	border-bottom: 0;
}

.category-tree__toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 15px 10px;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	text-align: left;
	font-weight: 760;
}

.category-tree__toggle small {
	display: grid;
	place-items: center;
	min-width: 28px;
	height: 28px;
	border-radius: 999px;
	background: #eee6db;
	color: var(--muted);
	font-size: 12px;
}

.category-tree__children {
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 12px;
	padding: 0 10px 18px;
}

.category-tree__group[data-open="true"] .category-tree__children {
	display: grid;
}

.category-tree__children a {
	color: var(--muted);
	font-size: 14px;
	padding: 7px 0;
}

.category-tree__children a:hover {
	color: var(--ink);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 36px;
}

.feature-tile {
	position: relative;
	min-height: 330px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--paper);
}

.feature-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(23, 20, 18, .02), rgba(23, 20, 18, .58));
}

.feature-tile span {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 1;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1.1;
}

.feature-tile:hover img {
	transform: scale(1.05);
}

.contact-band {
	background: var(--ink);
	color: #fff;
}

.contact-band h2,
.contact-band p,
.contact-band .eyebrow {
	color: #fff;
}

.contact-band .button--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, .28);
}

.site-footer {
	padding: 56px 0;
	background: #100e0c;
	color: #fff;
}

.site-footer__inner {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.4fr .7fr 1fr auto;
	gap: 36px;
}

.site-footer p,
.site-footer span,
.site-footer a {
	color: rgba(255, 255, 255, .72);
}

.brand--footer {
	color: #fff;
	margin-bottom: 16px;
}

.brand--footer .brand__mark {
	background: #fff;
	color: var(--ink);
}

.footer-list,
.footer-cta {
	display: grid;
	align-content: start;
	gap: 10px;
}

.footer-list strong {
	color: #fff;
}

.footer-cta {
	grid-template-columns: 1fr;
}

.page-hero {
	position: relative;
	padding: 170px 0 90px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(247, 243, 238, .98), rgba(247, 243, 238, .78), rgba(247, 243, 238, .28)),
		var(--hero-image, none) center / cover;
}

.page-hero--compact {
	background: var(--paper);
	padding-bottom: 70px;
}

.page-hero__inner {
	max-width: 760px;
	margin-inline: auto auto;
}

.page-hero p {
	max-width: 620px;
	margin-top: 18px;
	font-size: 18px;
}

.catalog-shell {
	padding: 48px 0 100px;
}

.catalog-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.catalog-search {
	display: flex;
	align-items: center;
	gap: 8px;
	width: min(520px, 100%);
	padding: 6px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
}

.catalog-search input[type="search"] {
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 10px 12px;
	outline: 0;
}

.catalog-layout {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.catalog-sidebar {
	position: sticky;
	top: calc(var(--header-height) + 24px);
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	padding: 12px;
}

.catalog-sidebar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 10px 12px;
}

.catalog-sidebar__header button {
	display: none;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.catalog-filter-toggle {
	display: none;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.product-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
}

.product-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--paper);
}

.product-card:hover .product-card__media img {
	transform: scale(1.045);
}

.product-card__body {
	display: grid;
	gap: 12px;
	padding: 18px;
}

.product-card h3 {
	font-size: 23px;
}

.product-card p {
	font-size: 14px;
}

.product-card__price {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 2px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
	color: var(--muted);
}

.product-card__price span {
	font-size: 12px;
	font-weight: 720;
}

.product-card__price strong {
	color: var(--ink);
	font-size: 22px;
	font-weight: 680;
	line-height: 1;
	white-space: nowrap;
}

.product-card__actions {
	justify-content: space-between;
	padding-top: 4px;
}

.empty-catalog {
	display: grid;
	gap: 18px;
	padding: 54px;
	border-radius: 8px;
	border: 1px solid var(--line);
	background:
		linear-gradient(135deg, rgba(111, 122, 86, .10), rgba(120, 59, 52, .06)),
		var(--surface);
}

.empty-catalog h2 {
	max-width: 680px;
}

.empty-catalog p {
	max-width: 620px;
}

.pagination-wrap {
	margin-top: 36px;
}

.pagination-wrap .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination-wrap a,
.pagination-wrap span {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 999px;
}

.product-detail {
	padding: 132px 0 96px;
	background: var(--paper);
}

.product-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: 54px;
	align-items: center;
}

.product-detail__media {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--shadow);
	background: var(--surface);
}

.product-detail__content {
	display: grid;
	gap: 22px;
}

.product-detail__summary {
	max-width: 650px;
	font-size: 18px;
}

.product-detail__summary p + p {
	margin-top: 12px;
}

.product-detail__price {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
	width: max-content;
	max-width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(23, 20, 18, .14);
	border-radius: 8px;
	background: rgba(255, 253, 250, .72);
}

.product-detail__price span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 720;
}

.product-detail__price strong {
	color: var(--ink);
	font-size: 28px;
	line-height: 1;
}

.product-detail__description {
	max-width: 720px;
	padding: 20px;
	border: 1px solid rgba(23, 20, 18, .12);
	border-radius: 8px;
	background: rgba(255, 253, 250, .62);
}

.product-detail__description p,
.product-detail__description li {
	color: var(--muted);
	font-size: 15px;
}

.product-detail__description ul {
	display: grid;
	gap: 8px;
	margin: 14px 0 0;
	padding-left: 18px;
}

.product-notes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 8px;
}

.product-notes div {
	display: grid;
	gap: 6px;
	padding: 16px;
	border: 1px solid rgba(23, 20, 18, .12);
	border-radius: 8px;
	background: rgba(255, 253, 250, .66);
}

.product-notes span {
	color: var(--muted);
	font-size: 14px;
}

.page-content {
	max-width: 980px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
	gap: 32px;
	align-items: stretch;
}

.contact-panel {
	display: grid;
	align-content: center;
	gap: 18px;
	padding: 42px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
}

.contact-image {
	min-height: 480px;
	border-radius: 8px;
	overflow: hidden;
}

.article-block {
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
}

.content-flow {
	display: grid;
	gap: 20px;
}

.reveal-item,
.reveal-hero {
	will-change: transform, opacity;
}

@media (max-width: 980px) {
	h1,
	.hero-title {
		font-size: 48px;
	}

	h2 {
		font-size: 34px;
	}

	.primary-nav,
	.header-link {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.mobile-panel {
		position: fixed;
		top: var(--header-height);
		left: 16px;
		right: 16px;
		z-index: 99;
		display: grid;
		gap: 6px;
		padding: 16px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: var(--surface);
		box-shadow: var(--shadow);
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: transform .22s ease, opacity .22s ease;
	}

	.mobile-panel a {
		padding: 13px 10px;
		font-weight: 720;
	}

	.menu-open .mobile-panel {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.intro-grid,
	.showcase-grid,
	.contact-band__inner,
	.section-heading--split,
	.product-detail__grid,
	.contact-layout,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.feature-grid,
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.catalog-layout {
		grid-template-columns: 1fr;
	}

	.catalog-filter-toggle {
		display: inline-flex;
	}

	.catalog-sidebar {
		position: fixed;
		inset: var(--header-height) 0 0 auto;
		z-index: 120;
		width: min(420px, 92vw);
		border-radius: 8px 0 0 8px;
		overflow: auto;
		transform: translateX(105%);
		transition: transform .24s ease;
		box-shadow: var(--shadow);
	}

	.filter-open .catalog-sidebar {
		transform: translateX(0);
	}

	.catalog-sidebar__header button {
		display: grid;
		place-items: center;
	}
}

@media (max-width: 680px) {
	:root {
		--header-height: 68px;
	}

	body {
		font-size: 15px;
	}

	.container,
	.site-footer__inner {
		width: min(100% - 28px, var(--container));
	}

	h1,
	.hero-title {
		font-size: 40px;
	}

	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 22px;
	}

	.brand__mark {
		width: 34px;
		height: 34px;
		font-size: 18px;
	}

	.hero {
		min-height: 86vh;
	}

	.hero__overlay {
		background: linear-gradient(180deg, rgba(255, 253, 250, .94), rgba(255, 253, 250, .76), rgba(255, 253, 250, .42));
	}

	.hero-copy,
	.page-hero p,
	.product-detail__summary {
		font-size: 16px;
	}

	.section {
		padding: 72px 0;
	}

	.category-tree__children,
	.product-notes,
	.feature-grid,
	.product-grid {
		grid-template-columns: 1fr;
	}

	.feature-tile {
		min-height: 240px;
	}

	.catalog-toolbar,
	.catalog-search {
		align-items: stretch;
	}

	.catalog-toolbar {
		flex-direction: column;
	}

	.catalog-search {
		width: 100%;
		border-radius: 8px;
	}

	.empty-catalog,
	.contact-panel {
		padding: 28px;
	}

	.product-detail {
		padding-top: 110px;
	}

	.product-detail__media {
		aspect-ratio: 4 / 3;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

.caglam-site .button,
.caglam-site a.button,
.caglam-site button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: #fff;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.2;
	white-space: nowrap;
}

.caglam-site .button--ghost,
.caglam-site a.button--ghost,
.caglam-site button.button--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.caglam-site .button--light,
.caglam-site a.button--light {
	background: rgba(255, 255, 255, .9);
	color: var(--ink);
	border-color: rgba(255, 255, 255, .85);
}

.caglam-site .button--small,
.caglam-site button.button--small {
	min-height: 40px;
	padding: 9px 14px;
}

.caglam-site .button:hover,
.caglam-site a.button:hover,
.caglam-site button.button:hover {
	transform: translateY(-2px);
	background: var(--olive-dark);
	border-color: var(--olive-dark);
	color: #fff;
}

.caglam-site .button--ghost:hover,
.caglam-site a.button--ghost:hover,
.caglam-site button.button--ghost:hover {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.caglam-site .catalog-filter-toggle {
	display: none !important;
}

@media (max-width: 980px) {
	.caglam-site .catalog-filter-toggle {
		display: inline-flex !important;
	}
}

/* Reference homepage rebuild */
:root {
	--header-height: 82px;
	--ref-green: #4d613c;
	--ref-green-dark: #3f5432;
	--ref-text: #202326;
	--ref-muted: #535852;
	--ref-line: #d8d8d2;
	--ref-paper: #f7f6f0;
	--ref-shell: 1138px;
}

body {
	background: #fff;
	color: var(--ref-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
	position: relative;
	inset: 0 0 auto;
	height: var(--header-height);
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(30, 32, 30, .08);
	box-shadow: none;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 8px 28px rgba(30, 32, 30, .06);
}

.site-header__inner {
	width: min(1200px, calc(100% - 70px));
	gap: 30px;
}

.brand {
	gap: 0;
}

.brand--lockup {
	display: grid;
	line-height: 1;
	min-width: 158px;
}

.brand--image {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	align-self: stretch;
	min-width: clamp(168px, 16vw, 218px);
}

.brand__logo {
	display: block;
	width: clamp(168px, 16vw, 218px);
	height: auto;
	max-height: 64px;
	object-fit: contain;
}

.brand__name {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 500;
	letter-spacing: .025em;
	color: #1e2326;
}

.brand__sub {
	margin-top: 7px;
	padding-left: 24px;
	color: #485048;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .48em;
}

.brand__mark,
.brand__text {
	display: none;
}

.primary-nav {
	flex: 1 1 auto;
	justify-content: center;
	gap: clamp(18px, 2.45vw, 34px);
}

.primary-nav a,
.header-link,
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #202326;
	font-size: 13px;
	font-weight: 500;
}

.primary-nav a::after,
.header-link::after,
.text-link::after {
	bottom: -8px;
	background: var(--ref-green);
}

.site-header__actions {
	gap: 28px;
}

.header-social {
	display: inline-grid;
	grid-template-columns: auto auto;
	align-items: center;
	gap: 9px;
	color: #1f261f;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.18;
	white-space: nowrap;
}

.header-social i {
	color: #2f4d28;
	font-size: 25px;
	line-height: 1;
}

.header-social .dashicons-instagram {
	color: #1f241f;
}

.menu-toggle {
	background: #fff;
}

.ref-shell {
	width: min(var(--ref-shell), calc(100% - 112px));
	margin-inline: auto;
}

.ref-kicker {
	margin: 0 0 18px;
	color: var(--ref-green);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .36em;
	line-height: 1.2;
}

.ref-hero {
	position: relative;
	min-height: min(650px, calc(100vh - var(--header-height)));
	overflow: hidden;
	background: #f7f5ed;
}

.ref-hero__image,
.ref-hero__scrim {
	position: absolute;
	inset: 0;
}

.ref-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.ref-hero__scrim {
	background:
		linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 28%, rgba(255,255,255,.52) 49%, rgba(255,255,255,.02) 74%),
		linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 55%);
}

.ref-hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	min-height: min(650px, calc(100vh - var(--header-height)));
	padding: 34px 0 46px;
}

.ref-hero h1,
.ref-section h2,
.ref-consult h2 {
	margin: 0;
	color: #24282a;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: 0;
}

.ref-hero h1 {
	max-width: 760px;
	font-size: 64px;
	line-height: 1.16;
}

.ref-hero__copy {
	margin: 28px 0 32px;
	color: #1f2527;
	font-size: 22px;
	line-height: 1.55;
}

.ref-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.ref-button,
.ref-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 3px;
	border: 1px solid #1f2524;
	color: #202525;
	background: rgba(255,255,255,.78);
	font-size: 13px;
	font-weight: 600;
	transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.ref-button i,
.ref-pill i {
	font-size: 18px;
	line-height: 1;
}

.ref-button:hover,
.ref-pill:hover,
.ref-category-card:hover {
	transform: translateY(-2px);
}

.ref-button--green {
	background: var(--ref-green);
	border-color: var(--ref-green);
	color: #fff;
}

.ref-button--green:hover {
	background: var(--ref-green-dark);
	border-color: var(--ref-green-dark);
	color: #fff;
}

.ref-button--outline:hover,
.ref-pill:hover {
	background: #202525;
	border-color: #202525;
	color: #fff;
}

.ref-section {
	padding: 40px 0 34px;
}

.ref-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 24px;
}

.ref-section h2 {
	font-size: 43px;
	line-height: 1.12;
}

.ref-pill {
	min-height: 42px;
	padding: 0 19px;
	border-radius: 999px;
	background: #fff;
	white-space: nowrap;
}

.ref-category-grid {
	display: grid;
	grid-template-columns: repeat(30, minmax(0, 1fr));
	gap: 16px;
}

.ref-category-card {
	grid-column: span 5;
	display: grid;
	overflow: hidden;
	border-radius: 4px;
	background: #f3f2ef;
	border: 1px solid rgba(32, 37, 37, .06);
	transition: transform .22s ease, box-shadow .22s ease;
}

.ref-category-card:nth-child(-n+5) {
	grid-column: span 6;
}

.ref-category-card:hover {
	box-shadow: 0 16px 35px rgba(33, 37, 32, .12);
}

.ref-category-card__media {
	display: block;
	height: 132px;
	overflow: hidden;
	background: #eceae5;
}

.ref-category-card:nth-child(-n+5) .ref-category-card__media {
	height: 178px;
}

.ref-category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.ref-category-card:nth-child(1) img,
.ref-category-card:nth-child(2) img,
.ref-category-card:nth-child(6) img {
	object-position: left center;
}

.ref-category-card:nth-child(3) img,
.ref-category-card:nth-child(7) img {
	object-position: 18% center;
}

.ref-category-card:nth-child(10) img {
	object-position: 72% center;
}

.ref-category-card:hover img {
	transform: scale(1.045);
}

.ref-category-card__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 48px;
	padding: 0 17px;
	color: #252a2b;
	font-size: 14px;
	font-weight: 500;
}

.ref-category-card__label i {
	font-size: 16px;
}

.ref-benefits {
	position: relative;
	overflow: hidden;
	padding: 35px 0 30px;
	background:
		linear-gradient(90deg, #fbfaf6 0%, #fbfaf6 66%, rgba(251,250,246,.55) 82%, rgba(251,250,246,0) 100%),
		#f4f1e9;
}

.ref-benefits__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) 250px;
	gap: 34px;
	align-items: center;
	min-height: 92px;
}

.ref-benefit {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.ref-benefit i {
	color: var(--ref-green);
	font-size: 34px;
	line-height: 1;
}

.ref-benefit strong {
	display: block;
	margin-bottom: 6px;
	color: #222827;
	font-size: 14px;
	font-weight: 600;
}

.ref-benefit p {
	color: #555a55;
	font-size: 12px;
	line-height: 1.5;
}

.ref-benefits__image {
	position: absolute;
	right: -24px;
	bottom: -32px;
	width: 290px;
	height: 154px;
	object-fit: cover;
	object-position: 48% center;
	border-radius: 0;
}

.ref-consult {
	overflow: hidden;
	background: #fff;
}

.ref-consult__grid {
	display: grid;
	grid-template-columns: 230px 310px minmax(0, 1fr);
	gap: 42px;
	align-items: center;
	min-height: 260px;
}

.ref-consult__title h2 {
	font-size: 34px;
	line-height: 1.16;
}

.ref-consult__title span {
	display: block;
	width: 55px;
	height: 2px;
	margin-top: 25px;
	background: var(--ref-green);
}

.ref-consult__copy {
	display: grid;
	gap: 14px;
	align-content: center;
}

.ref-consult__copy p {
	color: #333837;
	font-size: 13px;
	line-height: 1.72;
}

.ref-consult__copy .ref-button {
	justify-self: start;
	min-height: 40px;
	margin-top: 8px;
	padding-inline: 16px;
}

.ref-consult__image {
	align-self: stretch;
	margin-right: calc((min(var(--ref-shell), calc(100vw - 112px)) - 100vw) / 2);
	min-height: 260px;
	overflow: hidden;
}

.ref-consult__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 75% center;
}

.site-footer {
	padding: 0;
	background: var(--ref-green-dark);
	color: #fff;
}

.site-footer__inner {
	width: min(var(--ref-shell), calc(100% - 112px));
	min-height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-footer p {
	color: rgba(255,255,255,.92);
	font-size: 12px;
}

.site-footer__actions {
	display: flex;
	align-items: center;
	gap: 34px;
}

.site-footer__actions a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.site-footer__actions i {
	font-size: 19px;
}

@media (max-width: 1120px) {
	.site-header__inner {
		width: min(100% - 32px, 1200px);
	}

	.primary-nav {
		gap: 16px;
	}

	.header-social span {
		display: none;
	}

	.header-social i {
		font-size: 24px;
	}
}

@media (max-width: 980px) {
	.primary-nav,
	.site-header__actions .header-social {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.mobile-panel {
		display: grid;
	}

	.ref-shell,
	.site-footer__inner {
		width: min(100% - 32px, var(--ref-shell));
	}

	.ref-hero,
	.ref-hero__content {
		min-height: 660px;
	}

	.ref-hero__scrim {
		background: linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.83) 58%, rgba(255,255,255,.28));
	}

	.ref-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ref-category-card,
	.ref-category-card:nth-child(-n+5) {
		grid-column: auto;
	}

	.ref-category-card__media,
	.ref-category-card:nth-child(-n+5) .ref-category-card__media {
		height: 190px;
	}

	.ref-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-right: 0;
	}

	.ref-benefits__image {
		display: none;
	}

	.ref-consult__grid {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 46px 0 0;
	}

	.ref-consult__image {
		margin-inline: -16px;
		min-height: 260px;
	}
}

@media (max-width: 680px) {
	:root {
		--header-height: 72px;
	}

	.site-header__inner {
		width: min(100% - 28px, 1200px);
	}

	.brand--lockup {
		min-width: 128px;
	}

	.brand__logo {
		width: 150px;
		max-height: 52px;
	}

	.brand__name {
		font-size: 28px;
	}

	.brand__sub {
		padding-left: 17px;
		font-size: 8px;
		letter-spacing: .42em;
	}

	.ref-kicker {
		font-size: 11px;
		letter-spacing: .28em;
	}

	.ref-hero,
	.ref-hero__content {
		min-height: 610px;
	}

	.ref-hero__image img {
		object-position: 45% center;
	}

	.ref-hero h1 {
		font-size: 43px;
	}

	.ref-hero__copy {
		font-size: 17px;
	}

	.ref-hero__actions,
	.ref-section__head,
	.site-footer__inner,
	.site-footer__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ref-button,
	.ref-pill {
		width: 100%;
	}

	.ref-section {
		padding-top: 34px;
	}

	.ref-section h2,
	.ref-consult__title h2 {
		font-size: 31px;
	}

	.ref-category-grid,
	.ref-benefits__grid {
		grid-template-columns: 1fr;
	}

	.ref-category-card__media,
	.ref-category-card:nth-child(-n+5) .ref-category-card__media {
		height: 230px;
	}

	.ref-benefits {
		padding: 28px 0;
	}

	.ref-benefit {
		grid-template-columns: 38px minmax(0, 1fr);
	}

	.site-footer {
		padding: 18px 0;
	}
}

/* Reference catalog archive */
.ref-catalog-hero {
	position: relative;
	min-height: 468px;
	overflow: hidden;
	background: #f5f3ed;
	border-bottom: 1px solid rgba(30, 32, 30, .08);
}

.ref-catalog-hero__image,
.ref-catalog-hero__scrim {
	position: absolute;
	inset: 0;
}

.ref-catalog-hero__image {
	left: 40%;
}

.ref-catalog-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ref-catalog-hero__scrim {
	background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 38%, rgba(255, 255, 255, .34) 69%, rgba(255, 255, 255, .08) 100%);
}

.ref-catalog-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 720px);
	align-items: center;
	justify-content: start;
	gap: 54px;
	min-height: 468px;
	padding: 72px 0;
}

.ref-catalog-hero__copy {
	max-width: 640px;
}

.ref-catalog-hero__copy h1 {
	max-width: 760px;
	margin: 0;
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 64px;
	font-weight: 400;
	line-height: .98;
	letter-spacing: 0;
}

.ref-catalog-hero__copy > p:not(.ref-kicker) {
	max-width: 600px;
	margin: 24px 0 0;
	color: #252a29;
	font-size: 19px;
	line-height: 1.62;
}

.ref-catalog-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.ref-catalog-stats {
	display: grid;
	gap: 12px;
	width: min(100%, 290px);
	margin-left: auto;
	padding: 14px;
	background: rgba(255, 255, 255, .78);
	border: 1px solid rgba(255, 255, 255, .78);
	box-shadow: 0 28px 78px rgba(30, 32, 30, .12);
	backdrop-filter: blur(18px);
}

.ref-catalog-stats div {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 14px 14px;
	background: rgba(255, 255, 255, .8);
	border: 1px solid rgba(63, 84, 50, .1);
}

.ref-catalog-stats strong {
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 400;
	line-height: .9;
}

.ref-catalog-stats span {
	color: #4b5447;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	text-align: right;
}

.ref-catalog-explorer {
	padding: 48px 0 42px;
	background: #fff;
}

.ref-catalog-explorer .ref-section__head {
	margin-bottom: 24px;
}

.ref-collection-rail {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ref-collection-card {
	display: grid;
	grid-template-columns: 122px minmax(0, 1fr);
	min-height: 132px;
	overflow: hidden;
	background: #f7f6f1;
	border: 1px solid #deded8;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ref-collection-card:hover,
.ref-collection-card.is-active {
	transform: translateY(-3px);
	border-color: rgba(63, 84, 50, .38);
	box-shadow: 0 18px 40px rgba(30, 32, 30, .1);
}

.ref-collection-card__image {
	display: block;
	min-height: 132px;
	overflow: hidden;
	background: #e8e4dc;
}

.ref-collection-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .38s ease;
}

.ref-collection-card:hover .ref-collection-card__image img {
	transform: scale(1.045);
}

.ref-collection-card__body {
	display: grid;
	align-content: end;
	gap: 8px;
	min-width: 0;
	padding: 18px 16px;
}

.ref-collection-card__body strong {
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.05;
}

.ref-collection-card__body small {
	color: #56604f;
	font-size: 12px;
	font-weight: 650;
}

.ref-catalog-shell {
	padding: 52px 0 74px;
	background:
		linear-gradient(180deg, #f7f6f1 0, #fff 180px),
		#fff;
	border-top: 1px solid rgba(30, 32, 30, .08);
}

.ref-catalog-toolbar {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	margin: 0 0 28px;
}

.ref-catalog-search {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 60px;
	margin: 0;
	padding: 8px 8px 8px 19px;
	background: #fff;
	border: 1px solid #d8d8d2;
	box-shadow: 0 14px 34px rgba(30, 32, 30, .06);
}

.ref-catalog-search i {
	color: var(--ref-green);
	font-size: 21px;
	line-height: 1;
}

.ref-catalog-search input[type="search"] {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ref-text);
	font-size: 15px;
}

.ref-catalog-search input[type="search"]::placeholder {
	color: #737a70;
	opacity: 1;
}

.ref-catalog-toolbar .catalog-filter-toggle {
	display: none;
	min-height: 60px;
	padding-inline: 20px;
	background: #fff;
}

.ref-catalog-layout {
	display: grid;
	grid-template-columns: 304px minmax(0, 1fr);
	align-items: start;
	gap: 34px;
}

.ref-catalog-sidebar {
	position: sticky;
	top: 24px;
	display: grid;
	gap: 18px;
	padding: 18px;
	background: rgba(255, 255, 255, .92);
	border: 1px solid #dcdcd4;
	box-shadow: 0 18px 42px rgba(30, 32, 30, .06);
}

.ref-catalog-sidebar .catalog-sidebar__header {
	padding: 0 0 14px;
	border-bottom: 1px solid #e5e4dd;
}

.ref-catalog-sidebar .catalog-sidebar__header strong {
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 25px;
	font-weight: 400;
}

.ref-catalog-sidebar .category-tree {
	display: grid;
	gap: 4px;
}

.ref-catalog-sidebar .category-tree a {
	border-radius: 0;
}

.ref-catalog-sidebar .category-tree a,
.ref-catalog-sidebar .category-tree__label {
	font-size: 14px;
}

.ref-catalog-sidebar .category-tree__group[data-open="true"] > .category-tree__row,
.ref-catalog-sidebar .category-tree a[aria-current="page"] {
	background: #f1f0e9;
	color: #2f3e27;
}

.ref-sidebar-contact {
	display: grid;
	gap: 14px;
	padding: 20px;
	background: #f3f1ea;
	border: 1px solid rgba(63, 84, 50, .16);
}

.ref-sidebar-contact .ref-kicker {
	margin-bottom: 0;
	font-size: 11px;
	letter-spacing: .3em;
}

.ref-sidebar-contact strong {
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.17;
}

.ref-sidebar-contact .ref-button {
	justify-content: center;
	width: 100%;
	min-height: 42px;
}

.ref-results-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 24px;
	margin-bottom: 24px;
	padding-bottom: 22px;
	border-bottom: 1px solid #deded8;
}

.ref-results-head .ref-kicker {
	margin-bottom: 11px;
}

.ref-results-head h2 {
	margin: 0;
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.08;
}

.ref-results-head p {
	max-width: 680px;
	margin: 12px 0 0;
	color: #4a514d;
	font-size: 14px;
	line-height: 1.72;
}

.ref-results-badges {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.ref-results-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 35px;
	padding: 0 13px;
	color: #405037;
	background: #f2f1eb;
	border: 1px solid #deded8;
	font-size: 12px;
	font-weight: 650;
}

.ref-product-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ref-product-grid .product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dadad2;
	border-radius: 0;
	box-shadow: none;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ref-product-grid .product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(63, 84, 50, .34);
	box-shadow: 0 24px 54px rgba(30, 32, 30, .1);
}

.ref-product-grid .product-card__media {
	aspect-ratio: 3 / 2;
	background: #ede9df;
}

.ref-product-grid .product-card__body {
	display: grid;
	grid-template-rows: auto auto 1fr auto auto;
	gap: 11px;
	padding: 18px 18px 16px;
}

.ref-product-grid .product-card .eyebrow {
	margin: 0;
	color: var(--ref-green);
	font-size: 10px;
	letter-spacing: .2em;
	line-height: 1.45;
}

.ref-product-grid .product-card h3 {
	min-height: 54px;
	margin: 0;
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.12;
}

.ref-product-grid .product-card p {
	margin: 0;
	color: #5d625e;
	font-size: 13px;
	line-height: 1.62;
}

.ref-product-grid .product-card__body > p:not(.product-card__price) {
	display: -webkit-box;
	min-height: 42px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ref-product-grid .product-card__price {
	align-items: center;
	margin-top: 4px;
	padding-top: 13px;
	border-top: 1px solid #e4e2da;
}

.ref-product-grid .product-card__price span {
	color: #687062;
	font-size: 11px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ref-product-grid .product-card__price strong {
	color: #2f3e27;
	font-size: 24px;
	font-weight: 650;
}

.ref-product-grid .product-card__actions {
	align-self: end;
	justify-content: space-between;
	gap: 10px;
	padding-top: 2px;
}

.ref-product-grid .product-card__actions .button {
	min-height: 38px;
	padding: 0 14px;
	background: var(--ref-green);
	border-color: var(--ref-green);
	color: #fff;
	font-size: 12px;
}

.ref-product-grid .product-card__actions .text-link {
	color: #222624;
	font-size: 13px;
}

.ref-catalog-results .empty-catalog {
	background: #fff;
	border-radius: 0;
}

@media (max-width: 1320px) {
	.ref-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1180px) {
	.ref-collection-rail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ref-catalog-layout {
		grid-template-columns: 282px minmax(0, 1fr);
		gap: 24px;
	}

}

@media (max-width: 980px) {
	.ref-catalog-hero,
	.ref-catalog-hero__grid {
		min-height: 560px;
	}

	.ref-catalog-hero__image {
		left: 18%;
	}

	.ref-catalog-hero__scrim {
		background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.88) 58%, rgba(255,255,255,.2));
	}

	.ref-catalog-hero__grid {
		grid-template-columns: 1fr;
		align-content: center;
		gap: 24px;
		padding: 54px 0;
	}

	.ref-catalog-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		max-width: 680px;
		margin: 0;
	}

	.ref-catalog-stats div {
		display: grid;
		align-content: center;
		min-height: 104px;
	}

	.ref-catalog-stats span {
		text-align: left;
	}

	.ref-catalog-toolbar {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.ref-catalog-toolbar .catalog-filter-toggle {
		display: inline-flex;
	}

	.ref-catalog-layout {
		grid-template-columns: 1fr;
	}

	.ref-catalog-sidebar {
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
		left: auto;
		max-height: calc(100vh - var(--header-height));
		border-radius: 0;
		box-shadow: -22px 0 60px rgba(30, 32, 30, .16);
	}

	.ref-results-head {
		grid-template-columns: 1fr;
	}

	.ref-results-badges {
		justify-content: flex-start;
	}
}

@media (max-width: 680px) {
	.ref-catalog-hero,
	.ref-catalog-hero__grid {
		min-height: 600px;
	}

	.ref-catalog-hero__image {
		left: 0;
		opacity: .82;
	}

	.ref-catalog-hero__image img {
		object-position: 56% center;
	}

	.ref-catalog-hero__scrim {
		background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.88) 54%, rgba(255,255,255,.48));
	}

	.ref-catalog-hero__grid {
		align-content: end;
		padding: 42px 0;
	}

	.ref-catalog-hero__copy h1 {
		font-size: 44px;
	}

	.ref-catalog-hero__copy > p:not(.ref-kicker) {
		font-size: 16px;
		line-height: 1.58;
	}

	.ref-catalog-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ref-catalog-stats {
		grid-template-columns: 1fr;
		padding: 10px;
	}

	.ref-catalog-stats div {
		display: flex;
		min-height: auto;
		padding: 13px 12px;
	}

	.ref-catalog-explorer,
	.ref-catalog-shell {
		padding-block: 34px;
	}

	.ref-collection-rail {
		grid-template-columns: 1fr;
	}

	.ref-collection-card {
		grid-template-columns: 112px minmax(0, 1fr);
		min-height: 118px;
	}

	.ref-collection-card__image {
		min-height: 118px;
	}

	.ref-catalog-toolbar,
	.ref-catalog-search {
		grid-template-columns: 1fr;
		align-items: stretch;
	}

	.ref-catalog-search {
		padding: 14px;
	}

	.ref-catalog-search i {
		display: none;
	}

	.ref-catalog-toolbar .catalog-filter-toggle {
		width: 100%;
	}

	.ref-results-head h2 {
		font-size: 31px;
	}

	.ref-product-grid {
		grid-template-columns: 1fr;
	}

	.ref-product-grid .product-card h3 {
		min-height: auto;
		font-size: 25px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ref-collection-card,
	.ref-collection-card__image img,
	.ref-product-grid .product-card,
	.ref-product-grid .product-card__media img {
		transition: none;
	}

	.ref-collection-card:hover,
	.ref-product-grid .product-card:hover {
		transform: none;
	}
}

/* Reference product conversion page */
.product-experience {
	padding: 44px 0 58px;
	background:
		linear-gradient(90deg, #f7f6f1 0, #f7f6f1 58%, #fff 58%, #fff 100%);
	border-bottom: 1px solid rgba(30, 32, 30, .08);
}

.product-experience__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(410px, .86fr);
	align-items: start;
	gap: 54px;
}

.product-gallery {
	display: grid;
	gap: 14px;
	position: sticky;
	top: 24px;
}

.product-gallery__stage {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e8e4dc;
	border: 1px solid #d8d8d2;
	box-shadow: 0 24px 60px rgba(30, 32, 30, .1);
}

.product-gallery__stage img,
.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.product-gallery__thumb {
	aspect-ratio: 4 / 3;
	padding: 0;
	overflow: hidden;
	cursor: pointer;
	background: #ebe7df;
	border: 1px solid #d8d8d2;
	opacity: .72;
	transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
	opacity: 1;
	border-color: var(--ref-green);
	transform: translateY(-2px);
}

.product-buybox {
	display: grid;
	align-content: start;
	gap: 18px;
	padding-top: 26px;
}

.product-breadcrumb {
	margin-bottom: 0;
	font-size: 11px;
	letter-spacing: .28em;
}

.product-breadcrumb a:hover {
	color: var(--ref-text);
}

.product-buybox h1 {
	max-width: 680px;
	margin: 0;
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 58px;
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: 0;
}

.product-price-panel {
	display: inline-grid;
	grid-template-columns: 1fr;
	gap: 7px;
	width: min(100%, 370px);
	max-width: 100%;
	padding: 17px 18px 15px;
	background: rgba(255, 255, 255, .76);
	border: 1px solid #d8d8d2;
}

.product-price-panel span,
.product-price-panel small {
	color: #626960;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.35;
}

.product-price-panel strong {
	color: #25321f;
	font-size: 36px;
	font-weight: 680;
	line-height: 1;
	white-space: nowrap;
}

.product-price-panel small {
	grid-column: 1 / -1;
	font-weight: 500;
}

.product-lead {
	max-width: 610px;
	margin: 0;
	color: #3d4340;
	font-size: 17px;
	line-height: 1.68;
}

.product-cta-row,
.product-final-cta__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.product-cta-row {
	padding-top: 4px;
}

.product-cta-row .ref-button,
.product-final-cta__actions .ref-button {
	min-width: 170px;
}

.product-cta-note {
	max-width: 560px;
	margin: 0;
	color: #5d645c;
	font-size: 13px;
	line-height: 1.6;
}

.product-assurance {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	max-width: 620px;
	padding-top: 6px;
}

.product-assurance span {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 10px 12px;
	color: #35422e;
	background: #f3f1ea;
	border: 1px solid #dfded8;
	font-size: 13px;
	font-weight: 650;
}

.product-assurance i {
	color: var(--ref-green);
	font-size: 18px;
}

.product-decision {
	padding: 64px 0 58px;
	background: #fff;
}

.product-section-head {
	max-width: 820px;
	margin-bottom: 26px;
}

.product-section-head--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	max-width: none;
}

.product-section-head .ref-kicker {
	margin-bottom: 12px;
}

.product-section-head h2,
.product-measure-band h2,
.product-final-cta h2 {
	margin: 0;
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 42px;
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0;
}

.product-decision__grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 18px;
}

.product-fit-card,
.product-story-card {
	display: grid;
	align-content: start;
	gap: 16px;
	padding: 28px;
	background: #f7f6f1;
	border: 1px solid #deded8;
}

.product-fit-card h3,
.product-story-card h3 {
	margin: 0;
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.12;
}

.product-fit-card ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-fit-card__content {
	display: grid;
	gap: 12px;
	color: #424944;
	font-size: 15px;
	line-height: 1.65;
}

.product-fit-card__content p {
	margin: 0;
}

.product-fit-card li {
	position: relative;
	padding-left: 20px;
	color: #424944;
	font-size: 15px;
	line-height: 1.65;
}

.product-fit-card li::before {
	content: "";
	position: absolute;
	top: .7em;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--ref-green);
}

.product-story-card p {
	margin: 0;
	color: #424944;
	font-size: 15px;
	line-height: 1.75;
}

.product-spec-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.product-spec {
	display: grid;
	gap: 9px;
	min-height: 124px;
	padding: 18px;
	background: #fff;
	border: 1px solid #deded8;
}

.product-spec span {
	color: var(--ref-green);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.product-spec strong {
	color: var(--ref-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.14;
}

.product-measure-band {
	padding: 54px 0;
	background: #f3f1ea;
	border-block: 1px solid #deded8;
}

.product-measure-band__grid {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	align-items: start;
	gap: 44px;
}

.product-measure-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.product-measure-steps div {
	display: grid;
	gap: 18px;
	min-height: 172px;
	padding: 22px;
	background: #fff;
	border: 1px solid #deded8;
}

.product-measure-steps span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: #fff;
	background: var(--ref-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
}

.product-measure-steps p {
	margin: 0;
	color: #424944;
	font-size: 14px;
	line-height: 1.62;
}

.product-related {
	padding: 60px 0 68px;
	background: #fff;
}

.product-related .ref-product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-related .product-card h3 {
	min-height: auto;
}

.product-final-cta {
	padding: 54px 0;
	color: #fff;
	background: var(--ref-green-dark);
}

.product-final-cta .ref-kicker,
.product-final-cta h2 {
	color: #fff;
}

.product-final-cta__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
}

.product-final-cta__actions .ref-button--outline {
	color: #fff;
	border-color: rgba(255, 255, 255, .76);
}

.product-sticky-cta {
	display: none;
}

@media (max-width: 1180px) {
	.product-experience__grid,
	.product-decision__grid,
	.product-measure-band__grid,
	.product-final-cta__grid {
		grid-template-columns: 1fr;
	}

	.product-gallery {
		position: static;
	}

	.product-buybox {
		padding-top: 0;
	}

	.product-related .ref-product-grid,
	.product-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body.single-product {
		padding-bottom: 74px;
	}

	.product-experience {
		padding: 28px 0 38px;
		background: #f7f6f1;
	}

	.product-experience__grid {
		gap: 30px;
	}

	.product-gallery__stage {
		aspect-ratio: 4 / 3;
		box-shadow: 0 18px 42px rgba(30, 32, 30, .1);
	}

	.product-gallery__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-buybox h1 {
		font-size: 43px;
		line-height: 1.03;
	}

	.product-price-panel {
		width: 100%;
	}

	.product-price-panel strong {
		font-size: 30px;
	}

	.product-lead {
		font-size: 16px;
	}

	.product-cta-row,
	.product-final-cta__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.product-cta-row .ref-button,
	.product-final-cta__actions .ref-button {
		width: 100%;
	}

	.product-assurance,
	.product-spec-grid,
	.product-measure-steps,
	.product-related .ref-product-grid {
		grid-template-columns: 1fr;
	}

	.product-decision,
	.product-related {
		padding: 42px 0;
	}

	.product-section-head h2,
	.product-measure-band h2,
	.product-final-cta h2 {
		font-size: 31px;
	}

	.product-section-head--split {
		align-items: stretch;
		flex-direction: column;
	}

	.product-fit-card,
	.product-story-card {
		padding: 22px;
	}

	.product-measure-band,
	.product-final-cta {
		padding: 42px 0;
	}

	.product-sticky-cta {
		position: fixed;
		right: 12px;
		bottom: 12px;
		left: 12px;
		z-index: 160;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
		gap: 8px;
		padding: 8px;
		background: rgba(255, 255, 255, .94);
		border: 1px solid rgba(30, 32, 30, .12);
		box-shadow: 0 22px 60px rgba(30, 32, 30, .18);
		backdrop-filter: blur(18px);
		transform: translateY(130%);
		transition: transform .22s ease;
	}

	.product-sticky-cta.is-visible {
		transform: translateY(0);
	}

	.product-sticky-cta a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 7px;
		min-height: 44px;
		padding: 9px 10px;
		color: var(--ref-text);
		background: #f3f1ea;
		border: 1px solid #deded8;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
	}

	.product-sticky-cta__primary {
		color: #fff !important;
		background: var(--ref-green) !important;
		border-color: var(--ref-green) !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-gallery__thumb,
	.product-sticky-cta {
		transition: none;
	}

	.product-gallery__thumb:hover {
		transform: none;
	}
}

/* BEGIN CAGLAM LOCATION SEO */
.location-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 22px;
	padding-bottom: 22px;
	font-size: 13px;
	color: rgba(37, 39, 35, 0.62);
}

.location-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.location-breadcrumbs a:hover {
	color: var(--olive);
}

.location-breadcrumbs strong {
	color: var(--ink);
	font-weight: 500;
}

.location-hero .ref-catalog-hero__copy {
	max-width: 760px;
}

.location-index,
.home-locations,
.location-story,
.location-category-section,
.location-steps,
.location-faq,
.location-nearby {
	background: var(--paper);
}

.location-side-grid {
	display: grid;
	gap: 28px;
}

.location-side {
	border-top: 1px solid rgba(37, 39, 35, 0.14);
	padding-top: 22px;
}

.location-side__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.location-side__head strong {
	font-size: 13px;
	font-weight: 500;
	color: rgba(37, 39, 35, 0.62);
}

.location-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.location-card {
	position: relative;
	display: grid;
	gap: 6px;
	min-height: 116px;
	padding: 18px 44px 18px 18px;
	border: 1px solid rgba(37, 39, 35, 0.13);
	background: rgba(255, 255, 255, 0.78);
	color: var(--ink);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.location-card:hover {
	transform: translateY(-3px);
	border-color: rgba(77, 93, 55, 0.38);
	background: #fff;
}

.location-card span {
	font-family: var(--serif);
	font-size: clamp(21px, 2vw, 29px);
	line-height: 1.05;
}

.location-card small {
	max-width: 210px;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(37, 39, 35, 0.58);
}

.location-card i {
	position: absolute;
	right: 16px;
	bottom: 16px;
	font-size: 18px;
	color: var(--olive);
}

.location-category-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.location-category-mini {
	display: grid;
	gap: 12px;
	color: var(--ink);
	text-decoration: none;
}

.location-category-mini img {
	width: 100%;
	aspect-ratio: 1.28;
	object-fit: cover;
	border-radius: 2px;
}

.location-category-mini span {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(37, 39, 35, 0.12);
	font-size: 14px;
}

.location-catalog-band,
.location-final-cta {
	background: #f7f5ef;
}

.location-final-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-top: 56px;
	padding-bottom: 56px;
}

.location-final-cta h2 {
	max-width: 720px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(30px, 4vw, 54px);
	font-weight: 400;
	line-height: 1.04;
}

.location-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	gap: 54px;
	align-items: start;
}

.location-story__copy {
	font-size: 17px;
	line-height: 1.78;
	color: rgba(37, 39, 35, 0.76);
}

.location-story__copy p {
	margin: 0 0 18px;
}

.location-story__copy strong {
	color: var(--ink);
	font-weight: 600;
}

.location-story__panel {
	position: sticky;
	top: 104px;
	display: grid;
	gap: 16px;
	padding: 24px;
	border: 1px solid rgba(37, 39, 35, 0.14);
	background: #fff;
}

.location-story__panel strong {
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 400;
	line-height: 1.08;
}

.location-story__panel p {
	margin: 0;
	color: rgba(37, 39, 35, 0.64);
	line-height: 1.6;
}

.location-category-blocks {
	display: grid;
	gap: 18px;
}

.location-category-block {
	display: grid;
	grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
	gap: 26px;
	padding: 18px;
	border: 1px solid rgba(37, 39, 35, 0.12);
	background: #fff;
}

.location-category-block__media img {
	width: 100%;
	height: 100%;
	min-height: 230px;
	aspect-ratio: 1.12;
	object-fit: cover;
	border-radius: 2px;
}

.location-category-block__body {
	display: grid;
	gap: 18px;
	align-content: center;
}

.location-category-block h3 {
	max-width: 760px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 400;
	line-height: 1.04;
}

.location-category-links,
.location-product-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.location-category-links a,
.location-product-links a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 38px;
	padding: 9px 12px;
	border: 1px solid rgba(37, 39, 35, 0.13);
	color: var(--ink);
	text-decoration: none;
	font-size: 13px;
	transition: border-color 180ms ease, color 180ms ease;
}

.location-category-links a:hover,
.location-product-links a:hover {
	border-color: rgba(77, 93, 55, 0.44);
	color: var(--olive);
}

.location-product-links {
	padding-top: 2px;
}

.location-product-links a {
	background: #f8f7f2;
}

.location-product-links small {
	color: rgba(37, 39, 35, 0.52);
}

.location-step-grid,
.location-faq__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.location-step,
.location-faq__item {
	padding: 24px;
	border: 1px solid rgba(37, 39, 35, 0.12);
	background: #fff;
}

.location-step span {
	display: block;
	margin-bottom: 36px;
	font-family: var(--serif);
	font-size: 42px;
	color: rgba(77, 93, 55, 0.34);
}

.location-step strong,
.location-faq__item h3 {
	display: block;
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 500;
}

.location-step p,
.location-faq__item p {
	margin: 0;
	color: rgba(37, 39, 35, 0.64);
	line-height: 1.62;
}

@media (max-width: 1024px) {
	.location-card-grid,
	.location-category-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.location-story__grid,
	.location-category-block {
		grid-template-columns: 1fr;
	}

	.location-story__panel {
		position: static;
	}

	.location-step-grid,
	.location-faq__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.location-breadcrumbs {
		overflow-x: auto;
		white-space: nowrap;
	}

	.location-card-grid,
	.location-category-strip {
		grid-template-columns: 1fr;
	}

	.location-final-cta__inner {
		display: grid;
		padding-top: 42px;
		padding-bottom: 42px;
	}

	.location-category-block {
		padding: 12px;
	}

	.location-category-block__media img {
		min-height: 190px;
	}

	.location-category-links,
	.location-product-links {
		display: grid;
	}
}
/* END CAGLAM LOCATION SEO */
