/* Vambiant — base element styling & small utility layer.
   Kept minimal: sets the brand defaults so bare HTML already looks on-brand. */

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--fw-medium);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-h1); letter-spacing: var(--ls-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-h4); }

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

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

/* Eyebrow / subline — the brand's signature uppercase label */
.vam-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subline);
  letter-spacing: var(--ls-subline);
  text-transform: uppercase;
  color: var(--accent-soft);
}

.vam-container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* Icon helper — the brand icons are solid navy PNG glyphs on transparent ground */
.vam-icon { display: inline-block; width: 24px; height: 24px; object-fit: contain; }
