/* Ploggworld base element styles + link defaults.
   Kept light — sets brand typography defaults and sensible resets. */

:root {
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Eyebrow / label utility */
.pw-eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

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

::selection {
  background: var(--cyan-300);
  color: var(--teal-900);
}

/* Lucide icon sizing (see components/core/Icon). Icons scale to font-size;
   stroke-width and color inherit from the wrapper. */
.pw-icon svg { width: 1em; height: 1em; display: block; }
