*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	background: #f6f3ee;
	color: #1a1a1a;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
.wrap {
	max-width: 760px;
	margin: 0 auto;
	padding: 32px 24px 48px;
}
header.top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
header.top a.back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #1a4d3e;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	min-height: 44px;
	padding: 0 8px;
	border-radius: 8px;
}
header.top a.back:active { background: #e8e3d8; }
h1 {
	font-size: 28px;
	font-weight: 700;
	color: #1a4d3e;
	margin: 0 0 6px;
}
.meta {
	font-size: 13px;
	color: #888;
	margin: 0 0 20px;
}
h2 {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 28px 0 8px;
}
p, li {
	font-size: 15px;
	color: #3a3a3a;
}
p { margin: 0 0 12px; }
ul { padding-left: 20px; margin: 0 0 12px; }
li { margin-bottom: 4px; }
a { color: #1a4d3e; }
strong { color: #1a1a1a; }
.nav-card {
	display: block;
	padding: 14px 16px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	margin-bottom: 8px;
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 500;
}
.nav-card:active { opacity: 0.7; }
footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #e8e3d8;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 14px;
	font-size: 13px;
	color: #999;
}
footer a { color: #1a4d3e; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .sep { color: #d4cec1; }

/* Language picker — used on landing + legal pages */
.lang-picker {
	display: inline-flex;
	gap: 4px;
	margin-left: auto;
}
.lang-picker button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 6px;
	background: transparent;
	border: 1.5px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}
.lang-picker button:hover {
	background: #efeae0;
}
.lang-picker button.active {
	border-color: #1a4d3e;
	background: #fff;
}
.lang-picker button img {
	width: 22px;
	height: 16px;
	border-radius: 2px;
	display: block;
	object-fit: cover;
}
.lang-picker button:focus-visible {
	outline: 2px solid #1a4d3e;
	outline-offset: 2px;
}

/* Hide language-scoped content blocks until i18n.js toggles them */
html:not(.i18n-ready) [data-lang] {
	display: none;
}
[data-lang][hidden] {
	display: none !important;
}

