/* Google Fonts loaded via <link> in _header.php — no @import needed here */

:root {
  /* Brand Colors */
  --color-primary: #C8922A;        /* Warm amber gold — CTA buttons, links, accents */
  --color-primary-dark: #A67520;   /* Hover state for primary */
  --color-primary-light: #F5E0B0;  /* Tinted backgrounds */

  /* Dark / Navy */
  --color-navy: #0D1B2A;           /* Hero background, dark sections */
  --color-navy-mid: #1A2E42;       /* Cards on dark bg, secondary nav */

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-off-white: #F8F5F0;      /* Page background — warm not cold */
  --color-gray-100: #F0ECE6;       /* Light section backgrounds */
  --color-gray-200: #E0D8CC;       /* Borders, dividers */
  --color-gray-400: #9E9488;       /* Placeholder text, disabled */
  --color-gray-600: #5C5449;       /* Secondary text */
  --color-gray-800: #2E2A24;       /* Body text */

  /* Semantic */
  --color-success: #2E7D52;
  --color-error: #B5361F;
  --color-warning: #D97706;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;   /* Headlines — elegant, unique */
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif; /* Body — modern, readable */
  --font-mono: 'JetBrains Mono', monospace;

  /* Font Sizes */
  --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;
  --text-hero: clamp(2.5rem, 5vw, 4rem);

  /* Spacing (8px base) */
  --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-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.06);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.10), 0 2px 6px rgba(13,27,42,0.08);
  --shadow-lg: 0 10px 30px rgba(13,27,42,0.14), 0 4px 12px rgba(13,27,42,0.10);
  --shadow-xl: 0 20px 50px rgba(13,27,42,0.18);

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

  /* Container */
  --container-max: 1280px;
  --container-padding: clamp(1rem, 4vw, 2.5rem);
}

/* Base resets */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-800);
  background: var(--color-off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
