:root {
    /* Primary */
    --color-primary: #174076;
    --color-primary-hover: #103057;

    /* Accent */
    --color-accent: #B9764B;
    --color-accent-hover: #A06030;

    /* Material */
    --color-material-oak: #A06030;

    /* Backgrounds */
    --color-bg: #FAF7F2;
    --color-surface: #EFE3CC;

    /* Text */
    --color-text: #1F2937;
    --color-text-muted: #6B7280;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;

    /* Border-Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Breakpoints (nur Doku, JS-koppelbar) */
    --bp-mobile: 375px;
    --bp-tablet: 768px;
    --bp-desktop: 1024px;
}

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

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, sans-serif;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3 {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.4;
}

a { color: var(--color-primary); }

img { max-width: 100%; height: auto; }
