/* All brand-wide appearance decisions live here. No product or checkout logic. */
:root {
  color-scheme: light;
  --color-paper: #fffdf5;
  --color-ink: #11266e;
  --color-muted: #34477b;
  --color-peach: #ffe342;
  --color-mint: #ff918b;
  --color-lavender: #c6adfa;
  --color-yellow: #ffdd24;
  --color-line: #11266e26;
  --color-button: #1647e8;
  --color-button-text: #ffffff;
  --font-heading: 'Arial Rounded MT Bold', 'Trebuchet MS', Arial, sans-serif;
  --font-body: 'Trebuchet MS', Arial, sans-serif;
  --font-note: 'Segoe Print', 'Bradley Hand', cursive;
  --weight-heading: 900;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-section: clamp(3rem, 5vw, 5rem);
  --page-gutter: clamp(1.1rem, 3vw, 3.25rem);
  --content-width: 1440px;
  --radius-card: 2rem;
  --radius-button: 999px;
  --radius-hero-copy: 2rem 5rem 7rem 2rem;
  --radius-hero-image: 7rem 3rem 2rem 5rem;
  --border-width: 2px;
  --transition-fast: 180ms;
}
