/* ====================================================
   TEXT MEADOW — decorative caption field at page bottom
   ==================================================== */
.text-meadow {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    user-select: text; /* selectable for curious users */
    -webkit-user-select: text;
}

.meadow-line {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    color: var(--text-color, #2b2c34);
    opacity: 0.18;
    line-height: 1;
    transition: opacity 0.8s ease;
}

/* Responsive font sizes */
.text-meadow {
    font-size: clamp(6px, 1.4vw, 11px);
}

@media (max-width: 640px) {
    .text-meadow {
        font-size: clamp(5px, 2vw, 8px);
    }
}
