:root {
	--bg: #fff9f6;
	--text: #111;
	--muted: #6b6b6b;
}

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

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

.page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hero {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}

.blob {
	width: 420px;
	height: 260px;
	border-radius: 12px;
	background: radial-gradient(circle at 30% 60%, #f7b2d9, transparent 55%), radial-gradient(circle at 70% 40%, #e7a15c, transparent 55%);
	filter: blur(24px);
	opacity: 0.85;
	position: relative;
}

.dots {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	gap: 10px;
}

.dots div {
	display: grid;
	grid-template-columns: repeat(3, 10px);
	gap: 10px;
}

.dot {
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
}

main {
	max-width: 520px;
	margin: 4rem auto 0;
	padding: 0 1.5rem;
	text-align: left;
}

h1 {
	font-family: "Playfair Display", serif;
	font-size: 2.1rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

h1 strong {
	font-weight: 600;
}

p {
	font-size: 0.92rem;
	color: var(--muted);
	margin-bottom: 1.2rem;
}

.signature {
	margin-top: 2rem;
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: 0.95rem;
	color: #333;
}

footer {
	display: flex;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	font-size: 0.7rem;
	color: #888;
}

@media (max-width: 600px) {
	.hero {
		margin-top: 3rem;
	}

	main {
		margin-top: 3rem;
	}

	footer {
		padding: 1rem;
	}
}
