/* ===========================================================================
   Guatazales · Base element defaults
   Minimal, opinionated resets so raw HTML inherits the brand voice.
   =========================================================================== */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  background: var(--surface-page);
  font-weight: var(--weight-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--heading-family);
  font-weight: var(--heading-weight);
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' var(--display-soft), 'WONK' var(--display-wonk);
  color: var(--text-strong);
  letter-spacing: var(--heading-tracking);
  line-height: var(--leading-tight);
  text-wrap: balance;
  margin: 0 0 0.4em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); line-height: var(--leading-snug); }
h4 { font-size: var(--text-xl);  line-height: var(--leading-snug); }

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--text-brand); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }

/* Eyebrow / kicker utility — the signature green kicker */
.gz-eyebrow {
  font-family: var(--eyebrow-family);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  color: var(--text-primary);
}

::selection { background: var(--oliva-300); color: var(--carbon-900); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
