/**
 * Design tokens — boutique med-spa meets high-end dental.
 * Gold/cream/white palette with clean neutrals.
 */
:root {
  /* Brand */
  --color-gold: #c9a962;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #a88b4a;
  --color-cream: #faf7f2;
  --color-cream-dark: #f0ebe3;
  --color-white: #ffffff;

  /* Neutrals */
  --color-text: #2c2a28;
  --color-text-muted: #6b6560;
  --color-text-light: #9a948c;
  --color-border: #e5e0d8;
  --color-border-light: #f0ece6;

  /* Primary CTA — exclusive to "Book Now" actions */
  --color-cta: #b8943f;
  --color-cta-hover: #9a7a32;
  --color-cta-text: #ffffff;
  --color-cta-shadow: rgba(184, 148, 63, 0.35);

  /* Secondary actions (call, links) */
  --color-secondary: transparent;
  --color-secondary-border: var(--color-gold);
  --color-secondary-text: var(--color-gold-dark);

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

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

  /* Layout */
  --max-width: 1200px;
  --header-height: 84px;

  /* Radius & shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(44, 42, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 42, 40, 0.08);
  --shadow-lg: 0 16px 48px rgba(44, 42, 40, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}
