/*
 * wordmark, the mark as an image component. Unforged house identity 3.0.0 Broadside, 2026-08-22.
 * Owner: Andreas.
 *
 * The wordmark is an image, never live type (tokens marks._note, size._note). Two files, the mark's
 * own tone, both in 01_BRAND-LAYER/marks/ (trimmed, 7.80 to 1): the light version
 * unforged-wordmark-chrome-{1600,800}.png, at home on the flood and, on paper, in the hero header
 * alone with air; the dark version unforged-wordmark-blackchrome-{1600,800}.png everywhere else on
 * paper, small and inline with type (logo-usage.md section 3). Floors: light 240px wide, dark 120px
 * (section 4). No width token exists, so the three sizes are layout fractions of measure.document
 * or the line box, each stated with its number: --hero 35 percent of the document measure, 403px at
 * 1280 and the column below that (350 at 390, 280 at 320), against the 405px fusion reference and
 * the 240px floor; --close 22 percent, 253px, the flood colophon's size, 13px over the flood floor;
 * --inline one body line box tall, 26px at 390 and 28 at 1280, 203 and 218px wide, over the 120px
 * dark floor. Never stretched (height auto), never on a signal field, never inside a chrome frame.
 */
.u-wordmark {
  display: block;
  height: auto;
  max-width: 100%;
}
.u-wordmark--hero { width: min(100%, calc(var(--u-measure-document) * 35 / 100)); }
.u-wordmark--close { width: min(100%, calc(var(--u-measure-document) * 22 / 100)); }
.u-wordmark--inline {
  display: inline-block;
  width: auto;
  height: var(--u-space-para);
  vertical-align: middle;
}
