:root {
  /* Brand Colours — confirmed from logo 2026-04-27 */
  --color-primary:       #8C1C1C;  /* Deep wax-seal crimson — CTAs, accents */
  --color-primary-dark:  #6B1414;  /* Hover state for primary */
  --color-primary-light: #B52828;  /* Subtle tints, icon accents */
  --color-secondary:     #1A1A1A;  /* Near-black — nav, footer */
  --color-charcoal:      #2E2E2E;  /* Dark text, card borders */
  --color-grey-mid:      #9E9E9E;  /* Secondary text, dividers */
  --color-grey-light:    #F4F4F4;  /* Section backgrounds */
  --color-white:         #FFFFFF;  /* Page background, cards */
  --color-text:          #1C1C1C;  /* Body copy */
  --color-text-light:    #5C5C5C;  /* Captions, meta text */

  /* Typography */
  --font-body: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
  --font-heading: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;

  /* Type Scale */
  --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;

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

  /* Sections */
  --section-padding-desktop: 5rem;
  --section-padding-mobile:  3rem;
  --container-max:           1200px;
  --container-padding:       1.5rem;

  /* UI */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.14);
  --transition:  all 0.2s ease;
}
