/* ============================================================
   Complete Aesthete — light base layer
   Quiet defaults so cards & kits start from the right place.
   Intentionally minimal — not a CSS reset framework.
   ============================================================ */

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--type-body);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-strong);
  font-weight: var(--w-reg);
  line-height: var(--lh-snug);
  margin: 0 0 0.4em;
}

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }

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

::selection { background: var(--accent-tint); color: var(--accent-deep); }

/* The signature pearl page background (opt-in) */
.ca-pearl-bg {
  background-color: var(--paper);
  background-image: var(--pearl-texture);
  background-size: var(--pearl-size);
}

/* Faint CA monogram watermark behind printables (opt-in).
   Uses the wordmark ring as a giant ghosted backdrop. */
.ca-watermark { position: relative; }
.ca-watermark > * { position: relative; z-index: 1; }
