/* Restored Scratchive wordmark treatment from the earlier brand usage. */
.brand-wordmark,
.footer-wordmark {
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: -.03em;
    text-transform: lowercase;
    line-height: 1;
}

.brand-wordmark {
    font-size: 27px;
}

.brand-dot,
.footer-dot {
    color: #b79a58;
}

.brand-wordmark .brand-dot {
    display: inline-block;
    transform-origin: 50% 80%;
    animation: scratchive-dot-bob 5s ease-in-out infinite;
}

.footer-wordmark {
    font-size: clamp(38px, 5vw, 62px);
    text-decoration: none;
}

.brand-note {
    margin-top: 7px;
}

@keyframes scratchive-dot-bob {
    0%, 78%, 100% { transform: translateY(0) scale(1); }
    84% { transform: translateY(-2px) scale(1.08); }
    90% { transform: translateY(0) scale(.96); }
}

@media (prefers-reduced-motion: reduce) {
    .brand-wordmark .brand-dot { animation: none; }
}
