/* =========================================================
   Classic Touch Beauty Bar Clinic — Design Tokens
   Palette (from owner's notes): Cream / Gold / Orange / Blue accent
   ========================================================= */

:root {
  /* Brand colors */
  --color-white: #ffffff;
  --color-cream: #E8E2DB;
  --color-cream-soft: #f3efe9;
  --color-gold: #FAB95B;
  --color-gold-deep: #d99a3c;
  --color-gold-soft: #fcd7a0;
  --color-orange: #F16821;
  --color-orange-deep: #cf5313;
  --color-orange-soft: #f9a879;
  --color-blue: #2196F3;
  --color-blue-soft: #d6ecfd;

  /* Semantic neutrals (warm-toned, echoes the black/gold treatment card) */
  --color-ink: #26201a;
  --color-ink-soft: #5c5148;
  --color-muted: #8c8175;
  --color-line: #ded5c8;
  --color-line-soft: #ece6dc;
  --color-bg: #f7f4ee;
  --color-bg-warm: var(--color-cream);
  --color-surface: #ffffff;

  /* Status */
  --color-success: #4c8b5a;
  --color-warn: #c98415;
  --color-danger: #b5432f;

  /* Typography — elegant serif headings, clean sans body, script accents */
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: "Sacramento", "Caveat", cursive;

  /* Type scale */
  --fs-xxxl: clamp(2.6rem, 1.7rem + 4vw, 4.6rem);
  --fs-xxl:  clamp(2rem, 1.4rem + 2.5vw, 3.2rem);
  --fs-xl:   clamp(1.5rem, 1.15rem + 1.6vw, 2.2rem);
  --fs-lg:   clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  --fs-md:   1.0625rem;
  --fs-sm:   0.9375rem;
  --fs-xs:   0.8125rem;

  /* Line heights */
  --lh-tight: 1.15;
  --lh-snug:  1.3;
  --lh-base:  1.65;
  --lh-loose: 1.85;

  /* Spacing */
  --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;
  --space-10: 8rem;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  /* Shadows — soft & warm */
  --shadow-xs: 0 1px 2px rgba(38, 32, 26, 0.05);
  --shadow-sm: 0 4px 12px rgba(38, 32, 26, 0.08);
  --shadow-md: 0 12px 28px rgba(38, 32, 26, 0.10), 0 2px 6px rgba(38, 32, 26, 0.05);
  --shadow-lg: 0 24px 48px rgba(38, 32, 26, 0.12), 0 4px 12px rgba(38, 32, 26, 0.06);
  --shadow-glow: 0 0 0 6px rgba(250, 185, 91, 0.18);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 560ms;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 7rem);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
