:root {
  /* Colors — restrained, photo-forward palette */
  --color-primary: #8B1E24;       /* Gymkhana Crimson */
  --color-primary-hover: #6E1820;
  --color-secondary: #1F4E79;     /* Gymkhana Blue */
  --color-bg: #F6F4EF;            /* Heritage Ivory */
  --color-surface: #FFFFFF;
  --color-text: #1a1a1a;          /* Near-black, not pure */
  --color-heading: #111111;
  --color-muted: #6B6B6B;
  --color-border: #E0DDD8;        /* Very subtle border */
  --color-border-light: #F0EDE8;  /* Barely visible */
  --color-link: var(--color-secondary);
  --color-accent: #C6A75E;        /* Heritage Gold — sparingly */
  --color-dark: #1a1a1a;
  --color-dark-text: #FFFFFF;
  --color-dark-muted: rgba(255,255,255,0.6);

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

  --fs-h1: 52px;
  --fs-h2: 36px;
  --fs-h3: 24px;
  --fs-h4: 18px;
  --fs-body: 16px;
  --fs-small: 13px;
  --fs-nav: 13px;

  --lh-heading: 1.2;
  --lh-body: 1.7;
  --ls-heading: -0.01em;
  --ls-button: 0.06em;
  --ls-nav: 0.1em;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --space-9: 128px;

  /* Radius — subtle */
  --radius-s: 4px;
  --radius-m: 8px;

  /* Shadows — almost invisible */
  --shadow-s: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-m: 0 2px 8px rgba(0,0,0,0.04);

  /* Layout */
  --container-max: 1200px;
}

@media (max-width: 768px) {
  :root {
    --fs-body: 16px;
    --lh-body: 1.75;
    --fs-h1: 36px;
    --fs-h2: 28px;
    --fs-h3: 22px;
    --fs-h4: 18px;
    --space-7: 48px;
    --space-6: 40px;
  }
}
