/*
 * Design tokens for the 毛日子 Pet Care brand site.
 * Maintained independently from the CI4 Admin's tokens
 * (public/assets/css/tokens.css) — the two are only related at the
 * brand-color level, never a shared file or build dependency, so this
 * site stays fully standalone and deployable on its own.
 *
 * Breakpoints (reference only — hardcoded again in layout.css since
 * custom properties can't be used inside @media queries):
 *   mobile:  < 576px
 *   tablet:  576px - 991px
 *   desktop: >= 992px
 */

:root {
    /* Brand colors — warm terracotta + sage, clean and not cartoonish */
    --color-primary: #c1734f;
    --color-primary-dark: #a25d3d;
    --color-primary-darker: #7e4830;
    --color-primary-soft: #f4e3da;
    --color-primary-100: #fbf1ea;

    --color-secondary: #7c8a6a;
    --color-secondary-dark: #626e53;
    --color-secondary-soft: #eaeee2;

    --color-accent: #e2a545;
    --color-accent-dark: #c78a30;
    --color-accent-soft: #faecd2;

    --color-bg: #fbf7f1;
    --color-bg-warm: #f6ece1;
    --color-surface: #ffffff;
    --color-surface-tint: #fdfbf8;
    --color-border: #ece2d5;
    --color-border-strong: #ddccb8;

    --color-ink: #2c2620;
    --color-text: #3c332b;
    --color-text-muted: #7a6f63;
    --color-text-faint: #a3968a;

    /* Typography */
    --font-family-base: system-ui, -apple-system, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
    --font-size-xs: 0.8rem;
    --font-size-sm: 0.9rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.15rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.75rem;
    --font-size-4xl: 3.4rem;
    --line-height-base: 1.65;
    --line-height-tight: 1.2;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-wide: 0.06em;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2.25rem;
    --space-7: 3.5rem;
    --space-8: 5rem;
    --space-9: 6.5rem;

    /* Radius / shadow */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 10px rgba(44, 38, 32, 0.06);
    --shadow-md: 0 12px 30px rgba(44, 38, 32, 0.10);
    --shadow-lg: 0 24px 56px rgba(44, 38, 32, 0.16);

    /* Layout */
    --container-width: 1120px;
    --header-height: 76px;
}
