/* =============================================================
   Royal Celebrations — Design Tokens
   File: css/variables.css
   Purpose: Central source of truth for colors, typography,
            spacing, shadows and radii. Every page imports this.
   To re-skin the whole site, edit values here only.
   ============================================================= */

:root {
  /* ---------- Color Palette ---------- */
  /* Primary */
  --royal-burgundy: #5e1420;
  --royal-burgundy-deep: #43101a;
  --royal-burgundy-light: #7a1c2c;

  /* Secondary / Accent */
  --luxury-gold: #c9a24b;
  --luxury-gold-light: #e3c578;
  --luxury-gold-dark: #a8842f;

  /* Solid */
  --white: #ffffff;

  /* Backgrounds */
  --bg-warm-white: #fbf8f3;
  --bg-cream: #f4ecdf;
  --bg-soft-beige: #ece0cd;

  /* Accent */
  --dark-brown: #2c2018;
  --dark-brown-soft: #4a382c;

  /* Neutral Greys */
  --grey-900: #1f1b17;
  --grey-700: #3d352d;
  --grey-500: #6f655a;
  --grey-400: #968b7e;
  --grey-300: #c9bfb2;
  --grey-200: #e4dccf;
  --grey-100: #f1ece3;

  /* Semantic */
  --color-text: var(--dark-brown);
  --color-text-muted: var(--grey-500);
  --color-heading: var(--royal-burgundy);
  --color-border: var(--grey-200);
  --color-bg: var(--bg-warm-white);
  --color-surface: #ffffff;
  --color-surface-alt: var(--bg-cream);

  /* Status */
  --color-success: #2f7d4f;
  --color-danger: #a83030;

  /* ---------- Typography ---------- */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Cormorant Garamond', Georgia, serif;

  --fs-display: clamp(2.75rem, 5vw, 4.5rem);
  --fs-h1: clamp(2.25rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.9rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.4rem, 2vw, 1.8rem);
  --fs-h4: 1.25rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-eyebrow: 0.8125rem;

  --lh-tight: 1.15;
  --lh-normal: 1.65;

  /* ---------- Spacing (8px system) ---------- */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 96px;
  --space-10: 120px;

  /* ---------- Layout ---------- */
  --container-max: 1600px;
  --nav-height: 92px;

  /* ---------- Radii ---------- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---------- Shadows ---------- */
  --shadow-sm: 0 2px 8px rgba(44, 32, 24, 0.06);
  --shadow-md: 0 12px 32px rgba(44, 32, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(44, 32, 24, 0.16);
  --shadow-gold: 0 14px 40px rgba(201, 162, 75, 0.28);

  /* ---------- Motion ---------- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
}
