:root {
  /* Colors — Luxury Emerald & Champagne */
  --color-primary: #2D6A4F;
  --color-primary-dark: #1B4332;
  --color-primary-light: #52B788;
  --color-primary-rgb: 45, 106, 79;

  --color-dark: #1C2321;
  --color-dark-rgb: 28, 35, 33;

  --color-white: #ffffff;
  --color-light: #FAF8F5;
  --color-light-alt: #F2EDE4;

  --color-text: #4A4A4A;
  --color-text-light: #8A8A87;
  --color-text-dark: #2A2A2A;

  --color-gold: #C9A96E;
  --color-gold-rgb: 201, 169, 110;

  --color-border: #E8E4DE;

  /* Luxury accents */
  --color-champagne: #C9A96E;
  --color-champagne-light: #E8DCC8;
  --color-champagne-rgb: 201, 169, 110;
  --color-cream: #FDFBF7;

  /* Section background accents */
  --color-section-warm: #F7F3ED;
  --color-section-emerald: #F0F5F2;
  --color-section-sand: #FAF6F0;
  --color-section-deep: #1A2520;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-xs: 0.75rem;      /* 12px */
  --fs-sm: 0.8125rem;    /* 13px */
  --fs-base: 1rem;       /* 16px */
  --fs-md: 1.125rem;     /* 18px */
  --fs-lg: 1.375rem;     /* 22px */
  --fs-xl: 1.625rem;     /* 26px */
  --fs-2xl: 2.25rem;     /* 36px */
  --fs-3xl: 2.75rem;     /* 44px */
  --fs-4xl: 3.5rem;      /* 56px */

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Layout */
  --container-width: 1200px;
  --container-narrow: 900px;
  --container-padding: 1.25rem;
  --header-height: 80px;

  /* Borders & Radius — Editorial / Architectural */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --radius-full: 50%;

  /* Shadows — Softer, more diffused */
  --shadow-sm: 0 1px 4px rgba(28, 35, 33, 0.04);
  --shadow-md: 0 4px 20px rgba(28, 35, 33, 0.06);
  --shadow-lg: 0 8px 40px rgba(28, 35, 33, 0.08);
  --shadow-xl: 0 16px 56px rgba(28, 35, 33, 0.1);

  /* Transitions — Refined easing */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
}
