:root
{
	--bg: #0b1220;
	--bg2: #0f1b2d;
	--paper: #ffffff;
	--alt: #f7f8fb;
	--text: #0f172a;
	--muted: #64748b;
	--line: #e5e7eb;
	--accent: #c7a86a;
	--accent2: #e3cf9a;
	--radius: 18px;
	--shadow: 0 18px 50px rgba(2, 8, 23, .18);
	--shadow2: 0 14px 40px rgba(2, 8, 23, .22);
	--max: 1200px;
	--pad: clamp(18px, 4vw, 48px);
	--h1: clamp(34px, 5vw, 56px);
	--h2: clamp(26px, 3.2vw, 40px);
	--h3: clamp(18px, 2.1vw, 22px);
	--p: clamp(15px, 1.35vw, 17px);
}

*
{
	box-sizing: border-box;
}

html,
body
{
	height: 100%;
}

body
{
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: #0a1020;
	color: var(--text);
	line-height: 1.65;
}

a
{
	color: inherit;
	text-decoration: none;
}

img
{
	max-width: 100%;
	display: block;
}

.container
{
	width: min(var(--max), 100%);
	margin: 0 auto;
	padding: 0 var(--pad);
}

.section
{
	padding: clamp(56px, 7vw, 92px) 0;
	background: var(--paper);
}

.section.alt
{
	background: var(--alt);
}

.kicker
{
	color: rgba(199, 168, 106, .95);
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
}

.title
{
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	letter-spacing: .2px;
	margin: 10px 0 10px;
}

.lead
{
	font-size: var(--p);
	color: var(--muted);
	max-width: 70ch;
}

.btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid transparent;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
}

.btn:active
{
	transform: translateY(1px);
}

.btn.primary
{
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	color: #0b1220;
	box-shadow: 0 12px 30px rgba(199, 168, 106, .28);
}

.btn.primary:hover
{
	box-shadow: 0 16px 36px rgba(199, 168, 106, .34);
	transform: translateY(-1px);
}

.btn.ghost
{
	background: rgba(255, 255, 255, .08);
	color: #fff;
	border-color: rgba(255, 255, 255, .20);
	backdrop-filter: blur(8px);
}

.btn.ghost:hover
{
	border-color: rgba(255, 255, 255, .35);
	transform: translateY(-1px);
}

.btn.light
{
	background: #fff;
	border-color: var(--line);
}

.pill
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(199, 168, 106, .12);
	border: 1px solid rgba(199, 168, 106, .25);
	color: #0b1220;
	font-size: 13px;
	font-weight: 700;
}

header
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(10, 16, 32, .22);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	backdrop-filter: blur(10px);
	transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

header.scrolled
{
	background: rgba(10, 16, 32, .75);
	border-color: rgba(255, 255, 255, .10);
	box-shadow: 0 10px 30px rgba(2, 8, 23, .25);
}

.nav
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

.brand
{
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-weight: 800;
	letter-spacing: .2px;
}

.mark
{
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(199, 168, 106, .95), rgba(227, 207, 154, .95));
	box-shadow: 0 14px 26px rgba(199, 168, 106, .25);
}

.brand small
{
	display: block;
	color: rgba(255, 255, 255, .70);
	font-weight: 600;
	font-size: 12px;
	margin-top: 2px;
	letter-spacing: .03em;
}

.navlinks
{
	display: flex;
	align-items: center;
	gap: 22px;
	color: rgba(255, 255, 255, .86);
	font-size: 14px;
}

.navlinks a
{
	opacity: .92;
	transition: opacity .15s ease;
}

.navlinks a:hover
{
	opacity: 1;
}

.nav-actions
{
	display: flex;
	align-items: center;
	gap: 10px;
}

.lang-toggle
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
}

.hamburger
{
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .15);
	background: rgba(255, 255, 255, .06);
	color: #fff;
	cursor: pointer;
}

.drawer
{
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(2, 8, 23, .55);
	backdrop-filter: blur(6px);
	z-index: 60;
}

.drawer.open
{
	display: block;
}

.drawer-panel
{
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	border-radius: 18px;
	background: rgba(10, 16, 32, .92);
	border: 1px solid rgba(255, 255, 255, .10);
	box-shadow: 0 18px 60px rgba(2, 8, 23, .45);
	padding: 16px;
}

.drawer-top
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	color: #fff;
}

.drawer a
{
	display: block;
	padding: 14px 12px;
	border-radius: 14px;
	color: rgba(255, 255, 255, .88);
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	margin-top: 10px;
}

.drawer a:hover
{
	border-color: rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .06);
}

.hero
{
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding-top: 86px;
	color: #fff;
	background:
		radial-gradient(800px 400px at 20% 18%, rgba(199, 168, 106, .20), transparent 60%),
		radial-gradient(900px 500px at 85% 30%, rgba(77, 142, 255, .14), transparent 58%),
		linear-gradient(180deg, rgba(10, 16, 32, .85), rgba(10, 16, 32, .92)),
		url("hero.jpg") center/cover no-repeat;
}

.hero .grid
{
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(18px, 4vw, 46px);
	align-items: center;
	padding: 42px 0 22px;
}

.hero h1
{
	font-size: var(--h1);
	line-height: 1.05;
	margin: 12px 0 14px;
	font-family: "DM Serif Display", serif;
	font-weight: 400;
}

.hero p
{
	font-size: 18px;
	color: rgba(255, 255, 255, .80);
	max-width: 60ch;
	margin: 0 0 22px;
}

.hero-card
{
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius);
	box-shadow: var(--shadow2);
	padding: 18px;
	backdrop-filter: blur(10px);
}

.hero-card h3
{
	margin: 0 0 10px;
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
}

.hero-metrics
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.metric
{
	padding: 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .10);
}

.metric b
{
	display: block;
	font-size: 22px;
	color: #fff;
}

.metric span
{
	color: rgba(255, 255, 255, .72);
	font-size: 12.5px;
}

/* Cards/grids */
.grid
{
	display: grid;
	gap: 22px;
}

.cards-3
{
	grid-template-columns: repeat(3, 1fr);
}

.cards-2
{
	grid-template-columns: repeat(2, 1fr);
}

.card
{
	border-radius: var(--radius);
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 10px 28px rgba(2, 8, 23, .06);
	padding: 22px;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover
{
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(2, 8, 23, .10);
	border-color: rgba(199, 168, 106, .45);
}

.icon
{
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(199, 168, 106, .16);
	border: 1px solid rgba(199, 168, 106, .26);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	font-weight: 900;
	color: #6b520f;
}

.card h3
{
	margin: 0 0 8px;
	font-size: var(--h3);
}

.card p
{
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.split
{
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 34px;
	align-items: center;
	margin-top: 26px;
}

.media
{
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(2, 8, 23, .10);
	box-shadow: var(--shadow);
	background: #0b1220;
	position: relative;
	min-height: 320px;
}

.media img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .92;
}

.media:after
{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(10, 16, 32, .0), rgba(10, 16, 32, .22));
}

.panel
{
	border-radius: 22px;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 12px 34px rgba(2, 8, 23, .06);
	padding: 22px;
}

.panel h3
{
	margin: 0 0 8px;
	font-size: 18px;
}

.panel p
{
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.cta
{
	background:
		radial-gradient(700px 300px at 15% 25%, rgba(199, 168, 106, .25), transparent 60%),
		linear-gradient(180deg, #0b1220, #0a1020);
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.cta-inner
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 34px 0;
	flex-wrap: wrap;
}

.cta-inner h2
{
	margin: 0;
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(22px, 3vw, 30px);
}

.cta-inner p
{
	margin: 6px 0 0;
	color: rgba(255, 255, 255, .75);
	max-width: 70ch;
	font-size: 14.5px;
}

footer
{
	background: #081022;
	color: rgba(255, 255, 255, .85);
	padding: 56px 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid
{
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 22px;
}

footer h4
{
	margin: 0 0 10px;
	color: #fff;
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

footer a,
footer p
{
	display: block;
	margin: 10px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, .72);
}

.copyright
{
	margin-top: 24px;
	font-size: 12.5px;
	color: rgba(255, 255, 255, .55);
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding-top: 16px;
}

.reveal
{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .6s ease, transform .6s ease;
}

.reveal.in
{
	opacity: 1;
	transform: translateY(0);
}

html[dir="rtl"] body
{
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html[dir="rtl"] .navlinks
{
	gap: 22px;
}

html[dir="rtl"] .drawer-panel
{
	direction: rtl;
}

html[dir="rtl"] .split
{
	direction: rtl;
}

html[dir="rtl"] .hero .grid
{
	direction: rtl;
}

html[dir="rtl"] .footer-grid
{
	direction: rtl;
}

@media (max-width:980px)
{
	.hero .grid
	{
		grid-template-columns: 1fr;
	}

	.cards-3
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.split
	{
		grid-template-columns: 1fr;
	}

	.footer-grid
	{
		grid-template-columns: 1fr 1fr;
	}

	.navlinks
	{
		display: none;
	}

	.hamburger
	{
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
}

@media (max-width:560px)
{
	.cards-3
	{
		grid-template-columns: 1fr;
	}

	.footer-grid
	{
		grid-template-columns: 1fr;
	}
}

.snapshot-strip
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 8px 0 14px;
}

.snapshot-strip .thumb
{
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .06);
	height: 62px;
	position: relative;
}

.snapshot-strip .thumb img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .88;
	filter: saturate(.85) contrast(.95);
}

.snapshot-strip .thumb::after
{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(10, 16, 32, .0), rgba(10, 16, 32, .22));
	pointer-events: none;
}

.services-split
{
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 24px;
	align-items: start;
	margin-top: 28px;
}

.services-side
{
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(2, 8, 23, .10);
	box-shadow: var(--shadow);
	background: #0b1220;
	min-height: 320px;
	position: relative;
}

.services-side img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .92;
}

.services-side::after
{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(10, 16, 32, .0), rgba(10, 16, 32, .20));
	pointer-events: none;
}

.hse-split
{
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 24px;
	align-items: start;
	margin-top: 26px;
}

.hse-side
{
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(2, 8, 23, .10);
	box-shadow: var(--shadow);
	background: #0b1220;
	min-height: 320px;
	position: relative;
}

.hse-side img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .92;
}

.hse-side::after
{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(10, 16, 32, .0), rgba(10, 16, 32, .20));
	pointer-events: none;
}

html[dir="rtl"] .services-split
{
	direction: rtl;
}

html[dir="rtl"] .hse-split
{
	direction: rtl;
}

@media (max-width: 980px)
{
	.services-split
	{
		grid-template-columns: 1fr;
	}

	.services-side
	{
		min-height: 320px;
	}

	.hse-split
	{
		grid-template-columns: 1fr;
	}

	.hse-side
	{
		min-height: 320px;
	}

	.snapshot-strip
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

.media
{
	min-height: 360px;
}

@media (max-width: 980px)
{
	.media
	{
		min-height: 320px;
	}
}

.snapshot-strip .thumb
{
	height: 64px;
}

.services-side
{
	min-height: 320px;
}

.hse-side
{
	min-height: 320px;
}

@media (max-width: 980px)
{
	.services-side
	{
		min-height: 320px;
	}

	.hse-side
	{
		min-height: 320px;
	}
}

.media img,
.services-side img,
.hse-side img,
.project-img img,
.snapshot-strip .thumb img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.logo-img
{
	height: 38px;
	width: auto;
	object-fit: contain;
	display: block;
}

.brand
{
	display: flex;
	align-items: center;
	gap: 12px;
}

@media (max-width: 560px)
{
	.logo-img
	{
		height: 32px;
	}
}

html,
body
{
	overflow-x: hidden;
}

.container
{
	padding-left: clamp(16px, 4vw, 48px);
	padding-right: clamp(16px, 4vw, 48px);
}

.nav-actions
{
	flex-wrap: nowrap;
	gap: 10px;
}

@media (max-width: 980px)
{

	.nav-actions a.btn.ghost,
	.nav-actions a.btn.primary
	{
		display: none;
	}

	.lang-toggle
	{
		padding: 10px 10px;
	}

	.hamburger
	{
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
}

.brand
{
	min-width: 0;
}

.brand span,
.brand div
{
	min-width: 0;
}

.brand small
{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 52vw;
}

.hero .grid
{
	grid-template-columns: 1fr;
	padding: 28px 0 22px;
}

.hero h1
{
	word-break: normal;
}

.hero p
{
	font-size: 16px;
}

.hero-metrics
{
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 560px)
{
	.hero-metrics
	{
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px)
{
	.snapshot-strip
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

.cards-3
{
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px)
{
	.cards-3
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px)
{
	.cards-3
	{
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px)
{
	.services-split
	{
		grid-template-columns: 1fr;
	}

	.services-side
	{
		min-height: 320px;
	}
}

@media (max-width: 980px)
{
	.hse-split
	{
		grid-template-columns: 1fr;
	}

	.hse-side
	{
		min-height: 320px;
	}
}

@media (max-width: 980px)
{
	.project-grid
	{
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 560px)
{
	.project-grid
	{
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 980px)
{
	.contact-grid
	{
		grid-template-columns: 1fr !important;
	}

	.info-card
	{
		position: static !important;
		top: auto !important;
	}
}

.btn
{
	flex: 0 0 auto;
}