:root {
	--bg: #0f0b08;
	--bg-alt: #15100c;
	--text: #f7efe7;
	--muted: #d9c9b9;
	--brand: #9c6b3d;
	--brand-2: #d4a373;
	--card: #1b140f;
	--ring: #2a1b0a;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
	box-sizing: border-box;
}
html,
body {
	overflow-x: hidden;
	height: 100%;
}
body {
	margin: 0;
	background: radial-gradient(
		1200px 800px at 80% -10%,
		#2b1a10 0%,
		var(--bg) 45%
	);
	color: var(--text);
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
		Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
.container {
	width: min(1120px, 92%);
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: saturate(1.2) blur(8px);
	background: linear-gradient(
		180deg,
		rgba(15, 11, 8, 0.9),
		rgba(15, 11, 8, 0.6)
	);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
}
.logo {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: 0.5px;
}
.logo span {
	color: var(--brand-2);
}

.logo img {
	width: 100px;
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 6px;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	margin: 5px 0;
	transition: 0.3s;
}

.site-nav {
	display: flex;
	gap: 20px;
}
.site-nav a {
	opacity: 0.85;
	padding: 10px 12px;
	border-radius: 12px;
}
.site-nav a:hover {
	background: rgba(255, 255, 255, 0.05);
	opacity: 1;
}

@media (max-width: 820px) {
	.nav-toggle {
		display: block;
	}
	.site-nav {
		position: absolute;
		right: 4%;
		top: 60px;
		background: var(--card);
		border: 1px solid rgba(255, 255, 255, 0.06);
		border-radius: 16px;
		padding: 12px;
		width: min(260px, 92%);
		box-shadow: var(--shadow);
		display: none;
		flex-direction: column;
	}
	.site-nav.open {
		display: flex;
	}
}

.section {
	padding: clamp(48px, 7vw, 96px) 0;
}
.alt {
	background: linear-gradient(180deg, var(--bg-alt), transparent);
}

.display {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	line-height: 1.15;
	margin: 0 0 10px;
}
.h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	margin: 0 0 16px;
}
.h3 {
	font-size: 1.25rem;
	margin: 0.2rem 0 10px;
}
.h4 {
	font-size: 1.1rem;
	margin: 0.2rem 0 8px;
}
.lead {
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	color: var(--muted);
	margin: 10px 0 18px;
}
.micro {
	font-size: 0.875rem;
	opacity: 0.75;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: center;
	gap: clamp(16px, 4vw, 40px);
}
.hero-visual {
	position: relative;
	min-height: 360px;
}
.floating-img {
	position: absolute;
	filter: drop-shadow(0 10px 18px rgba(207, 255, 117, 0.203));
	max-width: 600px;
	z-index: 100;
	left: 20%;
	top: -20%;
}

.ring {
	position: absolute;
	border: 1px dashed rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}
.ring-1 {
	width: 360px;
	height: 360px;
	left: 40%;
	top: 10%;
}
.ring-2 {
	width: 520px;
	height: 520px;
	left: 30%;
	top: -2%;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.card {
	background: var(--card);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	padding: 18px;
	box-shadow: var(--shadow);
}
.card p {
	color: var(--muted);
	margin: 8px 0 0;
}

.two-col {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: center;
}
.image-stack {
	position: relative;
	min-height: 280px;
}
.stack-item {
	position: absolute;
	width: clamp(120px, 24vw, 220px);
}
.stack-item.one {
	width: 500px;
	top: -150px;
	filter: drop-shadow(0 10px 18px rgba(207, 255, 117, 0.203));
}
.stack-item.two {
	width: 300px;
	left: 60%;
	top: -2%;
	filter: drop-shadow(0 10px 18px rgba(207, 255, 117, 0.203));
}

.banner {
	background: radial-gradient(
			650px 300px at 10% 10%,
			rgba(156, 107, 61, 0.3),
			transparent
		),
		linear-gradient(180deg, var(--ring), var(--bg-alt));
}
.banner-inner {
	text-align: center;
}
.banner .btn {
	margin-top: 12px;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.gap {
	gap: 24px;
}

.bullets,
.numbers {
	color: var(--muted);
	padding-left: 18px;
}
.bullets li {
	margin: 0.4rem 0;
}
.numbers li {
	margin: 0.5rem 0;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.gallery-img {
	background: rgba(255, 255, 255, 0.04);
	border: 1px dashed rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 16px;
	width: 200px;
	height: 200px;
	object-fit: cover;
}

.note {
	background: var(--card);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	padding: 18px;
}

.mt {
	margin-top: 22px;
}

.btn {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: 0.2s;
	font-weight: 600;
}
.btn:hover {
	transform: translateY(-1px);
}
.btn-primary {
	background: linear-gradient(180deg, #c08b52, #9c6b3d);
	color: #1b140f;
	border: none;
}
.btn-ghost {
	background: transparent;
}
.cta-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	font-size: 0.95rem;
}
.footer-inner .socials {
	display: none;
	gap: 12px;
	opacity: 0.8;
}
.footer-inner .socials a {
	padding: 6px 10px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form {
	max-width: 600px;
}
.form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 10px 0;
}
input,
textarea {
	background: var(--card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 12px;
	color: var(--text);
	font: inherit;
	outline: none;
}
input:focus,
textarea:focus {
	border-color: var(--brand-2);
}

@media (max-width: 980px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}
	.two-col {
		grid-template-columns: 1fr;
	}
	.grid-2 {
		grid-template-columns: 1fr;
	}
	.cards {
		grid-template-columns: 1fr;
	}
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero-visual {
		min-height: 300px;
	}

	.floating-img {
		max-width: 100%;
		top: -148px;
		left: 120px;
		width: 100%;
	}

	.stack-item.one {
		left: 69%;
	}

	.stack-item.two {
		width: 400px;
		top: -45%;
		left: -21%;
	}
}

@media (max-width: 560px) {
	.gallery {
		grid-template-columns: 1fr;
	}
	.footer-inner {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.stack-item.one {
	}

	.floating-img {
		width: 100%;
	}
}

::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: var(--bg-alt);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
	border-radius: 10px;
	border: 2px solid var(--bg-alt);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
	transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--brand-2) 0%, var(--brand) 100%);
}

::-webkit-scrollbar-corner {
	background: var(--bg);
}

* {
	scrollbar-width: thin;
	scrollbar-color: var(--brand) var(--bg-alt);
}

.site-footer {
	width: 100%;
	margin-top: auto;
}

.content {
	height: calc(100% - 70.5px);
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
}
