/* =========================================================================
   HOME Kitchens & Decor — main stylesheet
   Written RTL-first with CSS logical properties, so the Arabic (default) and
   English (/en/) layouts mirror each other without a separate rtl.css.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
	--brand: #6b2080;
	--brand-600: #591a6b;
	--brand-700: #4a1359;
	--brand-100: #f3e9f7;
	--brand-050: #faf6fc;

	--ink: #17121a;
	--ink-700: #3a323f;
	--muted: #6e6474;
	--line: #e6e0e9;

	--sand: #f8f5f1;
	--cream: #fffdfb;
	--brass: #c2a06b;

	--white: #fff;

	--radius: 4px;
	--radius-lg: 8px;

	--shadow-sm: 0 2px 10px rgba(23, 18, 26, .06);
	--shadow: 0 12px 40px rgba(23, 18, 26, .10);
	--shadow-lg: 0 28px 70px rgba(23, 18, 26, .16);

	--ease: cubic-bezier(.22, .61, .36, 1);
	--ease-out: cubic-bezier(.16, 1, .3, 1);

	--container: 1280px;
	--gutter: clamp(1rem, 4vw, 2.5rem);
	--section-y: clamp(4rem, 9vw, 8rem);

	--font-latin: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-arabic: 'Tajawal', 'Plus Jakarta Sans', system-ui, sans-serif;

	--header-h: 84px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink-700);
	font-family: var(--font-latin);
	font-size: 1rem;
	line-height: 1.75;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.hk-lang-ar { font-family: var(--font-arabic); line-height: 1.9; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
	margin: 0;
	color: var(--ink);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -.01em;
}
body.hk-lang-ar h1, body.hk-lang-ar h2,
body.hk-lang-ar h3, body.hk-lang-ar h4 { line-height: 1.45; letter-spacing: 0; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 3px;
	border-radius: 2px;
}

::selection { background: var(--brand); color: #fff; }

/* ---------- Layout primitives ---------- */
.hk-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.hk-section { padding-block: var(--section-y); }
.hk-section--tint { background: var(--sand); }
.hk-center { text-align: center; }

.hk-skip {
	position: absolute;
	inset-inline-start: -9999px;
	top: 0;
	z-index: 999;
	background: var(--brand);
	color: #fff;
	padding: .75rem 1.25rem;
}
.hk-skip:focus { inset-inline-start: 0; }

/* ---------- Typography blocks ---------- */
.hk-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	margin: 0 0 1rem;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--brand);
}
body.hk-lang-ar .hk-eyebrow { letter-spacing: .06em; font-size: .95rem; }

.hk-eyebrow__line {
	width: 34px;
	height: 1px;
	background: currentColor;
	opacity: .55;
}
.hk-eyebrow--light { color: var(--brass); }

.hk-title {
	font-size: clamp(1.85rem, 3.6vw, 3.1rem);
	font-weight: 800;
	margin: 0 0 1.1rem;
}
.hk-title em { color: var(--brand); font-style: normal; }
.hk-title--light { color: #fff; }

.hk-lead {
	font-size: clamp(1.02rem, 1.4vw, 1.15rem);
	color: var(--ink-700);
	margin-bottom: 1.1rem;
}
.hk-text { color: var(--muted); }

.hk-head { margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.hk-head--center { text-align: center; max-width: 780px; margin-inline: auto; }
.hk-head--center .hk-eyebrow { justify-content: center; }
.hk-head__lead { color: var(--muted); margin: 0; }

.hk-head--split {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 2rem;
}
.hk-head--split .hk-title { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.hk-btn {
	--btn-bg: var(--brand);
	--btn-fg: #fff;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	padding: .9rem 1.6rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-weight: 700;
	font-size: .95rem;
	line-height: 1;
	overflow: hidden;
	isolation: isolate;
	transition: color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.hk-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--ink);
	transform: scaleX(0);
	transform-origin: inline-start;
	transition: transform .45s var(--ease-out);
}
.hk-btn:hover::before, .hk-btn:focus-visible::before { transform: scaleX(1); }
.hk-btn:active { transform: translateY(1px); }
.hk-btn .hk-icon { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.hk-btn:hover .hk-icon { transform: translateX(3px); }
.hk-rtl .hk-btn:hover .hk-icon { transform: translateX(-3px); }

.hk-btn--primary { --btn-bg: var(--brand); }
.hk-btn--dark { --btn-bg: var(--ink); }
.hk-btn--dark::before { background: var(--brand); }
.hk-btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.hk-btn--block { display: flex; width: 100%; }

.hk-btn--ghost {
	--btn-bg: transparent;
	--btn-fg: #fff;
	border-color: rgba(255, 255, 255, .5);
}
.hk-btn--ghost::before { background: #fff; }
.hk-btn--ghost:hover { color: var(--ink); border-color: #fff; }

.hk-btn--wa { --btn-bg: #1faa59; }
.hk-btn--wa::before { background: #17904a; }

.hk-icon { width: 20px; height: 20px; flex: none; }

/* ---------- Header ---------- */
.hk-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(255, 253, 251, .92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .3s var(--ease), transform .4s var(--ease);
}
.hk-header.is-stuck { box-shadow: var(--shadow-sm); }
.hk-header.is-hidden { transform: translateY(-100%); }

.hk-topbar {
	background: var(--ink);
	color: rgba(255, 255, 255, .8);
	font-size: .82rem;
}
.hk-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 40px;
}
.hk-topbar__tag { margin: 0; color: var(--brass); }
.hk-topbar__meta { display: flex; align-items: center; gap: 1rem; }
.hk-topbar__link {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	transition: color .25s var(--ease);
}
.hk-topbar__link .hk-icon { width: 15px; height: 15px; }
.hk-topbar__link:hover, .hk-topbar__icon:hover { color: var(--brass); }
.hk-topbar__icon { display: inline-flex; transition: color .25s var(--ease); }
.hk-topbar__icon .hk-icon { width: 16px; height: 16px; }

.hk-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: var(--header-h);
}

.hk-logo { display: inline-flex; flex-direction: column; line-height: 1; }
.hk-logo img { max-height: 56px; width: auto; }
.hk-logo__mark {
	font-family: var(--font-latin);
	font-size: 1.7rem;
	font-weight: 800;
	letter-spacing: .22em;
	color: var(--brand);
}
.hk-logo__sub {
	font-size: .68rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: .35rem;
}
body.hk-lang-ar .hk-logo__sub { letter-spacing: .12em; font-size: .74rem; }
.hk-logo--light .hk-logo__mark { color: #fff; }
.hk-logo--light .hk-logo__sub { color: rgba(255, 255, 255, .6); }

/* Menu */
.hk-menu__list { display: flex; align-items: center; gap: .35rem; }
.hk-menu__list li { position: relative; }
.hk-menu__list > li > a {
	display: block;
	padding: .6rem .95rem;
	font-weight: 600;
	font-size: .95rem;
	color: var(--ink);
	position: relative;
	transition: color .25s var(--ease);
}
.hk-menu__list > li > a::after {
	content: '';
	position: absolute;
	inset-inline: .95rem;
	bottom: .35rem;
	height: 2px;
	background: var(--brand);
	transform: scaleX(0);
	transform-origin: inline-start;
	transition: transform .35s var(--ease-out);
}
.hk-menu__list > li > a:hover { color: var(--brand); }
.hk-menu__list > li > a:hover::after,
.hk-menu__list > li.current-menu-item > a::after { transform: scaleX(1); }
.hk-menu__list > li.current-menu-item > a { color: var(--brand); }

/* Dropdowns */
.hk-menu__list .sub-menu {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	padding: .5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
	z-index: 20;
}
.hk-menu__list li:hover > .sub-menu,
.hk-menu__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.hk-menu__list .sub-menu a {
	display: block;
	padding: .55rem .8rem;
	font-size: .92rem;
	border-radius: var(--radius);
	transition: background .2s var(--ease), color .2s var(--ease);
}
.hk-menu__list .sub-menu a:hover { background: var(--brand-050); color: var(--brand); }

.hk-nav__actions { display: flex; align-items: center; gap: .75rem; }

/* Language switch */
.hk-lang { display: inline-flex; border: 1px solid currentColor; border-radius: 999px; overflow: hidden; }
.hk-lang__item {
	padding: .2rem .7rem;
	font-size: .78rem;
	font-weight: 700;
	opacity: .7;
	transition: background .25s var(--ease), opacity .25s var(--ease);
}
.hk-lang__item.is-active { background: var(--brass); color: var(--ink); opacity: 1; }
.hk-lang__item:hover { opacity: 1; }
.hk-lang__full { display: none; }

/* Burger */
.hk-burger {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: transparent;
	border-radius: var(--radius);
	position: relative;
}
.hk-burger span {
	position: absolute;
	inset-inline: 11px;
	height: 2px;
	background: var(--ink);
	transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.hk-burger span:nth-child(1) { top: 15px; }
.hk-burger span:nth-child(2) { top: 21px; }
.hk-burger span:nth-child(3) { top: 27px; }
.hk-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hk-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hk-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Reading progress */
.hk-progress {
	position: fixed;
	top: 0;
	inset-inline: 0;
	height: 3px;
	z-index: 120;
	pointer-events: none;
}
.hk-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--brand), var(--brass));
	transition: width .1s linear;
}

/* ---------- Mobile drawer ---------- */
.hk-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(23, 18, 26, .55);
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity .35s var(--ease);
}
.hk-drawer.is-open { opacity: 1; }
.hk-drawer__panel {
	position: absolute;
	inset-block: 0;
	inset-inline-end: 0;
	width: min(360px, 88vw);
	background: var(--cream);
	padding: 1.5rem;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .4s var(--ease-out);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.hk-rtl .hk-drawer__panel { transform: translateX(-100%); }
.hk-drawer.is-open .hk-drawer__panel { transform: translateX(0); }

.hk-drawer__close {
	align-self: flex-end;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	background: transparent;
	border-radius: var(--radius);
	display: grid;
	place-items: center;
}
.hk-drawer__list { display: flex; flex-direction: column; }
.hk-drawer__list a {
	display: block;
	padding: .85rem .25rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--ink);
	border-bottom: 1px solid var(--line);
}
.hk-drawer__list .sub-menu a { padding-inline-start: 1.25rem; font-size: .95rem; font-weight: 500; color: var(--muted); }
.hk-drawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hk-drawer__tel { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--brand); }
.hk-drawer .hk-lang { border-color: var(--line); }
.hk-drawer .hk-lang__item { color: var(--ink); }

/* ---------- Hero ---------- */
.hk-hero {
	position: relative;
	min-height: min(92vh, 860px);
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}
.hk-hero__bg { position: absolute; inset: 0; }
.hk-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hk-hero__slide.is-active { opacity: 1; transform: scale(1); }
.hk-hero__slide--empty { background: linear-gradient(135deg, var(--brand-700), var(--ink)); opacity: 1; }
.hk-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(23, 18, 26, .92) 0%, rgba(23, 18, 26, .55) 45%, rgba(23, 18, 26, .35) 100%),
		linear-gradient(to var(--scrim-dir, right), rgba(23, 18, 26, .7), transparent 65%);
}
.hk-ltr .hk-hero__scrim { --scrim-dir: right; }
.hk-rtl .hk-hero__scrim { --scrim-dir: left; }

.hk-hero__inner {
	position: relative;
	z-index: 2;
	padding-block: clamp(6rem, 14vh, 9rem);
	max-width: 800px;
}
.hk-hero__title {
	font-size: clamp(2.3rem, 6vw, 4.6rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: 1.25rem;
}
.hk-hero__title em { color: var(--brass); font-style: normal; }
.hk-hero__lead {
	font-size: clamp(1.02rem, 1.6vw, 1.22rem);
	color: rgba(255, 255, 255, .85);
	max-width: 60ch;
	margin-bottom: 2rem;
}
.hk-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 3rem; }

.hk-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1.5rem, 5vw, 3.5rem);
	margin: 0;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, .2);
}
.hk-hero__facts dt {
	font-size: .74rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: .3rem;
}
body.hk-lang-ar .hk-hero__facts dt { letter-spacing: .04em; font-size: .82rem; }
.hk-hero__facts dd { margin: 0; font-weight: 700; color: #fff; }

.hk-hero__dots {
	position: absolute;
	z-index: 3;
	bottom: 2rem;
	inset-inline-end: var(--gutter);
	display: flex;
	gap: .5rem;
}
.hk-hero__dot {
	width: 30px;
	height: 3px;
	border: 0;
	padding: 0;
	background: rgba(255, 255, 255, .35);
	transition: background .3s var(--ease), width .3s var(--ease);
}
.hk-hero__dot.is-active { background: var(--brass); width: 46px; }

.hk-hero__scroll {
	position: absolute;
	z-index: 3;
	bottom: 2rem;
	inset-inline-start: var(--gutter);
	width: 26px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 999px;
	display: grid;
	place-items: start center;
	padding-top: 8px;
}
.hk-hero__scroll span {
	width: 3px;
	height: 8px;
	border-radius: 999px;
	background: #fff;
	animation: hk-scroll 1.8s var(--ease) infinite;
}
@keyframes hk-scroll {
	0% { transform: translateY(0); opacity: 1; }
	70% { transform: translateY(14px); opacity: 0; }
	100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Intro ---------- */
.hk-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}
.hk-intro__media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hk-intro__frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.hk-intro__frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform 1.1s var(--ease-out); }
.hk-intro__frame:hover img { transform: scale(1.06); }
.hk-intro__frame--offset { margin-top: clamp(2rem, 6vw, 4rem); }

.hk-intro__badge {
	position: absolute;
	inset-inline-start: 50%;
	bottom: -1.25rem;
	transform: translateX(-50%);
	background: var(--brand);
	color: #fff;
	padding: 1rem 1.4rem;
	border-radius: var(--radius);
	text-align: center;
	box-shadow: var(--shadow-lg);
	min-width: 150px;
}
.hk-rtl .hk-intro__badge { transform: translateX(50%); }
.hk-intro__badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.hk-intro__badge span { font-size: .8rem; opacity: .9; }

.hk-intro__points { display: grid; gap: 1.25rem; margin: 2rem 0; }
.hk-intro__points li { display: flex; gap: 1rem; align-items: flex-start; }
.hk-intro__icon {
	flex: none;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	background: var(--brand-100);
	color: var(--brand);
	border-radius: var(--radius);
	transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.hk-intro__points li:hover .hk-intro__icon { background: var(--brand); color: #fff; transform: translateY(-3px); }
.hk-intro__points h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.hk-intro__points p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Services ---------- */
.hk-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}
.hk-service {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .45s var(--ease-out), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.hk-service:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.hk-service__media { overflow: hidden; aspect-ratio: 4 / 3; }
.hk-service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.hk-service:hover .hk-service__media img { transform: scale(1.09); }

.hk-service__body { padding: 1.75rem; position: relative; }
.hk-service__num {
	position: absolute;
	top: 1.25rem;
	inset-inline-end: 1.5rem;
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--brand-100);
	line-height: 1;
	transition: color .4s var(--ease);
}
.hk-service:hover .hk-service__num { color: var(--brand-050); }
.hk-service__icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	background: var(--brand);
	color: #fff;
	border-radius: var(--radius);
	margin-bottom: 1.1rem;
	transition: transform .45s var(--ease-out), background .3s var(--ease);
}
.hk-service:hover .hk-service__icon { transform: rotate(-8deg) scale(1.06); background: var(--ink); }
.hk-service__title { font-size: 1.2rem; margin-bottom: .6rem; }
.hk-service__title a { transition: color .25s var(--ease); }
.hk-service:hover .hk-service__title a { color: var(--brand); }
.hk-service__text { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.hk-service__more {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-weight: 700;
	font-size: .88rem;
	color: var(--brand);
}
.hk-service__more .hk-icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.hk-service:hover .hk-service__more .hk-icon { transform: translateX(4px); }
.hk-rtl .hk-service:hover .hk-service__more .hk-icon { transform: translateX(-4px); }

/* ---------- Filters ---------- */
.hk-filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.hk-filters--center { justify-content: center; margin-bottom: 2.5rem; }
.hk-filter {
	padding: .55rem 1.1rem;
	border: 1px solid var(--line);
	background: transparent;
	border-radius: 999px;
	font-size: .88rem;
	font-weight: 600;
	color: var(--muted);
	transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.hk-filter:hover { color: var(--brand); border-color: var(--brand); }
.hk-filter.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- Project grid & cards ---------- */
.hk-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(1rem, 2vw, 1.75rem);
	grid-auto-flow: dense;
}

.hk-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--ink);
	transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.hk-card.is-hidden { display: none; }
.hk-card--tall { grid-row: span 2; }

.hk-card__link { display: block; height: 100%; }
.hk-card__media { position: relative; height: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.hk-card--tall .hk-card__media { aspect-ratio: 4 / 5; }
.hk-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.hk-card:hover .hk-card__media img { transform: scale(1.1); }

.hk-card__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(23, 18, 26, .88) 0%, rgba(23, 18, 26, .25) 45%, transparent 75%);
	opacity: .85;
	transition: opacity .45s var(--ease);
}
.hk-card:hover .hk-card__scrim { opacity: 1; }

.hk-card__body {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: 1.5rem;
	color: #fff;
	transform: translateY(8px);
	transition: transform .45s var(--ease-out);
}
.hk-card:hover .hk-card__body { transform: translateY(0); }
.hk-card__cat {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: .4rem;
}
body.hk-lang-ar .hk-card__cat { letter-spacing: .03em; font-size: .82rem; }
.hk-card__title { color: #fff; font-size: 1.15rem; }
.hk-card__meta {
	display: flex;
	align-items: center;
	gap: .35rem;
	margin: .45rem 0 0;
	font-size: .85rem;
	color: rgba(255, 255, 255, .75);
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height .45s var(--ease), opacity .35s var(--ease);
}
.hk-card__meta .hk-icon { width: 15px; height: 15px; }
.hk-card:hover .hk-card__meta { max-height: 40px; opacity: 1; }

.hk-card__go {
	position: absolute;
	top: 1rem;
	inset-inline-end: 1rem;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	background: var(--brand);
	color: #fff;
	border-radius: 50%;
	opacity: 0;
	transform: translateY(-8px) scale(.85);
	transition: opacity .35s var(--ease), transform .45s var(--ease-out);
}
.hk-card:hover .hk-card__go { opacity: 1; transform: translateY(0) scale(1); }

.hk-card__zoom {
	position: absolute;
	top: 1rem;
	inset-inline-start: 1rem;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, .35);
	color: #fff;
	border-radius: 50%;
	opacity: 0;
	transform: translateY(-8px) scale(.85);
	transition: opacity .35s var(--ease), transform .45s var(--ease-out) .05s, background .25s var(--ease);
	z-index: 3;
}
.hk-card:hover .hk-card__zoom { opacity: 1; transform: translateY(0) scale(1); }
.hk-card__zoom:hover { background: var(--brand); border-color: var(--brand); }

.hk-projects__empty { text-align: center; color: var(--muted); padding: 3rem 0; }
.hk-projects .hk-center { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- Values (parallax band) ---------- */
.hk-values { position: relative; padding-block: var(--section-y); overflow: hidden; color: #fff; }
.hk-values__bg {
	position: absolute;
	inset: -12% 0;
	background-size: cover;
	background-position: center;
	background-color: var(--brand-700);
	will-change: transform;
}
.hk-values__scrim { position: absolute; inset: 0; background: linear-gradient(140deg, rgba(74, 19, 89, .93), rgba(23, 18, 26, .9)); }
.hk-values__inner { position: relative; z-index: 2; }
.hk-values__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}
.hk-value {
	padding: 2rem 1.5rem;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius);
	backdrop-filter: blur(4px);
	transition: background .4s var(--ease), transform .4s var(--ease-out), border-color .4s var(--ease);
}
.hk-value:hover { background: rgba(255, 255, 255, .12); transform: translateY(-6px); border-color: var(--brass); }
.hk-value__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--brass);
	color: var(--ink);
	margin-bottom: 1.1rem;
	transition: transform .45s var(--ease-out);
}
.hk-value:hover .hk-value__icon { transform: rotate(-10deg) scale(1.08); }
.hk-value__title { color: #fff; font-size: 1.15rem; margin-bottom: .5rem; }
.hk-value__text { color: rgba(255, 255, 255, .75); font-size: .95rem; margin: 0; }

/* ---------- Materials ---------- */
.hk-swatches {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.hk-swatch { text-align: center; }
.hk-swatch__chip {
	display: block;
	aspect-ratio: 1;
	border-radius: var(--radius);
	background: linear-gradient(140deg, var(--c1), var(--c2));
	box-shadow: var(--shadow-sm);
	margin-bottom: .75rem;
	transition: transform .45s var(--ease-out), box-shadow .45s var(--ease);
}
.hk-swatch:hover .hk-swatch__chip { transform: translateY(-6px) scale(1.03); box-shadow: var(--shadow); }
.hk-swatch__name { font-size: .9rem; font-weight: 600; color: var(--ink-700); }

.hk-brands {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.hk-brand {
	background: var(--cream);
	padding: 1.75rem 1.25rem;
	text-align: center;
	transition: background .35s var(--ease);
}
.hk-brand:hover { background: var(--brand-050); }
.hk-brand__name {
	display: block;
	font-family: var(--font-latin);
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: .12em;
	color: var(--ink);
	margin-bottom: .3rem;
	transition: color .3s var(--ease);
}
.hk-brand:hover .hk-brand__name { color: var(--brand); }
.hk-brand__role { font-size: .85rem; color: var(--muted); }

/* ---------- Process ---------- */
.hk-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
	counter-reset: step;
}
.hk-step { position: relative; padding-top: 2.5rem; }
.hk-step::before {
	content: '';
	position: absolute;
	top: 1.1rem;
	inset-inline: 0;
	height: 1px;
	background: var(--line);
}
.hk-step::after {
	content: '';
	position: absolute;
	top: calc(1.1rem - 5px);
	inset-inline-start: 0;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--brand);
	box-shadow: 0 0 0 5px var(--brand-100);
	transition: transform .4s var(--ease-out);
}
.hk-step:hover::after { transform: scale(1.25); }
.hk-step__num {
	display: block;
	font-family: var(--font-latin);
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
	color: var(--brand-100);
	margin-bottom: .6rem;
	transition: color .35s var(--ease);
}
.hk-step:hover .hk-step__num { color: var(--brand); }
.hk-step__title { font-size: 1.12rem; margin-bottom: .5rem; }
.hk-step__text { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Stats ---------- */
.hk-stats { background: var(--ink); color: #fff; padding-block: clamp(3rem, 6vw, 4.5rem); }
.hk-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
	text-align: center;
}
.hk-stat__num {
	display: block;
	font-family: var(--font-latin);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 800;
	line-height: 1;
	color: var(--brass);
	margin-bottom: .5rem;
}
.hk-stat__label { color: rgba(255, 255, 255, .72); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.hk-carousel__nav { display: flex; gap: .5rem; }
.hk-carousel__btn {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	background: transparent;
	border-radius: 50%;
	color: var(--ink);
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.hk-carousel__btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.hk-carousel__btn[disabled] { opacity: .35; cursor: default; }
.hk-carousel__btn[disabled]:hover { background: transparent; color: var(--ink); border-color: var(--line); }

.hk-carousel {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(300px, 1fr);
	gap: clamp(1rem, 2vw, 1.75rem);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: .5rem;
}
.hk-carousel::-webkit-scrollbar { display: none; }

.hk-quote {
	scroll-snap-align: start;
	margin: 0;
	padding: 2rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	position: relative;
	transition: box-shadow .4s var(--ease), transform .4s var(--ease-out), border-color .4s var(--ease);
}
.hk-quote:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.hk-quote__mark { color: var(--brand-100); display: block; margin-bottom: 1rem; }
.hk-quote__mark .hk-icon { width: 34px; height: 34px; }
.hk-quote__text { margin: 0 0 1.5rem; font-size: 1rem; color: var(--ink-700); border: 0; padding: 0; }
.hk-quote__by { display: flex; align-items: center; gap: .85rem; }
.hk-quote__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.hk-quote__avatar--letter {
	display: grid;
	place-items: center;
	background: var(--brand-100);
	color: var(--brand);
	font-weight: 800;
	font-size: 1.2rem;
}
.hk-quote__by strong { display: block; color: var(--ink); font-size: .98rem; }
.hk-quote__by em { font-style: normal; font-size: .85rem; color: var(--muted); }

/* ---------- Contact ---------- */
.hk-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}
.hk-contact__list { display: grid; gap: 1.5rem; margin: 2rem 0; }
.hk-contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.hk-contact__icon {
	flex: none;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--brand-100);
	color: var(--brand);
	transition: background .3s var(--ease), color .3s var(--ease);
}
.hk-contact__list li:hover .hk-contact__icon { background: var(--brand); color: #fff; }
.hk-contact__list strong { display: block; color: var(--ink); margin-bottom: .15rem; }
.hk-contact__list p { margin: 0; color: var(--muted); font-size: .95rem; }
.hk-contact__list a:hover { color: var(--brand); }

.hk-contact__formwrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	box-shadow: var(--shadow);
}
.hk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hk-field { margin-bottom: 1.1rem; }
.hk-field label {
	display: block;
	margin-bottom: .4rem;
	font-size: .88rem;
	font-weight: 700;
	color: var(--ink);
}
.hk-field label span { color: var(--brand); }
.hk-field input, .hk-field select, .hk-field textarea {
	width: 100%;
	padding: .8rem 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--cream);
	font: inherit;
	font-size: .95rem;
	color: var(--ink);
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.hk-field textarea { resize: vertical; min-height: 110px; }
.hk-field input:focus, .hk-field select:focus, .hk-field textarea:focus {
	outline: 0;
	border-color: var(--brand);
	background: #fff;
	box-shadow: 0 0 0 3px var(--brand-100);
}
.hk-field input.is-invalid, .hk-field textarea.is-invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192, 57, 43, .12); }
.hk-field--hp { position: absolute; inset-inline-start: -9999px; height: 0; overflow: hidden; }

.hk-form__note { margin: .9rem 0 0; font-size: .82rem; color: var(--muted); text-align: center; }
.hk-form__status { margin: 1rem 0 0; text-align: center; font-weight: 600; font-size: .95rem; }
.hk-form__status.is-ok { color: #1faa59; }
.hk-form__status.is-error { color: #c0392b; }
.hk-form.is-sending { opacity: .6; pointer-events: none; }

/* ---------- Page hero ---------- */
.hk-pagehero {
	position: relative;
	background: var(--ink) center / cover no-repeat;
	color: #fff;
	padding-block: clamp(4rem, 11vw, 8rem);
	text-align: center;
}
.hk-pagehero--plain { background: linear-gradient(135deg, var(--brand-700), var(--ink)); }
.hk-pagehero__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23, 18, 26, .9), rgba(23, 18, 26, .6)); }
.hk-pagehero__inner { position: relative; z-index: 2; }
.hk-pagehero__title { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
.hk-pagehero__sub { margin: .85rem auto 0; max-width: 60ch; color: rgba(255, 255, 255, .8); }
.hk-crumbs {
	display: flex;
	justify-content: center;
	gap: .6rem;
	font-size: .85rem;
	color: rgba(255, 255, 255, .7);
	margin-bottom: .9rem;
}
.hk-crumbs a:hover { color: var(--brass); }

/* ---------- Prose ---------- */
.hk-prose { max-width: 78ch; margin-inline: auto; }
.hk-prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 2.25rem 0 .85rem; }
.hk-prose h3 { font-size: 1.2rem; margin: 1.75rem 0 .6rem; }
.hk-prose p { margin-bottom: 1.15rem; }
.hk-prose ul { list-style: none; margin: 0 0 1.25rem; }
.hk-prose ul li { position: relative; padding-inline-start: 1.6rem; margin-bottom: .6rem; }
.hk-prose ul li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: .68em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--brand);
}
.hk-prose ol { list-style: decimal; padding-inline-start: 1.4rem; margin-bottom: 1.25rem; }
.hk-prose img { border-radius: var(--radius); margin-block: 1.5rem; }
.hk-prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.hk-prose blockquote {
	margin: 1.75rem 0;
	padding: 1.25rem 1.5rem;
	border-inline-start: 3px solid var(--brand);
	background: var(--brand-050);
	border-radius: var(--radius);
}
.hk-prose blockquote p:last-child { margin: 0; }

/* ---------- Single project ---------- */
.hk-project__grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.hk-project__body { max-width: none; }
.hk-project__side { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.hk-project__facts { background: var(--sand); border-radius: var(--radius-lg); padding: 1.75rem; }
.hk-project__factstitle { font-size: 1.1rem; margin-bottom: 1.25rem; }
.hk-project__facts dl { margin: 0 0 1.5rem; display: grid; gap: .85rem; }
.hk-project__facts dl > div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line); }
.hk-project__facts dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.hk-project__facts dt { color: var(--muted); font-size: .9rem; }
.hk-project__facts dd { margin: 0; font-weight: 700; color: var(--ink); font-size: .92rem; text-align: end; }
.hk-project__facts .hk-btn { margin-bottom: .6rem; }

/* ---------- Pagination ---------- */
.hk-pagination { margin-top: 3rem; }
.hk-pagination .nav-links { display: flex; justify-content: center; gap: .4rem; flex-wrap: wrap; }
.hk-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding-inline: .5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-weight: 600;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.hk-pagination .page-numbers:hover,
.hk-pagination .page-numbers.current { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- 404 ---------- */
.hk-404__code {
	font-family: var(--font-latin);
	font-size: clamp(5rem, 18vw, 11rem);
	font-weight: 800;
	line-height: 1;
	color: var(--brand-100);
	margin: 0;
}

/* ---------- Footer ---------- */
.hk-footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.hk-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.hk-footer__about { margin: 1.25rem 0 1.5rem; font-size: .93rem; }
.hk-footer__social { display: flex; gap: .6rem; }
.hk-footer__social a {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
	transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.hk-footer__social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }

.hk-footer__title {
	color: #fff;
	font-size: 1.02rem;
	margin-bottom: 1.25rem;
	position: relative;
	padding-bottom: .75rem;
}
.hk-footer__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	inset-inline-start: 0;
	width: 32px;
	height: 2px;
	background: var(--brass);
}
.hk-footer__list { display: grid; gap: .6rem; }
.hk-footer__list a {
	font-size: .93rem;
	position: relative;
	display: inline-block;
	transition: color .25s var(--ease), transform .25s var(--ease);
}
.hk-footer__list a:hover { color: var(--brass); transform: translateX(4px); }
.hk-rtl .hk-footer__list a:hover { transform: translateX(-4px); }

.hk-footer__contact { display: grid; gap: 1rem; }
.hk-footer__contact li { display: flex; gap: .75rem; align-items: flex-start; font-size: .93rem; }
.hk-footer__contact .hk-icon { width: 18px; height: 18px; color: var(--brass); flex: none; margin-top: .3rem; }
.hk-footer__contact a:hover { color: var(--brass); }

.hk-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding-block: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
	justify-content: space-between;
	font-size: .86rem;
}
.hk-footer__bar p { margin: 0; }
.hk-footer__by { color: rgba(255, 255, 255, .5); }

/* ---------- Floating controls ---------- */
.hk-float-wa {
	position: fixed;
	inset-inline-start: 1.25rem;
	bottom: 1.25rem;
	z-index: 80;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	background: #1faa59;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(31, 170, 89, .4);
	transition: transform .35s var(--ease-out), background .3s var(--ease);
}
.hk-float-wa:hover { transform: scale(1.08) translateY(-2px); background: #17904a; }

.hk-totop {
	position: fixed;
	inset-inline-end: 1.25rem;
	bottom: 1.25rem;
	z-index: 80;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .35s var(--ease), transform .35s var(--ease-out), visibility .35s, background .3s var(--ease);
}
.hk-totop svg { width: 20px; height: 20px; }
.hk-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.hk-totop:hover { background: var(--ink); }

/* ---------- Lightbox ---------- */
.hk-lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	background: rgba(12, 9, 14, .94);
	opacity: 0;
	transition: opacity .3s var(--ease);
	padding: clamp(1rem, 5vw, 3rem);
}
.hk-lightbox.is-open { opacity: 1; }
.hk-lightbox__figure { margin: 0; max-width: min(1200px, 92vw); text-align: center; }
.hk-lightbox__figure img {
	max-height: 82vh;
	width: auto;
	margin-inline: auto;
	border-radius: var(--radius);
	transform: scale(.96);
	transition: transform .4s var(--ease-out);
}
.hk-lightbox.is-open .hk-lightbox__figure img { transform: scale(1); }
.hk-lightbox__figure figcaption { color: rgba(255, 255, 255, .8); margin-top: 1rem; font-size: .95rem; }

.hk-lightbox__close,
.hk-lightbox__nav {
	position: absolute;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	border-radius: 50%;
	transition: background .25s var(--ease);
}
.hk-lightbox__close:hover,
.hk-lightbox__nav:hover { background: var(--brand); border-color: var(--brand); }
.hk-lightbox__close { top: 1.5rem; inset-inline-end: 1.5rem; }
.hk-lightbox__nav--prev { inset-inline-start: 1.5rem; top: 50%; transform: translateY(-50%); }
.hk-lightbox__nav--next { inset-inline-end: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal animation ---------- */
.hk-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.hk-reveal.is-in { opacity: 1; transform: none; }
.hk-reveal[data-delay="1"] { transition-delay: .08s; }
.hk-reveal[data-delay="2"] { transition-delay: .16s; }
.hk-reveal[data-delay="3"] { transition-delay: .24s; }
.hk-reveal[data-delay="4"] { transition-delay: .32s; }
.hk-reveal[data-delay="5"] { transition-delay: .40s; }
.hk-reveal[data-delay="6"] { transition-delay: .48s; }
.hk-reveal[data-delay="7"] { transition-delay: .56s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.hk-footer__grid { grid-template-columns: 1fr 1fr; }
	.hk-project__grid { grid-template-columns: 1fr; }
	.hk-project__side { position: static; }
}

@media (max-width: 960px) {
	:root { --header-h: 72px; }
	.hk-menu, .hk-nav__cta { display: none; }
	.hk-burger { display: block; }
	.hk-intro__grid, .hk-contact__grid { grid-template-columns: 1fr; }
	.hk-intro__media { max-width: 560px; }
	.hk-topbar__tag { display: none; }
	.hk-topbar__inner { justify-content: center; }
	.hk-card--tall { grid-row: span 1; }
	.hk-card--tall .hk-card__media { aspect-ratio: 4 / 3; }
}

@media (max-width: 700px) {
	.hk-form__row { grid-template-columns: 1fr; gap: 0; }
	.hk-footer__grid { grid-template-columns: 1fr; }
	.hk-head--split { flex-direction: column; align-items: flex-start; }
	.hk-hero { min-height: auto; }
	.hk-hero__facts { gap: 1.25rem 2rem; }
	.hk-hero__scroll { display: none; }
	.hk-grid { grid-template-columns: 1fr; }
	.hk-lightbox__nav { width: 40px; height: 40px; }
	.hk-lightbox__nav--prev { inset-inline-start: .5rem; }
	.hk-lightbox__nav--next { inset-inline-end: .5rem; }
}

@media (min-width: 961px) {
	.hk-lang__full { display: none; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.hk-reveal { opacity: 1; transform: none; }
	.hk-hero__slide { transform: none; }
}

/* ---------- Print ---------- */
@media print {
	.hk-header, .hk-drawer, .hk-float-wa, .hk-totop, .hk-lightbox, .hk-progress { display: none !important; }
	body { color: #000; background: #fff; }
}
