/*
 * Khalles Corner — main stylesheet.
 * Ports sections/khalles-header, khalles-footer, khalles-cinematic-intro,
 * khalles-opplev, khalles-about-page, khalles-contact-page,
 * khalles-book-page, khalles-menu-hub, khalles-branch-page and
 * honefoss-menu-page (shared menu CSS) from the Shopify theme.
 */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
	--kc-bg: #000;
	--kc-card: #121212;
	--kc-border: #2a2a2a;
	--kc-accent: #d4af37;
	--kc-accent-light: #f0d67d;
	--kc-accent-text: #151515;
	--kc-text: #fff8ec;
	--kc-muted: rgba(255, 255, 255, 0.76);
	--kc-font-display: "Playfair Display", Georgia, serif;
	--kc-font-intro: "Cormorant Garamond", Georgia, serif;
	--kc-font-body: Inter, system-ui, sans-serif;

	--kc-header-h: 84px;
	--kc-topbar-h: 49px;
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	background-color: var(--kc-bg);
	color: var(--kc-text);
}

body {
	margin: 0;
	font-family: var(--kc-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

h1,
h2,
h3,
h4 {
	font-family: var(--kc-font-display);
	margin: 0;
}

button {
	font-family: inherit;
}

.kc-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.kc-skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 10000;
	padding: 12px 20px;
	background: var(--kc-accent);
	color: var(--kc-accent-text);
	font-weight: 700;
	text-decoration: none;
	border-radius: 0 0 10px 0;
}

.kc-skip-link:focus {
	left: 0;
}

.kc-main {
	padding-top: calc(var(--kc-header-h) + var(--kc-topbar-h));
}

body.kc-page-home .kc-main {
	padding-top: 0;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

/* ==========================================================================
   3. Header — ports sections/khalles-header.liquid
   ========================================================================== */

.kc-site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 500;
	width: 100%;
}

.kc-header-wrap {
	background: rgba(0, 0, 0, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kc-topbar {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 20px;
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kc-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--kc-header-h);
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 24px;
	gap: 14px;
}

.kc-nav-side {
	display: flex;
	align-items: center;
	gap: 22px;
	flex: 1 1 0;
	min-width: 0;
}

.kc-nav-right {
	justify-content: flex-end;
}

.kc-nav-link {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	color: var(--kc-text);
	white-space: nowrap;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.kc-nav-link:hover {
	color: var(--kc-accent);
}

.kc-has-dropdown {
	position: relative;
}

.kc-drop-toggle {
	appearance: none;
	background: none;
	border: none;
	color: var(--kc-text);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	padding: 8px 0;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.kc-drop-toggle:hover,
.kc-has-dropdown.is-open .kc-drop-toggle {
	color: var(--kc-accent);
}

.kc-dropdown,
.kc-info-dropdown,
.kc-mobile-info-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	min-width: 280px;
	max-width: 90vw;
	background: var(--kc-card);
	border: 1px solid var(--kc-border);
	border-radius: 18px;
	padding: 10px;
	box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 50;
}

.kc-has-dropdown.is-open .kc-dropdown,
.kc-info-wrap.is-open .kc-info-dropdown,
.kc-mobile-info-wrap.is-open .kc-mobile-info-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.kc-dropdown a,
.kc-info-dropdown a,
.kc-mobile-info-dropdown a {
	display: block;
	padding: 12px 14px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--kc-text);
	transition: background 0.2s ease;
}

.kc-dropdown a:hover,
.kc-info-dropdown a:hover,
.kc-mobile-info-dropdown a:hover {
	background: rgba(212, 175, 55, 0.1);
}

.kc-location-title {
	font-family: var(--kc-font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--kc-text);
}

.kc-location-sub,
.kc-info-dropdown small,
.kc-mobile-info-dropdown small {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	color: var(--kc-muted);
}

.kc-logo-center {
	flex: 0 0 auto;
}

.kc-logo-link {
	display: flex;
	align-items: center;
}

.kc-logo-img {
	height: 46px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.kc-info-wrap {
	position: relative;
	margin-left: 4px;
}

.kc-info-btn {
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	border: 0 !important;
	outline: none;
	box-shadow: none !important;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.kc-info-btn:hover {
	transform: translateY(-2px) scale(1.05);
	opacity: 0.92;
	color: #fff;
	background: transparent;
}

.kc-info-btn:focus {
	outline: none;
	box-shadow: none !important;
}

.kc-info-btn svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
}

.kc-info-dropdown {
	left: auto;
	right: 0;
}

.kc-mobile-toggle {
	display: none;
	appearance: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-right: -8px;
}

.kc-burger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 24px;
}

.kc-burger span {
	display: block;
	height: 2px;
	background: var(--kc-text);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.kc-mobile-toggle[aria-expanded="true"] .kc-burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.kc-mobile-toggle[aria-expanded="true"] .kc-burger span:nth-child(2) {
	opacity: 0;
}

.kc-mobile-toggle[aria-expanded="true"] .kc-burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.kc-mobile-info-wrap {
	display: none;
	position: relative;
}

.kc-mobile-info-btn {
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	border: 0 !important;
	outline: none;
	box-shadow: none !important;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.kc-mobile-info-btn:hover {
	transform: translateY(-2px) scale(1.05);
	opacity: 0.92;
}

.kc-mobile-info-btn:focus {
	outline: none;
	box-shadow: none !important;
}

.kc-mobile-info-btn svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
}

.kc-mobile-info-dropdown {
	right: 0;
	left: auto;
}

.kc-mobile-menu {
	display: none;
	flex-direction: column;
	padding: 10px 20px 26px;
	background: rgba(0, 0, 0, 0.96);
	border-top: 1px solid var(--kc-border);
}

.kc-mobile-menu a {
	display: block;
	padding: 14px 4px;
	border-bottom: 1px solid var(--kc-border);
	text-decoration: none;
	color: var(--kc-text);
	font-weight: 600;
}

.kc-mobile-acc-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	appearance: none;
	background: none;
	border: none;
	border-bottom: 1px solid var(--kc-border);
	padding: 14px 4px;
	color: var(--kc-text);
	font-family: inherit;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
}

.kc-mobile-acc-btn[aria-expanded="true"] span[aria-hidden] {
	transform: rotate(45deg);
	display: inline-block;
	transition: transform 0.2s ease;
}

.kc-mobile-acc-btn span[aria-hidden] {
	display: inline-block;
	transition: transform 0.2s ease;
	color: var(--kc-accent);
}

.kc-mobile-submenu {
	display: none;
	flex-direction: column;
	padding-left: 12px;
}

.kc-mobile-submenu.is-open {
	display: flex;
}

.kc-mobile-submenu a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-weight: 500;
	font-size: 14px;
	color: var(--kc-muted);
}

body.kc-mobile-nav-open .kc-mobile-menu {
	display: flex;
}

@media (max-width: 1024px) {
	.kc-nav-side.kc-nav-left,
	.kc-nav-side.kc-nav-right {
		display: none;
	}

	.kc-mobile-toggle {
		display: inline-flex;
	}

	.kc-mobile-info-wrap {
		display: block;
	}

	.kc-info-wrap {
		display: none;
	}

	.kc-header {
		justify-content: space-between;
	}
}

@media (max-width: 480px) {
	.kc-logo-img {
		height: 36px;
		max-width: 160px;
	}
}

/* ==========================================================================
   4. Footer — ports sections/khalles-footer.liquid
   ========================================================================== */

.kc-footer {
	width: 100%;
	margin-top: 48px;
	padding: 0 16px 28px;
	box-sizing: border-box;
	font-family: var(--kc-font-body);
	color: #f5f1e8;
	background: transparent;
	border-top: none;
}

.kc-footer-shell {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0;
	border-radius: 34px;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 32%),
		radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 28%),
		linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(8, 8, 8, 0.99));
	border: 1px solid rgba(212, 175, 55, 0.16);
	box-shadow:
		0 28px 80px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.kc-footer-top {
	padding: 36px 32px 28px;
	border-bottom: 1px solid rgba(212, 175, 55, 0.12);
	text-align: left;
	margin-bottom: 0;
}

.kc-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kc-footer-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	width: fit-content;
}

.kc-footer-logo-link img {
	width: min(220px, 72vw);
	height: auto;
	display: block;
	margin: 0;
}

.kc-footer-tagline {
	margin: 0;
	max-width: 420px;
	font-size: 15px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.76);
	font-style: italic;
	font-family: var(--kc-font-body);
}

.kc-footer-tagline em {
	color: rgba(231, 200, 104, 0.92);
	font-style: italic;
}

.kc-footer-grid {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 22px;
	padding: 28px 32px 32px;
	margin-bottom: 0;
}

.kc-footer-nav-col {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.kc-footer-heading {
	margin: 0 0 4px;
	font-family: var(--kc-font-display);
	font-size: 20px;
	font-weight: 600;
	color: #f0d67d;
	letter-spacing: 0.01em;
	text-transform: none;
}

.kc-footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.kc-footer-links a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.5;
	transition: color 0.2s ease, transform 0.2s ease;
}

.kc-footer-links a:hover {
	color: #f5e7b2;
	transform: translateX(3px);
}

.kc-footer-locations {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	scroll-margin-top: 148px;
}

.kc-footer-location {
	position: relative;
	padding: 20px 18px 18px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
	overflow: visible;
}

.kc-footer-location:hover {
	transform: translateY(-3px);
	border-color: rgba(212, 175, 55, 0.24);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.kc-footer-location-toggle {
	display: contents;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: default;
}

.kc-footer-location-badge {
	display: inline-block;
	margin-bottom: 10px;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(212, 175, 55, 0.95);
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.18);
}

.kc-footer-location-title {
	display: block;
	margin: 0 0 12px;
	font-family: var(--kc-font-display);
	font-size: 18px;
	font-weight: 600;
	color: #fff7dc;
	line-height: 1.3;
}

.kc-footer-location-chevron {
	display: none;
}

.kc-footer-location-panel {
	padding: 0;
	display: grid;
	gap: 10px;
}

.kc-footer-row {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(245, 241, 232, 0.82);
}

.kc-footer-label {
	font-weight: 600;
	color: rgba(231, 200, 106, 0.78);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.kc-footer-value a {
	color: #fff8ec;
	text-decoration: none;
}

.kc-footer-value a:hover {
	color: #f5e7b2;
}

.kc-footer-location-actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.kc-footer-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.kc-footer-btn--gold {
	color: var(--kc-accent-text);
	background: linear-gradient(135deg, var(--kc-accent) 0%, color-mix(in srgb, var(--kc-accent) 75%, #fff 25%) 100%);
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.22);
}

.kc-footer-btn--ghost {
	color: #f5e7b2;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.kc-footer-btn:hover {
	transform: translateY(-2px);
	opacity: 0.96;
}

.kc-footer-bottom {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 12px 20px;
	padding: 18px 32px 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.22);
	font-size: 12px;
}

.kc-footer-bottom-left {
	justify-self: start;
}

.kc-footer-bottom-right {
	justify-self: end;
	text-align: right;
}

.kc-footer-bottom p {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.48);
}

.kc-footer-credit {
	justify-self: center;
	margin: 0;
	text-align: center;
	white-space: nowrap;
}

.kc-footer-credit a,
.kc-footer-bottom a,
.kc-footer-bottom-right a {
	color: rgba(231, 200, 104, 0.88);
	text-decoration: none;
}

.kc-footer-credit a {
	font-weight: 600;
	letter-spacing: 0.02em;
}

.kc-footer-credit a:hover,
.kc-footer-bottom a:hover {
	color: #f5e7b2;
}

@media (max-width: 1100px) {
	.kc-footer-grid {
		grid-template-columns: 1fr;
	}

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

	.kc-footer-nav-col {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px 16px;
		align-items: start;
	}

	.kc-footer-heading {
		font-size: 18px;
	}

	.kc-footer-links a {
		font-size: 13px;
	}

	.kc-footer-location {
		padding: 0;
		overflow: hidden;
	}

	.kc-footer-location:hover {
		transform: none;
		box-shadow: none;
	}

	.kc-footer-location.is-open {
		border-color: rgba(212, 175, 55, 0.24);
		box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
	}

	.kc-footer-location-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding: 16px 18px;
		cursor: pointer;
	}

	.kc-footer-location-chevron {
		display: inline-flex;
		flex-shrink: 0;
		width: 22px;
		height: 22px;
		align-items: center;
		justify-content: center;
		color: rgba(240, 214, 125, 0.9);
		font-size: 18px;
		line-height: 1;
		transition: transform 0.2s ease;
	}

	.kc-footer-location-chevron::before {
		content: "›";
		display: block;
		transform: rotate(90deg);
	}

	.kc-footer-location.is-open .kc-footer-location-chevron {
		transform: rotate(180deg);
	}

	.kc-footer-location:not(.is-open) .kc-footer-location-panel {
		display: none !important;
	}

	.kc-footer-location-panel {
		padding: 0 18px 18px;
	}
}

@media (max-width: 640px) {
	.kc-footer {
		padding: 0 12px 20px;
		margin-top: 32px;
	}

	.kc-footer-shell {
		border-radius: 24px;
	}

	.kc-footer-top,
	.kc-footer-grid,
	.kc-footer-bottom {
		padding-left: 18px;
		padding-right: 18px;
	}

	.kc-footer-top {
		padding-top: 26px;
	}

	.kc-footer-grid {
		padding-top: 22px;
		padding-bottom: 22px;
	}

	.kc-footer-location-actions {
		flex-direction: column;
	}

	.kc-footer-btn {
		width: 100%;
	}

	.kc-footer-bottom {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.kc-footer-bottom-left,
	.kc-footer-bottom-right {
		justify-self: center;
		text-align: center;
	}

	.kc-footer-credit {
		white-space: normal;
	}
}

/* ==========================================================================
   5. Cinematic intro — ports sections/khalles-cinematic-intro.liquid
   ========================================================================== */

.kc-luxury-intro {
	--kc-dur: 5200ms;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: #050505;
	overflow: hidden;
	pointer-events: all;
}

.kc-luxury-intro.is-hidden {
	display: none;
}

.kc-lux__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% 45%, rgba(212, 175, 55, 0.09), transparent 70%),
		radial-gradient(circle at 50% 50%, #121212 0%, #050505 100%);
	transition: opacity 0.7s ease;
}

.kc-luxury-intro.is-exiting .kc-lux__backdrop {
	opacity: 0;
}

.kc-lux__frame {
	position: absolute;
	inset: 28px;
	z-index: 2;
	pointer-events: none;
}

@media (min-width: 750px) {
	.kc-lux__frame {
		inset: 42px;
	}
}

.kc-lux__corner {
	position: absolute;
	width: 48px;
	height: 48px;
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.kc-lux__corner::before,
.kc-lux__corner::after {
	content: "";
	position: absolute;
	background: var(--kc-accent);
	box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.kc-lux__corner::before {
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.kc-lux__corner::after {
	width: 1px;
	height: 100%;
	top: 0;
	left: 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.kc-lux__corner--tl {
	top: 0;
	left: 0;
}

.kc-lux__corner--tr {
	top: 0;
	right: 0;
	transform: scaleX(-1);
}

.kc-lux__corner--bl {
	bottom: 0;
	left: 0;
	transform: scaleY(-1);
}

.kc-lux__corner--br {
	bottom: 0;
	right: 0;
	transform: scale(-1);
}

.kc-luxury-intro.is-frame .kc-lux__corner {
	opacity: 1;
}

.kc-luxury-intro.is-frame .kc-lux__corner::before,
.kc-luxury-intro.is-frame .kc-lux__corner::after {
	transform: scale(1);
}

.kc-lux__ring {
	position: absolute;
	inset: 0;
	margin: 0;
	border: 1px solid rgba(212, 175, 55, 0.28);
	border-radius: 50%;
	opacity: 0;
	transform: scale(0.88);
	transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.kc-lux__crest {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(72vw, 300px);
	aspect-ratio: 1;
	padding: 18px;
}

.kc-luxury-intro.is-ring .kc-lux__ring {
	opacity: 1;
	transform: scale(1);
}

.kc-luxury-intro.is-exiting .kc-lux__ring {
	opacity: 0;
	transform: scale(1.35);
	transition: opacity 0.9s ease, transform 1s cubic-bezier(0.55, 0, 0.15, 1);
}

.kc-lux__stage {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	z-index: 3;
	padding: max(20px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
	transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.55, 0, 0.15, 1);
}

.kc-luxury-intro.is-exiting .kc-lux__stage {
	opacity: 0;
	transform: scale(1.06);
}

.kc-lux__logo-wrap {
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateY(12px) scale(0.94);
	filter: blur(6px);
	transition: opacity 0.9s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
}

.kc-luxury-intro.is-logo .kc-lux__logo-wrap {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

.kc-lux__logo {
	width: 100%;
	max-width: min(68vw, 300px);
	height: auto;
	filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

.kc-lux__tagline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	max-width: min(92vw, 420px);
	text-align: center;
	margin: 0;
	font-family: var(--kc-font-intro);
	font-size: clamp(0.95rem, 3.6vw, 1.35rem);
	font-weight: 400;
	font-style: italic;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: rgba(255, 248, 236, 0.72);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.kc-lux__tagline span:not(:last-child)::after {
	content: "·";
	margin: 0 0.55em;
	color: var(--kc-accent);
	font-style: normal;
	opacity: 0.85;
}

.kc-luxury-intro.is-tagline .kc-lux__tagline {
	opacity: 1;
	transform: translateY(0);
}

.kc-lux__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(255, 255, 255, 0.06);
	z-index: 4;
}

.kc-lux__progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, transparent, var(--kc-accent), transparent);
	animation: kcLuxProgress var(--kc-dur) linear forwards;
}

@keyframes kcLuxProgress {
	to {
		width: 100%;
	}
}

.kc-lux__skip {
	position: absolute;
	right: max(16px, env(safe-area-inset-right));
	bottom: max(16px, env(safe-area-inset-bottom));
	z-index: 5;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.45);
	font-family: var(--kc-font-body);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 6px 0;
	cursor: pointer;
	transition: color 0.25s ease;
}

.kc-lux__skip:hover {
	color: var(--kc-accent);
}

.kc-luxury-intro.is-exiting {
	pointer-events: none;
}

html.kc-intro-active,
html.kc-intro-active body {
	overflow: hidden !important;
	height: 100%;
}

@media screen and (max-width: 749px) {
	.kc-lux__frame {
		inset: 16px;
	}

	.kc-lux__corner {
		width: 32px;
		height: 32px;
	}

	.kc-lux__crest {
		width: min(86vw, 320px);
		aspect-ratio: auto;
		padding: 20px 24px;
	}

	.kc-lux__ring {
		border-radius: 22px;
		transform: scale(0.94);
	}

	.kc-luxury-intro.is-ring .kc-lux__ring {
		transform: scale(1);
	}

	.kc-lux__logo {
		max-width: min(76vw, 260px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.kc-lux__progress span {
		animation: none;
		width: 100%;
	}

	.kc-lux__logo-wrap,
	.kc-lux__tagline {
		opacity: 1;
		transform: none;
		filter: none;
	}

	.kc-lux__corner {
		opacity: 1;
	}

	.kc-lux__corner::before,
	.kc-lux__corner::after {
		transform: scale(1);
	}

	.kc-lux__ring {
		display: none;
	}
}

/* ==========================================================================
   6. Homepage hero — ports blocks/khalles-hero-overlay + khalles-hero-scroll
   ========================================================================== */

.kc-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #000 70%);
}

.kc-hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.kc-hero-video,
.kc-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kc-hero-overlay-tint {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.77);
}

.kc-hero-overlay {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 18px;
}

.kc-premium-box {
	display: flex;
	align-items: center;
	gap: 40px;
	width: min(100%, 780px);
	padding: 38px 42px;
	border-radius: 28px;
	background: rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.kc-logo-wrap img {
	width: 140px;
	height: auto;
	filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.18)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.12));
}

.kc-text-wrap {
	text-align: left;
}

.kc-kicker {
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--kc-muted);
	display: block;
	margin-bottom: 12px;
}

.kc-text-wrap h1 {
	font-size: clamp(38px, 4.5vw, 70px);
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0 0 12px 0;
	line-height: 1.05;
	color: var(--kc-text);
}

.kc-sub {
	font-size: 16px;
	color: var(--kc-muted);
	margin: 0;
	font-weight: 300;
}

.kc-branch-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.kc-branch-btns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 118px;
	padding: 11px 18px;
	border-radius: 999px;
	border: 1px solid rgba(212, 175, 55, 0.55);
	background: rgba(0, 0, 0, 0.35);
	color: var(--kc-text);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.kc-branch-btns a:hover {
	transform: translateY(-2px);
	background: rgba(212, 175, 55, 0.18);
	border-color: rgba(212, 175, 55, 0.85);
}

.kc-scroll-down {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	z-index: 2;
}

.kc-scroll-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.14);
	text-decoration: none;
	backdrop-filter: blur(10px);
	transition: transform 0.2s ease, background 0.2s ease;
}

.kc-scroll-trigger:hover {
	transform: translateY(-2px);
	background: rgba(0, 0, 0, 0.4);
}

.kc-scroll-trigger span {
	display: block;
	width: 16px;
	height: 16px;
	border-right: 2.5px solid var(--kc-text);
	border-bottom: 2.5px solid var(--kc-text);
	transform: rotate(45deg);
	margin-top: -4px;
	animation: kcScrollArrow 1.8s infinite;
}

@keyframes kcScrollArrow {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-5px, -5px);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: rotate(45deg) translate(5px, 5px);
	}
}

@media screen and (max-width: 749px) {
	.kc-premium-box {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 28px 22px;
		width: min(100%, 420px);
	}

	.kc-logo-wrap img {
		width: 100px;
	}

	.kc-text-wrap {
		text-align: center;
	}

	.kc-text-wrap h1 {
		font-size: clamp(28px, 8vw, 40px);
	}

	.kc-branch-btns {
		justify-content: center;
	}

	.kc-branch-btns a {
		flex: 1 1 calc(50% - 5px);
		min-width: 0;
		font-size: 12px;
		padding: 10px 12px;
	}
}

/* ==========================================================================
   7. Homepage "Opplev" — ports sections/khalles-opplev.liquid
   ========================================================================== */

.kc-opplev {
	max-width: 1500px;
	margin: 0 auto 50px auto;
	padding: 18px 24px 0;
}

.kc-opplev-shell {
	position: relative;
	overflow: hidden;
	border-radius: 34px;
	background: var(--kc-card);
	border: 1px solid var(--kc-border);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.kc-opplev-grid {
	display: grid;
	grid-template-columns: 1.02fr 1fr;
	align-items: stretch;
	min-height: 620px;
}

.kc-opplev-content {
	position: relative;
	padding: 54px 48px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(8, 8, 8, 0.96));
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.kc-opplev-kicker {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--kc-muted);
}

.kc-opplev-title {
	margin: 0;
	font-size: clamp(50px, 6.2vw, 108px);
	line-height: 0.92;
	letter-spacing: -0.04em;
	font-weight: 600;
	color: var(--kc-text);
}

.kc-opplev-divider {
	width: 92px;
	height: 1px;
	margin: 26px 0 22px 0;
	background: linear-gradient(90deg, var(--kc-accent), rgba(255, 255, 255, 0.12));
}

.kc-opplev-text {
	max-width: 540px;
	margin: 0;
	font-size: 17px;
	line-height: 1.85;
	color: var(--kc-muted);
}

.kc-opplev-signature {
	margin-top: 34px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.42);
}

.kc-opplev-media {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: #0b0b0b;
}

.kc-opplev-main-image {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.kc-opplev-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kc-opplev-float-card {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	padding: 18px;
	border-radius: 24px;
	background: rgba(10, 10, 10, 0.48);
	border: 1px solid var(--kc-border);
	backdrop-filter: blur(12px);
}

.kc-opplev-thumb {
	width: 100%;
	height: 170px;
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 14px;
}

.kc-opplev-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kc-opplev-float-text {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.kc-opplev-float-title {
	margin: 0;
	font-size: clamp(26px, 2.4vw, 42px);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--kc-text);
	font-weight: 600;
}

.kc-opplev-float-note {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--kc-muted);
	white-space: nowrap;
}

@media screen and (max-width: 1100px) {
	.kc-opplev-grid {
		grid-template-columns: 1fr;
		min-height: unset;
	}

	.kc-opplev-content {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		padding: 40px 30px;
	}

	.kc-opplev-media {
		min-height: 560px;
	}
}

@media screen and (max-width: 768px) {
	.kc-opplev {
		padding: 14px 14px 0;
		margin-bottom: 36px;
	}

	.kc-opplev-shell {
		border-radius: 24px;
	}

	.kc-opplev-content {
		padding: 28px 20px;
	}

	.kc-opplev-title {
		font-size: clamp(36px, 13vw, 58px);
	}

	.kc-opplev-media {
		min-height: 420px;
	}

	.kc-opplev-float-text {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}

/* ==========================================================================
   8. Generic page + 404
   ========================================================================== */

.kc-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 24px 80px;
}

.kc-page-title {
	font-size: 42px;
	margin-bottom: 20px;
	color: var(--kc-text);
}

.kc-page-content {
	font-size: 16px;
	line-height: 1.8;
	color: var(--kc-muted);
}

.kc-404 {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px;
	text-align: center;
}

.kc-404-kicker {
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--kc-accent);
	margin-bottom: 14px;
}

.kc-404-title {
	font-size: clamp(60px, 12vw, 140px);
	color: var(--kc-text);
	margin-bottom: 10px;
}

.kc-404-text {
	color: var(--kc-muted);
	font-size: 17px;
	margin-bottom: 28px;
}

.kc-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.kc-404-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	border-radius: 999px;
	background: var(--kc-accent);
	color: var(--kc-accent-text);
	font-weight: 700;
	text-decoration: none;
}

.kc-404-btn--outline {
	background: rgba(255, 255, 255, 0.08);
	color: var(--kc-text);
	border: 1px solid var(--kc-border);
}

/* ==========================================================================
   9. Om oss — ports sections/khalles-about-page.liquid
   ========================================================================== */

.kc-about {
	max-width: 1100px;
	margin: 60px auto;
	padding: 0 16px 80px;
}

.kc-about-hero {
	text-align: center;
	margin-bottom: 50px;
}

.kc-about-title {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 14px;
	color: var(--kc-text);
	letter-spacing: -0.02em;
}

.kc-about-sub {
	font-size: 18px;
	color: var(--kc-muted);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.75;
}

.kc-about-img,
.kc-about-img-small {
	border-radius: 20px;
	overflow: hidden;
	margin: 40px 0;
	border: 1px solid var(--kc-border);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.kc-about-img {
	height: 420px;
}

.kc-about-img-small {
	margin-top: 50px;
	height: 320px;
}

.kc-about-img img,
.kc-about-img-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kc-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 40px;
}

.kc-about-box {
	background: var(--kc-card);
	padding: 30px;
	border-radius: 18px;
	border: 1px solid var(--kc-border);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.kc-about-box h3 {
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--kc-text);
}

.kc-about-box p {
	font-family: var(--kc-font-body);
	font-size: 15px;
	line-height: 1.7;
	color: var(--kc-muted);
	margin: 0;
}

.kc-about-branches {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 50px;
}

.kc-about-branch {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--kc-border);
	background: var(--kc-card);
}

.kc-about-branch-media {
	height: 220px;
	overflow: hidden;
}

.kc-about-branch-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kc-about-branch-label {
	margin: 0;
	padding: 14px 16px 16px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kc-accent);
	text-align: center;
}

.kc-about-editor-content {
	margin-top: 50px;
	color: var(--kc-muted);
	line-height: 1.8;
}

@media (max-width: 768px) {
	.kc-about-title {
		font-size: 30px;
	}

	.kc-about-grid,
	.kc-about-branches {
		grid-template-columns: 1fr;
	}

	.kc-about-img {
		height: 260px;
	}

	.kc-about-img-small {
		height: 220px;
	}
}

/* ==========================================================================
   10. Kontakt — ports sections/khalles-contact-page.liquid
   ========================================================================== */

.kc-contact-wrapper {
	max-width: 1120px;
	margin: 0 auto 50px auto;
	padding: 18px 16px 0;
}

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

.kc-contact-card {
	position: relative;
	background: var(--kc-card);
	color: #fff;
	border: 1px solid var(--kc-border);
	border-radius: 28px;
	padding: 28px 26px;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
	overflow: hidden;
}

.kc-contact-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 38%, transparent 100%);
	opacity: 0.95;
	transition: opacity 0.6s ease;
}

.kc-contact-card:hover {
	transform: translateY(-4px) scale(1.03);
	filter: brightness(1.08);
	border-color: rgba(212, 175, 55, 0.24);
	box-shadow:
		0 24px 50px rgba(0, 0, 0, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.kc-contact-card:hover::before {
	opacity: 1;
}

.kc-contact-main {
	border: 1px solid color-mix(in srgb, var(--kc-accent) 40%, var(--kc-border));
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kc-contact-main::after {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0) 70%);
	pointer-events: none;
}

.kc-contact-title {
	position: relative;
	z-index: 1;
	margin: 0 0 18px 0;
	font-size: 31px;
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #fff8ec;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.kc-contact-row {
	position: relative;
	z-index: 1;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(245, 241, 232, 0.82);
	word-break: break-word;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.kc-contact-label {
	display: block;
	margin-bottom: 4px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(231, 200, 106, 0.88);
}

.kc-contact-row a {
	color: var(--kc-text);
	text-decoration: none;
}

.kc-contact-row a:hover {
	opacity: 0.82;
}

.kc-contact-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	padding: 11px 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kc-accent) 0%, color-mix(in srgb, var(--kc-accent) 75%, #fff 25%) 100%);
	color: var(--kc-accent-text);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	cursor: pointer;
	border: none;
	list-style: none;
	box-shadow:
		0 10px 24px rgba(212, 175, 55, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
	transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.kc-contact-toggle:hover {
	transform: translateY(-1px);
	opacity: 0.96;
	box-shadow:
		0 14px 28px rgba(212, 175, 55, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.kc-contact-card details summary {
	list-style: none;
}

.kc-contact-card details summary::-webkit-details-marker {
	display: none;
}

.kc-contact-details {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.kc-contact-card details[open] .kc-contact-details {
	max-height: 700px;
	margin-top: 18px;
}

.kc-contact-main .kc-contact-details {
	max-height: 700px;
	margin-top: 16px;
	overflow: visible;
}

.kc-contact-extra {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 16px;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.kc-hours-title {
	margin: 16px 0 10px 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(231, 200, 106, 0.78);
}

.kc-hours {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px 18px;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(245, 241, 232, 0.84);
	transition: transform 0.6s ease, filter 0.6s ease;
}

.kc-hours div:nth-child(odd) {
	opacity: 0.82;
}

.kc-hours div:nth-child(even) {
	font-weight: 600;
	color: #fff8ec;
}

.kc-social-icons {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.kc-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--kc-text);
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.kc-social-icons a:hover {
	transform: translateY(-2px);
	opacity: 0.92;
	border-color: rgba(212, 175, 55, 0.3);
}

.kc-contact-card:hover .kc-contact-title,
.kc-contact-card:hover .kc-contact-row,
.kc-contact-card:hover .kc-contact-extra,
.kc-contact-card:hover .kc-hours-title,
.kc-contact-card:hover .kc-hours,
.kc-contact-card:hover .kc-social-icons {
	transform: scale(1.02);
	filter: brightness(1.05);
}

.kc-social-icons svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media screen and (max-width: 768px) {
	.kc-contact-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.kc-contact-card {
		padding: 22px 18px;
		border-radius: 22px;
	}

	.kc-contact-title {
		font-size: 25px;
		margin-bottom: 16px;
	}

	.kc-contact-row {
		font-size: 14px;
		line-height: 1.65;
	}

	.kc-contact-label {
		font-size: 10px;
		letter-spacing: 0.15em;
	}

	.kc-hours {
		font-size: 13px;
		gap: 6px 12px;
	}

	.kc-contact-toggle {
		width: 100%;
		padding: 12px 16px;
	}
}

/* ==========================================================================
   11. Book bord — ports sections/khalles-book-page.liquid
   ========================================================================== */

.kc-book-wrapper {
	max-width: 1500px;
	margin: 0 auto 50px auto;
	padding: 18px 24px 50px;
	position: relative;
	overflow: hidden;
	border-radius: 28px;
}

.kc-book-bg-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.kc-book-bg-slider img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: kcBookBgSlider 35s infinite;
}

.kc-book-bg-slider::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 1;
}

@keyframes kcBookBgSlider {
	0% {
		opacity: 0;
	}

	4% {
		opacity: 0.25;
	}

	14% {
		opacity: 0.25;
	}

	18% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.kc-book-header,
.kc-book-grid {
	position: relative;
	z-index: 2;
}

.kc-book-header {
	text-align: center;
	margin-bottom: 42px;
}

.kc-book-title {
	margin: 0 0 12px 0;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--kc-text);
}

.kc-book-subtitle {
	max-width: 760px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.75;
	color: var(--kc-muted);
}

.kc-book-grid {
	display: grid;
	grid-template-columns: repeat(3, 320px);
	justify-content: center;
	gap: 28px;
}

.kc-book-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--kc-card);
	border: 1px solid var(--kc-border);
	border-radius: 28px;
	padding: 30px 28px;
	min-height: 390px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.kc-book-card:hover {
	transform: translateY(-5px);
	border-color: rgba(212, 175, 55, 0.24);
}

.kc-book-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	margin-bottom: 18px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--kc-accent);
	background: rgba(212, 175, 55, 0.14);
	border: 1px solid rgba(212, 175, 55, 0.35);
}

.kc-book-card-title {
	margin: 0 0 12px 0;
	font-size: 34px;
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--kc-text);
}

.kc-book-card-text {
	font-size: 15px;
	line-height: 1.75;
	margin: 0 0 22px 0;
	color: var(--kc-muted);
}

.kc-book-label {
	margin-top: 12px;
	margin-bottom: 4px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(231, 200, 106, 0.88);
}

.kc-book-value {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 248, 236, 0.88);
}

.kc-book-btn {
	margin-top: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px 22px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kc-accent) 0%, var(--kc-accent-light) 100%);
	color: var(--kc-accent-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-align: center;
	border: none;
}

.kc-book-btn.is-disabled {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 248, 236, 0.58);
	cursor: default;
	pointer-events: none;
}

@media (max-width: 1180px) {
	.kc-book-grid {
		grid-template-columns: repeat(2, 320px);
	}
}

@media (max-width: 768px) {
	.kc-book-grid {
		grid-template-columns: 1fr;
	}

	.kc-book-wrapper {
		padding: 40px 14px 40px;
	}
}

/* ==========================================================================
   12. Meny hub — ports sections/khalles-menu-hub.liquid
   ========================================================================== */

.kc-menu-hub-wrapper {
	max-width: 1500px;
	margin: 0 auto 40px auto;
	padding: 10px 24px 0;
}

.kc-menu-hub-header {
	text-align: center;
	margin-bottom: 40px;
}

.kc-menu-hub-title {
	margin: 0 0 12px 0;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--kc-text);
	letter-spacing: -0.02em;
}

.kc-menu-hub-subtitle {
	max-width: 760px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.7;
	color: var(--kc-muted);
}

.kc-menu-hub-grid {
	display: grid;
	grid-template-columns: repeat(3, 320px);
	justify-content: center;
	gap: 28px;
	align-items: stretch;
}

.kc-menu-hub-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--kc-card);
	border: 1px solid var(--kc-border);
	border-radius: 24px;
	padding: 32px;
	min-height: 360px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.kc-menu-hub-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.24);
}

.kc-menu-hub-badge {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	margin-bottom: 18px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	background: rgba(212, 175, 55, 0.1);
	color: var(--kc-accent);
	border: 1px solid rgba(212, 175, 55, 0.2);
}

.kc-menu-hub-card-title {
	margin: 0 0 10px 0;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--kc-text);
	letter-spacing: -0.02em;
}

.kc-menu-hub-card-text {
	margin: 0 0 22px 0;
	font-size: 16px;
	line-height: 1.75;
	color: var(--kc-muted);
}

.kc-menu-hub-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.kc-menu-hub-info-row {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.kc-menu-hub-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--kc-accent);
}

.kc-menu-hub-value {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 248, 236, 0.88);
}

.kc-menu-hub-actions {
	margin-top: auto;
}

.kc-menu-hub-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kc-accent) 0%, var(--kc-accent-light) 100%);
	color: var(--kc-accent-text);
	text-decoration: none;
	font-size: 15px;
	font-weight: 800;
}

@media screen and (max-width: 1180px) {
	.kc-menu-hub-grid {
		grid-template-columns: repeat(2, 320px);
	}
}

@media screen and (max-width: 768px) {
	.kc-menu-hub-wrapper {
		padding: 40px 14px 0;
	}

	.kc-menu-hub-grid {
		grid-template-columns: 1fr;
	}

	.kc-menu-hub-title {
		font-size: 30px;
	}
}

/* ==========================================================================
   13. Branch/location page — ports sections/khalles-branch-page.liquid
   ========================================================================== */

.kc-branch-page {
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px 18px 60px;
}

.kc-branch-hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 28px;
	align-items: stretch;
	margin-bottom: 28px;
}

.kc-branch-hero-card {
	background: var(--kc-card);
	border: 1px solid var(--kc-border);
	border-radius: 28px;
	padding: 42px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
	position: relative;
}

.kc-branch-kicker {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.14);
	border: 1px solid rgba(212, 175, 55, 0.35);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 18px;
	color: var(--kc-accent);
}

.kc-branch-title {
	margin: 0 0 14px 0;
	font-size: 52px;
	line-height: 1.04;
	font-weight: 800;
	color: var(--kc-text);
}

.kc-branch-subtitle {
	margin: 0 0 24px 0;
	font-size: 18px;
	line-height: 1.8;
	color: var(--kc-muted);
	max-width: 720px;
}

.kc-branch-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.kc-branch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 22px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kc-accent) 0%, var(--kc-accent-light) 100%);
	color: var(--kc-accent-text);
	text-decoration: none;
	font-size: 15px;
	font-weight: 800;
	border: none;
}

.kc-branch-btn-outline {
	background: rgba(255, 255, 255, 0.08);
	color: var(--kc-text);
	border: 1px solid var(--kc-border);
}

.kc-branch-image,
.kc-branch-story-image {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
	background: #0f0f0f;
	border-radius: 28px;
}

.kc-branch-image {
	min-height: 520px;
}

.kc-branch-story-image {
	min-height: 420px;
}

.kc-slider img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
}

.kc-branch-image .kc-slider img,
.kc-branch-image.kc-slider img {
	animation: kcBranchSlider 25s infinite;
}

.kc-branch-story-image.kc-slider img {
	animation: kcBranchSlider 25s infinite;
}

@keyframes kcBranchSlider {
	0% {
		opacity: 0;
	}

	4% {
		opacity: 1;
	}

	14% {
		opacity: 1;
	}

	18% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.kc-branch-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	margin-bottom: 28px;
}

@media screen and (min-width: 1101px) {
	.kc-branch-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.kc-branch-box {
	background: var(--kc-card);
	border: 1px solid var(--kc-border);
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
	position: relative;
	min-width: 0;
}

.kc-branch-box-title {
	margin: 0 0 14px 0;
	font-size: 24px;
	font-weight: 800;
	color: var(--kc-text);
}

.kc-branch-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: var(--kc-muted);
}

.kc-branch-text + .kc-branch-text {
	margin-top: 16px;
}

.kc-branch-social {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

.kc-branch-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--kc-text);
	text-decoration: none;
}

.kc-branch-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.kc-branch-info-list {
	display: grid;
	gap: 14px;
}

.kc-branch-info-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.kc-branch-label {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(231, 200, 106, 0.88);
}

.kc-branch-value,
.kc-branch-value a {
	font-size: 15px;
	line-height: 1.7;
	color: var(--kc-text);
	text-decoration: none;
	overflow-wrap: anywhere;
}

.kc-branch-value a:hover {
	text-decoration: underline;
}

.kc-hours {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px 18px;
	width: 100%;
}

.kc-hours div {
	font-size: 15px;
	line-height: 1.7;
}

.kc-hours div:nth-child(odd) {
	color: var(--kc-muted);
}

.kc-hours div:nth-child(even) {
	color: var(--kc-text);
	font-weight: 700;
}

.kc-branch-story {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 28px;
	margin-bottom: 28px;
}

.kc-branch-story-card {
	background: var(--kc-card);
	border-radius: 28px;
	padding: 38px;
	border: 1px solid rgba(212, 175, 55, 0.35);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.kc-branch-faq-grid {
	margin-top: 28px;
	align-items: stretch;
}

.kc-branch-faq-grid--two-wide {
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.45fr);
}

.kc-branch-box--explore {
	display: flex;
	flex-direction: column;
}

.kc-faq-item {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 14px 0;
}

.kc-faq-item:first-child {
	border-top: none;
	padding-top: 0;
}

.kc-faq-q {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: var(--kc-text);
}

.kc-faq-a {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--kc-muted);
}

.kc-faq-a a {
	color: var(--kc-accent);
}

.kc-branch-links {
	display: grid;
	gap: 10px;
	margin-top: auto;
	padding-top: 18px;
}

.kc-branch-links a {
	display: block;
	text-align: center;
	padding: 11px 14px;
	border-radius: 12px;
	border: 1px solid rgba(212, 175, 55, 0.35);
	background: rgba(212, 175, 55, 0.08);
	color: var(--kc-accent);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}

@media screen and (max-width: 1100px) {
	.kc-branch-hero,
	.kc-branch-story,
	.kc-branch-faq-grid {
		grid-template-columns: 1fr;
	}

	.kc-branch-title {
		font-size: 42px;
	}

	.kc-branch-image,
	.kc-branch-story-image {
		min-height: 380px;
	}
}

@media screen and (max-width: 768px) {
	.kc-branch-page {
		padding: 40px 12px 40px;
	}

	.kc-branch-hero-card,
	.kc-branch-box,
	.kc-branch-story-card {
		padding: 20px 18px;
		border-radius: 20px;
	}

	.kc-branch-title {
		font-size: 32px;
	}

	.kc-branch-image,
	.kc-branch-story-image {
		min-height: 260px;
		border-radius: 20px;
	}

	.kc-branch-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.kc-branch-btn {
		width: 100%;
	}
}

/* ==========================================================================
   14. Menu list — ports sections/honefoss-menu-page.liquid (shared menu CSS)
   ========================================================================== */

.hm-menu {
	--hm-gold: var(--kc-accent);
	--hm-gold-light: var(--kc-accent-light);
	--hm-gold-muted: rgba(212, 175, 55, 0.82);
	--hm-card: rgba(255, 255, 255, 0.04);
	--hm-border: rgba(212, 175, 55, 0.14);
	--hm-text: var(--kc-text);
	--hm-text-muted: rgba(255, 255, 255, 0.74);
	width: 100%;
	max-width: min(1480px, 100%);
	margin: 0 auto;
	padding: 34px 22px 90px;
	color: var(--hm-text);
}

.hm-menu__hero {
	position: relative;
	overflow: hidden;
	border-radius: 34px;
	padding: 48px 34px 34px;
	margin-bottom: 26px;
	background:
		radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 28%),
		radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 24%),
		linear-gradient(135deg, rgba(20, 20, 20, 0.96), rgba(8, 8, 8, 0.94));
	border: 1px solid rgba(212, 175, 55, 0.18);
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.hm-menu__topline {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: rgba(212, 175, 55, 0.92);
	margin-bottom: 16px;
}

.hm-menu__title {
	margin: 0;
	font-family: var(--kc-font-display);
	font-size: clamp(38px, 6vw, 74px);
	line-height: 0.96;
	letter-spacing: -0.02em;
	color: #f5e7b2;
}

.hm-menu__subtitle {
	margin-top: 16px;
	max-width: 760px;
	font-size: clamp(15px, 2vw, 18px);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.78);
}

.hm-menu__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 26px;
}

.hm-menu__badge {
	padding: 12px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
}

.hm-menu__badge--link {
	text-decoration: none;
	transition: border-color 0.22s ease, color 0.22s ease;
}

.hm-menu__badge--link:hover {
	border-color: rgba(212, 175, 55, 0.35);
	color: #f5e7b2;
}

.hm-menu__nav-wrap {
	position: sticky;
	top: calc(var(--kc-header-h) + var(--kc-topbar-h));
	z-index: 40;
	margin: 0 -4px 22px;
	padding: 14px 4px;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: box-shadow 0.25s ease;
}

.hm-menu__nav-wrap.is-stuck {
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
	border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.hm-menu__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hm-menu__nav-link {
	appearance: none;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.86);
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	transition: all 0.22s ease;
	white-space: nowrap;
}

.hm-menu__nav-link:hover,
.hm-menu__nav-link.is-active {
	color: #1a1a1a;
	background: linear-gradient(180deg, var(--hm-gold-light), var(--hm-gold));
	border-color: rgba(212, 175, 55, 0.5);
	transform: translateY(-2px);
}

.hm-menu__select-wrap {
	display: none;
}

.hm-menu__select-label {
	display: block;
	margin: 0 0 8px;
	color: rgba(240, 214, 125, 0.95);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hm-menu__select {
	width: 100%;
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(212, 175, 55, 0.2);
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
}

.hm-menu__select option {
	background: #111;
	color: #f5f1e8;
}

.hm-menu__cat-overview {
	display: none;
}

.hm-menu__cat-overview[hidden] {
	display: none !important;
}

.hm-menu__cat-overview-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hm-menu__cat-overview-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-radius: 16px;
	border: 1px solid rgba(212, 175, 55, 0.22);
	background: linear-gradient(180deg, rgba(24, 24, 24, 0.9), rgba(10, 10, 10, 0.92));
	color: var(--hm-gold-light);
	font-family: var(--kc-font-display);
	font-size: 20px;
	text-align: left;
	cursor: pointer;
}

.hm-menu__cat-overview-btn::after {
	content: "›";
	color: rgba(240, 214, 125, 0.75);
	font-size: 22px;
	line-height: 1;
}

.hm-menu__content {
	display: grid;
	gap: 22px;
}

.hm-menu__category {
	position: relative;
	border-radius: 30px;
	padding: 28px;
	background: linear-gradient(180deg, rgba(24, 24, 24, 0.9), rgba(10, 10, 10, 0.92));
	border: 1px solid var(--hm-border);
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
	overflow: hidden;
}

.hm-menu__category[hidden] {
	display: none !important;
}

.hm-menu__category-head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: end;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.hm-menu__category-title {
	margin: 0;
	font-family: var(--kc-font-display);
	font-size: clamp(24px, 3vw, 36px);
	color: var(--hm-gold-light);
}

.hm-menu__category-note {
	color: rgba(255, 255, 255, 0.56);
	font-size: 13px;
	text-align: right;
	line-height: 1.55;
}

.hm-menu__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.hm-menu__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	border-radius: 22px;
	padding: 18px;
	background: var(--hm-card);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform 0.22s ease, border-color 0.22s ease;
}

.hm-menu__item:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 175, 55, 0.26);
}

.hm-menu__item--wide {
	grid-column: 1 / -1;
}

.hm-menu__item-image {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	border-radius: 16px;
	overflow: hidden;
}

.hm-menu__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hm-menu__item-body {
	flex: 1 1 auto;
	min-width: 0;
}

.hm-menu__item-head {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 6px;
}

.hm-menu__item-name {
	font-size: 17px;
	font-weight: 600;
	color: #fff7dc;
	line-height: 1.35;
}

.hm-menu__item-price {
	flex: 0 1 auto;
	font-weight: 700;
	font-size: 16px;
	color: var(--hm-gold-light);
	text-align: right;
}

.hm-menu__item-desc {
	color: var(--hm-text-muted);
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 6px;
}

.hm-menu__item-allergens,
.hm-menu__item-serving {
	color: var(--hm-gold-muted);
	font-size: 12px;
	line-height: 1.55;
}

.hm-menu__category-footer {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	line-height: 1.7;
}

.hm-menu__bottom {
	margin-top: 28px;
	border-radius: 24px;
	padding: 24px 28px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(212, 175, 55, 0.18);
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.75;
}

.hm-menu__bottom-title {
	margin: 0 0 10px;
	font-family: var(--kc-font-display);
	color: var(--hm-gold-light);
	font-size: 22px;
}

.hm-menu__empty {
	color: var(--kc-muted);
	text-align: center;
	padding: 40px 0;
}

.hm-menu__top-btn {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 999;
	display: none;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 21px;
	color: #f7edd0;
	background: linear-gradient(180deg, rgba(38, 38, 38, 0.96), rgba(10, 10, 10, 0.98));
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

@media (max-width: 768px) {
	.hm-menu {
		padding: 20px 12px 64px;
	}

	.hm-menu__hero {
		padding: 24px 16px 20px;
		border-radius: 22px;
	}

	.hm-menu__category {
		padding: 16px;
		border-radius: 20px;
	}

	.hm-menu__item {
		padding: 14px;
	}

	.hm-menu__item-head {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.hm-menu__item-price {
		text-align: left;
	}
}

@media (max-width: 990px) {
	.hm-menu__nav {
		display: none;
	}

	.hm-menu__select-wrap {
		display: block;
	}

	.hm-menu--overview .hm-menu__cat-overview {
		display: block;
	}

	.hm-menu__items {
		grid-template-columns: 1fr;
	}

	.hm-menu__category-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.hm-menu__category-note {
		text-align: left;
	}

	.hm-menu__badges {
		flex-direction: column;
	}

	.hm-menu__top-btn {
		display: inline-flex;
		right: 12px;
		bottom: 12px;
		width: 48px;
		height: 48px;
		font-size: 18px;
	}
}

@media (max-width: 560px) {
	.hm-menu__item-image {
		flex: 0 0 64px;
		width: 64px;
		height: 64px;
	}
}
