/* ============================================================
   Stella Rescue & Sanctuary — Base / reset layer
   Minimal, opinionated element defaults that express the brand.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-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-display);
  color: var(--text-strong);
  line-height: var(--lh-tight);
  font-weight: var(--fw-semibold);
  margin: 0 0 0.4em;
  letter-spacing: var(--ls-tight);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

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

a { color: var(--text-accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--action-hover); }

/* Brand eyebrow — the letterspaced serif caps signature */
.eyebrow {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-accent);
}

/* Script flourish — brand moments only (never body copy) */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

::selection { background: var(--mauve-200); color: var(--ink-800); }

:focus-visible { outline: var(--ring-width) solid var(--ring-color); outline-offset: 2px; }
