/* ============ DESIGN SYSTEM ============ */
:root {
    --primary: #C2185B;
    --primary-deep: #8B0049;
    --secondary: #7C3AED;
    --accent-pink: #F8BBD0;
    --accent-pink-soft: #FCE4EC;
    --accent-purple-soft: #EDE9FE;
    --gold: #F4B942;
    --bg: #FDF7FB;
    --bg-gradient: linear-gradient(180deg, #FCE4EC 0%, #FDF7FB 40%);
    --surface: #FFFFFF;
    --surface-2: #FAF5F8;
    --text: #2D1B2E;
    --text-muted: #8B7B8C;
    --text-light: #B8A5B9;
    --border: #F0E4ED;
    --border-light: #F8EEF4;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Be Vietnam Pro', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 6px rgba(194, 24, 91, 0.06);
    --shadow-md: 0 4px 16px rgba(194, 24, 91, 0.08);
    --shadow-lg: 0 12px 32px rgba(194, 24, 91, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: -0.01em;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: var(--font-body);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}