/* ==========================================================================
   Bürger W. — Base: Reset, Variablen, Typografie
   Design-Richtung: "Vertrauensvolle Klarheit"
   ========================================================================== */

:root {
	--primary: #1B3A5C;
	--ink: #23282E;
	--bg: #F4F2EE;
	--accent: #C9A227;
	--radius: 4px;
	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

	--surface: #FFFFFF;
	--border: oklch(88% 0.01 250);
	--ink-soft: oklch(45% 0.03 250);
	--shadow-sm: 0 1px 2px oklch(20% 0.02 250 / 0.06), 0 1px 1px oklch(20% 0.02 250 / 0.04);
	--shadow-md: 0 8px 24px oklch(20% 0.03 250 / 0.10), 0 2px 8px oklch(20% 0.03 250 / 0.06);
	--shadow-lg: 0 24px 60px oklch(20% 0.04 250 / 0.16), 0 8px 20px oklch(20% 0.03 250 / 0.08);

	--container: 1240px;
	--gap: 2rem;
	--section-pad: clamp(4rem, 8vw, 7.5rem);

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--dur-fast: 180ms;
	--dur-base: 260ms;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
	background: var(--bg);
	color: oklch(35% 0.02 250);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	text-wrap: pretty;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, video, iframe { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; height: auto; }

.icon {
	width: 1.4em;
	height: 1.4em;
	flex: 0 0 auto;
	vertical-align: middle;
	max-width: 32px;
	max-height: 32px;
}

a {
	color: var(--primary);
	text-decoration: none;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.15;
	margin: 0 0 0.6em;
	font-weight: 600;
	text-wrap: pretty;
	letter-spacing: -0.01em;
}

h1 {
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 600;
	margin-bottom: 0.4em;
}

h2 {
	font-size: clamp(1.9rem, 3.4vw, 2.75rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p { margin: 0 0 1.1em; max-width: 62ch; }

.lede {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	color: var(--ink-soft);
	max-width: 54ch;
}

ul.plain, ol.plain { list-style: none; margin: 0; padding: 0; }

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
}

.eyebrow::before {
	content: '';
	width: 1.5rem;
	height: 2px;
	background: var(--accent);
	display: inline-block;
}

::selection { background: var(--accent); color: var(--ink); }

:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
	border-radius: 2px;
}

.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}

@media (max-width: 900px) {
	body { font-size: 16px; }
	.container { padding-inline: 1.25rem; }
}

@media (max-width: 600px) {
	h1 { line-height: 1.1; }
}
