/* ============================================================
   ABOUT — quiet editorial page: warm paper, black type,
   Klein blue used sparingly. Two columns on desktop:
   bio + portrait | music picker + contact.
   ============================================================ */

:root {
    --paper: #f4f1ea;
    --ink: #1a1a1a;
    --ink-soft: #55534e;
    --klein: #002fa7;
    --hairline: rgba(26, 26, 26, 0.14);
}

.page-wrapper.about-light {
    background-color: var(--paper);
    min-height: 100vh;
}

/* Invert the fixed nav/title for the light background */
.about-light .top-left-title .hero-title,
.about-light .top-left-title .hero-title a { color: var(--ink); }
.about-light .top-nav a { color: var(--ink); }
.about-light .top-nav a:hover { opacity: 0.55; }

/* Paper fade behind the fixed header so scrolling text never collides
   with the name/nav (they sit at z-index 10/20, content below 5). */
.about-light::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5.5rem;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to bottom, var(--paper) 60%, rgba(244, 241, 234, 0));
}

.about-page {
    max-width: 62rem;
    margin: 0 auto;
    padding: 9rem 2rem 5rem;
    color: var(--ink);
}

.about-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--klein);
    margin-bottom: 1.2rem;
}

.about-headline {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3rem;
    max-width: 44rem;
}

/* ---- Two-column grid ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.about-text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--ink-soft);
    margin-bottom: 1.3rem;
}

.about-text em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ink);
}

/* ---- Portrait ---- */
.about-portrait {
    margin: 2.2rem 0 0;
}

.about-portrait img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.about-portrait figcaption {
    margin-top: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* ---- Side column ---- */
.about-side {
    position: sticky;
    top: 7rem;
}

.about-side-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--klein);
    margin-bottom: 1rem;
}

/* ---- Music picker ---- */
.music-match {
    margin-bottom: 2.6rem;
}

.mm-lead {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 1.1rem;
}

.mm-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mm-chips button {
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    color: var(--ink);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    padding: 0.5rem 1.05rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mm-chips button:hover {
    border-color: var(--klein);
    color: var(--klein);
}

.mm-chips button.active {
    background: var(--klein);
    border-color: var(--klein);
    color: #fff;
}

.mm-chips button:disabled { opacity: 0.5; cursor: wait; }

.mm-note {
    font-size: 0.76rem;
    color: var(--ink-soft);
    margin: 0.9rem 0 0.5rem;
    min-height: 1em;
}

.mm-results {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ---- Contact ---- */
.about-contact {
    border-top: 1px solid var(--hairline);
    padding-top: 1.6rem;
}

.social-links {
    display: flex;
    gap: 1.6rem;
}

.social-icon {
    color: var(--ink);
    display: inline-flex;
    transition: color 0.25s ease;
}

.social-icon:hover { color: var(--klein); }

/* ---- Mobile / narrow ---- */
@media (max-width: 820px) {
    .about-page { padding: 7.5rem 1.3rem 4rem; }
    .about-headline { margin-bottom: 2rem; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.6rem;
    }

    .about-side { position: static; }
    .about-portrait { max-width: 22rem; }
}

/* ---- Epigraph quote ---- */
.about-quote {
    margin: 2rem 0 0;
    padding-left: 1.2rem;
    border-left: 2px solid var(--klein);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.about-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-family: var(--font-primary);
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
