/* Site-wide CSS fixes, loaded last (see AGENTS.md #2).
   Every rule must carry a comment naming the HubSpot artifact it corrects.
   page (a missing file 404s and throws a console MIME error site-wide). */

/* CTA buttons — recreate the retired HubSpot CTA product's rendered HTML
   buttons (the exported markup only carried the no-JS fallback <img>; HubSpot's
   loader swapped it for a styled <a class="cta_button">Label</a>). These two
   variants match the Renobuild brand buttons the loader rendered: orange
   primary (rgb 255,105,71) and blue secondary (rgb 0,77,145). data-cta on each
   link drives the self-hosted click/impression tracking in BaseLayout. */
.cta-button {
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  transition: all .4s ease;
  border: 0;
  border-radius: 6px;
  color: #fff !important;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.5em;
  padding: 6px 18px;
  margin: 10px 0;
}
.cta-button:hover { color: #fff !important; text-decoration: none; }
.cta-button--primary { background: #ff6947; }
.cta-button--primary:hover { background: #ff734e; }
.cta-button--secondary { background: #004d91; }
.cta-button--secondary:hover { background: #0a5aa5; }

/* Header top-bar contact strip: HubSpot's export rendered the phone/email as
   plain text in the .logo-byline text widget. We wrapped them in tel:/mailto:
   links; keep them looking like the original unlinked text. */
.top-bar .logo-byline a { color: inherit; text-decoration: none; }
