/* Star Wash — Design tokens & global resets (shared by all pages) */
/* ============ TOKENS ============ */
:root {
  --carbon-900:    #2C2C2E;
  --carbon-800:    #383839;
  --carbon-700:    #4A4A4D;
  --carbon-600:    #5A5A5E;
  --carbon-500:    #6E6E73;
  --celeste:       #29ABE2;
  --celeste-hover: #1E97CC;
  --celeste-tint:  rgba(41,171,226,0.12);
  --text-muted:    rgba(255,255,255,0.68);
  --text-faint:    rgba(255,255,255,0.42);
  --shadow-cta:    0 6px 20px rgba(41,171,226,0.38);
  --font-display:  'Saira Condensed', 'Arial Narrow', sans-serif;
  --font-body:     'Barlow', system-ui, -apple-system, sans-serif;
  --radius-sm:     2px;
  --radius-md:     4px;
  --radius-pill:   999px;
  --gutter:        1.375rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--carbon-900);
  color: #fff;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
