.brand-strip {
    background: var(--gold);
    padding: 20px 0;
    overflow: hidden;
}
.brand-strip-inner {
    display: flex; gap: 60px; align-items: center;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}
.brand-strip-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--ink); flex-shrink: 0;
}
.brand-strip-item .star { font-size: 16px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
