:root {
	--wine: #7b2d2f;
	--brick: #a64836;
	--amber: #e2a54b;
	--ink: #2c1f1b;
	--muted: #644a40;
	--cream: #fff5e7;
	--paper: rgba(255, 248, 236, 0.9);
	--line: rgba(122, 67, 51, 0.22);
	--shadow: rgba(77, 30, 20, 0.2);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
}

body {
	font-family: "Vazirmatn", "Noto Sans Arabic", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 14% 12%, rgba(226, 165, 75, 0.42), transparent 32%),
		radial-gradient(circle at 88% 10%, rgba(123, 45, 47, 0.16), transparent 30%),
		linear-gradient(165deg, #fae4bf 0%, #f4d4aa 45%, #eec08d 100%);
}

	body::before {
		content: "";
		position: fixed;
		inset: 0;
		background: url("https://hawlearipaklawa.com/landing/hawlearipaklawa/resources/kurdish-pattern.jpg") center/280px repeat;
		opacity: 0.06;
		pointer-events: none;
		z-index: 0;
	}

.landing {
	position: relative;
	z-index: 1;
	width: min(1060px, 100% - 2rem);
	margin: 1.1rem auto 1.7rem;
}

.topbar {
	position: sticky;
	top: 0.7rem;
	z-index: 20;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 248, 236, 0.85);
	backdrop-filter: blur(6px);
	box-shadow: 0 12px 28px rgba(70, 25, 20, 0.12);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: "Noto Kufi Arabic", "Vazirmatn", sans-serif;
	font-weight: 800;
	text-decoration: none;
	color: var(--wine);
	white-space: nowrap;
}

.brand-dot {
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffe2a3, var(--amber));
	box-shadow: 0 0 0 6px rgba(226, 165, 75, 0.24);
}

.top-links {
	display: flex;
	align-items: center;
	gap: 0.2rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.top-links a {
	text-decoration: none;
	color: var(--wine);
	font-weight: 700;
	font-size: 0.82rem;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease;
}

.top-links a:hover,
.top-links a.is-active {
	background: linear-gradient(145deg, var(--wine), var(--brick));
	color: #fff;
}

.page-panel {
	margin-top: 0.85rem;
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 1rem;
	background: linear-gradient(180deg, rgba(255, 249, 240, 0.82), rgba(249, 235, 212, 0.92));
	box-shadow: 0 20px 60px var(--shadow);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
	gap: 1rem;
	align-items: stretch;
}

.hero-copy,
.hero-visual,
.section-card {
	border-radius: 22px;
	border: 1px solid rgba(122, 67, 51, 0.16);
	background: var(--paper);
	padding: 0.95rem;
}

.language-switch {
	display: flex;
	gap: 0.45rem;
	margin-bottom: 0.8rem;
	flex-wrap: wrap;
}

.lang-link {
	text-decoration: none;
	color: var(--wine);
	font-size: 0.82rem;
	font-weight: 700;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(122, 67, 51, 0.22);
	background: rgba(255, 255, 255, 0.6);
}

.lang-link.active {
	background: linear-gradient(145deg, var(--wine), var(--brick));
	color: #fff;
	border-color: transparent;
}

.eyebrow {
	margin: 0;
	color: var(--wine);
	font-weight: 800;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

h1 {
	margin: 0.35rem 0 0;
	font-size: clamp(1.9rem, 5vw, 3.3rem);
	line-height: 1.08;
	font-family: "Noto Kufi Arabic", "Vazirmatn", sans-serif;
}

.subtitle {
	margin: 0.6rem 0 0;
	line-height: 1.82;
	color: var(--muted);
	font-size: 1rem;
}

.menu-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.75rem;
	padding: 0.76rem 1.4rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #fff0c8, #efc47d);
	text-decoration: none;
	font-weight: 800;
	color: #6a2b1f;
	box-shadow: 0 12px 22px rgba(86, 30, 23, 0.16);
}

.cta-note {
	margin: 0.65rem 0 0;
	font-size: 0.92rem;
	line-height: 1.7;
	color: #5f4339;
}

.hero-visual {
	position: relative;
	overflow: hidden;
	background: #2e1c18;
	padding: 0;
	min-height: 360px;
}

.hero-visual::before,
.hero-visual::after {
	content: "";
	position: absolute;
	inset: 0;
}

.hero-visual::before {
	background-size: cover;
	background-position: center;
	animation: heroSlide 18s infinite;
}

.hero-visual::after {
	background: linear-gradient(180deg, rgba(14, 8, 7, 0.2), rgba(14, 8, 7, 0.62));
}

.hero-visual-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1rem;
	color: #fff7ea;
}

.slide-caption p {
	margin: 0;
	font-size: 0.8rem;
	opacity: 0.85;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.slide-caption strong {
	display: block;
	margin-top: 0.4rem;
	font-size: clamp(1rem, 2.2vw, 1.3rem);
	line-height: 1.5;
}

.hero-thumbs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.55rem;
}

.hero-thumbs img {
	display: block;
	width: 100%;
	height: 90px;
	object-fit: cover;
	border-radius: 12px;
	border: 2px solid rgba(255, 244, 230, 0.66);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.grid-sections {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 0.9rem;
}

.section-card h2 {
	margin: 0;
	font-size: 1rem;
	color: #6a2e22;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.flavor-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.65rem;
}

.flavor-tags span {
	padding: 0.4rem 0.78rem;
	border-radius: 999px;
	border: 1px solid rgba(122, 67, 51, 0.22);
	background: linear-gradient(180deg, #fff8ee, #f6e4cd);
	font-size: 0.86rem;
	font-weight: 800;
	color: #6a3a2b;
}

.flow-cards {
	display: grid;
	gap: 0.55rem;
	margin-top: 0.65rem;
}

.flow-cards article {
	padding: 0.62rem 0.72rem;
	border-radius: 14px;
	border: 1px solid rgba(122, 67, 51, 0.18);
	background: rgba(255, 255, 255, 0.62);
	font-weight: 700;
	color: #543629;
}

.inline-note {
	margin: 0.65rem 0 0;
	color: var(--muted);
	line-height: 1.7;
	font-size: 0.93rem;
}

.social-title {
	margin: 0.65rem 0 0;
	font-weight: 800;
	color: #5f3427;
}

.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.55rem;
}

.socials a {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(122, 67, 51, 0.22);
	background: #fffdf8;
}

.socials svg {
	width: 19px;
	height: 19px;
	fill: #7b2d2f;
}

.reveal {
	opacity: 0;
	transform: translateY(12px);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-note {
	margin-top: 0.8rem;
	text-align: center;
	color: rgba(54, 29, 24, 0.76);
	font-size: 0.84rem;
}

@keyframes heroSlide {
	0%, 30% {
		background-image: url("https://hawlearipaklawa.com/landing/hawlearipaklawa/resources/erbil-theme.jpg");
	}
	33%, 63% {
		background-image: url("https://hawlearipaklawa.com/landing/hawlearipaklawa/resources/erbil-citadle.jpg");
	}
	66%, 100% {
		background-image: url("https://hawlearipaklawa.com/landing/hawlearipaklawa/resources/kurdish-rug.jpg");
	}
}

@media (max-width: 900px) {
	.topbar {
		border-radius: 18px;
		flex-direction: column;
		align-items: flex-start;
	}

	.top-links {
		justify-content: flex-start;
	}

	.hero {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: 300px;
	}

	.grid-sections {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.landing {
		width: calc(100% - 1rem);
		margin-top: 0.6rem;
	}

	.page-panel {
		padding: 0.65rem;
		border-radius: 22px;
	}

	.hero-copy,
	.hero-visual,
	.section-card {
		padding: 0.8rem;
	}

	.hero-visual-content {
		padding: 0.75rem;
	}

	.hero-thumbs img {
		height: 74px;
	}
}

html[dir="ltr"] body {
	font-family: "Manrope", "Segoe UI", sans-serif;
}

html[dir="ltr"] h1 {
	max-width: 11ch;
}

html[dir="ltr"] .subtitle,
html[dir="ltr"] .inline-note,
html[dir="ltr"] .cta-note {
	line-height: 1.7;
}
