/*
 * Reset & Grundtypografie – wird auf jeder Seite geladen (siehe functions.php).
 * Quelle: Herzenswald_Startseite_Prototyp.html, Abschnitt "Basis"-Regeln vor den
 * Komponenten. Siehe CLAUDE.md Abschnitt 11.2 für die Typografie-Hierarchie.
 */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
}

img,
svg {
	display: block;
	max-width: 100%;
}

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

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3 {
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.01em;
}

h2 {
	font-size: clamp(26px, 3.4vw, 38px);
	line-height: 1.15;
}

h3 {
	font-size: 19px;
}

p {
	margin: 0;
	line-height: 1.6;
	color: var(--erdbraun-70);
}
