body.home .site-content,
body.home .site-content > .ast-container {
	background: var(--ck-bg);
}

body.home .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
}

.ck-home {
	width: 100%;
	min-width: 0;
}

.ck-hero {
	position: relative;
	min-height: 620px;
	overflow: hidden;
	background: #111516;
	color: #ffffff;
}

.ck-hero__inner {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	min-height: 620px;
}

.ck-hero__content {
	width: min(58%, 680px);
	padding-block: 78px;
}

.ck-hero .ck-eyebrow {
	color: #e1c885;
}

.ck-hero h1 {
	max-width: 680px;
	margin: 0;
	color: #ffffff;
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.02;
}

.ck-hero h1 > span {
	display: block;
}

.ck-hero__lead {
	max-width: 610px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.13rem;
	line-height: 1.7;
}

.ck-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.ck-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	margin: 30px 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.82rem;
	font-weight: 700;
	list-style: none;
}

.ck-hero__proof li {
	position: relative;
	padding-left: 15px;
}

.ck-hero__proof li::before {
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ck-gold);
}

.ck-hero__visual {
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
}

.ck-hero-card {
	position: absolute;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: #2b3030;
	box-shadow: var(--ck-shadow-lg);
}

.ck-hero-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(12, 15, 15, 0.12);
}

.ck-hero-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ck-hero-card--1 {
	top: 66px;
	right: 6%;
	z-index: 3;
	width: 400px;
	height: 470px;
	transform: rotate(4deg);
}

.ck-hero-card--2 {
	top: 160px;
	right: 29%;
	z-index: 2;
	width: 310px;
	height: 370px;
	opacity: 0.72;
	transform: rotate(-7deg);
}

.ck-hero-card--3 {
	top: 235px;
	right: -3%;
	z-index: 1;
	width: 285px;
	height: 330px;
	opacity: 0.58;
	transform: rotate(9deg);
}

.ck-section {
	padding-block: 94px;
}

.ck-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 38px;
}

.ck-section-heading > p {
	max-width: 500px;
	margin: 0;
	color: var(--ck-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.ck-section-heading h2,
.ck-story h2,
.ck-contact h2 {
	margin: 0;
	color: var(--ck-ink);
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1.12;
}

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

.ck-category-card {
	position: relative;
	display: block;
	min-width: 0;
	height: 360px;
	overflow: hidden;
	border-radius: var(--ck-radius);
	background: #2e3433;
	box-shadow: var(--ck-shadow-sm);
	color: #ffffff !important;
	text-decoration: none;
}

.ck-category-card__media,
.ck-category-card__media img,
.ck-category-card__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.ck-category-card__media img {
	object-fit: cover;
	transition: transform 360ms ease;
}

.ck-category-card__overlay {
	background: rgba(12, 15, 15, 0.42);
	transition: background-color 180ms ease;
}

.ck-category-card__content {
	position: absolute;
	z-index: 2;
	right: 22px;
	bottom: 22px;
	left: 22px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.ck-category-card__name {
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.15;
}

.ck-category-card__meta {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.84rem;
	font-weight: 650;
}

.ck-category-card__arrow {
	position: absolute;
	z-index: 3;
	top: 18px;
	right: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.18);
}

.ck-category-card__arrow svg {
	margin: 0;
}

.ck-category-card:hover {
	box-shadow: var(--ck-shadow-lg);
	transform: translateY(-4px);
}

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

.ck-category-card:hover .ck-category-card__overlay {
	background: rgba(12, 15, 15, 0.28);
}

.ck-quick-categories {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-top: 18px;
	border: 1px solid var(--ck-line);
	border-radius: var(--ck-radius);
	background: #ffffff;
}

.ck-quick-categories a {
	display: flex;
	min-width: 0;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 16px;
	border-right: 1px solid var(--ck-line);
	color: var(--ck-ink-soft);
	font-size: 0.77rem;
	font-weight: 750;
	line-height: 1.35;
	text-decoration: none;
}

.ck-quick-categories a:last-child {
	border-right: 0;
}

.ck-quick-categories a:hover {
	background: #edf0ec;
	color: var(--ck-forest);
}

.ck-quick-categories span {
	overflow: hidden;
	text-overflow: ellipsis;
}

.ck-quick-categories small {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 50%;
	background: #ecefeb;
	color: var(--ck-muted);
	font-size: 0.68rem;
	font-weight: 800;
}

.ck-featured {
	background: var(--ck-surface);
}

.ck-product-section--white {
	background: #ffffff;
}

.ck-product-section--soft {
	background: #eceeea;
}

.ck-product-section--soft .ck-product-card {
	background: #ffffff;
}

.ck-section-heading--with-link {
	align-items: center;
}

.ck-section-heading__description {
	max-width: 650px;
	margin: 14px 0 0;
	color: var(--ck-muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

.ck-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.ck-product-card {
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--ck-line);
	border-radius: var(--ck-radius);
	background: var(--ck-surface);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ck-product-card:hover {
	border-color: rgba(197, 163, 91, 0.8);
	box-shadow: var(--ck-shadow-sm);
	transform: translateY(-3px);
}

.ck-product-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #eef0ed;
}

.ck-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

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

.ck-product-card__badge {
	position: absolute;
	z-index: 2;
	top: 12px;
	left: 12px;
	padding: 6px 9px;
	border-radius: 4px;
	background: var(--ck-oxblood);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.ck-product-card__badge--muted {
	background: #4e555b;
}

.ck-product-card__body {
	display: flex;
	min-height: 215px;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.ck-product-card__category {
	display: block;
	overflow: hidden;
	color: var(--ck-muted) !important;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ck-product-card__title {
	display: -webkit-box;
	min-height: 2.9em;
	margin: 10px 0 14px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--ck-ink);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.45;
}

.ck-product-card__title a {
	text-decoration: none;
}

.ck-product-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

.ck-product-card__price {
	color: var(--ck-oxblood);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
}

.ck-product-card__price del {
	display: block;
	color: var(--ck-muted);
	font-size: 0.75rem;
	font-weight: 600;
	opacity: 0.75;
}

.ck-product-card__price ins {
	text-decoration: none;
}

body.ck-storefront .ck-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	min-width: 104px;
	margin: 0;
	padding: 0 14px;
	border: 0;
	border-radius: 5px;
	background: var(--ck-forest);
	color: #ffffff;
	font-size: 0.79rem;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
}

body.ck-storefront .ck-product-card__button:hover {
	background: var(--ck-forest-dark);
	color: #ffffff;
}

.ck-empty-state {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 120px;
	padding: 28px;
	border: 1px dashed #bcc3bc;
	border-radius: var(--ck-radius);
	background: rgba(255, 255, 255, 0.72);
}

.ck-empty-state p {
	margin: 0;
	color: var(--ck-muted);
}

.ck-bulk-pricing {
	background: #141819;
	color: #ffffff;
}

.ck-bulk-pricing__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: center;
	margin-bottom: 38px;
}

.ck-bulk-pricing .ck-eyebrow {
	color: #e1c885;
}

.ck-bulk-pricing h2 {
	margin: 0;
	color: #ffffff;
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1.12;
}

.ck-bulk-pricing__copy > p:not(.ck-eyebrow) {
	max-width: 760px;
	margin: 17px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.96rem;
}

.ck-bulk-pricing .ck-text-link {
	margin-top: 20px;
	color: #e1c885 !important;
}

.ck-bulk-pricing__metric {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 170px;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
}

.ck-bulk-pricing__metric strong {
	color: var(--ck-gold);
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
}

.ck-bulk-pricing__metric span {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.75rem;
	font-weight: 700;
}

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

.ck-taxonomy-shop {
	background: #ffffff;
}

.ck-taxonomy-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.ck-taxonomy-panel {
	min-width: 0;
	padding: 30px;
	border: 1px solid var(--ck-line);
	border-radius: var(--ck-radius);
	background: #ffffff;
	box-shadow: 0 6px 20px rgba(21, 23, 26, 0.04);
}

.ck-taxonomy-panel__heading {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--ck-line);
}

.ck-taxonomy-panel__heading > svg {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	fill: none;
	stroke: var(--ck-gold-dark);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.ck-taxonomy-panel__heading p {
	margin: 0 0 3px;
	color: var(--ck-muted);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.ck-taxonomy-panel__heading h3 {
	margin: 0;
	color: var(--ck-ink);
	font-size: 1.15rem;
	font-weight: 800;
}

.ck-taxonomy-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 26px;
}

.ck-taxonomy-links a {
	display: flex;
	min-width: 0;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-bottom: 1px solid var(--ck-line);
	color: var(--ck-ink-soft);
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
}

.ck-taxonomy-links a:hover {
	color: var(--ck-forest);
}

.ck-taxonomy-links small {
	color: var(--ck-muted);
	font-size: 0.68rem;
	font-weight: 650;
	white-space: nowrap;
}

.ck-home-showcase {
	background: var(--ck-ink);
	color: #ffffff;
}

.ck-home-showcase .ck-section-heading h2 {
	color: #ffffff;
}

.ck-home-showcase .ck-section-heading > p {
	color: rgba(255, 255, 255, 0.72);
}

.ck-home-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ck-home-showcase__card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--ck-radius);
	background: #202426;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ck-home-showcase__card:hover {
	border-color: rgba(197, 163, 91, 0.78);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
	transform: translateY(-3px);
}

.ck-home-showcase__media {
	display: block;
	width: 100%;
	margin: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #101315;
}

.ck-home-showcase__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.ck-home-showcase__card:hover .ck-home-showcase__media img {
	transform: scale(1.025);
}

.ck-home-showcase__card h3 {
	margin: 0;
	padding: 20px 22px 22px;
	color: #ffffff;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.ck-process {
	background: #eceeea;
}

.ck-process__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: 76px;
	align-items: center;
}

.ck-process__copy h2,
.ck-faq__intro h2,
.ck-trust__heading h2 {
	margin: 0;
	color: var(--ck-ink);
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.12;
}

.ck-process__copy > p:not(.ck-eyebrow),
.ck-faq__intro > p:not(.ck-eyebrow) {
	margin: 18px 0 0;
	color: var(--ck-muted);
	font-size: 0.95rem;
}

.ck-process__copy .ck-text-link,
.ck-faq__intro .ck-text-link {
	margin-top: 22px;
}

.ck-process__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid #cbd0ca;
	border-left: 1px solid #cbd0ca;
}

.ck-process__specs > div {
	min-width: 0;
	min-height: 190px;
	padding: 24px;
	border-right: 1px solid #cbd0ca;
	border-bottom: 1px solid #cbd0ca;
}

.ck-process__specs span {
	color: var(--ck-gold-dark);
	font-size: 0.72rem;
	font-weight: 800;
}

.ck-process__specs h3 {
	margin: 32px 0 7px;
	color: var(--ck-ink);
	font-size: 0.95rem;
	font-weight: 800;
}

.ck-process__specs p {
	margin: 0;
	color: var(--ck-muted);
	font-size: 0.78rem;
	line-height: 1.55;
}

.ck-trust {
	background: var(--ck-forest);
	color: #ffffff;
}

.ck-trust__heading {
	max-width: 720px;
	padding-top: 68px;
}

.ck-trust__heading .ck-eyebrow {
	color: #e1c885;
}

.ck-trust__heading h2 {
	color: #ffffff;
}

.ck-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ck-trust__item {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	gap: 16px;
	padding: 34px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ck-trust__item:last-child {
	border-right: 0;
}

.ck-trust__item > svg {
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	fill: none;
	stroke: #e1c885;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.ck-trust__item h3 {
	margin: 0;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.25;
}

.ck-trust__item p {
	margin: 7px 0 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.8rem;
	line-height: 1.5;
}

.ck-faq {
	background: #ffffff;
}

.ck-faq__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	gap: 76px;
	align-items: start;
}

.ck-faq__intro {
	position: sticky;
	top: 30px;
}

.ck-faq__items {
	border-top: 1px solid var(--ck-line);
}

.ck-faq__items details {
	border-bottom: 1px solid var(--ck-line);
}

.ck-faq__items summary {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 2px;
	color: var(--ck-ink);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
}

.ck-faq__items summary::-webkit-details-marker {
	display: none;
}

.ck-faq__items summary span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border: 1px solid var(--ck-line);
	border-radius: 50%;
	color: var(--ck-forest);
	font-size: 1.15rem;
	font-weight: 500;
	transition: transform 160ms ease;
}

.ck-faq__items details[open] summary span {
	transform: rotate(45deg);
}

.ck-faq__items details > div {
	padding: 0 46px 22px 2px;
}

.ck-faq__items details p {
	margin: 0;
	color: var(--ck-muted);
	font-size: 0.9rem;
}

.ck-faq__items details a {
	color: var(--ck-forest);
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ck-story {
	background: #eceeea;
}

.ck-story__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 100px;
	align-items: center;
}

.ck-story__content > p:not(.ck-eyebrow) {
	max-width: 570px;
	margin: 24px 0;
	color: var(--ck-muted);
	font-size: 1.03rem;
	line-height: 1.75;
}

.ck-story__details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid #cfd3ce;
	border-bottom: 1px solid #cfd3ce;
}

.ck-story__details > div {
	padding: 30px 24px;
	border-right: 1px solid #cfd3ce;
}

.ck-story__details > div:last-child {
	border-right: 0;
}

.ck-story__details span {
	color: var(--ck-gold-dark);
	font-size: 0.75rem;
	font-weight: 800;
}

.ck-story__details h3 {
	margin: 34px 0 10px;
	color: var(--ck-ink);
	font-size: 1.05rem;
	font-weight: 800;
}

.ck-story__details p {
	margin: 0;
	color: var(--ck-muted);
	font-size: 0.83rem;
	line-height: 1.6;
}

.ck-contact {
	padding-block: 68px;
	background: var(--ck-ink);
	color: #ffffff;
}

.ck-contact__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.ck-contact .ck-eyebrow {
	color: #e1c885;
}

.ck-contact h2 {
	color: #ffffff;
}

.ck-contact p:not(.ck-eyebrow) {
	max-width: 670px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.65;
}
