@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Inter:wght@400;500;600&display=swap');

* { box-sizing: border-box; }

:root {
	--bg: #f7f6f3;
	--surface: #ffffff;
	--gold: #c4922a;
	--ink: #23201c;
	--muted: #6f695f;
	--line: #e5dfd5;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	color: var(--ink);
	background: var(--bg);
}

a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, 92vw); margin: 0 auto; }

.topbar { background: #111; color: #fff; }
.topbar .shell { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: 'Libre Baskerville', serif; font-size: 1.05rem; letter-spacing: 0.08em; }

.nav { display: flex; gap: 1rem; }
.nav a { color: #d8d3c8; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.06em; }
.nav a.active, .nav a:hover { color: #fff; }

.hero {
	padding: 86px 0 68px;
	background:
		linear-gradient(to right, rgba(247, 246, 243, 0.95), rgba(247, 246, 243, 0.72)),
		url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.hero h1 {
	margin: 0;
	max-width: 760px;
	font-family: 'Libre Baskerville', serif;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.1;
}

.hero p { max-width: 560px; color: var(--muted); line-height: 1.75; margin: 1rem 0 1.6rem; }

.btn {
	display: inline-block;
	background: #111;
	color: #fff;
	padding: 11px 16px;
	border-radius: 5px;
	font-size: 0.84rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.section { padding: 56px 0; }

.property-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.property {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 16px;
}

.property h3 { margin: 0; font-family: 'Libre Baskerville', serif; font-size: 1.1rem; }
.property p { margin: 0.45rem 0 0; color: var(--muted); font-size: 0.9rem; }
.property .price { margin-top: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.02em; }

.footer { border-top: 1px solid var(--line); padding: 22px 0; color: var(--muted); font-size: 0.86rem; }

@media (max-width: 860px) {
	.property-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.topbar .shell { flex-direction: column; align-items: flex-start; gap: 10px; }
	.hero { padding: 66px 0 54px; }
	.btn { width: 100%; text-align: center; }
}
