* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: #3a2f28;
	background: #faf7f0;
	line-height: 1.6;
}

h1, h2, h3 {
	font-family: Georgia, "Times New Roman", serif;
	margin: 0 0 12px;
	color: #2d4a2e;
}

a {
	color: #2d4a2e;
	text-decoration: none;
}

header {
	background: #faf7f0;
	border-bottom: 1px solid #e6ddc9;
	padding: 18px 32px;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo a {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
	font-weight: bold;
	color: #2d4a2e;
}

.logo .dot {
	color: #c98a2c;
}

nav a {
	font-weight: 600;
	color: #3a2f28;
}

.hero {
	position: relative;
	min-height: 560px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 30, 15, 0.75) 0%, rgba(20, 30, 15, 0.25) 55%, rgba(20, 30, 15, 0.05) 100%);
}

.hero-content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 32px;
	color: #fff;
}

.hero-content h1 {
	color: #fff;
	font-size: 2.6rem;
	max-width: 700px;
}

.hero-content .tagline {
	font-size: 1.2rem;
	max-width: 560px;
	color: #f2ead9;
	margin: 0;
}

.section {
	padding: 56px 32px;
}

.section-content {
	max-width: 1200px;
	margin: 0 auto;
}

.section.intro {
	background: #fff;
	border-bottom: 1px solid #e6ddc9;
}

.section.intro h2 {
	font-size: 1.6rem;
	max-width: 780px;
}

.section.intro p {
	max-width: 780px;
	font-size: 1.05rem;
}

.section.categories h2 {
	font-size: 1.6rem;
	margin-bottom: 24px;
}

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

.category-card {
	background: #fff;
	border: 1px solid #e6ddc9;
	border-radius: 10px;
	padding: 22px 24px;
}

.category-card h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.category-card p {
	margin: 0;
	color: #5a4d40;
	font-size: 0.95rem;
}

.coming-soon-note {
	margin-top: 28px;
	color: #8a7a63;
	font-style: italic;
}

footer {
	background: #2d4a2e;
	color: #d9d2bf;
	text-align: center;
	padding: 24px 32px;
	font-size: 0.9rem;
}

footer a {
	color: #f2ead9;
}

@media (max-width: 640px) {
	.hero-content h1 { font-size: 1.9rem; }
	.hero { min-height: 420px; }
}
