/* ───────────────────────────────────────────────────────────────────────────
   Design tokens — single source of truth.
   Do not hardcode colors, sizes, or spacing in other CSS files. Use these.
   ─────────────────────────────────────────────────────────────────────────── */

:root {
  /* ─── Primary ─── */
  --color-primary: #005C46;
  --color-primary-light: #007D5F;
  --color-primary-dark: #004332;
  --color-primary-muted: #E8F0ED;

  /* ─── Neutrals ─── */
  --color-black: #1A1A1A;
  --color-charcoal: #333333;
  --color-gray-dark: #555555;
  --color-gray: #888888;
  --color-gray-light: #C4C4C4;
  --color-gray-lighter: #E5E5E5;
  --color-off-white: #F7F5F2;
  --color-white: #FFFFFF;

  /* ─── Accent ─── */
  --color-gold: #B8860B;
  --color-gold-light: #D4A843;
  --color-gold-muted: #F5EFE0;

  /* ─── Semantic ─── */
  --color-success: #2D7A4F;
  --color-error: #C0392B;
  --color-warning: #E67E22;
  --color-info: #2980B9;

  /* ─── Overlay ─── */
  --overlay-dark: rgba(26, 26, 26, 0.7);
  --overlay-light: rgba(255, 255, 255, 0.9);

  /* ─── Typography ─── */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-accent: 'Montserrat', 'Helvetica Neue', sans-serif;

  --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: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;

  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* ─── Spacing ─── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 8rem;

  --section-padding-y: var(--space-12);
  --section-padding-y-sm: var(--space-8);

  /* ─── Container ─── */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-padding: var(--space-5);

  /* ─── Breakpoints (reference — used in @media) ─── */
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1200px;

  /* ─── Transitions ─── */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ─── Layout offsets ─── */
  --navbar-height: 72px;
}
