/* Minimal element defaults so any consuming page inherits the brand voice.
   Kept deliberately small — components carry their own styling. */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-core); font-size: var(--fs-body); font-weight: var(--fw-light); line-height: var(--lh-normal); color: var(--text-body); background: var(--surface-page); -webkit-font-smoothing: antialiased; text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-core); color: var(--text-heading); font-weight: var(--fw-extrabold); line-height: var(--lh-snug); }
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 var(--space-4); }
a { color: var(--text-link); text-decoration: none; transition: color var(--dur-base) var(--ease-standard); }
a:hover { color: var(--text-link-hover); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
img { max-width: 100%; display: block; }
strong { font-weight: var(--fw-bold); color: var(--text-heading); }
hr { border: 0; border-top: 1px solid var(--border-default); margin: var(--space-8) 0; }
::selection { background: var(--teal-100); color: var(--teal-900); }
