:root {
	--bg: #f7f3eb;
	--surface: #fffdf9;
	--text: #1f1f1f;
	--muted: #5f5e5e;
	--accent: #c08457;
	--accent-dark: #8b5e3c;
	--border: rgba(31, 31, 31, 0.12);
	--shadow: 0 20px 50px rgba(31, 31, 31, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: linear-gradient(135deg, #fdf8f1 0%, var(--bg) 100%);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.container {
	width: min(1120px, calc(100% - 2rem));
	margin: 0 auto;
}

.hero {
	min-height: 100vh;
	background:
		linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.28)),
		url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1400&q=80') center/cover;
	color: white;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 0;
}

.brand {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	gap: 1.2rem;
	align-items: center;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.9);
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0.25rem;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: white;
	margin: 4px 0;
}

.hero-content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2.5rem;
	align-items: center;
	padding: 4rem 0 5rem;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.hero h1 {
	font-size: clamp(2.2rem, 4.2vw, 4.2rem);
	line-height: 1.08;
	margin: 0 0 1rem;
}

.lead {
	font-size: 1.05rem;
	max-width: 620px;
	color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 1.5rem 0;
}

.btn {
	display: inline-block;
	padding: 0.9rem 1.25rem;
	border-radius: 999px;
	font-weight: 600;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
	background: var(--accent);
	color: white;
	box-shadow: 0 10px 25px rgba(192, 132, 87, 0.25);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.16);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-highlights {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	color: rgba(255, 255, 255, 0.88);
}

.hero-card,
.service-grid article,
.project-card,
.about-grid article,
.contact-card {
	background: var(--surface);
	color: var(--text);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.hero-card {
	padding: 1.5rem;
	border-radius: 1.4rem;
}

.card-badge {
	display: inline-block;
	padding: 0.45rem 0.7rem;
	background: #efe4d8;
	border-radius: 999px;
	font-size: 0.8rem;
	margin-bottom: 0.8rem;
	color: var(--accent-dark);
	font-weight: 700;
}

.card-info {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-top: 1rem;
	font-size: 0.95rem;
	color: var(--muted);
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: -2rem;
	position: relative;
	z-index: 2;
}

.stats article {
	background: white;
	padding: 1.25rem;
	border-radius: 1rem;
	text-align: center;
	box-shadow: var(--shadow);
}

.stats strong {
	display: block;
	font-size: 1.35rem;
	margin-bottom: 0.25rem;
}

.section {
	padding: 5rem 0;
}

.section-alt {
	background: #f2e9de;
}

.section-heading h2 {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	margin: 0 0 0.8rem;
}

.section-heading p {
	color: var(--muted);
	max-width: 720px;
}

.service-grid,
.about-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.service-grid article,
.project-card,
.about-grid article {
	padding: 1.3rem;
	border-radius: 1rem;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover,
.about-grid article:hover,
.project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 55px rgba(31, 31, 31, 0.12);
}

.project-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 1.5rem;
	align-items: center;
}

.project-card {
	border-radius: 1.4rem;
	overflow: hidden;
}

.project-image {
	min-height: 280px;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1)),
		url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1100&q=80') center/cover;
}

.project-content {
	padding: 1.35rem 1.35rem 1.5rem;
}

.text-link {
	color: var(--accent-dark);
	font-weight: 700;
}

.footer {
	padding: 4rem 0 3.5rem;
	background: #1f1f1f;
	color: white;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
}

.contact-card {
	padding: 1.35rem;
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.contact-card a {
	color: var(--accent-dark);
	font-weight: 600;
}

@media (max-width: 820px) {

	.hero-content,
	.project-layout,
	.footer-grid,
	.service-grid,
	.about-grid,
	.stats {
		grid-template-columns: 1fr;
	}

	.hero-content {
		padding-top: 2.2rem;
	}

	.stats {
		margin-top: 1rem;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 4rem;
		right: 1rem;
		padding: 1rem;
		border-radius: 1rem;
		background: rgba(31, 31, 31, 0.9);
	}

	.nav-links.open {
		display: flex;
	}

	.nav-toggle {
		display: block;
	}
}