/* ================================================================
   BASE / RESET — applies brand defaults to raw HTML elements
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font: var(--text-body);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { margin: 0; font-family: var(--font-body); font-weight: 500; color: var(--text-body); text-transform: uppercase; }
p { margin: 0; }
img { max-width: 100%; display: block; }

a { color: var(--text-link); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--text-link-hover); }

::selection { background: var(--gold); color: var(--ink-900); }

/* Subtle warm grain overlay utility — apply to hero/section backgrounds
   sparingly for the "hand-painted / weathered signage" texture motif. */
.bg-grain {
  position: relative;
  background-image: url('../assets/texture-grain.min.png');
  background-size: 480px;
  background-blend-mode: multiply;
}
