/* ═══════════════════════════════════════
   DESIGN TOKENS — Business Butler
   ═══════════════════════════════════════ */
:root {
    /* Core palette */
    --bb-white: #ffffff;
    --bb-rose-ancien: #c13348;
    --bb-bordeaux: #611a24;
    --bb-marsala: #872432;
    --bb-vert-profond: #196257;

    /* Backgrounds */
    --bb-bg-cream: #faf8f5;
    --bb-bg-white: #ffffff;

    /* Text */
    --bb-text-primary: #1a1a1a;
    --bb-text-secondary: #666666;
    --bb-text-light: #ffffff;

    /* Typography */
    --bb-font-display: 'Cormorant Garamond', Georgia, serif;
    --bb-font-body: 'DM Sans', system-ui, sans-serif;

    /* Type scale */
    --bb-text-hero: clamp(2.5rem, 5vw + 1rem, 5rem);
    --bb-text-h1: clamp(2rem, 3vw + 0.5rem, 3.5rem);
    --bb-text-h2: clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
    --bb-text-h3: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    --bb-text-h4: 1.125rem;
    --bb-text-body: 1rem;
    --bb-text-body-lg: 1.125rem;
    --bb-text-small: 0.875rem;
    --bb-text-xs: 0.75rem;

    /* Letter spacing */
    --bb-ls-display: -0.03em;
    --bb-ls-caps: 0.08em;

    /* Line height */
    --bb-lh-display: 1.1;
    --bb-lh-heading: 1.3;
    --bb-lh-body: 1.7;

    /* Spacing */
    --bb-space-xs: 0.5rem;
    --bb-space-sm: 1rem;
    --bb-space-md: 1.5rem;
    --bb-space-lg: 2.5rem;
    --bb-space-xl: 4rem;
    --bb-space-2xl: 6rem;
    --bb-space-3xl: 8rem;

    /* Shadows */
    --bb-shadow-sm: 0 2px 8px rgba(97, 26, 36, 0.06);
    --bb-shadow-md: 0 4px 20px rgba(97, 26, 36, 0.08);
    --bb-shadow-lg: 0 8px 40px rgba(97, 26, 36, 0.12);
    --bb-shadow-hover: 0 12px 48px rgba(97, 26, 36, 0.16);

    /* Radii */
    --bb-radius-sm: 4px;
    --bb-radius-md: 8px;
    --bb-radius-lg: 16px;
    --bb-radius-full: 9999px;

    /* Transitions */
    --bb-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bb-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
