:root {
	--ks-black: #0b0b0a;
	--ks-charcoal: #151412;
	--ks-charcoal-2: #1e1b18;
	--ks-gold: #c5a059;
	--ks-gold-soft: #e8d7a7;
	--ks-cream: #f5f0e5;
	--ks-muted: #b2aaa0;
	--ks-maroon: #5b1f25;
	--ks-border: rgba(197, 160, 89, 0.28);
	--ks-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

body {
	background: var(--ks-black);
	color: var(--ks-cream);
	font-family: Geist, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ks-site-main {
	background:
		radial-gradient(circle at 20% 5%, rgba(197, 160, 89, 0.16), transparent 30rem),
		linear-gradient(180deg, #0a0a09 0%, #151310 44%, #0b0b0a 100%);
	overflow: hidden;
}

.ks-header-mark {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	left: 50%;
	max-width: 1180px;
	padding: 1.15rem 1.5rem;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: min(100%, 1180px);
	z-index: 3;
}

.ks-brand {
	color: var(--ks-cream);
	display: inline-flex;
	flex-direction: column;
	font-family: Cinzel, Georgia, serif;
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 0.95;
	text-decoration: none;
	text-transform: uppercase;
}

.ks-brand small {
	color: var(--ks-gold);
	font-family: Geist, sans-serif;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	margin-top: 0.28rem;
}

.ks-nav {
	align-items: center;
	display: flex;
	gap: clamp(1rem, 2vw, 2rem);
}

.ks-nav a,
.ks-link {
	color: var(--ks-gold-soft);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.ks-hero {
	align-items: center;
	display: flex;
	min-height: 760px;
	padding: 8rem 1.5rem 5rem;
	position: relative;
}

.ks-hero::before {
	background:
		linear-gradient(90deg, rgba(11, 11, 10, 0.95), rgba(11, 11, 10, 0.72), rgba(11, 11, 10, 0.24)),
		url("https://images.unsplash.com/photo-1610030469983-98e550d6193c?auto=format&fit=crop&w=1800&q=80");
	background-position: center;
	background-size: cover;
	content: "";
	inset: 0;
	opacity: 0.92;
	position: absolute;
}

.ks-hero__inner {
	margin: 0 auto;
	max-width: 1180px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.ks-eyebrow {
	color: var(--ks-gold);
	font-size: 0.78rem;
	font-weight: 800;
	margin: 0 0 0.9rem;
	text-transform: uppercase;
}

.ks-hero h1,
.ks-section h2,
.ks-newsletter h2 {
	color: var(--ks-cream);
	font-family: Cinzel, Georgia, serif;
	font-size: clamp(2.4rem, 6vw, 5.8rem);
	font-weight: 600;
	line-height: 1.02;
	margin: 0;
	max-width: 780px;
}

.ks-hero p:not(.ks-eyebrow) {
	color: var(--ks-muted);
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	line-height: 1.8;
	margin: 1.4rem 0 0;
	max-width: 610px;
}

.ks-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 2rem;
}

.ks-button {
	align-items: center;
	border: 1px solid var(--ks-gold);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 0 1.35rem;
	text-decoration: none;
	text-transform: uppercase;
}

.ks-button--solid {
	background: var(--ks-gold);
	color: #17120b;
}

.ks-button--ghost {
	background: rgba(0, 0, 0, 0.24);
	color: var(--ks-gold-soft);
}

.ks-section {
	padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.ks-section > * {
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
}

.ks-section--dark {
	background: var(--ks-charcoal);
}

.ks-section--gold {
	background: linear-gradient(135deg, #2a2115, #15110d 55%, #5b1f25);
}

.ks-section__head {
	margin-bottom: 2.2rem;
}

.ks-section h2,
.ks-newsletter h2 {
	font-size: clamp(2rem, 4vw, 3.8rem);
}

.ks-product-grid,
.ks-category-grid,
.ks-testimonial-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ks-product-card,
.ks-category-card,
.ks-testimonial-grid blockquote {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
	border: 1px solid var(--ks-border);
	box-shadow: var(--ks-shadow);
	color: var(--ks-cream);
	padding: 1rem;
	text-decoration: none;
}

.ks-product-card__image {
	aspect-ratio: 4 / 5;
	background: #24201b;
	margin-bottom: 1rem;
	overflow: hidden;
}

.ks-product-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ks-product-card__image--fallback {
	background:
		linear-gradient(135deg, rgba(197, 160, 89, 0.12), transparent),
		url("https://images.unsplash.com/photo-1617038220319-276d3cfab638?auto=format&fit=crop&w=900&q=80");
	background-position: center;
	background-size: cover;
}

.ks-product-card:nth-child(2) .ks-product-card__image--fallback {
	background-image: linear-gradient(135deg, rgba(197, 160, 89, 0.12), transparent), url("https://images.unsplash.com/photo-1601121141461-9d6647bca1ed?auto=format&fit=crop&w=900&q=80");
}

.ks-product-card:nth-child(3) .ks-product-card__image--fallback {
	background-image: linear-gradient(135deg, rgba(197, 160, 89, 0.12), transparent), url("https://images.unsplash.com/photo-1618354691373-d851c5c3a990?auto=format&fit=crop&w=900&q=80");
}

.ks-product-card:nth-child(4) .ks-product-card__image--fallback {
	background-image: linear-gradient(135deg, rgba(197, 160, 89, 0.12), transparent), url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=900&q=80");
}

.ks-product-card__tag {
	color: var(--ks-gold);
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	margin-bottom: 0.45rem;
	text-transform: uppercase;
}

.ks-product-card h3,
.ks-category-card span,
.ks-timeline h3 {
	font-family: Cinzel, Georgia, serif;
	font-size: 1.08rem;
	margin: 0 0 0.7rem;
}

.ks-price {
	align-items: center;
	color: var(--ks-cream);
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 0.9rem;
}

.ks-price del {
	color: var(--ks-muted);
	font-size: 0.88rem;
}

.ks-category-card {
	align-items: flex-start;
	aspect-ratio: 1 / 1.08;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 220px;
	position: relative;
}

.ks-category-card::before {
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
	content: "";
	inset: 0;
	position: absolute;
}

.ks-category-card span,
.ks-category-card small {
	position: relative;
	z-index: 1;
}

.ks-category-card small {
	color: var(--ks-gold-soft);
	font-weight: 700;
}

.ks-story {
	align-items: center;
	background: #0f0e0d;
	display: grid;
	gap: clamp(2rem, 5vw, 5rem);
	grid-template-columns: 0.95fr 1.05fr;
}

.ks-story__media {
	aspect-ratio: 4 / 5;
	background:
		linear-gradient(180deg, rgba(11, 11, 10, 0.1), rgba(11, 11, 10, 0.45)),
		url("https://images.unsplash.com/photo-1594736797933-d0501ba2fe65?auto=format&fit=crop&w=1100&q=80");
	background-position: center;
	background-size: cover;
	border: 1px solid var(--ks-border);
}

.ks-story__copy p:not(.ks-eyebrow),
.ks-timeline p,
.ks-testimonial-grid p {
	color: var(--ks-muted);
	line-height: 1.75;
}

.ks-timeline {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ks-timeline__item {
	border-left: 1px solid var(--ks-border);
	padding: 0 1.2rem 0.5rem;
}

.ks-timeline__item span {
	background: var(--ks-gold);
	display: block;
	height: 12px;
	margin-bottom: 1.2rem;
	width: 12px;
}

.ks-testimonials {
	background: #100f0d;
}

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

.ks-testimonial-grid blockquote {
	margin: 0;
	padding: 1.35rem;
}

.ks-testimonial-grid cite {
	color: var(--ks-gold-soft);
	font-style: normal;
	font-weight: 800;
}

.ks-newsletter {
	align-items: center;
	background: var(--ks-cream);
	color: #1b1712;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr minmax(280px, 420px);
	padding: clamp(3rem, 7vw, 5rem) max(1.5rem, calc((100vw - 1180px) / 2));
}

.ks-newsletter h2 {
	color: #1b1712;
}

.ks-newsletter__form {
	background: #fffaf0;
	border: 1px solid rgba(27, 23, 18, 0.12);
	display: flex;
	gap: 0.65rem;
	padding: 0.7rem;
}

.ks-newsletter__form input {
	background: transparent;
	border: 0;
	color: #1b1712;
	flex: 1;
	font: inherit;
	min-height: 48px;
	min-width: 0;
	padding: 0 0.75rem;
}

.ks-concierge {
	align-items: center;
	background: var(--ks-gold);
	border: 0;
	bottom: 1.25rem;
	box-shadow: var(--ks-shadow);
	color: #17120b;
	display: inline-flex;
	font-weight: 900;
	gap: 0.75rem;
	min-height: 56px;
	padding: 0 1rem;
	position: fixed;
	right: 1.25rem;
	z-index: 20;
}

.ks-footer {
	background: #090908;
	border-top: 1px solid var(--ks-border);
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(260px, 1.4fr) 1fr 1fr;
	padding: clamp(3rem, 7vw, 5rem) max(1.5rem, calc((100vw - 1180px) / 2));
}

.ks-footer p {
	color: var(--ks-muted);
	line-height: 1.7;
	max-width: 420px;
}

.ks-footer nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ks-footer h2 {
	color: var(--ks-gold);
	font-size: 0.82rem;
	font-weight: 900;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.ks-footer a {
	color: var(--ks-cream);
	text-decoration: none;
}

.ks-concierge__monogram {
	align-items: center;
	background: #17120b;
	color: var(--ks-gold-soft);
	display: inline-flex;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.ks-concierge-panel {
	background: #151310;
	border: 1px solid var(--ks-border);
	bottom: 5.5rem;
	box-shadow: var(--ks-shadow);
	color: var(--ks-cream);
	max-width: calc(100vw - 2rem);
	padding: 1rem;
	position: fixed;
	right: 1.25rem;
	width: 340px;
	z-index: 20;
}

.ks-concierge-panel__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.ks-concierge-panel__head button {
	background: transparent;
	border: 0;
	color: var(--ks-gold-soft);
	font-size: 1.4rem;
}

@media (max-width: 900px) {
	.ks-product-grid,
	.ks-category-grid,
	.ks-timeline,
	.ks-testimonial-grid,
	.ks-story,
	.ks-newsletter,
	.ks-footer {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.ks-header-mark {
		align-items: flex-start;
		flex-direction: column;
	}

	.ks-nav {
		width: 100%;
	}

	.ks-hero {
		min-height: 720px;
	}

	.ks-product-grid,
	.ks-category-grid,
	.ks-timeline,
	.ks-testimonial-grid,
	.ks-story,
	.ks-newsletter,
	.ks-footer {
		grid-template-columns: 1fr;
	}

	.ks-newsletter__form {
		flex-direction: column;
	}

	.ks-concierge__text {
		display: none;
	}
}
