:root {
    --color-primary: #ea7a18;
    --color-primary-dark: #cf6610;
    --color-accent: #ffb14a;
    --color-secondary: #1f3c88;
    --color-secondary-dark: #162d67;

    --color-bg: #f7f8fb;
    --color-surface: #ffffff;
    --color-surface-alt: #fff6ec;

    --color-text: #1f2937;
    --color-text-soft: #5b6472;
    --color-border: #e6d7c8;
    --color-success: #178a57;
    --color-shadow: 0 12px 32px rgba(18, 38, 63, 0.08);
    --color-shadow-strong: 0 18px 48px rgba(18, 38, 63, 0.14);

    --container-width: 1200px;
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-2xl: 2.25rem;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;

    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --transition-fast: 160ms ease;
    --transition-base: 220ms ease;
    --transition-slow: 420ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html.site-preload,
html.site-preload body {
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--color-bg);
}

html.site-preload [data-campaign] {
    visibility: hidden !important;
}

html.site-preload .reveal-on-load {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

html.site-preload .site-header {
    min-height: 6.25rem;
}

html.site-preload .site-header .header-inner {
    visibility: hidden !important;
    opacity: 0 !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

picture {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
    margin: 0;
}

main {
    min-height: 60vh;
}

section {
    position: relative;
}

::selection {
    background: rgba(234, 122, 24, 0.18);
}
