/* The capture recorded this theme's lazy-load placeholders rather than the real
   images: every <img> carried a 1x1 transparent GIF with no data-src. All of
   them — homepage, inner pages, and the footer logo — have since been recovered
   from the client's own cPanel backup and archived site, so no placeholder-
   hiding rule is needed any more. */

/* The three header logo slots all carry the real logo. The theme normally
   reveals exactly one via JS (sticky on scroll, mobile at narrow widths); with
   no JS all three would show at once, so pick per width. */
img.logo-main { display: inline-block !important; }
img.logo-sticky, img.logo-mobile { display: none !important; }
@media (max-width: 767px) {
  img.logo-main { display: none !important; }
  img.logo-mobile { display: inline-block !important; }
}

/* The logo box is a full-width float with text-align:right, which parks the
   logo against the nav instead of at the start of the header. */
.logo { text-align: left !important; }
