:root {
	--bg: #12140f;
	--panel: #1a1d16;
	--ink: #ecebe4;
	--muted: #9a9c8f;
	--line: #2c2f26;
	--accent: #c8d94a;
	box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }

html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: 960px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.site-header {
	position: sticky;
	top: 0;
	background: rgba(18,20,15,0.86);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
	z-index: 10;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}
.brand {
	font-family: "Fraunces", Georgia, serif;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.brand-dot { color: var(--accent); }
.nav { display: flex; gap: 28px; }
.nav a { color: var(--muted); font-weight: 500; transition: color 0.15s; }
.nav a:hover { color: var(--ink); }

.hero { padding: 96px 24px 72px; max-width: 820px; }
.kicker {
	color: var(--accent);
	font-weight: 500;
	margin: 0 0 20px;
	font-size: 15px;
}
h1 {
	font-family: "Fraunces", Georgia, serif;
	font-weight: 600;
	font-size: clamp(34px, 6vw, 60px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}
.lede { color: var(--muted); font-size: 19px; margin: 0 0 32px; max-width: 60ch; }

.cta {
	display: inline-block;
	background: var(--accent);
	color: #171a10;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 999px;
	transition: transform 0.15s, opacity 0.15s;
}
.cta:hover { opacity: 0.9; transform: translateY(-1px); }

.section { padding: 64px 24px; border-top: 1px solid var(--line); }
h2 {
	font-family: "Fraunces", Georgia, serif;
	font-weight: 600;
	font-size: clamp(26px, 4vw, 38px);
	letter-spacing: -0.01em;
	margin: 0 0 32px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}
.card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 28px;
}
.card h3 {
	font-family: "Fraunces", Georgia, serif;
	font-weight: 600;
	font-size: 22px;
	margin: 0 0 10px;
}
.card p { color: var(--muted); margin: 0; }

.two-col { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.two-col h2 { margin: 0; }
.prose p { margin: 0 0 18px; color: var(--muted); max-width: 62ch; }
.prose p:last-child { margin-bottom: 0; }

.contact .cta { margin-top: 8px; }

.site-footer { border-top: 1px solid var(--line); padding: 32px 24px; }
.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--muted);
	font-size: 15px;
}
.muted { color: var(--muted); }

@media (max-width: 640px) {
	.nav { gap: 18px; }
	.two-col { grid-template-columns: 1fr; gap: 20px; }
	.hero { padding-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; }
}
