:root {
    --color-primary: #111c2e;
    --color-primary-light: #1a2940;
    --color-primary-dark: #0a121f;

    --color-accent: #c9a227;
    --color-accent-light: #e4ce78;
    --color-accent-dark: #a7861f;

    --color-white: #ffffff;
    --color-ivory: #f8f6f1;
    --color-background: #f4f4f2;

    --color-text: #18202b;
    --color-text-secondary: #626873;
    --color-text-light: #ffffff;
    --color-border: #e4e4e1;

    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.375rem;
    --fs-xl: 1.75rem;

    --fs-h3: clamp(1.5rem, 2vw, 2rem);
    --fs-h2: clamp(2.5rem, 4vw, 4rem);
    --fs-h1: clamp(3.25rem, 6vw, 6rem);

    --line-height-tight: 1;
    --line-height-heading: 1.1;
    --line-height-body: 1.65;

    --container: 1200px;
    --container-wide: 1400px;
    --container-narrow: 900px;

    --gutter: 24px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 96px;
    --space-3xl: 120px;

    --section-space: 120px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 20px rgba(17, 28, 46, 0.08);
    --shadow-md: 0 12px 40px rgba(17, 28, 46, 0.12);
    --shadow-lg: 0 24px 70px rgba(17, 28, 46, 0.16);

    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 400ms ease;

    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
}

@media (max-width: 991px) {
    :root {
        --section-space: 90px;
        --gutter: 20px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-space: 64px;
        --gutter: 18px;

        --fs-h1: clamp(2.75rem, 13vw, 4rem);
        --fs-h2: clamp(2.25rem, 10vw, 3.25rem);
    }
}