/* ==========================================================================
   Halva Nazareth — design system
   Signature: the pointed arch (القوس المدبب) lifted from the brand mark,
   used as the frame for every piece of product photography on the site.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
	/* Colour */
	--hn-brown-900: #2b1a12;
	--hn-brown-800: #352016;
	--hn-brown-700: #43291c;
	--hn-gold-600: #b7893e;
	--hn-gold-500: #c69a50;
	--hn-gold-100: rgba(183, 137, 62, 0.18);
	--hn-cream-200: #f5efe3;
	--hn-cream-100: #fbf7f0;
	--hn-burgundy: #651e22;
	--hn-text: #261b16;
	--hn-muted: #77675e;
	--hn-line: rgba(38, 27, 22, 0.12);
	--hn-line-gold: rgba(183, 137, 62, 0.45);
	--hn-on-dark: #f2e8d8;
	--hn-on-dark-muted: rgba(242, 232, 216, 0.72);
	--hn-whatsapp: #1f8a52;

	/* Type */
	--hn-font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--hn-font-display: "Cormorant Garamond", "Times New Roman", serif;
	--hn-font-ar: "IBM Plex Sans Arabic", "Noto Kufi Arabic", system-ui, sans-serif;
	--hn-font-he: "Heebo", system-ui, sans-serif;

	--hn-step--1: clamp(0.8rem, 0.77rem + 0.15vw, 0.875rem);
	--hn-step-0: clamp(0.975rem, 0.94rem + 0.18vw, 1.0625rem);
	--hn-step-1: clamp(1.1rem, 1.04rem + 0.3vw, 1.25rem);
	--hn-step-2: clamp(1.35rem, 1.22rem + 0.62vw, 1.7rem);
	--hn-step-3: clamp(1.7rem, 1.44rem + 1.2vw, 2.4rem);
	--hn-step-4: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem);

	/* Space & shape */
	--hn-container: 1280px;
	--hn-gutter: clamp(1.15rem, 4vw, 2.5rem);
	--hn-section-y: clamp(3.25rem, 7vw, 7.5rem);
	--hn-radius-sm: 4px;
	--hn-radius: 8px;
	--hn-radius-lg: 14px;
	--hn-shadow-sm: 0 1px 2px rgba(43, 26, 18, 0.06), 0 6px 18px rgba(43, 26, 18, 0.05);
	--hn-shadow: 0 2px 6px rgba(43, 26, 18, 0.07), 0 18px 44px rgba(43, 26, 18, 0.09);
	--hn-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--hn-dur: 320ms;
	--hn-header-h: 68px;

	/* The signature arch, as a reusable shape */
	--hn-arch-shape: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 130" preserveAspectRatio="none"><path d="M0,130 L0,67.08 A70,70 0 0 1 50,0 A70,70 0 0 1 100,67.08 L100,130 Z" fill="%23000"/></svg>');
	--hn-arch-outline: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 130" preserveAspectRatio="none"><path d="M0,130 L0,67.08 A70,70 0 0 1 50,0 A70,70 0 0 1 100,67.08 L100,130" fill="none" stroke="%23b7893e" stroke-width="1" vector-effect="non-scaling-stroke"/></svg>');
}

@media (min-width: 1024px) {
	:root {
		--hn-header-h: 84px;
	}
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */

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

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

body {
	margin: 0;
	background: var(--hn-cream-100);
	color: var(--hn-text);
	font-family: var(--hn-font-body);
	font-size: var(--hn-step-0);
	line-height: 1.75;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html[lang^="ar"] body,
body.rtl:not([lang^="he"]) {
	font-family: var(--hn-font-ar);
	line-height: 1.9;
}

html[lang^="he"] body {
	font-family: var(--hn-font-he);
	line-height: 1.8;
}

img,
svg,
video,
canvas {
	max-width: 100%;
	height: auto;
	display: block;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

a {
	color: inherit;
	text-decoration-color: var(--hn-line-gold);
	text-underline-offset: 0.22em;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.6em;
	line-height: 1.22;
	font-weight: 600;
	text-wrap: balance;
}

p {
	margin: 0 0 1.1em;
	text-wrap: pretty;
}

p:last-child {
	margin-bottom: 0;
}

ul,
ol {
	margin: 0 0 1.1em;
	padding-inline-start: 1.35em;
}

figure {
	margin: 0;
}

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

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.hn-skip-link {
	position: absolute;
	inset-inline-start: 1rem;
	top: -100px;
	z-index: 1200;
	padding: 0.7rem 1.2rem;
	background: var(--hn-brown-900);
	color: var(--hn-cream-100);
	border-radius: var(--hn-radius-sm);
	text-decoration: none;
	transition: top 180ms var(--hn-ease);
}

.hn-skip-link:focus {
	top: 1rem;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.hn-container {
	width: 100%;
	max-width: var(--hn-container);
	margin-inline: auto;
	padding-inline: var(--hn-gutter);
}

.hn-container--narrow {
	max-width: 820px;
}

.hn-section {
	padding-block: var(--hn-section-y);
	position: relative;
}

.hn-section--cream {
	background: var(--hn-cream-200);
}

.hn-section--light {
	background: var(--hn-cream-100);
}

.hn-section--dark {
	background: var(--hn-brown-900);
	color: var(--hn-on-dark);
}

.hn-section--dark h2,
.hn-section--dark h3 {
	color: var(--hn-cream-100);
}

.hn-section--tight {
	padding-block: calc(var(--hn-section-y) * 0.6);
}

.hn-grid {
	display: grid;
	gap: clamp(1rem, 2.6vw, 2rem);
}

.hn-grid--2 {
	grid-template-columns: 1fr;
}

.hn-grid--3,
.hn-grid--4 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 700px) {
	.hn-grid--2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */

.hn-eyebrow {
	margin: 0 0 0.85rem;
	font-size: var(--hn-step--1);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hn-gold-600);
	font-weight: 500;
}

html[lang^="ar"] .hn-eyebrow,
html[lang^="he"] .hn-eyebrow {
	letter-spacing: 0.06em;
	text-transform: none;
}

.hn-section--dark .hn-eyebrow {
	color: var(--hn-gold-500);
}

.hn-section-head {
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hn-section-head--center {
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
}

.hn-section-title {
	font-size: var(--hn-step-3);
	margin: 0;
	font-weight: 600;
	letter-spacing: -0.01em;
}

html[lang^="ar"] .hn-section-title {
	letter-spacing: 0;
	font-weight: 700;
}

.hn-section-intro {
	margin: 1rem 0 0;
	color: var(--hn-muted);
	font-size: var(--hn-step-1);
}

.hn-section--dark .hn-section-intro {
	color: var(--hn-on-dark-muted);
}

/* Latin editorial display — never applied to Arabic or Hebrew */
.hn-display-en {
	font-family: var(--hn-font-display);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.hn-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	margin: 1.1rem auto 0;
	max-width: 220px;
	color: var(--hn-gold-600);
}

.hn-divider__rule {
	flex: 1;
	height: 1px;
	background: linear-gradient(to var(--hn-dir-end, right), transparent, var(--hn-line-gold));
}

.hn-divider__rule:last-child {
	background: linear-gradient(to var(--hn-dir-start, left), transparent, var(--hn-line-gold));
}

.hn-divider__star {
	display: inline-flex;
	opacity: 0.85;
}

.hn-divider__star svg {
	fill: currentColor;
	stroke: none;
}

.hn-section--dark .hn-divider {
	color: var(--hn-gold-500);
}

/* --------------------------------------------------------------------------
   5. The arch (signature)
   -------------------------------------------------------------------------- */

.hn-arch {
	position: relative;
	display: block;
	overflow: hidden;
	-webkit-mask-image: var(--hn-arch-shape);
	mask-image: var(--hn-arch-shape);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background: var(--hn-cream-200);
}

/* Browsers without mask support still get a graceful rounded top */
@supports not ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
	.hn-arch {
		border-start-start-radius: 48% 22%;
		border-start-end-radius: 48% 22%;
	}
}

.hn-arch-frame {
	position: relative;
	display: block;
}

.hn-arch-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--hn-arch-outline);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	pointer-events: none;
	opacity: 0.9;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.hn-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 48px;
	padding: 0.75rem 1.65rem;
	border: 1px solid transparent;
	border-radius: var(--hn-radius-sm);
	font-size: var(--hn-step-0);
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--hn-dur) var(--hn-ease),
		color var(--hn-dur) var(--hn-ease),
		border-color var(--hn-dur) var(--hn-ease),
		transform var(--hn-dur) var(--hn-ease);
}

.hn-btn:hover {
	transform: translateY(-1px);
}

.hn-btn--primary {
	background: var(--hn-brown-900);
	color: var(--hn-cream-100);
	border-color: var(--hn-brown-900);
}

.hn-btn--primary:hover {
	background: var(--hn-brown-700);
	border-color: var(--hn-gold-600);
}

.hn-btn--secondary {
	background: transparent;
	color: var(--hn-text);
	border-color: rgba(43, 26, 18, 0.35);
}

.hn-btn--secondary:hover {
	border-color: var(--hn-gold-600);
	color: var(--hn-brown-900);
	background: rgba(183, 137, 62, 0.08);
}

.hn-section--dark .hn-btn--secondary,
.hn-hero .hn-btn--secondary {
	color: var(--hn-cream-100);
	border-color: rgba(242, 232, 216, 0.45);
}

.hn-section--dark .hn-btn--secondary:hover,
.hn-hero .hn-btn--secondary:hover {
	border-color: var(--hn-gold-500);
	background: rgba(198, 154, 80, 0.14);
	color: var(--hn-cream-100);
}

.hn-btn--whatsapp {
	background: var(--hn-brown-900);
	color: var(--hn-cream-100);
	border-color: var(--hn-brown-900);
}

.hn-btn--whatsapp svg {
	color: var(--hn-gold-500);
}

.hn-btn--whatsapp:hover {
	background: var(--hn-whatsapp);
	border-color: var(--hn-whatsapp);
}

.hn-btn--whatsapp:hover svg {
	color: #fff;
}

.hn-btn--light {
	background: var(--hn-cream-100);
	color: var(--hn-brown-900);
	border-color: var(--hn-cream-100);
}

.hn-btn--light:hover {
	background: var(--hn-gold-500);
	border-color: var(--hn-gold-500);
	color: var(--hn-brown-900);
}

.hn-btn--sm {
	min-height: 42px;
	padding: 0.5rem 1.1rem;
	font-size: var(--hn-step--1);
}

.hn-btn--block {
	width: 100%;
}

.hn-btn[aria-disabled="true"] {
	opacity: 0.55;
	pointer-events: none;
}

.hn-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.hn-actions--center {
	justify-content: center;
}

/* Gold underline reveal for text links */
.hn-link {
	position: relative;
	text-decoration: none;
	color: inherit;
	padding-bottom: 2px;
}

.hn-link::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--hn-gold-600);
	transform: scaleX(0);
	transform-origin: var(--hn-origin, left);
	transition: transform var(--hn-dur) var(--hn-ease);
}

.hn-link:hover::after,
.hn-link:focus-visible::after {
	transform: scaleX(1);
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */

.hn-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: var(--hn-cream-100);
	border-bottom: 1px solid var(--hn-line);
	transition: background-color var(--hn-dur) var(--hn-ease),
		border-color var(--hn-dur) var(--hn-ease);
}

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

.hn-brand {
	margin: 0;
	font-size: 1rem;
	line-height: 1;
}

.hn-brand__link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
}

.hn-brand__logo {
	width: auto;
	height: 46px;
	max-height: 46px;
	object-fit: contain;
	transition: height var(--hn-dur) var(--hn-ease);
}

@media (min-width: 1024px) {
	.hn-brand__logo {
		height: 60px;
		max-height: 60px;
	}
}

.hn-brand__text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.hn-brand__name {
	font-size: var(--hn-step-1);
	font-weight: 700;
	letter-spacing: -0.01em;
}

.hn-brand__since {
	font-family: var(--hn-font-display);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--hn-gold-600);
}

.hn-nav-desktop {
	display: none;
}

@media (min-width: 1100px) {
	.hn-nav-desktop {
		display: block;
	}
}

.hn-nav-desktop ul {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.hn-nav-desktop a {
	position: relative;
	display: inline-block;
	padding: 0.4rem 0;
	font-size: var(--hn-step-0);
	text-decoration: none;
	white-space: nowrap;
}

.hn-nav-desktop a::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--hn-gold-600);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--hn-dur) var(--hn-ease);
}

.hn-nav-desktop a:hover::after,
.hn-nav-desktop a:focus-visible::after,
.hn-nav-desktop .current-menu-item > a::after,
.hn-nav-desktop .current_page_item > a::after {
	transform: scaleX(1);
}

.hn-header__actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.hn-header__cta {
	display: none;
}

@media (min-width: 1100px) {
	.hn-header__cta {
		display: inline-flex;
	}
}

.hn-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--hn-line);
	border-radius: var(--hn-radius-sm);
	cursor: pointer;
	transition: border-color var(--hn-dur) var(--hn-ease), background-color var(--hn-dur) var(--hn-ease);
}

.hn-icon-btn:hover {
	border-color: var(--hn-gold-600);
	background: rgba(183, 137, 62, 0.08);
}

.hn-icon-btn--whatsapp svg {
	color: var(--hn-brown-900);
}

@media (min-width: 1100px) {
	.hn-icon-btn--menu {
		display: none;
	}

	.hn-icon-btn--whatsapp {
		display: none;
	}
}

/* Language switcher */
.hn-lang__list {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--hn-step--1);
	letter-spacing: 0.04em;
}

.hn-lang__item + .hn-lang__item {
	padding-inline-start: 0.55rem;
	border-inline-start: 1px solid var(--hn-line);
}

.hn-lang a {
	text-decoration: none;
	color: var(--hn-muted);
	padding: 0.25rem;
}

.hn-lang a:hover {
	color: var(--hn-brown-900);
}

.hn-lang__item.is-current a {
	color: var(--hn-gold-600);
	font-weight: 600;
}

.hn-lang--header {
	display: none;
}

@media (min-width: 1100px) {
	.hn-lang--header {
		display: block;
	}
}

.hn-lang--footer a,
.hn-lang--mobile a {
	color: var(--hn-on-dark-muted);
}

.hn-lang--footer .hn-lang__item + .hn-lang__item,
.hn-lang--mobile .hn-lang__item + .hn-lang__item {
	border-inline-start-color: rgba(242, 232, 216, 0.25);
}

/* --------------------------------------------------------------------------
   8. Mobile drawer
   Server-rendered, [hidden] by default, no blur without content.
   -------------------------------------------------------------------------- */

.hn-drawer {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	justify-content: flex-end;
}

.hn-drawer[hidden] {
	display: none;
}

.hn-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(38, 27, 22, 0.55);
	border: 0;
	padding: 0;
	cursor: pointer;
	opacity: 0;
	transition: opacity var(--hn-dur) var(--hn-ease);
}

.hn-drawer__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(94vw, 400px);
	max-height: 100%;
	margin-inline-start: auto;
	padding: 1rem var(--hn-gutter) calc(1.5rem + env(safe-area-inset-bottom));
	background: var(--hn-brown-900);
	color: var(--hn-on-dark);
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	transform: translateX(100%);
	transition: transform var(--hn-dur) var(--hn-ease);
}

.hn-rtl .hn-drawer__panel {
	transform: translateX(-100%);
}

.hn-drawer.is-open .hn-drawer__backdrop {
	opacity: 1;
}

.hn-drawer.is-open .hn-drawer__panel {
	transform: translateX(0);
}

.hn-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(242, 232, 216, 0.18);
}

.hn-drawer__close {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid rgba(242, 232, 216, 0.3);
	border-radius: var(--hn-radius-sm);
	color: inherit;
	cursor: pointer;
}

.hn-drawer__nav ul {
	list-style: none;
	margin: 1.25rem 0;
	padding: 0;
}

.hn-drawer__nav li + li {
	border-top: 1px solid rgba(242, 232, 216, 0.12);
}

.hn-drawer__nav a {
	display: block;
	padding: 0.95rem 0;
	min-height: 48px;
	font-size: var(--hn-step-1);
	text-decoration: none;
	color: var(--hn-on-dark);
}

.hn-drawer__nav a:hover,
.hn-drawer__nav .current-menu-item > a {
	color: var(--hn-gold-500);
}

.hn-drawer__nav .sub-menu {
	margin: 0 0 0.5rem;
	padding-inline-start: 1rem;
}

.hn-drawer__nav .sub-menu a {
	font-size: var(--hn-step-0);
	color: var(--hn-on-dark-muted);
	padding: 0.6rem 0;
}

.hn-drawer__foot {
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(242, 232, 216, 0.18);
	display: grid;
	gap: 1rem;
}

.hn-drawer__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.hn-drawer__social {
	display: inline-flex;
	gap: 0.5rem;
}

.hn-drawer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(242, 232, 216, 0.3);
	border-radius: var(--hn-radius-sm);
	color: var(--hn-on-dark);
}

body.hn-menu-open {
	overflow: hidden;
	touch-action: none;
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */

.hn-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: min(88svh, 760px);
	padding-block: clamp(3.5rem, 12vh, 8rem);
	background: var(--hn-brown-900);
	color: var(--hn-cream-100);
	isolation: isolate;
	overflow: hidden;
}

.hn-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hn-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hn-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(to top, rgba(29, 17, 11, 0.94) 0%, rgba(29, 17, 11, 0.72) 42%, rgba(29, 17, 11, 0.38) 100%);
}

.hn-hero__inner {
	max-width: 640px;
}

.hn-hero__label {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 1.1rem;
	padding: 0.35rem 0.95rem;
	border: 1px solid var(--hn-line-gold);
	border-radius: 999px;
	font-size: var(--hn-step--1);
	letter-spacing: 0.08em;
	color: var(--hn-gold-500);
	background: rgba(43, 26, 18, 0.35);
}

.hn-hero__title {
	margin: 0;
	font-size: var(--hn-step-4);
	font-weight: 700;
	line-height: 1.08;
	color: var(--hn-cream-100);
	text-shadow: 0 2px 24px rgba(20, 11, 6, 0.5);
}

.hn-hero__tagline {
	margin: 0.6rem 0 0;
	font-size: var(--hn-step-2);
	color: var(--hn-gold-500);
	font-weight: 500;
}

.hn-hero__text {
	margin: 1.15rem 0 0;
	max-width: 46ch;
	color: rgba(245, 239, 227, 0.88);
	font-size: var(--hn-step-1);
}

.hn-hero__badge {
	display: none;
}

@media (min-width: 1024px) {
	.hn-hero__badge {
		position: absolute;
		inset-inline-end: var(--hn-gutter);
		top: clamp(2rem, 8vh, 5rem);
		display: grid;
		place-items: center;
		width: 132px;
		height: 132px;
		border: 1px solid var(--hn-line-gold);
		border-radius: 50%;
		text-align: center;
		color: var(--hn-gold-500);
		font-family: var(--hn-font-display);
		font-size: 0.95rem;
		letter-spacing: 0.2em;
		line-height: 1.5;
		background: rgba(29, 17, 11, 0.4);
		backdrop-filter: none;
	}
}

.hn-hero__scroll {
	position: absolute;
	inset-inline-start: 50%;
	bottom: 1.1rem;
	transform: translateX(-50%);
	width: 1px;
	height: 42px;
	background: linear-gradient(to bottom, transparent, var(--hn-gold-500));
	opacity: 0.6;
}

/* Mobile hero: closely match the approved reference with a full mobile artwork,
   an overlapping premium brown panel, centered typography, and stacked CTA buttons. */
@media (max-width: 767px) {
	.hn-hero {
		display: block;
		min-height: 0;
		padding: 0;
		background: transparent;
		color: var(--hn-cream-100);
		overflow: visible;
	}

	.hn-hero__media {
		position: relative;
		inset: auto;
		z-index: 0;
		width: 100%;
		background: var(--hn-cream-200);
		overflow: hidden;
	}

	.hn-hero__media img {
		display: block;
		width: 100%;
		height: auto;
		max-height: none;
		object-fit: contain;
		object-position: center;
	}

	.hn-hero::after {
		display: none;
	}

	.hn-hero__inner {
		position: relative;
		z-index: 1;
		max-width: none;
		margin-top: -1.05rem;
		padding: 0 1.2rem 2.15rem;
		text-align: center;
	}

	.hn-hero__inner::before {
		content: "";
		position: absolute;
		inset-inline: 0;
		top: 0;
		bottom: 0;
		z-index: -2;
		background:
			radial-gradient(circle at 50% 4%, rgba(198, 154, 80, 0.15), transparent 24%),
			linear-gradient(90deg, #36170d 0%, #2a1109 52%, #36170d 100%);
		border-top-left-radius: 30px 18px;
		border-top-right-radius: 30px 18px;
		box-shadow: 0 -1px 0 rgba(198, 154, 80, 0.16), 0 18px 34px rgba(20, 11, 6, 0.18);
	}

	.hn-hero__inner::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: -20px;
		height: 38px;
		z-index: -1;
		background: linear-gradient(90deg, #36170d 0%, #2a1109 52%, #36170d 100%);
		border-top-left-radius: 50% 90%;
		border-top-right-radius: 50% 90%;
	}

	.hn-hero__label {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		gap: 0.55rem;
		margin: -0.95rem auto 1.2rem;
		padding: 0.58rem 1.45rem;
		border-color: rgba(198, 154, 80, 0.6);
		background: #3b190e;
		color: #ddb66e;
		box-shadow: 0 10px 24px rgba(20, 11, 6, 0.24);
	}

	.hn-hero__title {
		font-size: clamp(2.6rem, 12vw, 4.15rem);
		line-height: 1.03;
		text-shadow: 0 6px 20px rgba(20, 11, 6, 0.28);
	}

	.hn-hero__tagline {
		margin-top: 0.65rem;
		font-size: clamp(1.65rem, 8.4vw, 2.5rem);
		line-height: 1.18;
		font-weight: 600;
		color: #d5a858;
	}

	.hn-hero__text {
		max-width: 19ch;
		margin: 1rem auto 0;
		font-size: clamp(1.18rem, 5vw, 1.55rem);
		line-height: 1.68;
		color: rgba(245, 239, 227, 0.96);
	}

	.hn-hero .hn-actions {
		flex-direction: column;
		gap: 0.8rem;
		margin-top: 1.7rem;
	}

	.hn-hero .hn-btn {
		width: 100%;
		min-height: 58px;
		padding-inline: 1.25rem;
		border-radius: 18px;
		font-size: 1.16rem;
		font-weight: 700;
		justify-content: center;
		gap: 0.7rem;
	}

	.hn-hero .hn-btn svg {
		width: 18px;
		height: 18px;
		flex: none;
	}

	.hn-hero .hn-btn--primary {
		background: linear-gradient(180deg, #deb56c 0%, #b98739 100%);
		color: #28140d;
		border-color: rgba(255, 234, 193, 0.26);
		box-shadow: inset 0 1px 0 rgba(255, 247, 228, 0.42), 0 10px 18px rgba(20, 11, 6, 0.16);
	}

	.hn-hero .hn-btn--primary svg {
		color: #28140d;
	}

	.hn-hero .hn-btn--secondary {
		background: transparent;
		color: var(--hn-cream-100);
		border-color: rgba(198, 154, 80, 0.62);
	}

	.hn-hero .hn-btn--secondary svg {
		color: #d5a858;
	}

	.hn-hero .hn-btn--secondary:hover,
	.hn-hero .hn-btn--secondary:focus-visible {
		background: rgba(198, 154, 80, 0.12);
		border-color: var(--hn-gold-500);
	}

	.hn-hero__badge,
	.hn-hero__scroll {
		display: none;
	}
}


/* --------------------------------------------------------------------------
   10. Trust strip
   -------------------------------------------------------------------------- */

.hn-trust {
	background: var(--hn-cream-200);
	border-bottom: 1px solid var(--hn-line);
	padding-block: clamp(2rem, 4vw, 3.25rem);
}

.hn-trust__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2.5rem);
}

@media (min-width: 900px) {
	.hn-trust__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.hn-trust__item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
}

@media (min-width: 900px) {
	.hn-trust__item + .hn-trust__item {
		border-inline-start: 1px solid var(--hn-line-gold);
		padding-inline-start: clamp(1.25rem, 2.5vw, 2.5rem);
	}
}

.hn-trust__icon {
	color: var(--hn-gold-600);
	margin-top: 2px;
}

.hn-trust__title {
	margin: 0;
	font-size: var(--hn-step-0);
	font-weight: 600;
}

.hn-trust__text {
	margin: 0.2rem 0 0;
	font-size: var(--hn-step--1);
	color: var(--hn-muted);
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Category cards
   -------------------------------------------------------------------------- */

.hn-cat-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.85rem, 2.4vw, 1.75rem);
}

@media (min-width: 900px) {
	.hn-cat-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.hn-cat-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: transparent;
}

.hn-cat-card__media {
	aspect-ratio: 4 / 5;
	background: var(--hn-cream-200);
}

.hn-cat-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--hn-ease);
}

.hn-cat-card:hover .hn-cat-card__media img,
.hn-cat-card:focus-visible .hn-cat-card__media img {
	transform: scale(1.045);
}

.hn-cat-card__body {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 0.35rem 0.75rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--hn-line-gold);
	margin-top: 0.85rem;
}

.hn-cat-card__title {
	grid-column: 1;
	font-size: var(--hn-step-1);
	font-weight: 600;
}

.hn-cat-card__count {
	grid-column: 1;
	grid-row: 2;
	font-size: var(--hn-step--1);
	color: var(--hn-muted);
}

.hn-cat-card__go {
	grid-column: 2;
	grid-row: 1 / span 2;
	color: var(--hn-gold-600);
	transition: transform var(--hn-dur) var(--hn-ease);
}

.hn-cat-card:hover .hn-cat-card__go {
	transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   12. Heritage timeline
   -------------------------------------------------------------------------- */

.hn-story {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 900px) {
	.hn-story {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}
}

.hn-story__media {
	position: relative;
}

.hn-story__media .hn-arch {
	aspect-ratio: 3 / 4;
}

.hn-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hn-story__year {
	position: absolute;
	inset-block-end: -18px;
	inset-inline-start: -12px;
	padding: 0.6rem 1.4rem;
	background: var(--hn-brown-900);
	color: var(--hn-gold-500);
	font-family: var(--hn-font-display);
	font-size: 1.5rem;
	letter-spacing: 0.14em;
	border: 1px solid var(--hn-line-gold);
}

.hn-timeline {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	position: relative;
}

.hn-timeline::before {
	content: "";
	position: absolute;
	inset-inline-start: 7px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: linear-gradient(to bottom, var(--hn-gold-600), rgba(183, 137, 62, 0.15));
}

.hn-timeline__item {
	position: relative;
	padding-inline-start: 2.1rem;
	padding-bottom: 1.75rem;
}

.hn-timeline__item:last-child {
	padding-bottom: 0;
}

.hn-timeline__item::before {
	content: "";
	position: absolute;
	inset-inline-start: 3px;
	top: 9px;
	width: 9px;
	height: 9px;
	border: 1px solid var(--hn-gold-600);
	background: var(--hn-cream-100);
	transform: rotate(45deg);
}

.hn-section--cream .hn-timeline__item::before {
	background: var(--hn-cream-200);
}

.hn-timeline__label {
	display: block;
	font-family: var(--hn-font-display);
	font-size: 1.2rem;
	letter-spacing: 0.12em;
	color: var(--hn-gold-600);
	margin-bottom: 0.15rem;
}

html[lang^="ar"] .hn-timeline__label {
	font-family: var(--hn-font-ar);
	font-size: var(--hn-step-1);
	letter-spacing: 0;
	font-weight: 600;
}

.hn-timeline__text {
	margin: 0;
	color: var(--hn-muted);
}

/* --------------------------------------------------------------------------
   13. Craft split
   -------------------------------------------------------------------------- */

.hn-craft {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
}

@media (min-width: 900px) {
	.hn-craft {
		grid-template-columns: 1.05fr 0.95fr;
	}

	.hn-craft--flip .hn-craft__media {
		order: 2;
	}
}

.hn-craft__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--hn-radius);
}

.hn-craft__quote {
	font-size: var(--hn-step-2);
	line-height: 1.45;
	font-weight: 500;
	margin: 0 0 1rem;
}

.hn-craft__list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.hn-craft__list li {
	display: flex;
	gap: 0.6rem;
	align-items: center;
	color: var(--hn-muted);
}

.hn-craft__list svg {
	color: var(--hn-gold-600);
	flex: none;
}

/* --------------------------------------------------------------------------
   14. Wholesale / B2B
   -------------------------------------------------------------------------- */

.hn-b2b {
	position: relative;
	background: var(--hn-brown-900);
	color: var(--hn-on-dark);
	overflow: hidden;
	isolation: isolate;
}

.hn-b2b__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hn-b2b__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.28;
}

.hn-b2b::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to var(--hn-dir-end, right), rgba(29, 17, 11, 0.96), rgba(29, 17, 11, 0.72));
}

.hn-b2b__inner {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: center;
}

@media (min-width: 900px) {
	.hn-b2b__inner {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.hn-b2b__audiences {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.hn-b2b__audiences li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(198, 154, 80, 0.35);
	border-radius: var(--hn-radius-sm);
	background: rgba(53, 32, 22, 0.5);
	font-size: var(--hn-step-0);
}

.hn-b2b__audiences svg {
	color: var(--hn-gold-500);
	flex: none;
}

.hn-b2b__card {
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid rgba(198, 154, 80, 0.4);
	background: rgba(43, 26, 18, 0.72);
	border-radius: var(--hn-radius);
	display: grid;
	gap: 1rem;
	justify-items: center;
	text-align: center;
}

.hn-b2b__card h3 {
	margin: 0;
	font-size: var(--hn-step-1);
}

.hn-b2b__card p {
	color: var(--hn-on-dark-muted);
	font-size: var(--hn-step--1);
	margin: 0;
}

/* --------------------------------------------------------------------------
   15. Worldwide delivery
   -------------------------------------------------------------------------- */

.hn-world {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: center;
}

@media (min-width: 900px) {
	.hn-world {
		grid-template-columns: 0.95fr 1.05fr;
	}
}

.hn-world__map {
	position: relative;
	color: var(--hn-gold-600);
}

.hn-world__map svg {
	width: 100%;
	height: auto;
}

.hn-world__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
	border-radius: var(--hn-radius);
	box-shadow: var(--hn-shadow-soft);
}

.hn-world__routes path {
	stroke-dasharray: 3 5;
	opacity: 0.75;
}

.hn-world__pin {
	fill: var(--hn-burgundy);
}

/* --------------------------------------------------------------------------
   16. Instagram
   -------------------------------------------------------------------------- */

.hn-ig__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.6rem;
}

@media (min-width: 700px) {
	.hn-ig__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.hn-ig__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.hn-ig__item {
	position: relative;
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: var(--hn-radius-sm);
	background: var(--hn-cream-200);
}

.hn-ig__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--hn-ease);
}

.hn-ig__item:hover img {
	transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   17. Contact & QR
   -------------------------------------------------------------------------- */

.hn-contact {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.hn-contact {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.hn-contact__list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}

.hn-contact__list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hn-contact__list svg {
	color: var(--hn-gold-600);
	flex: none;
}

.hn-contact__list a {
	text-decoration: none;
}

.hn-contact__list a:hover {
	color: var(--hn-gold-600);
}

.hn-qr {
	display: none;
	margin: 0;
	text-align: center;
}

@media (min-width: 900px) {
	.hn-qr {
		display: block;
		justify-self: center;
	}
}

.hn-qr__frame {
	display: inline-block;
	padding: 14px;
	background: #fff;
	border: 1px solid var(--hn-line-gold);
	border-radius: var(--hn-radius);
	box-shadow: var(--hn-shadow-sm);
}

.hn-qr__frame img {
	width: 180px;
	height: 180px;
	object-fit: contain;
}

.hn-qr__caption {
	margin-top: 0.85rem;
	font-size: var(--hn-step--1);
	color: var(--hn-muted);
	max-width: 22ch;
	margin-inline: auto;
}

.hn-section--dark .hn-qr__caption {
	color: var(--hn-on-dark-muted);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */

.hn-footer {
	background: var(--hn-brown-900);
	color: var(--hn-on-dark);
	padding-block: clamp(2.5rem, 6vw, 5rem) 0;
}

.hn-footer a {
	color: var(--hn-on-dark-muted);
	text-decoration: none;
}

.hn-footer a:hover {
	color: var(--hn-gold-500);
}

.hn-footer__grid {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 760px) {
	.hn-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

@media (min-width: 1100px) {
	.hn-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr 0.9fr;
	}
}

.hn-footer__brand .hn-brand__name,
.hn-footer__brand .hn-brand__link {
	color: var(--hn-cream-100);
}

.hn-footer__tagline {
	margin: 0.9rem 0 0;
	color: var(--hn-on-dark-muted);
	max-width: 40ch;
}

.hn-footer__title {
	margin: 0 0 1rem;
	font-size: var(--hn-step--1);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hn-gold-500);
	font-weight: 600;
}

html[lang^="ar"] .hn-footer__title,
html[lang^="he"] .hn-footer__title {
	text-transform: none;
	letter-spacing: 0.04em;
	font-size: var(--hn-step-0);
}

.hn-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.hn-footer__menu a {
	display: inline-block;
	min-height: 32px;
	padding-block: 0.15rem;
}

.hn-footer__social {
	display: flex;
	gap: 0.6rem;
	margin-top: 1.1rem;
}

.hn-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(242, 232, 216, 0.28);
	border-radius: var(--hn-radius-sm);
	color: var(--hn-on-dark);
}

.hn-footer__social a:hover {
	border-color: var(--hn-gold-500);
}

.hn-footer .hn-qr {
	display: none;
}

@media (min-width: 1100px) {
	.hn-footer .hn-qr {
		display: block;
		justify-self: start;
	}

	.hn-footer .hn-qr__frame img {
		width: 128px;
		height: 128px;
	}
}

.hn-footer__bottom {
	margin-top: clamp(2rem, 4vw, 3.25rem);
	padding-block: 1.35rem;
	border-top: 1px solid rgba(242, 232, 216, 0.14);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	align-items: center;
	justify-content: space-between;
	font-size: var(--hn-step--1);
	color: var(--hn-on-dark-muted);
}

.hn-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* --------------------------------------------------------------------------
   19. Floating & sticky WhatsApp
   -------------------------------------------------------------------------- */

.hn-float-wa {
	position: fixed;
	inset-inline-end: clamp(0.9rem, 3vw, 1.75rem);
	bottom: calc(clamp(0.9rem, 3vw, 1.75rem) + env(safe-area-inset-bottom));
	z-index: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--hn-brown-900);
	color: var(--hn-cream-100);
	border: 1px solid var(--hn-gold-600);
	box-shadow: var(--hn-shadow);
	transition: background-color var(--hn-dur) var(--hn-ease), transform var(--hn-dur) var(--hn-ease);
}

.hn-float-wa:hover {
	background: var(--hn-whatsapp);
	border-color: var(--hn-whatsapp);
	transform: translateY(-2px);
}

body.hn-has-sticky-cta .hn-float-wa {
	display: none;
}

@media (min-width: 900px) {
	body.hn-has-sticky-cta .hn-float-wa {
		display: inline-flex;
	}
}

/* --------------------------------------------------------------------------
   20. Forms
   -------------------------------------------------------------------------- */

.hn-form-wrap {
	background: var(--hn-cream-100);
	border: 1px solid var(--hn-line);
	border-radius: var(--hn-radius);
	padding: clamp(1.25rem, 3vw, 2.5rem);
	box-shadow: var(--hn-shadow-sm);
}

.hn-section--cream .hn-form-wrap {
	background: #fff;
}

.hn-form__grid {
	display: grid;
	gap: 1rem 1.25rem;
}

@media (min-width: 700px) {
	.hn-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hn-field--wide {
		grid-column: 1 / -1;
	}
}

.hn-field {
	margin: 0;
	display: grid;
	gap: 0.4rem;
}

.hn-field label {
	font-size: var(--hn-step--1);
	font-weight: 600;
	color: var(--hn-text);
}

.hn-required {
	color: var(--hn-burgundy);
}

.hn-field input,
.hn-field select,
.hn-field textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.9rem;
	background: #fff;
	border: 1px solid rgba(38, 27, 22, 0.2);
	border-radius: var(--hn-radius-sm);
	transition: border-color 180ms var(--hn-ease), box-shadow 180ms var(--hn-ease);
}

.hn-field textarea {
	min-height: 120px;
	resize: vertical;
}

.hn-field input:focus,
.hn-field select:focus,
.hn-field textarea:focus {
	border-color: var(--hn-gold-600);
	box-shadow: 0 0 0 3px var(--hn-gold-100);
	outline: none;
}

.hn-field--error input,
.hn-field--error select,
.hn-field--error textarea {
	border-color: var(--hn-burgundy);
}

.hn-field__error {
	font-size: var(--hn-step--1);
	color: var(--hn-burgundy);
	font-weight: 500;
}

.hn-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.hn-honeypot {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.hn-alert {
	display: grid;
	gap: 0.25rem;
	padding: 1rem 1.15rem;
	margin-bottom: 1.5rem;
	border-inline-start: 3px solid var(--hn-gold-600);
	background: rgba(183, 137, 62, 0.1);
	border-radius: var(--hn-radius-sm);
}

.hn-alert--success {
	border-inline-start-color: #2f7d4f;
	background: rgba(47, 125, 79, 0.1);
}

.hn-alert--error {
	border-inline-start-color: var(--hn-burgundy);
	background: rgba(101, 30, 34, 0.09);
}

/* Search form */
.hn-search {
	display: flex;
	gap: 0.5rem;
	max-width: 460px;
	margin-inline: auto;
}

.hn-search__field {
	flex: 1;
	min-height: 48px;
	padding: 0.7rem 0.95rem;
	border: 1px solid rgba(38, 27, 22, 0.2);
	border-radius: var(--hn-radius-sm);
	background: #fff;
}

.hn-search__submit {
	min-width: 48px;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--hn-brown-900);
	background: var(--hn-brown-900);
	color: var(--hn-cream-100);
	border-radius: var(--hn-radius-sm);
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   21. Page furniture
   -------------------------------------------------------------------------- */

.hn-page-hero {
	background: var(--hn-cream-200);
	border-bottom: 1px solid var(--hn-line);
	padding-block: clamp(2.25rem, 6vw, 4.5rem);
	text-align: center;
}

.hn-page-hero__title {
	margin: 0;
	font-size: var(--hn-step-3);
}

.hn-page-hero__intro {
	margin: 1.1rem auto 0;
	max-width: 62ch;
	color: var(--hn-muted);
	font-size: var(--hn-step-1);
}

.hn-breadcrumbs {
	margin-bottom: 1rem;
	font-size: var(--hn-step--1);
	color: var(--hn-muted);
}

.hn-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hn-breadcrumbs li + li::before {
	content: "/";
	margin-inline-end: 0.4rem;
	color: var(--hn-line-gold);
}

.hn-breadcrumbs a {
	text-decoration: none;
}

.hn-breadcrumbs a:hover {
	color: var(--hn-gold-600);
}

.hn-entry {
	max-width: 760px;
	margin-inline: auto;
}

.hn-entry img {
	border-radius: var(--hn-radius);
}

.hn-entry h2 {
	font-size: var(--hn-step-2);
	margin-top: 2em;
}

.hn-entry h3 {
	font-size: var(--hn-step-1);
	margin-top: 1.8em;
}

.hn-entry blockquote {
	margin: 2rem 0;
	padding-inline-start: 1.25rem;
	border-inline-start: 2px solid var(--hn-gold-600);
	font-size: var(--hn-step-1);
	color: var(--hn-muted);
}

.hn-pagination {
	margin-top: clamp(2rem, 4vw, 3rem);
}

.hn-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hn-pagination a,
.hn-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 0.75rem;
	border: 1px solid var(--hn-line);
	border-radius: var(--hn-radius-sm);
	text-decoration: none;
	font-size: var(--hn-step--1);
}

.hn-pagination a:hover {
	border-color: var(--hn-gold-600);
	color: var(--hn-gold-600);
}

.hn-pagination .current {
	background: var(--hn-brown-900);
	border-color: var(--hn-brown-900);
	color: var(--hn-cream-100);
}

.hn-empty {
	text-align: center;
	max-width: 520px;
	margin-inline: auto;
	padding-block: clamp(2rem, 6vw, 4rem);
}

.hn-empty__mark {
	display: inline-flex;
	color: var(--hn-gold-600);
	margin-bottom: 1rem;
}

.hn-empty__title {
	font-size: var(--hn-step-2);
	margin: 0 0 0.5rem;
}

.hn-empty__text {
	color: var(--hn-muted);
	margin-bottom: 1.5rem;
}

.hn-empty__actions {
	margin-top: 1.5rem;
}

.hn-404 {
	text-align: center;
	padding-block: clamp(3rem, 10vw, 7rem);
}

.hn-404__code {
	font-family: var(--hn-font-display);
	font-size: clamp(4rem, 14vw, 8rem);
	line-height: 1;
	color: var(--hn-gold-600);
	margin: 0 0 0.5rem;
	letter-spacing: 0.05em;
}

.hn-placeholder-img {
	width: 100%;
	height: auto;
	background: var(--hn-cream-200);
}

/* --------------------------------------------------------------------------
   22. Motion
   -------------------------------------------------------------------------- */

.hn-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms var(--hn-ease), transform 520ms var(--hn-ease);
	will-change: opacity, transform;
}

.hn-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.no-js .hn-reveal {
	opacity: 1;
	transform: none;
}

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

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

	.hn-reveal {
		opacity: 1;
		transform: none;
	}
}

/* --------------------------------------------------------------------------
   23. Print
   -------------------------------------------------------------------------- */

@media print {
	.hn-header,
	.hn-footer,
	.hn-float-wa,
	.hn-sticky-cta,
	.hn-drawer {
		display: none !important;
	}
}

/* --------------------------------------------------------------------------
   24. Feature & step blocks (wholesale / delivery pages)
   -------------------------------------------------------------------------- */

.hn-feature {
	padding: clamp(1.25rem, 2.5vw, 1.85rem);
	background: var(--hn-cream-100);
	border: 1px solid var(--hn-line);
	border-radius: var(--hn-radius);
	display: grid;
	gap: 0.5rem;
	align-content: start;
}

.hn-feature__icon {
	color: var(--hn-gold-600);
}

.hn-feature__title {
	margin: 0;
	font-size: var(--hn-step-1);
}

.hn-feature__text {
	margin: 0;
	color: var(--hn-muted);
	font-size: var(--hn-step--1);
	line-height: 1.65;
}

.hn-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: clamp(1rem, 2.5vw, 2rem);
	counter-reset: hn-step;
}

@media (min-width: 760px) {
	.hn-steps {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.hn-steps__item {
	padding-top: 1.1rem;
	border-top: 1px solid var(--hn-line-gold);
}

.hn-steps__num {
	display: block;
	font-size: 1.5rem;
	color: var(--hn-gold-600);
	letter-spacing: 0.1em;
	margin-bottom: 0.35rem;
}

.hn-steps__title {
	margin: 0 0 0.35rem;
	font-size: var(--hn-step-1);
}

.hn-steps__text {
	margin: 0;
	color: var(--hn-muted);
}

.hn-entry__thumb {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hn-entry__thumb img {
	width: 100%;
	border-radius: var(--hn-radius);
}

.hn-search-again,
.hn-404__search {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hn-contact__content {
	margin-top: 2rem;
	margin-inline: 0;
}

/* --------------------------------------------------------------------------
   25. Remaining structural hooks
   -------------------------------------------------------------------------- */

.hn-main {
	display: block;
}

.hn-icon {
	flex: none;
}

.hn-brand__tagline {
	margin: 0.5rem 0 0;
	font-size: var(--hn-step--1);
	color: var(--hn-muted);
}

.hn-footer .hn-brand__tagline {
	color: var(--hn-on-dark-muted);
}

.hn-footer__widgets {
	margin-top: 1.5rem;
	display: grid;
	gap: 1.25rem;
}

.hn-footer-widget__title {
	margin: 0 0 0.6rem;
	font-size: var(--hn-step--1);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hn-gold-500);
}

html[lang^="ar"] .hn-footer-widget__title,
html[lang^="he"] .hn-footer-widget__title {
	text-transform: none;
	letter-spacing: 0.03em;
	font-size: var(--hn-step-0);
}

.hn-footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

/* Container for whichever Instagram plugin the client installs */
.hn-ig__feed {
	margin-block: 0.5rem 1.5rem;
}

.hn-ig__feed img {
	border-radius: var(--hn-radius-sm);
}

/* The fallback menu shares the styling of a real WordPress menu */
.hn-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}


/* --------------------------------------------------------------------------
   26. Contact page — premium mobile treatment
   -------------------------------------------------------------------------- */
.hn-contact__panel {
	min-width: 0;
}

.hn-contact__actions {
	margin-top: 1.4rem;
}

.hn-contact__list li,
.hn-contact__list a,
.hn-contact__content {
	min-width: 0;
}

.hn-contact__list a,
.hn-contact__content {
	overflow-wrap: anywhere;
}

@media (max-width: 699px) {
	body.page-template-template-contact-php .hn-page-hero {
		padding: 1.9rem 1rem 2.15rem;
		text-align: start;
	}

	body.page-template-template-contact-php .hn-page-hero .hn-breadcrumbs ol {
		justify-content: flex-start;
	}

	body.page-template-template-contact-php .hn-page-hero__title {
		font-size: clamp(2rem, 9vw, 2.75rem);
		line-height: 1.08;
	}

	body.page-template-template-contact-php .hn-page-hero__intro {
		margin-top: 0.8rem;
		font-size: 1rem;
		line-height: 1.65;
		max-width: none;
	}

	.hn-contact-page .hn-section {
		padding-block: 2rem;
	}

	.hn-contact-page__intro {
		background:
			radial-gradient(circle at 100% 0%, rgba(183, 137, 62, 0.10), transparent 34%),
			var(--hn-cream-100);
	}

	.hn-contact {
		gap: 1.15rem;
	}

	.hn-contact__panel {
		padding: 1.25rem;
		background: #fff;
		border: 1px solid var(--hn-line);
		border-radius: 20px;
		box-shadow: 0 14px 34px rgba(49, 29, 20, 0.08);
	}

	.hn-contact__panel .hn-section-title {
		font-size: clamp(1.75rem, 8vw, 2.25rem);
		line-height: 1.15;
	}

	.hn-contact__list {
		margin-top: 1.1rem;
		gap: 0.65rem;
	}

	.hn-contact__list li {
		width: 100%;
		padding: 0.85rem 0.9rem;
		background: var(--hn-cream-100);
		border: 1px solid rgba(183, 137, 62, 0.18);
		border-radius: 14px;
		align-items: center;
	}

	.hn-contact__list svg {
		width: 21px;
		height: 21px;
	}

	.hn-contact__list a {
		font-size: 1rem;
		line-height: 1.45;
	}

	.hn-contact__actions,
	.hn-form__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.7rem;
	}

	.hn-contact__actions .hn-btn,
	.hn-form__actions .hn-btn {
		width: 100%;
		min-height: 54px;
		justify-content: center;
		border-radius: 14px;
	}

	.hn-contact__content {
		margin-top: 1.4rem;
	}

	.hn-contact-page__form .hn-container--narrow {
		width: min(100% - 1.25rem, var(--hn-container-narrow));
	}

	.hn-contact-page__form .hn-section-heading {
		margin-bottom: 1.25rem;
	}

	.hn-contact-page__form .hn-section-title {
		font-size: clamp(1.75rem, 8vw, 2.25rem);
	}

	.hn-form-wrap {
		padding: 1rem;
		border-radius: 18px;
		box-shadow: 0 12px 30px rgba(49, 29, 20, 0.07);
	}

	.hn-form__grid {
		gap: 0.9rem;
	}

	.hn-field input,
	.hn-field select,
	.hn-field textarea {
		min-height: 52px;
		font-size: 16px;
		padding: 0.78rem 0.85rem;
		border-radius: 12px;
	}

	.hn-field textarea {
		min-height: 132px;
	}

	.hn-alert {
		font-size: 0.95rem;
		line-height: 1.55;
	}
}

@media (max-width: 380px) {
	.hn-contact__panel,
	.hn-form-wrap {
		padding: 0.9rem;
	}

	.hn-contact__list li {
		padding: 0.78rem 0.8rem;
	}
}


/* --------------------------------------------------------------------------
   27. Mobile RTL overflow hardening — Contact + Wholesale
   Prevents the document from becoming wider than the viewport when switching
   between LTR and RTL languages on Android/Chrome.
   -------------------------------------------------------------------------- */
html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

.hn-main,
.hn-main > .hn-section,
.hn-container,
.hn-contact,
.hn-craft,
.hn-form-wrap,
.hn-form,
.hn-form__grid,
.hn-feature,
.hn-page-hero,
.hn-page-hero__inner {
	min-width: 0;
	max-width: 100%;
}

.hn-field,
.hn-field input,
.hn-field select,
.hn-field textarea,
.hn-btn,
.hn-actions {
	max-width: 100%;
}

@media (max-width: 899px) {
	body.page-template-template-contact-php,
	body.page-template-template-wholesale-php {
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}

	body.page-template-template-contact-php .hn-main,
	body.page-template-template-wholesale-php .hn-main,
	body.page-template-template-contact-php .hn-section,
	body.page-template-template-wholesale-php .hn-section,
	body.page-template-template-contact-php .hn-container,
	body.page-template-template-wholesale-php .hn-container {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow-x: clip;
	}

	body.page-template-template-contact-php .hn-contact,
	body.page-template-template-wholesale-php .hn-contact,
	body.page-template-template-wholesale-php .hn-craft {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	body.page-template-template-wholesale-php .hn-grid,
	body.page-template-template-wholesale-php .hn-grid--3 {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
		min-width: 0;
	}

	body.page-template-template-contact-php .hn-form-wrap,
	body.page-template-template-wholesale-php .hn-form-wrap,
	body.page-template-template-contact-php .hn-contact__panel,
	body.page-template-template-wholesale-php .hn-feature {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	body.page-template-template-contact-php .hn-field input,
	body.page-template-template-contact-php .hn-field select,
	body.page-template-template-contact-php .hn-field textarea,
	body.page-template-template-wholesale-php .hn-field input,
	body.page-template-template-wholesale-php .hn-field select,
	body.page-template-template-wholesale-php .hn-field textarea {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	html[dir="rtl"] body.page-template-template-contact-php .hn-container,
	html[dir="rtl"] body.page-template-template-wholesale-php .hn-container,
	body.rtl.page-template-template-contact-php .hn-container,
	body.rtl.page-template-template-wholesale-php .hn-container {
		margin-left: auto;
		margin-right: auto;
	}
}
