* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--c-brand: #fb774c;
	--c-brand-hover: #db4614;
	--c-secondary: #1a1a1a;
	--c-text-dark: #212121;
	--c-text-light: #757575;
	--c-bg: #ffffff;
	--c-bg-light: #f5f5f5;
	--c-border: #e0e0e0;
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family:
		'Roboto',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: var(--c-text-light);
	background-color: var(--c-secondary);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background-color: var(--c-bg);
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 70px;
}

.logo {
	a {
		text-decoration: none;
	}

	h1,
	.tagline {
		display: none;
	}
}

.tagline {
	font-size: 0.75rem;
	color: var(--c-text-light);
	font-weight: 300;
	margin-top: -3px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--c-text-dark);
	font-weight: 500;
	transition: color 0.3s ease;
	font-size: 0.95rem;

	&:hover,
	&.active {
		color: var(--c-brand);
	}
}

.cta-nav {
	background-color: var(--c-brand);
	color: var(--c-bg) !important;
	padding: 8px 20px;
	border-radius: 4px;
	transition: background-color 0.3s ease;

	&:hover {
		background-color: var(--c-brand-hover);
	}
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background-color: var(--c-text-dark);
	margin: 3px 0;
	transition: 0.3s;
}

.hero {
	position: relative;
	height: 600px;
	background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-brand) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255, 255, 255, 0.03) 49px, rgba(255, 255, 255, 0.03) 50px), repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255, 255, 255, 0.03) 49px, rgba(255, 255, 255, 0.03) 50px);
	opacity: 0.5;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--c-bg);
	max-width: 800px;
	padding: 0 20px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	font-weight: 300;
	opacity: 0.95;
}

.hero-features {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.feature-tag {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background-color: rgba(255, 255, 255, 0.15);
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 0.9rem;
	backdrop-filter: blur(10px);
}

.cta-button {
	display: inline-block;
	background-color: var(--c-brand);
	color: var(--c-bg);
	padding: 15px 40px;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);

	&:hover {
		background-color: var(--c-brand-hover);
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
	}
}

.cta-button-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: transparent;
	color: var(--c-bg);
	padding: 15px 40px;
	text-decoration: none;
	border: 2px solid var(--c-bg);
	border-radius: 4px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;

	&:hover {
		background-color: var(--c-bg);
		color: var(--c-brand);
	}
}

.highlights {
	padding: 80px 0;
	background-color: var(--c-bg-light);
}

.highlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.highlight-card {
	background-color: var(--c-bg);
	padding: 2.5rem 2rem;
	border-radius: 8px;
	box-shadow: var(--shadow);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;

	&:hover {
		transform: translateY(-5px);
		box-shadow: var(--shadow-lg);
	}
}

.highlight-icon {
	color: var(--c-brand);
	margin-bottom: 1.5rem;
}

.highlight-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--c-text-dark);
}

.highlight-card p {
	color: var(--c-text-light);
	line-height: 1.7;
}

/* Two Column Section */
.about-preview {
	padding: 80px 0;
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.lead {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	color: var(--c-text-light);
	font-weight: 500;
}

.col-content {
	padding: 60px 0;
	color: #fff;

	&.invert {
		background: var(--c-bg);
		color: var(--c-text-dark);
	}

	h2 {
		margin-bottom: 1.5rem;
		font-size: 2.5rem;
		line-height: 1.2;
	}

	p {
		margin-bottom: 1.5rem;
		line-height: 1.8;
	}
}

.feature-list {
	margin: 2rem 0;
	list-style: none;
}

.feature-list li {
	position: relative;
	padding: 10px 0 10px 30px;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--c-brand);
	font-weight: bold;
	font-size: 1.2rem;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	color: var(--c-brand);
	text-decoration: none;
	font-weight: 600;
	transition: gap 0.3s ease;

	&:hover {
		gap: 12px;
	}

	&::after {
		content: '→';
		font-size: 1.2rem;
	}
}

.col-image {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;

	height: 100%;
	min-height: 400px;

	img {
		width: 100%;
		height: auto;
		border-radius: 8px;
		object-fit: cover;
	}
}

.units-preview {
	padding: 80px 0;
	background-color: var(--c-bg-light);
}

.section-title {
	margin-bottom: 1rem;
	text-align: center;
	font-size: 2.5rem;
	color: var(--c-text-dark);
}

.section-subtitle {
	margin-bottom: 3rem;
	text-align: center;
	font-size: 1.1rem;
	color: var(--c-text-light);
}

.units-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.unit-card {
	position: relative;
	padding: 2.5rem 2rem;
	background-color: var(--c-bg);
	border-radius: 8px;
	box-shadow: var(--shadow);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;

	&:hover {
		transform: translateY(-5px);
		box-shadow: var(--shadow-lg);
	}

	&.featured {
		border: 2px solid var(--c-brand);
	}
}

.featured-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	padding: 5px 15px;
	border-radius: 20px;
	background-color: var(--c-brand);
	color: var(--c-bg);
	font-size: 0.85rem;
	font-weight: 700;
}

.unit-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--c-bg-light);

	h3 {
		font-size: 1.5rem;
		color: var(--c-text-dark);
	}
}

.unit-size {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--c-brand);
}

.unit-features {
	list-style: none;
	margin-bottom: 2rem;

	li {
		position: relative;
		padding: 8px 0 8px 25px;
		color: var(--c-text-light);
	}
}

.unit-features li::before {
	content: '•';
	position: absolute;
	left: 8px;
	color: var(--c-brand);
	font-size: 1.5rem;
	line-height: 1;
}

.unit-link {
	display: inline-block;
	color: var(--c-brand);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;

	&:hover {
		color: var(--c-brand-hover);
	}
}

.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-brand) 100%);
	text-align: center;
}

.cta-content h2 {
	margin-bottom: 1rem;
	color: var(--c-bg);
	font-size: 2.5rem;
}

.cta-content p {
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

footer {
	padding: 60px 0 30px;
	background-color: var(--c-secondary);
	color: var(--c-bg);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-col h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: var(--c-brand);
}

.footer-col h4 {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	color: var(--c-bg);
}

.footer-col p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.footer-col address {
	font-style: normal;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.7rem;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;

	&:hover {
		color: var(--c-brand);
	}
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

/* Page-specific styles */
.page-header {
	padding: 60px 0;
	background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-brand) 100%);
	color: var(--c-bg);
	text-align: center;
}

.page-header h1 {
	margin-bottom: 1rem;
	font-size: 3rem;
}

.page-header p {
	font-size: 1.2rem;
	opacity: 0.9;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	background-color: var(--c-bg);
	box-shadow: var(--shadow);

	a {
		color: var(--c-brand);
		transition: color 0.3s ease;

		&:hover {
			color: var(--c-brand-hover);
		}
	}
}

thead {
	background-color: var(--c-brand);
	color: var(--c-bg);
}

th,
td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid var(--c-border);
}

tr:hover {
	background-color: var(--c-bg-light);
}

.status-available {
	color: #4caf50;
	font-weight: 600;
}

.status-leased {
	color: var(--c-text-light);
}

.contact-info {
	margin: 2rem 0;
	padding: 3rem;
	background-color: var(--c-bg-light);
	border-radius: 8px;
}

.contact-info h3 {
	margin-top: 0;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-item svg {
	color: var(--c-brand);
}

.contact-item a {
	color: var(--c-text-dark);
	text-decoration: none;
	font-size: 1.1rem;
	transition: color 0.3s ease;

	&:hover {
		color: var(--c-brand);
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		gap: 0;
		width: 100%;
		padding: 2rem 0;
		text-align: center;
		box-shadow: var(--shadow);
		background: var(--c-bg);
		transition: 0.3s;

		&.active {
			left: 0;
		}
		li {
			display: block;
			width: 100%;
		}
		a {
			display: block;
			padding: 1rem 0;

			&.cta-nav {
				margin: 0 auto;
				width: 90%;
			}
		}
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-features {
		gap: 1rem;
	}

	.feature-tag {
		padding: 8px 15px;
		font-size: 0.85rem;
	}

	.two-col {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.col-content h2 {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-button,
	.cta-button-secondary {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	table {
		font-size: 0.9rem;
	}

	th,
	td {
		padding: 10px;
	}

	.col-image {
		max-width: 100%;
		min-height: auto;
	}
}

@media (max-width: 480px) {
	.hero {
		height: 500px;
	}

	.hero-title {
		font-size: 1.8rem;
	}

	.highlight-grid,
	.units-grid {
		grid-template-columns: 1fr;
	}
}
