/* =============================================
   ARTIST STATEMENT PAGE
   ============================================= */

/* ── Main content — tight to the top ── */
.statement-main {
    max-width: 760px;
    margin: 0 auto;
    padding: 140px 2rem 8rem;   /* just enough to clear the fixed nav */
}

/* ── Header ── */
.statement-header {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}

.statement-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.statement-rule {
    width: 50px;
    height: 1px;
    background: rgba(201, 176, 107, 0.4);
}

/* ── Statement blocks ── */
.about-statement {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.statement-block {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.statement-block.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.statement-block:nth-child(2) {
    transition-delay: 0.08s;
}
.statement-block:nth-child(3) {
    transition-delay: 0.16s;
}

.statement-block p {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 300;
    line-height: 2;
    color: var(--text);
    letter-spacing: 0.2px;
    font-feature-settings: "liga" 1, "clig" 1, "calt" 1, "kern" 1;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
}

/* ── Divider ── */
.about-divider {
    display: flex;
    justify-content: center;
    padding-top: 5rem;
}

.about-divider span {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .statement-main {
        padding: 120px 1.5rem 6rem;
    }

    .statement-header {
        margin-bottom: 3rem;
    }

    .about-statement {
        gap: 2rem;
    }
}
