/* ============================================================
   custom.css — your persistent CSS overrides
   Edit this file freely. It loads after styles.css so any
   rule here wins. It is NEVER overwritten by the build.
   ============================================================ */

/* ── Logo colors ──────────────────────────────────────────── */
.site-header .logo { color: #000000; }
.site-footer .logo { color: var(--primary); }

/* ── Trust bar — mobile: show only Locally Owned, Professional Results, Reliable Every Time */
@media (max-width: 768px) {
  .trust-badge:nth-child(1), /* 5 Stars */
  .trust-badge:nth-child(4)  /* Fast, Clear Communication */
  { display: none; }
}

/* ── Call Now button (header) ─────────────────────────────── */
.header-actions .call-btn {
  background:    ;   /* button fill color */
  color:         ;   /* text color        */
  border-color:  ;   /* border color      */
  border-radius: ;   /* e.g. 4px, 999px   */
  font-weight:   ;   /* e.g. 700          */
  box-shadow:    ;   /* e.g. none         */
}
.header-actions .call-btn:hover {
  background:   ;    /* hover fill        */
  border-color: ;    /* hover border      */
}


