@font-face {
	font-family: "WorkSans";
	src: url("../typography/WorkSans-Regular.ttf") format("truetype");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: "WorkSans";
	src: url("../typography/WorkSans-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: "WorkSans";
	src: url("../typography/WorkSans-Bold.ttf") format("truetype");
	font-weight: 700;
	font-display: swap;
}

:root {
	--bg: #0f1115;
	--surface: #1a1d23;
	--text: #f3f4f6;
	--muted: #a1a1aa;
	--primary: #d4a373;
	--line: #2d3138;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
	list-style: none;
	text-decoration: none;
	color: inherit;
	font-family: "WorkSans", sans-serif;
}
html {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
body {
	background-color: var(--bg);
	color: var(--text);
	overflow-x: hidden;
}
a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
}

.eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 0.75rem;
}
.section-title {
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 2.6rem);
	line-height: 1.2;
}
.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 3rem;
}
section {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding: 5rem 1.5rem;
	text-align: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2rem;
	background-color: var(--text);
	color: var(--surface);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	transition: background-color 0.25s ease;
}
.btn:hover {
	background-color: var(--primary);
}
.btn-full {
	width: 100%;
}

/* NAV */
.nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--bg);
	border-bottom: 1px solid var(--line);
}
.nav-inner {
	max-width: 1200px;
	margin-inline: auto;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: -0.5px;
	text-decoration: none;
	color: inherit;
}
.nav-logo {
	width: 28px;
	height: 28px;
	object-fit: contain;
}
.nav-links-wrap {
	display: none;
}
.nav-link {
	font-size: 0.85rem;
	letter-spacing: 0.3px;
	transition: color 0.25s ease;
}
.nav-link:hover {
	color: var(--primary);
}
.menu-toggle {
	background: transparent;
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.nav-panel {
	width: 100%;
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
	border-bottom: 1px solid transparent;
}
.nav-panel.open {
	grid-template-rows: 1fr;
	border-bottom-color: var(--line);
}
.nav-panel-inner {
	overflow: hidden;
}
.nav-panel-links {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.5rem;
}
.nav-panel-link {
	font-size: 1.1rem;
}
.nav-panel-link:hover {
	color: var(--primary);
}

@media (min-width: 768px) {
	.nav-links-wrap {
		display: block;
	}
	.nav-links {
		display: flex;
		gap: 2.5rem;
	}
	.menu-toggle {
		display: none;
	}
	.nav-panel {
		display: none;
	}
}

/* HERO */
.hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	text-align: left;
	overflow: hidden;
	padding-inline: 1.5rem;
}
.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.55);
}
.hero-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin-inline: auto;
	width: 100%;
	color: var(--surface);
}
.hero-title {
	font-weight: 700;
	font-size: clamp(2.4rem, 6vw, 4rem);
	line-height: 1.1;
	max-width: 620px;
	margin-bottom: 1.5rem;
	color: var(--text);
}
.hero-text {
	color: rgba(250, 249, 247, 0.85);
	line-height: 1.7;
	max-width: 460px;
	margin-bottom: 2rem;
}

/* PROPERTIES */
.property-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	text-align: left;
}
.property-card {
	display: flex;
	flex-direction: column;
}
.property-image {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 1.25rem;
}
.property-content h3 {
	font-weight: 600;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}
.property-content p {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}
.property-meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
}
.property-meta li {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: var(--muted);
}
.meta-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	opacity: 0.7;
}
.property-price {
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--primary);
}

/* SERVICES */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}
.service-item {
	text-align: center;
}
.service-icon {
	width: 32px;
	height: 32px;
	margin-bottom: 1.25rem;
}
.service-item h3 {
	font-weight: 600;
	font-size: 1.15rem;
	margin-bottom: 0.6rem;
}
.service-item p {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.6;
	max-width: 320px;
	margin-inline: auto;
}

/* ABOUT */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
	text-align: left;
}
.about-media {
	position: relative;
	max-width: 220px;
	margin-inline: auto;
	padding-bottom: 3rem;
}
.polaroid {
	background-color: var(--text);
	padding: 10px 10px 50px;
	width: 170px;
	box-shadow: 0 12px 24px rgba(43, 42, 40, 0.12);
}
.polaroid-1 {
	position: relative;
	z-index: 1;
	transform: rotate(-8deg);
}
.polaroid-2 {
	position: absolute;
	top: 70px;
	left: 60px;
	z-index: 2;
	transform: rotate(8deg);
}

@media (min-width: 768px) {
	.about-media {
		max-width: 280px;
		margin-inline: 0;
	}
	.polaroid {
		width: 210px;
	}
	.polaroid-2 {
		top: 60px;
		left: 180px;
	}
}

.about-img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	display: block;
}
.about-text {
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 1rem;
	max-width: 460px;
}

@media (min-width: 768px) {
	.about-grid {
		grid-template-columns: 0.8fr 1.2fr;
	}
	.about-media {
		justify-content: flex-start;
	}
}

/* CONTACT */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	text-align: left;
}
.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding-block: 1.25rem;
	border-bottom: 1px solid var(--line);
}
.contact-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
	opacity: 0.7;
}
.contact-info-item h3 {
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.3rem;
}
.contact-info-item p {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.5;
}
.contact-info-item a {
	transition: color 0.25s ease;
}
.contact-info-item a:hover {
	color: var(--primary);
}

.contact-form {
	max-width: 420px;
}
.form-group {
	margin-bottom: 1.25rem;
}
.form-group label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.85rem;
	font-weight: 600;
}
.form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--line);
	border-radius: 4px;
	font-size: 0.95rem;
	background-color: var(--surface);
	transition: border-color 0.25s ease;
}
.form-control:focus {
	border-color: var(--primary);
	outline: none;
}
textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

/* FOOTER */
.footer {
	border-top: 1px solid var(--line);
	padding: 3rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
}
.footer-logo {
	max-width: 80px;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}
.footer-link {
	font-size: 0.85rem;
	color: var(--muted);
	transition: color 0.25s ease;
}
.footer-link:hover {
	color: var(--primary);
}
.footer-social {
	display: flex;
	gap: 1rem;
}
.footer-social img {
	width: 18px;
	height: 18px;
	opacity: 0.6;
	transition: opacity 0.25s ease;
}
.footer-social a:hover img {
	opacity: 1;
}
.copyright {
	font-size: 0.75rem;
	color: var(--muted);
}

@media (min-width: 768px) {
	.property-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.about-grid {
		grid-template-columns: 0.8fr 1.2fr;
	}
	.about-media {
		max-width: none;
	}
	.contact-grid {
		grid-template-columns: 1.1fr 1fr;
	}
}
