/* Display — used once per page, never more */
.display {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--text);
}

/* Quiet Latimont text mark — not a logo */
.wordmark {
    font-size: clamp(11px, 0.4vw + 4px, 12px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Positioning line — appears once per page at most */
.positioning {
    font-size: clamp(13px, 0.5vw + 6px, 14px);
    font-weight: 300;
    letter-spacing: 0.01em;
    color: var(--text-tertiary);
}

/* Reading body — editorial block, used on /company/ and docs prose */
.reading {
    font-size: clamp(15px, 0.5vw + 8px, 16px);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 56ch;
}

.reading p + p { margin-top: 14px; }
