@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap");

:root {
	--bg: #f9f6f0;
	--fg: #31271e;
	--muted: #766b60;
	--green: #1e3a2f;
	--green2: #4a7c59;
	--primary: #5f8a3e;
	--card: #f6f1e8;
	--border: #ddd0be;
	--amber: #f6c85f;
	--white: #fff;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: Mulish, Arial, sans-serif;
	line-height: 1.6;
}

h1,
h2,
h3,
h4 {
	font-family: "Playfair Display", serif;
	line-height: 1.15;
	font-weight: 700;
}

p {
	margin: 0 0 16px;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1120px, calc(100% - 32px));
	margin: auto;
}

.container-sm {
	width: min(800px, calc(100% - 32px));
	margin: auto;
}

.topbar {
	background: var(--green);
	padding: 22px 0;
}

.back-link,
.nav a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
}

.back-link:hover,
.nav a:hover {
	color: #fff;
}

.hero-dark {
	background: var(--green);
	color: #fff;
	padding: 56px 0;
}

.hero-dark .eyebrow {
	color: rgba(252, 211, 77, 0.8);
}

.eyebrow {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-weight: 800;
	margin-bottom: 14px;
}

.lead {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.72);
	max-width: 720px;
}

.text-center {
	text-align: center;
}

.section {
	padding: 80px 0;
}

.section-sm {
	padding: 52px 0;
}

.bg-white {
	background: #fff;
}

.bg-light {
	background: #f5f1ea;
}

.grid {
	display: grid;
	gap: 24px;
}

.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(30, 58, 47, 0.06);
}

.card.white {
	background: #fff;
}

.card.dark {
	background: var(--green);
	color: #fff;
	border-color: transparent;
}

.badge {
	display: inline-block;
	background: rgba(30, 58, 47, 0.1);
	color: var(--green);
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 10px;
	padding: 13px 20px;
	font-weight: 800;
	border: 1px solid var(--green);
	transition: 0.2s;
	cursor: pointer;
}

.btn-green {
	background: var(--green);
	color: #fff;
}

.btn-green:hover {
	background: #2a5240;
}

.btn-outline {
	color: var(--green);
	background: transparent;
}

.btn-outline:hover {
	background: rgba(30, 58, 47, 0.06);
}

.btn-amber {
	background: #facc15;
	color: var(--green);
	border-color: #facc15;
}

.btn-white {
	background: #fff;
	color: var(--green);
	border-color: #fff;
}

.hero-img {
	width: 100%;
	max-height: 80vh;
	object-fit: contain;
	display: block;
	background: #eee;
}

.stat-icon {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	margin: 0 auto 20px;
	background: #e8f5ee;
	border: 2px solid rgba(74, 124, 89, 0.25);
}

.stat-num {
	font-family: "Playfair Display", serif;
	font-size: 42px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1;
}

.stat-title {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	margin: 8px 0 12px;
}

.list-clean {
	padding: 0;
	margin: 0;
	list-style: none;
}

.list-clean li {
	margin: 8px 0;
}

.leader-card {
	display: flex;
	align-items: center;
	gap: 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-left: 5px solid #34d399;
	border-radius: 16px;
	padding: 18px;
	color: #fff;
}

.rank {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #059669;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.leader-card .meta {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.footer {
	background: var(--green);
	color: rgba(255, 255, 255, 0.78);
	padding: 56px 0;
}

.footer h4 {
	font-family: Mulish, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #fff;
	font-size: 14px;
}

.logo-img {
	width: 190px;
	border-radius: 12px;
	background: #fff;
	min-height: 90px;
	object-fit: contain;
}

.partner-logo {
	height: 64px;
	max-width: 140px;
	object-fit: contain;
	background: #fff;
	border-radius: 10px;
	padding: 8px;
}

.form-section {
	background: var(--green);
	color: #fff;
	padding: 64px 0;
}

.form {
	display: grid;
	gap: 18px;
}

.form label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
}

.form input,
.form textarea,
.form select {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 10px;
	padding: 13px 14px;
	font: inherit;
	outline: none;
}

.form select option {
	color: #222;
}

.form input::placeholder,
.form textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.form .two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.notice {
	padding: 18px;
	border-radius: 14px;
	background: #f0f7f4;
	border: 1px solid rgba(74, 124, 89, 0.25);
	color: #5f5a52;
}

.notice.blue {
	background: #f0f4ff;
	border-color: #bfdbfe;
}

.notice.red {
	background: #fff1f2;
	border-color: #fecdd3;
}

.post {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 22px;
	overflow: hidden;
	scroll-margin-top: 20px;
}

.post-head {
	display: flex;
	gap: 18px;
	padding: 24px;
}

.post-emoji {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	background: #e8f5ee;
	border: 2px solid rgba(74, 124, 89, 0.25);
	flex: 0 0 auto;
}

.post-body {
	border-top: 1px solid var(--border);
	padding: 24px;
}

.model-row {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 20px;
}

.model-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--green2);
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.photo-placeholder {
	min-height: 320px;
	border-radius: 22px;
	border: 1px dashed #b8aa9c;
	background: #eee7dc;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #766b60;
	padding: 20px;
	overflow: hidden;
}

.photo-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qrbox {
	width: 200px;
	height: 200px;
	background: #fff;
	border-radius: 12px;
	margin: 20px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1e3a2f;
	font-weight: 800;
	text-align: center;
	border: 8px solid #fff;
	box-shadow: inset 0 0 0 2px #ddd;
}

.topnav {
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
}

.topnav a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: 700;
}

.topnav a:hover {
	color: #fff;
}

.small {
	font-size: 13px;
	color: var(--muted);
}

.mb-0 {
	margin-bottom: 0;
}

.mt-2 {
	margin-top: 14px;
}

.mt-4 {
	margin-top: 26px;
}

.gap-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hide {
	display: none;
}

@media (max-width: 800px) {
	.grid-2,
	.grid-3,
	.form .two {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 58px 0;
	}

	.hero-dark {
		padding: 42px 0;
	}

	.leader-card {
		align-items: flex-start;
	}

	.topnav {
		gap: 12px;
	}

	h1 {
		font-size: 32px !important;
	}

	h2 {
		font-size: 28px !important;
	}

	.lead {
		font-size: 16px;
	}

	.post-head {
		padding: 20px;
		gap: 14px;
	}

	.post-body {
		padding: 20px;
	}
}
