:root {
    /* Colors — Light Premium Love Palette */
    --color-primary: #8B2252;
    --color-primary-light: #A83D6E;
    --color-primary-dark: #6E1A41;
    --color-secondary: #3D1C56;
    --color-secondary-light: #5A3478;
    --color-accent: #D4A843;
    --color-accent-light: #E5C36E;
    --color-accent-dark: #B8922F;
    --color-soft: #FFE4E6;
    --color-soft-muted: #FFF0F1;

    /* Backgrounds */
    --color-bg: #F8F5FC;
    --color-bg-white: #FFFFFF;
    --color-bg-alt: #F0EAF5;
    --color-bg-card: #FFFFFF;
    --color-bg-hero: linear-gradient(135deg, #3D1C56 0%, #8B2252 50%, #5A3478 100%);
    --color-bg-section-alt: linear-gradient(180deg, #F8F5FC 0%, #F0EAF5 100%);
    --color-bg-cta: linear-gradient(135deg, #8B2252 0%, #3D1C56 100%);
    --color-overlay: rgba(61, 28, 86, 0.7);

    /* Text */
    --color-text: #2D2B3D;
    --color-text-light: #6B6880;
    --color-text-muted: #9895A8;
    --color-text-on-dark: #FFFFFF;
    --color-text-on-dark-muted: rgba(255, 255, 255, 0.75);

    /* Borders */
    --color-border: #E8E4F0;
    --color-border-light: #F0ECF5;

    /* Status */
    --color-success: #4CAF50;
    --color-warning: #FF9800;
    --color-star: #D4A843;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.25rem;
    --text-6xl: 4rem;

    /* Line Heights */
    --leading-tight: 1.15;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --section-padding: 5rem 0;
    --section-padding-lg: 6.5rem 0;

    /* Borders & Shadows */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(45, 43, 61, 0.05);
    --shadow-sm: 0 2px 8px rgba(45, 43, 61, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 43, 61, 0.1);
    --shadow-lg: 0 8px 32px rgba(45, 43, 61, 0.12);
    --shadow-xl: 0 16px 48px rgba(45, 43, 61, 0.16);
    --shadow-glow: 0 0 24px rgba(139, 34, 82, 0.2);
    --shadow-gold: 0 4px 16px rgba(212, 168, 67, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
    --transition-spring: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-wide: 1400px;
    --container-padding: 1.5rem;
    --grid-gap: 1.5rem;

    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
        --section-padding: 3rem 0;
        --section-padding-lg: 4rem 0;
        --container-padding: 1rem;
        --grid-gap: 1rem;
    }
}
