@font-face {
  font-family: "BodnoffFile";
  src: url("/fonts/Inter-VariableFont.woff2") format("woff2");
  font-weight: 100 900;      /* full weight range */
  font-stretch: 75% 125%;    /* optional if supported */
  font-display: swap;
}

:root {
  /* Colors */
  --color-primary: #1a4d2e;
  --color-primary-mid: #2d7a4a;
  --color-primary-light: #4a9e63;
  --color-accent: #3d8b52;
  --color-accent-hover: #2d6b3e;

  --color-bg: #f8f6f1;
  --color-bg-alt: #ffffff;
  --color-bg-dark: #0f2518;
  --color-bg-footer: #111f15;

  --color-text: #1e1e1e;
  --color-text-secondary: #5a5a5a;
  --color-text-muted: #8a8a8a;
  --color-text-inverse: #ffffff;

  --color-border: #e0ddd8;
  --color-border-light: #ede9e3;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: "BodnoffFile", 'Playfair Display', Georgia, serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

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

  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.16);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Nav height */
  --nav-height: 72px;
}
