/* ═══════════════════════════════════════════════════════════════════════════
   css/wordmark.css — the link.tattoo wordmark, once.

   Markup is always  link<b>.</b>tattoo  and the treatment is always this:
   Anton, one weight, lowercase, packed tracking, a stroke that thickens
   every stem, and the dot in the accent. It used to live inline in
   index.html's #nav block; the booking form needed the same mark and the
   choice was copy it (a twin that drifts) or move it here and load this
   nine-line file on both pages. SIZE is the consumer's business — set
   font-size on the element, everything else comes from here.

   Literal 'Anton', never var(--disp): saas-skin.css re-points --disp at
   Inter on every non-home page and the wordmark is the one thing that
   keeps the face. --accent is the homepage's name for the red, --red is
   the client form's (tokens.css); the fallback is the hex itself.
   ═══════════════════════════════════════════════════════════════════════════ */
.lt-wordmark{
  font-family:'Anton','Helvetica Neue',Arial,sans-serif;font-weight:400;
  letter-spacing:-.015em;text-transform:none;text-decoration:none;
  line-height:.9;color:inherit;
  -webkit-text-stroke:.8px currentColor;
}
.lt-wordmark b{color:var(--accent,var(--red,#c22f2f));font-weight:inherit}
@media(max-width:720px){.lt-wordmark{-webkit-text-stroke:.5px currentColor}}
