/* =============================================================
   Done Theme — base.css
   Generic platform reset and spacing utilities.
   No brand colours. No client-specific styles.
   Version: 2.0.0
   ============================================================= */

/* -------------------------------------------------------------
   1. Spacing & Layout Variables (generic only)
   ------------------------------------------------------------- */
:root {
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --container-max:    1200px;
  --container-narrow: 800px;

  --transition: 0.2s ease;
}

/* -------------------------------------------------------------
   2. Reset & Base
   ------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}
