:root {
	--bg: #fbf1e8;
	--accent: #b3845a;
	--text: #5b4a3a;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	display: flex;
	flex-direction: column;
}

.container {
	flex: 1;
	max-width: 920px;
	margin: 0 auto;
	padding: 48px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.logo {
	width: 280px;
	max-width: 70vw;
	height: auto;
	display: block;
	margin-bottom: 24px;
	filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
}

h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(32px, 6vw, 56px);
	margin: 8px 0;
	letter-spacing: 0.5px;
	color: var(--accent);
}

.tagline {
	font-size: clamp(16px, 2.6vw, 20px);
	margin: 8px 0 0;
	opacity: 0.85;
}

footer {
	text-align: center;
	padding: 16px 12px;
	font-size: 14px;
	opacity: 0.7;
} 