/* Polderbyte — base element styles & link colors.
   Light-touch resets so the page inherits brand defaults. */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

img { max-width: 100%; }

/* Icons are all inline line-art SVGs; geometricPrecision keeps their thin
   strokes crisp instead of soft/pixelated when a hover transform scales them. */
svg { shape-rendering: geometricPrecision; }

code, kbd, samp, pre { font-family: var(--font-mono); }

/* Eyebrow / uppercase micro-label used across the brand */
.pb-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand);
}

/* The signature bold, mixed-case display treatment */
.pb-display {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-display);
  line-height: var(--lh-tight);
  color: var(--text-strong);
}

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