/* =====================================================
   Font Awesome 6 Free — Subset (Ozark Homesteads)
   Only the 13 icons actually used on this site.
   Replaces all.min.css (~385 KB) with ~3 KB.
   WOFF2 font file loaded from cdnjs CDN (cached).
   ===================================================== */

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2") format("woff2");
}

.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Icon definitions ─────────────────────────────── */
.fa-phone::before        { content: "\f095"; }
.fa-envelope::before     { content: "\f0e0"; }
.fa-location-dot::before { content: "\f3c5"; }
.fa-hammer::before       { content: "\f6e3"; }
.fa-clock::before        { content: "\f017"; }
.fa-handshake::before    { content: "\f2b5"; }
.fa-circle-check::before { content: "\f058"; }
.fa-arrow-right::before  { content: "\f061"; }
.fa-house::before        { content: "\f015"; }
.fa-stopwatch::before    { content: "\f2f2"; }
.fa-tag::before          { content: "\f02b"; }
.fa-comment-dots::before { content: "\f4ad"; }
.fa-spinner::before      { content: "\f110"; }

/* ── Spin animation (used by submit button loader) ── */
.fa-spin {
  animation: fa-spin 2s linear infinite;
}
@keyframes fa-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
