/* ================================================================
   The Big City Group — headline "gold shine"  (TEST: home hero)
   Static metallic-gold headline + a bright gloss glint that glides
   across on a continuous loop.
   ================================================================ */

[data-screen-label$="ero"] h1{      /* Hero · About hero · Construction hero · … */
  background-image:
    /* layer 1 — travelling gloss glint (the "shine") */
    linear-gradient(100deg,
      rgba(255,255,255,0)   36%,
      rgba(255,255,255,.85) 50%,
      rgba(255,255,255,0)   64%),
    /* layer 2 — static metallic brass body */
    linear-gradient(180deg,
      #F6ECD9 0%,
      #E8D3AE 30%,
      #C9AE84 62%,
      #AB9770 100%);
  background-size: 180% 100%, 100% 100%;   /* gloss oversized so it can travel; body fixed */
  background-position: 130% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  animation: tbcgSheen 4.5s linear infinite;
}

@keyframes tbcgSheen{
  0%   { background-position: 130% 0, 0 0; }   /* glint off to the right */
  100% { background-position: -40% 0, 0 0; }   /* glides left across, then loops */
}

/* NOTE: reduced-motion fallback removed by request — the shine loops for everyone. */
