:root {
  --rail-height: 60px;
  /* Colors */
  --ink-000: #0C0A0B;   /* cabinet black, page background */
  --ink-100: #161214;   /* smoke, cards and raised surfaces */
  --ink-200: #241D20;   /* ash, borders and dividers */
  --bone:    #EDE7E3;   /* primary text, warm white not pure white */
  --dust:    #9A908C;   /* secondary text, labels */
  --signal:  #F26B0F;   /* primary accent, from the logo */
  --respawn: #FFC01E;   /* gradient partner, from the logo */
  --live:    #3FE0C0;   /* open-now dot, focus ring, form success */
  
  --brand-gradient: linear-gradient(135deg, var(--signal), var(--respawn));

  /* Type Families */
  --font-display: 'Anybody', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'Martian Mono', monospace;

  /* Type Scale */
  --fs-hero:    clamp(3rem, 11vw, 8.5rem);
  --fs-title:   clamp(2rem, 5vw, 3.5rem);
  --fs-lead:    clamp(1.0625rem, 2vw, 1.3rem);
  --fs-body:    1.0625rem;
  --fs-card:    1.25rem;
  --fs-label:   0.6875rem;
  --fs-data:    1rem;

  /* Layout */
  --content-max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(5rem, 10vw, 8.5rem);
  --radius: 4px;

  /* Animation */
  --transition-fast: 180ms ease;
  --transition-smooth: 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  
  /* Carousel Controls */
  --card-gap: 2rem;
}
