:root {
  /* ─── Colors ─────────────────────────────────── */
  --color-bg: #faf6f0;
  --color-bg-alt: #f2ebe0;
  --color-bg-deep: #ede3d3;
  --color-surface: #ffffff;

  --color-primary: #6b7f5e;
  --color-primary-light: #a8b99a;
  --color-primary-dark: #4f6246;

  --color-accent: #c89778;
  --color-accent-dark: #a87356;
  --color-gold: #b8935a;

  --color-text: #3c3530;
  --color-text-soft: #6b6159;
  --color-text-muted: #958b82;
  --color-border: rgba(60, 53, 48, 0.12);

  /* ─── Typography ─────────────────────────────── */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;
  --text-5xl: 4.5rem;
  --text-hero: clamp(2.75rem, 6vw, 5.5rem);

  /* ─── 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: 2.5rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 7rem;
  --space-20: 9rem;

  /* ─── Layout ─────────────────────────────────── */
  --container-max: 1280px;
  --container-narrow: 880px;
  --container-padding: clamp(1.25rem, 4vw, 3rem);
  --header-height: 88px;

  /* ─── Radii ──────────────────────────────────── */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 999px;
  --radius-organic: 62% 38% 55% 45% / 45% 55% 38% 62%;

  /* ─── Shadows ────────────────────────────────── */
  --shadow-soft: 0 10px 30px -10px rgba(60, 53, 48, 0.12);
  --shadow-md: 0 20px 50px -20px rgba(60, 53, 48, 0.2);
  --shadow-lg: 0 30px 80px -25px rgba(60, 53, 48, 0.28);

  /* ─── Motion ─────────────────────────────────── */
  --ease-soft: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 700ms;
}
