:root {
  /* Colors — Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f6f2;
  --bg-card: #ffffff;
  --bg-card-hover: #fdf9f4;
  --text-primary: #2c2c2c;
  --text-secondary: #787878;
  --brand-coral :#FF5A5F;
  --brand-coral-dark:#e5484d;
  --accent: #d5a749;
  --accent-hover: #c49438;
  --accent-dim: rgba(213, 167, 73, 0.12);
  --border: #e8e0d4;
  --border-dark: #d0c8bc;
  --overlay: rgba(0, 0, 0, 0.45);

  /* Typography */
  --font-heading: 'Playfair Display', 'Merriweather', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-pad: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.13);
  --shadow-accent: 0 4px 20px rgba(213, 167, 73, 0.35);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}
