/* ============================================================
   BASE — resets & element defaults
   Blue Horizon Holistics
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--surface-body);
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-weight: var(--fw-regular);
  line-height: var(--lh-heading);
}
h1 { font-size: var(--fs-xl); }
h2 { font-size: var(--fs-lg); }
h3 { font-size: var(--fs-md); }
h4 { font-size: var(--fs-body); }

p { text-wrap: pretty; }

a { color: var(--link); text-decoration: none; transition: color var(--ease-fast); }
a:hover { color: var(--link-hover); }

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

button { font-family: inherit; }

::selection { background: var(--brand-glow); color: var(--brand-deep); }

/* ---- Text utility classes ---- */
.bh-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--brand);
}
.bh-display {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-heading);
}
.bh-lead {
  font-size: var(--fs-md);
  line-height: var(--lh-snug);
  color: var(--text-light);
}
