/* about.css — moved from site.css */
.page-about {
    padding: 0;
    background: #000;
}
.about-hero {
    --about-scale: 1;
    --about-gutter: max(var(--gutter), calc((100% - var(--max)) / 2));
    --about-avatar-shift: calc(80px * var(--about-scale));
    --about-quote-top: calc(8rem * var(--about-scale));
    position: relative;
    display: flex;
    flex-direction: column;
    height: calc(560px * var(--about-scale));
    max-height: 560px;
    overflow: hidden;
    color: #fff;
    background: #000;
}
.about-hero-visual {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.3;
}
.about-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.45) 82%, #000 100%);
    pointer-events: none;
}
.about-quote-block {
    position: relative;
    z-index: 2;
    flex: 1;
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
    margin: 0 auto;
    padding: calc(var(--nav-h) + var(--about-quote-top)) 0 0;
    text-align: center;
}
.about-quote {
    margin: 0 auto;
    max-width: 58rem;
    font-size: clamp(1.5rem, 3vw, 2.7rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.32;
    color: #fff;
}
.about-quote strong { font-weight: 700; }
.about-sig {
    margin: 1.35rem 0 0;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.45;
}
.about-avatar {
    position: absolute;
    z-index: 3;
    right: calc(var(--about-gutter) + var(--about-avatar-shift));
    bottom: 0;
    height: calc(280px * var(--about-scale));
    width: auto;
    display: block;
    pointer-events: none;
}
.about-hero-label {
    position: relative;
    z-index: 4;
    margin-top: auto;
    padding-bottom: 0;
}
.about-hero-label h1 {
    margin: 0;
    padding: 0 0 1.05rem;
    font-size: clamp(1.65rem, 2.4vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.about-body {
    position: relative;
    z-index: 2;
    padding: 0 0 4.5rem;
    background: #000;
}
.about-job {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-areas:
        "years name"
        "logo  copy";
    column-gap: 2.4rem;
    row-gap: 0.4rem;
    align-items: start;
    padding: 1.85rem 0 1.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.about-job:first-child,
.about-section-title + .about-school { border-top: 0; }
.about-school { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.about-job-years {
    grid-area: years;
    align-self: center;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.04em;
    opacity: 0.45;
    text-align: center;
}
.about-job-name {
    grid-area: name;
    align-self: center;
    margin: 0;
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
}
.about-job-logo {
    grid-area: logo;
    justify-self: center;
    align-self: start;
    display: block;
    width: auto;
    max-width: 100%;
    height: 72px;
    object-fit: contain;
    object-position: center top;
    margin-top: 0.4rem;
}
.about-job-copy {
    grid-area: copy;
}
.about-job-role {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.42;
}
.about-job-body {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.72;
    white-space: pre-line;
}
.about-job-projects {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}
.about-job-projects li { margin: 0; }
.about-job-projects strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}
.about-section-title {
    margin: 3.6rem 0 0;
    padding: 0;
    font-size: clamp(1.65rem, 2.4vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #fff;
    border-bottom: 0;
}
.about-edu-title {
    padding: 0 0 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.about-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 1.35rem 0 0;
}
.about-tool {
    position: relative;
    box-sizing: border-box;
    padding: 0;
    border: 0;
    border-radius: 25px;
    background: none;
    color: #fff;
    transform-origin: 50% 50%;
    transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease;
}
.about-tool-clip {
    position: relative;
    box-sizing: border-box;
    padding: 1.7rem 1.85rem 1.85rem;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}
.about-tool h3,
.about-tool p { position: relative; z-index: 3; }
.about-tool h3 {
    margin: 0 0 0.7rem;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.about-tool p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.55;
    white-space: pre-line;
}

@media (max-width: 899px) {
    .about-hero {
        --about-scale: calc(100vw / 899px);
        height: auto;
        max-height: none;
        min-height: calc(560px * var(--about-scale));
    }
    .about-job {
        column-gap: 1.2rem;
        padding: 1.4rem 0 1.5rem;
    }
    .about-job-name { font-size: 1.15rem; }
    .about-job-logo { height: 52px; }
    .about-job-body { font-size: 0.92rem; }
    .about-section-title { margin-top: 2.6rem; }
    .about-tools { grid-template-columns: 1fr; }
}

@media (max-width: 599px) {
    .about-job {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "years"
            "logo"
            "name"
            "copy";
        column-gap: 0;
        row-gap: 0.55rem;
        padding: 1.4rem 0 1.6rem;
    }
    .about-job-years {
        justify-self: start;
        align-self: start;
        text-align: left;
    }
    .about-job-name { align-self: start; }
    .about-job-logo {
        justify-self: start;
        height: 52px;
    }
    .about-job-role { margin-bottom: 0.55rem; }
}

@media (max-width: 480px) {
    .about-quote-block { padding: 120px 0 80px; }
    .about-quote { font-size: clamp(1.1rem, 3vw, 2.7rem); }
    .about-sig { margin: 0.5rem 0 0; }
}
