@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;600&display=swap');

:root {
    --bg: #f8f6f1;
    --text: #1a1a1a;
    --accent: #c8102e;
    --border: #ddd;
    --card-bg: #fff;
    --fs: 'Inter', system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #111111;
        --text: #f5f5f5;
        --accent: #e63939;
        --border: #333333;
        --card-bg: #1a1a1a;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    padding: 3rem 2rem;
    max-width: 780px;
    margin: 0 auto;
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

/* Mobile */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
}
