* { box-sizing: border-box; }
html, body {
	height: 100%;
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Montserrat', 'Google Sans', 'Noto Sans', 'Castoro', sans-serif;
	overflow: auto; /* was: hidden — allow full-page scrolling */
	display: flex;
	flex-direction: column;
}
