/* ═══════════════════════════════════════════════════════════════
   base.css — Teh Tarik Digital · Base Reset & Body
   ═══════════════════════════════════════════════════════════════ */

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

/* ── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* font-family intentionally omitted here — this page's own style.css
   sets body font-family for its prose content; .site-footer below
   re-asserts the mono font for the footer specifically instead of
   competing with style.css at the body level. */
body {
  overflow-x: hidden;
  min-height: 100vh;
}

/* Grid overlay intentionally omitted — this page already has its own
   hero-scoped grid (.scan-field in style.css); a page-wide body::before
   grid here would double-stack and visibly clash with it. */

