/* ----------------------------------------------------------------------
   Header attribution line — "Koplow Law Firm" (v252)
   DESKTOP ONLY (>=1025). Adds a subtle supporting line beneath the
   existing KOPLOW * DEFENSE text lockup. The line is absolutely
   positioned so it has ZERO impact on the lockup's size, position,
   spacing, or the navbar height. Mobile/tablet are untouched.
   Typography mirrors the approved asset's secondary treatment:
   mixed case, lighter weight, muted tone, refined tracking.
---------------------------------------------------------------------- */
.brand-attribution { display: none; }

@media (min-width: 1025px) {
  .nav__brand { position: relative; }     /* anchor only; no visual change to the lockup */

  .brand-attribution {
    display: block;
    position: absolute;
    top: 100%;                 /* directly beneath the lockup */
    left: 0;                   /* aligned under "KOPLOW" */
    margin-top: 3px;
    font-size: 0.6rem;         /* secondary to the 0.85rem lockup */
    font-weight: 400;          /* lighter than the 600 lockup */
    letter-spacing: 0.04em;    /* refined, less than the lockup's wider tracking */
    text-transform: none;      /* mixed case */
    white-space: nowrap;
    line-height: 1;
    color: rgba(237, 237, 237, 0.66);  /* paper-white, muted = subtle/secondary */
    pointer-events: none;      /* visual only; the brand link still works */
  }
}
