/* Toshin Group — Base element defaults & helper classes
   Light reset + brand typographic defaults. Safe to ship to consumers. */

*, *::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);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin: 0 0 0.5em;
  font-weight: var(--fw-bold);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

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

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Eyebrow / overline label — a signature Toshin device ---- */
.ts-overline {
  font-family: var(--font-mono);
  font-size: var(--fs-overline);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--brand-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
/* small red tick that precedes overlines */
.ts-overline::before {
  content: "";
  width: 14px; height: 2px;
  background: var(--brand-accent);
  display: inline-block;
}

/* Display heading helper */
.ts-display {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-tighter);
  line-height: var(--lh-tight);
  color: var(--text-strong);
}

/* Mono data helper (tracking #s, codes) */
.ts-data {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* Layout container */
.ts-container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }
