/* H&CO Strategy — page baseline.
   Minimal reset so the tokens work as intended anywhere they're linked. */

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

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

body {
  margin: 0;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: var(--type-body-serif-md-size);
  line-height: var(--type-body-serif-md-lh);
}

a {
  color: var(--color-text-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

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

/* Utility text roles — consumers can style with plain HTML too. */
.hco-display-hero {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display-hero-size);
  line-height: var(--type-display-hero-lh);
  letter-spacing: var(--type-display-hero-ls);
}
.hco-display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display-lg-size);
  line-height: var(--type-display-lg-lh);
  letter-spacing: var(--type-display-lg-ls);
}
.hco-display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display-md-size);
  line-height: var(--type-display-md-lh);
  letter-spacing: var(--type-display-md-ls);
}
.hco-display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display-sm-size);
  line-height: var(--type-display-sm-lh);
}
.hco-display-xs {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--type-display-xs-size);
  line-height: var(--type-display-xs-lh);
  letter-spacing: var(--type-display-xs-ls);
}
.hco-body-serif-lg {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--type-body-serif-lg-size);
  line-height: var(--type-body-serif-lg-lh);
  letter-spacing: var(--type-body-serif-lg-ls);
}
.hco-body-serif-md {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--type-body-serif-md-size);
  line-height: var(--type-body-serif-md-lh);
  letter-spacing: var(--type-body-serif-md-ls);
}
.hco-body-md {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--type-body-md-size);
  line-height: var(--type-body-md-lh);
}
.hco-body-md-strong {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--type-body-md-strong-size);
  line-height: var(--type-body-md-strong-lh);
  letter-spacing: var(--type-body-md-strong-ls);
}
.hco-body-sm {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--type-body-sm-size);
  line-height: var(--type-body-sm-lh);
  letter-spacing: var(--type-body-sm-ls);
}
.hco-body-sm-strong {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--type-body-sm-strong-size);
  line-height: var(--type-body-sm-strong-lh);
  letter-spacing: var(--type-body-sm-strong-ls);
}
.hco-byline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--type-byline-size);
  line-height: var(--type-byline-lh);
  letter-spacing: var(--type-byline-ls);
}
.hco-caption {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--type-caption-size);
  line-height: var(--type-caption-lh);
}
.hco-eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--type-body-sm-strong-size);
  line-height: var(--type-body-sm-strong-lh);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
