/* ============================================================
   DESIGN TOKENS — Holiday Hours
   holidayhours.co.uk
   ============================================================ */

:root {
  /* ── Brand colours ─────────────────────────────────────── */
  --c-primary:      #006D77;   /* Dark Cyan */
  --c-primary-alt:  #005560;   /* hover / pressed */
  --c-primary-light:#E0F2F1;   /* tinted bg */
  --c-accent:       #E29578;   /* Warm Coral */
  --c-accent-alt:   #C97A5E;   /* hover / pressed */
  --c-accent-light: #FBF0EB;   /* tinted bg */

  /* ── Semantic colours ─────────────────────────────────── */
  --c-success:      #059669;
  --c-success-light:#D1FAE5;
  --c-warning:      #D97706;
  --c-warning-light:#FEF3C7;
  --c-error:        #DC2626;
  --c-error-light:  #FEE2E2;
  --c-info:         #0369A1;
  --c-info-light:   #E0F2FE;

  /* ── Neutral surfaces ─────────────────────────────────── */
  --c-bg:           #F0F4F8;
  --c-surface:      #FFFFFF;
  --c-surface-2:    #F8FAFC;
  --c-surface-3:    #F1F5F9;
  --c-border:       #E2E8F0;
  --c-border-strong:#CBD5E1;

  /* ── Text ─────────────────────────────────────────────── */
  --c-text:         #1E293B;
  --c-text-secondary:#475569;
  --c-text-muted:   #64748B;   /* Slate-500 — ≥4.5:1 on white/surface-2 */
  --c-text-inverse: #FFFFFF;

  /* ── Chart colours ─────────────────────────────────────── */
  --c-chart-base:   #006D77;
  --c-chart-bh:     #E29578;
  --c-chart-prorota:#94A3B8;
  --c-chart-taken:  #CBD5E1;

  /* ── Ad zone ─────────────────────────────────────────── */
  --c-ad-placeholder: #F1F5F9;

  /* ── Typography ────────────────────────────────────────── */
  --font-heading: 'Satoshi', 'DM Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-num:     'Inter', system-ui, sans-serif;

  --text-xs:    0.75rem;   /* 12px */
  --text-sm:    0.875rem;  /* 14px */
  --text-base:  1rem;      /* 16px */
  --text-md:    1.125rem;  /* 18px */
  --text-lg:    1.25rem;   /* 20px */
  --text-xl:    1.5rem;    /* 24px */
  --text-2xl:   2rem;      /* 32px */
  --text-3xl:   2.5rem;    /* 40px */
  --text-4xl:   3.5rem;    /* 56px */
  --text-5xl:   4.5rem;    /* 72px */

  --leading-tight:  1.25;
  --leading-snug:   1.4;
  --leading-normal: 1.6;

  /* ── Spacing (8px grid) ──────────────────────────────── */
  --sp-1:   0.25rem;  /* 4px  */
  --sp-2:   0.5rem;   /* 8px  */
  --sp-3:   0.75rem;  /* 12px */
  --sp-4:   1rem;     /* 16px */
  --sp-5:   1.25rem;  /* 20px */
  --sp-6:   1.5rem;   /* 24px */
  --sp-8:   2rem;     /* 32px */
  --sp-10:  2.5rem;   /* 40px */
  --sp-12:  3rem;     /* 48px */
  --sp-16:  4rem;     /* 64px */
  --sp-20:  5rem;     /* 80px */

  /* ── Radius ─────────────────────────────────────────── */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  24px;
  --r-full: 9999px;

  /* ── Shadows ────────────────────────────────────────── */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  /* ── Motion ─────────────────────────────────────────── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   150ms;
  --dur-normal: 250ms;
  --dur-slow:   400ms;

  /* ── Layout ─────────────────────────────────────────── */
  --sidebar-width:  280px;
  --wizard-max:     620px;
  --header-height:  60px;
  --stepper-height: 80px;
}

/* ── Dark Mode ─────────────────────────────────────────── */
[data-theme="dark"] {
  --c-primary:      #83C5BE;
  --c-primary-alt:  #9DD4CE;
  --c-primary-light:#0F2927;
  --c-accent:       #FFDDD2;
  --c-accent-alt:   #FFB89E;
  --c-accent-light: #2A1A14;

  --c-success:      #34D399;
  --c-success-light:#064E3B;
  --c-warning:      #FBB740;
  --c-warning-light:#451A03;
  --c-error:        #F87171;
  --c-error-light:  #450A0A;
  --c-info:         #38BDF8;
  --c-info-light:   #0C2A40;

  --c-bg:           #121826;
  --c-surface:      #1E2438;
  --c-surface-2:    #252D42;
  --c-surface-3:    #2C3650;
  --c-border:       #2E3A52;
  --c-border-strong:#3D4F6E;

  --c-text:         #F1F5F9;
  --c-text-secondary:#CBD5E1;
  --c-text-muted:   #64748B;
  --c-text-inverse: #1E293B;

  --c-chart-base:   #83C5BE;
  --c-chart-bh:     #FFDDD2;
  --c-chart-prorota:#4A5568;
  --c-chart-taken:  #2E3A52;

  --c-ad-placeholder: #1E2438;

  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.4), 0 1px 2px -1px rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
}

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast:   0ms;
    --dur-normal: 0ms;
    --dur-slow:   0ms;
  }
}
