:root {
    /* Soft editorial palette */
    --color-pastel-lime: #cdc779;
    --color-pastel-coral: #d85b45;
    --color-pastel-pink: #f2d7e1;
    --color-pastel-warm-bg: #f7f2eb;
    --color-pastel-blue: #efe4da;
    --color-pastel-lavender: #e7ddd2;
    --color-pastel-peach: #f1baab;

    /* Semantic colors (keep existing variable names) */
    --color-primary: var(--color-pastel-lime);
    --color-primary-deep: #302720;
    --color-primary-soft: rgba(205, 199, 121, 0.24);

    --color-light-pink: var(--color-pastel-pink);
    --color-accent-pink: var(--color-pastel-coral);
    --color-accent-pink-deep: #b63824;

    --color-background: var(--color-pastel-warm-bg);
    --color-surface: rgba(255, 251, 246, 0.92);
    --color-surface-strong: #fffaf5;
    --color-surface-muted: rgba(247, 240, 232, 0.92);

    --color-border: rgba(32, 24, 18, 0.1);
    --color-border-strong: rgba(32, 24, 18, 0.18);

    --color-text: #332922;
    --color-text-muted: rgba(51, 41, 34, 0.68);
    --color-text-soft: rgba(51, 41, 34, 0.48);

    --color-success: #82914a;

    --color-shadow: rgba(58, 37, 28, 0.08);
    --color-shadow-strong: rgba(58, 37, 28, 0.14);

    --font-family-base: "Alice";
    --font-family-heading: "Unbounded";
    --font-family-accent: "Great Vibes";
    --font-weight-heading: 500;
    --font-weight-heading-soft: 400;

    /* Radius system */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-card: 24px;
    --radius-lg: 28px;

    /* Spacing system */
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;

    --sidebar-width: 264px;
    --container-padding: 24px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow-sm: 0 14px 32px var(--color-shadow);
    --shadow-md: 0 20px 46px var(--color-shadow);
    --shadow-lg: 0 30px 72px var(--color-shadow-strong);

    --focus-ring: rgba(216, 91, 69, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-family-base);
    background:
        radial-gradient(circle at 12% 8%, rgba(242, 215, 225, 0.6), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(205, 199, 121, 0.28), transparent 24%),
        radial-gradient(circle at 92% 78%, rgba(241, 186, 171, 0.28), transparent 26%),
        linear-gradient(180deg, rgba(255, 252, 248, 0.6), rgba(255, 252, 248, 0)),
        var(--color-background);
    color: var(--color-text);
}

h1,
h2,
h3,
h4,
.page-title,
.sidebar__title,
.section-heading__title,
.landing-logo__text,
.public-logo__title,
.public-footer__brand strong,
.app-footer__brand strong,
.app-mockup__title {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-heading);
}

.sidebar__title,
.landing-logo__text,
.public-logo__title,
.public-footer__brand strong,
.app-footer__brand strong,
.app-mockup__title {
    font-weight: var(--font-weight-heading-soft);
}

.brand-word {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    text-transform: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

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

::selection {
    background: rgba(216, 91, 69, 0.18);
}

:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
    border-radius: 12px;
}

@media (max-width: 1440px) {
    :root {
        --sidebar-width: 16.5rem;
        --container-padding: clamp(1rem, 1.4vw, 1.25rem);
    }
}

@media (min-width: 1680px) {
    :root {
        --sidebar-width: 17.25rem;
        --container-padding: clamp(1.5rem, 1.8vw, 2rem);
    }
}
