:root {
	--blush: #f7d9d2;
	--rose: #c97876;
	--sage: #8aa399;
	--ink: #2f2a2a;
	--cream: #fff8f3;
	--white: #ffffff;
}

* { box-sizing: border-box; }

body {
	min-height: 100vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.6;
}

main { flex: 1; }

a { color: inherit; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem clamp(1rem, 4vw, 4rem);
	background: rgba(255, 248, 243, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(47, 42, 42, 0.08);
}

.logo {
	font-family: Georgia, serif;
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.03em;
}

nav { display: flex; gap: 1rem; flex-wrap: wrap; }
nav a { text-decoration: none; font-weight: 650; color: #5f5454; }
nav a:hover { color: var(--rose); }

.hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: center;
	gap: 2rem;
	padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
	background: radial-gradient(circle at top left, #fff 0 20%, transparent 35%), linear-gradient(135deg, #fff5ef, #f6ded7 60%, #e8f0eb);
}

.hero h1, .page-title h1 {
	font-family: Georgia, serif;
	font-size: clamp(2.4rem, 6vw, 5rem);
	line-height: 1;
	margin: 0 0 1rem;
}

.hero-card {
	min-height: 360px;
	border-radius: 2rem;
	background: linear-gradient(160deg, rgba(255,255,255,.5), rgba(255,255,255,.15)), url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1200&q=80') center/cover;
	box-shadow: 0 25px 70px rgba(93, 66, 60, 0.18);
}

.button {
	display: inline-block;
	padding: 0.85rem 1.2rem;
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font-weight: 750;
	text-decoration: none;
}

.button.secondary { background: var(--rose); }

main section, .page-title {
	padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1rem;
}

.card {
	padding: 1.5rem;
	border-radius: 1.2rem;
	background: var(--white);
	box-shadow: 0 10px 35px rgba(47, 42, 42, 0.08);
}

.card h3 { margin-top: 0; }
.price { color: var(--rose); font-weight: 800; }

.banner {
	border-radius: 1.5rem;
	background: var(--sage);
	color: white;
	padding: 2rem;
}

.two-col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	align-items: start;
}

input, textarea, select {
	width: 100%;
	padding: 0.8rem;
	margin: 0.35rem 0 1rem;
	border: 1px solid #e4d8d2;
	border-radius: 0.75rem;
	font: inherit;
	background: white;
}

label { font-weight: 700; }

footer {
	padding: 2rem clamp(1rem, 4vw, 4rem);
	background: #2f2a2a;
	color: #fff8f3;
}

@media (max-width: 640px) {
	.site-header { align-items: flex-start; flex-direction: column; }
}
