/* ------------------------------------------------------------------
   KK Static Pages — Shared styles for About, History, Store, etc.
   ------------------------------------------------------------------ */

.kk-page {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #333;
	line-height: 1.7;
}

/* ============ PAGE HERO ============ */

.kk-page-hero {
	position: relative;
	overflow: hidden;
	padding: 70px 0 50px;
}

.kk-page-hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #5a4630 0%, #3d2e1e 60%, #2a1f14 100%);
	z-index: 0;
}

.kk-page-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 80%, rgba(197,163,85,0.08) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(197,163,85,0.05) 0%, transparent 50%);
}

.kk-page-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.kk-page-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.kk-page-hero__desc {
	font-size: 16px;
	color: rgba(255,255,255,0.85);
	margin: 0;
	line-height: 1.65;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* Green variant (store, KLBD) */
.kk-page-hero--green .kk-page-hero__bg {
	background: linear-gradient(135deg, #89a343 0%, #6b8232 60%, #556a28 100%);
}

/* ============ BODY CONTENT ============ */

.kk-page-body {
	padding: 60px 0;
	background: #fff;
}

.kk-page-body--alt {
	background: #fafaf8;
}

.kk-page-body__inner {
	max-width: 820px;
	margin: 0 auto;
}

.kk-page-body__inner h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 26px;
	font-weight: 700;
	color: #5a4630;
	margin: 0 0 16px;
	line-height: 1.25;
}

.kk-page-body__inner h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 20px;
	font-weight: 700;
	color: #5a4630;
	margin: 40px 0 12px;
	line-height: 1.3;
}

.kk-page-body__inner p {
	font-size: 15px;
	color: #555;
	line-height: 1.75;
	margin: 0 0 18px;
}

.kk-page-body__inner a {
	color: #89a343;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.kk-page-body__inner a:hover {
	color: #6b8232;
}

.kk-page-body__inner ul,
.kk-page-body__inner ol {
	font-size: 15px;
	color: #555;
	line-height: 1.75;
	margin: 0 0 18px;
	padding-left: 24px;
}

.kk-page-body__inner li {
	margin-bottom: 6px;
}

.kk-page-body__inner strong {
	color: #333;
	font-weight: 600;
}

/* ============ HISTORY TIMELINE ============ */

.kk-timeline {
	position: relative;
	padding: 20px 0;
}

.kk-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #e8e4dc;
	transform: translateX(-50%);
}

.kk-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.kk-timeline__item:last-child {
	margin-bottom: 0;
}

.kk-timeline__dot {
	position: absolute;
	left: 50%;
	top: 24px;
	width: 16px;
	height: 16px;
	background: #C5A355;
	border: 3px solid #fff;
	border-radius: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 0 3px #C5A355;
	z-index: 1;
}

.kk-timeline__year {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 42px;
	font-weight: 700;
	color: #C5A355;
	line-height: 1;
	text-align: right;
	padding-top: 8px;
}

.kk-timeline__content h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 22px;
	font-weight: 700;
	color: #5a4630;
	margin: 0 0 12px;
	line-height: 1.25;
}

.kk-timeline__content p {
	font-size: 15px;
	color: #6b6b6b;
	line-height: 1.7;
	margin: 0;
}

/* ============ STORE DEPARTMENTS GRID ============ */

.kk-dept-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.kk-dept-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	padding: 32px 28px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kk-dept-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(90,70,48,0.08);
}

.kk-dept-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #C5A355, #b08d3e);
	color: #fff;
	border-radius: 12px;
	margin-bottom: 16px;
}

.kk-dept-card__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 20px;
	font-weight: 700;
	color: #5a4630;
	margin: 0 0 8px;
}

.kk-dept-card__desc {
	font-size: 14px;
	color: #6b6b6b;
	line-height: 1.65;
	margin: 0;
}

/* ============ STORE INFO BAR ============ */

.kk-store-info {
	padding: 40px 0;
	background: #5a4630;
	color: #fff;
}

.kk-store-info__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.kk-store-info__item h4 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 18px;
	font-weight: 700;
	color: #C5A355;
	margin: 0 0 8px;
}

.kk-store-info__item p {
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	line-height: 1.65;
	margin: 0;
}

.kk-store-info__item a {
	color: #C5A355;
	text-decoration: none;
}

.kk-store-info__item a:hover {
	text-decoration: underline;
}

/* ============ CONTACT GRID ============ */

.kk-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-top: 40px;
}

.kk-contact-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.kk-contact-card__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #faf7f0;
	color: #C5A355;
	border-radius: 12px;
}

.kk-contact-card__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 16px;
	font-weight: 700;
	color: #5a4630;
	margin: 0 0 4px;
}

.kk-contact-card__text {
	font-size: 14px;
	color: #6b6b6b;
	line-height: 1.6;
	margin: 0;
}

.kk-contact-card__text a {
	color: #89a343;
	text-decoration: none;
}

.kk-contact-card__text a:hover {
	text-decoration: underline;
}

/* ============ HOURS TABLE ============ */

.kk-hours {
	margin-top: 32px;
}

.kk-hours table {
	width: 100%;
	border-collapse: collapse;
}

.kk-hours th,
.kk-hours td {
	padding: 12px 16px;
	font-size: 14px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.kk-hours th {
	font-weight: 600;
	color: #5a4630;
	width: 50%;
}

.kk-hours td {
	color: #6b6b6b;
}

.kk-hours tr:last-child th,
.kk-hours tr:last-child td {
	border-bottom: none;
}

/* ============ LEGAL CONTENT (Terms, Privacy) ============ */

.kk-legal {
	counter-reset: legal-section;
}

.kk-legal h2 {
	counter-increment: legal-section;
	font-size: 20px !important;
	margin-top: 48px !important;
	padding-top: 32px;
	border-top: 1px solid #eee;
}

.kk-legal h2:first-child {
	margin-top: 0 !important;
	padding-top: 0;
	border-top: none;
}

/* ============ KLBD HIGHLIGHT BOX ============ */

.kk-highlight-box {
	background: #faf7f0;
	border-left: 4px solid #C5A355;
	border-radius: 0 12px 12px 0;
	padding: 24px 28px;
	margin: 28px 0;
}

.kk-highlight-box p {
	color: #5a4630 !important;
	font-size: 15px;
	margin: 0;
}

.kk-highlight-box p + p {
	margin-top: 12px;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
	.kk-timeline::before {
		left: 20px;
	}

	.kk-timeline__item {
		grid-template-columns: 1fr;
		padding-left: 52px;
		gap: 8px;
	}

	.kk-timeline__dot {
		left: 20px;
	}

	.kk-timeline__year {
		text-align: left;
		font-size: 32px;
	}

	.kk-contact-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.kk-store-info__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.kk-page-hero {
		padding: 50px 0 36px;
	}

	.kk-dept-grid {
		grid-template-columns: 1fr;
	}

	.kk-timeline__year {
		font-size: 28px;
	}

	.kk-timeline__content h3 {
		font-size: 18px;
	}

	.kk-timeline__item {
		margin-bottom: 40px;
	}
}
