:root {
  /* Regular Colors */
  --color-navy: #252b41;
  --color-rose: #ae8079;
  --color-cyan: #6aa8c7;
  --color-yellow: #feba47;
  --color-charcoal: #333333;

  /* Light Colors */
  --color-lavender: #7e8cb9;
  --color-rose-light: #d5bbb6;
  --color-cyan-light: #b2d6e7;
  --color-peach: #ffce86;
  --color-gray: #7d7d7d;

  /* Background Colors */
  --bg-lavender: #f4f5fb;
  --bg-rose: #fbf4f4;
  --bg-cyan: #f4fbfc;
  --bg-cream: #fef8f0;
  --bg-gray: #eeeeee;
  --bg-white: #ffffff;

  /* Dark Colors */
  --color-brown-dark: #3f2723;
  --color-teal-dark: #1e3a4c;
  --color-gold-dark: #d98c21;

  /* Semantic */
  --color-text: var(--color-charcoal);
  --color-text-muted: var(--color-gray);
  --color-heading: var(--color-navy);
  --color-border: #e4e4e8;
  --color-focus: var(--color-cyan);

  /* Typography */
  --font-family: "Roboto", sans-serif;
  --font-display: "Authentic Signature", cursive;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.75rem;
  --fs-hero: clamp(2rem, 4vw, 3.25rem);
  --lh-tight: 1.2;
  --lh-base: 1.6;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* 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;

  /* Layout */
  --container: 1320px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(37, 43, 65, 0.06);
  --shadow-md: 0 8px 24px rgba(37, 43, 65, 0.1);
  --shadow-header: 0 4px 20px rgba(37, 43, 65, 0.08);
  --transition: 0.25s ease;
  --z-header: 1100;
  --z-overlay: 1090;
  --z-mega: 20;
}
