@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Syncopate:wght@700&display=swap");

:root {
	--primary: #0d4426;
	--primary-light: #1a6b3e;
	--bg: #050505;
	--surface: #0a0a0a;
	--text: #ffffff;
	--muted: #a0a0a0;
	--accent: #d4af37; /* Luxury Gold */
	--line: rgba(255, 255, 255, 0.1);
	--radius: 20px;
	--beige: #804000;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	color: var(--text);
	line-height: 1.6;
}

.txt-beige {
	color: var(--beige);
}

.bg-beige {
	background: var(--beige);
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pt-0 {
	padding-top: 0;
}

.pt-1 {
	padding-top: 1rem;
}

.pt-2 {
	padding-top: 2rem;
}

.pt-3 {
	padding-top: 3rem;
}

.pt-4 {
	padding-top: 4rem;
}

.site-shell {
	padding: 1rem;
	max-width: 1400px;
	margin: 0 auto;
}

.site-header {
	position: absolute;
	top: 2rem;
	width: calc(100% - 2rem);
	z-index: 100;
	padding: 0 2rem;
}

.nav-wrap {
	display: flex;
	justify-content: flex-end;
}

.site-nav {
	display: flex;
	gap: 1.5rem;
}

.site-nav a {
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a.active {
	color: #fff;
}

.hero {
	position: relative;
	height: 85vh;
	background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('../../images/pic01.png') center/cover;
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 4rem;
	margin-bottom: 2rem;
}

.brand {
	font-family: "Syncopate", sans-serif;
	font-size: clamp(3rem, 10vw, 8rem);
	font-weight: 700;
	letter-spacing: -0.05em;
	margin: 0;
	line-height: 1;
	text-transform: uppercase;
}

.hero-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.hero-tagline {
	font-size: 1.5rem;
	font-weight: 600;
	max-width: 15ch;
	line-height: 1.2;
}

.hero-location {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.section {
	padding: 4rem 2rem;
	background: var(--surface);
	border-radius: var(--radius);
	margin-bottom: 2rem;
	border: 1px solid var(--line);
}

.section-head {
	margin-bottom: 3rem;
}

.section-head h2 {
	font-family: "Syncopate", sans-serif;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.section-head p {
	color: var(--muted);
	font-size: 1.1rem;
	max-width: 60ch;
	margin: 0;
}

.card-grid {
	display: grid;
	gap: 2rem;
}

.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.card-number {
	font-size: 2rem;
	font-weight: 300;
	color: var(--primary);
}

.card-title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text);
}

.card p {
	font-size: 0.9rem;
	color: var(--muted);
	margin: 0;
}

.tag-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.tag-list li {
	padding: 0.5rem 1.5rem;
	background: var(--beige);
	border: 1px solid var(--line);
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.8rem;
	color: var(--text);
	text-transform: uppercase;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

.footer-grid h3 {
	font-family: "Syncopate", sans-serif;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

.footer-grid p, .footer-grid a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.9rem;
}

.footer-grid a:hover {
	color: var(--text);
}

.legal {
	text-align: center;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.3);
	border-top: 1px solid var(--line);
	padding-top: 2rem;
}

@media (max-width: 1024px) {
	.card-grid.four, .card-grid.three {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero { padding: 2rem; height: 70vh; }
	.hero-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; }
	.site-header { position: relative; top: 0; padding: 1rem 0; width: 100%; }
	.site-nav { gap: 1rem; flex-wrap: wrap; }
	.card-grid.four, .card-grid.three, .card-grid.two {
		grid-template-columns: 1fr;
	}
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
