/* ════════════════════════════════════════════════════════════════════
   ABOUT THE ARTIST — page-specific styles
   Reuses the tokens defined in style.css (--black, --white, --border,
   --muted, --cream, --off-black, --font-display, --nav-h, --transition).
   Load AFTER style.css. Nothing here overrides the shared nav/footer.
   ════════════════════════════════════════════════════════════════════ */

.about {
    padding-top: var(--nav-h);
}

/* ─── HERO: portrait + intro ─────────────────────── */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-h));
    border-bottom: 1px solid var(--border);
}

.about-hero__media {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    border-right: 1px solid var(--border);
}
.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.about-hero__text {
    background: var(--off-black);
    padding: clamp(40px, 6vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    animation: fadeUp 1s var(--transition) both;
}

.about-hero__eyebrow {
    font-size: 9px;
    letter-spacing: 0.32em;
    color: var(--muted);
}

.about-hero__title {
    font-size: clamp(40px, 7vw, 92px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 0.9;
}

.about-hero__lead {
    font-size: clamp(13px, 1.4vw, 16px);
    letter-spacing: 0.14em;
    line-height: 2;
    color: var(--cream);
    max-width: 42ch;
}

/* ─── STATEMENT: the manifesto pull-quote ────────── */
.about-statement {
    padding: clamp(72px, 12vw, 160px) 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.about-statement__quote {
    font-size: clamp(22px, 3.4vw, 46px);
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1.25;
    max-width: 20ch;
    margin: 0 auto;
}
.about-statement__quote .accent {
    color: var(--cream);
}
.about-statement__mark {
    display: block;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-top: 32px;
}

/* ─── THREADS: clothing + artwork ────────────────── */
.about-threads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-bottom: 1px solid var(--border);
}
.about-thread {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    aspect-ratio: 4 / 5;
}
.about-thread img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition);
}
.about-thread:hover img {
    transform: scale(1.03);
}
.about-thread__label {
    position: absolute;
    left: 20px;
    bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--white);
    background: rgba(0, 0, 0, 0.55);
    padding: 8px 14px;
    backdrop-filter: blur(2px);
}

/* ─── CLOSE: sign-off + CTA ──────────────────────── */
.about-close {
    padding: clamp(64px, 10vw, 120px) 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}
.about-close__line {
    font-size: clamp(16px, 2.4vw, 28px);
    font-weight: 900;
    letter-spacing: 0.06em;
}
.about-close__cta {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--cream);
    border: 1px solid var(--muted);
    padding: 14px 34px;
    transition:
        color 0.2s,
        border-color 0.2s,
        background 0.2s;
}
.about-close__cta:hover {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 800px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
    .about-hero__media {
        border-right: none;
        border-bottom: 1px solid var(--border);
        min-height: 68vh;
    }
    .about-threads {
        grid-template-columns: 1fr;
    }
}
