/* brand.css — single source of truth for KingLuck brand header.
   All pages must use: <span class="brand__mark"><img src="logo.png" alt="KingLuck" width="84"></span>
   + <h1 class="brand__name"> + <p class="brand__tag">. Logo size lives HERE ONLY. */
:root {
  --brand-mark-size: 84px;
}
.brand__mark img {
  width: var(--brand-mark-size);
  height: auto;
  object-fit: contain;
  display: block;
}
