body.page-about main { 
    overflow: clip;
}

.about-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 50%;
    background: var(--about-bg);
    z-index: 0;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.about-hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 4rem) 0;
}

.about-hero-name {
    font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.1;
    letter-spacing: .16em;
    color: var(--secondaryBg);
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}

.about-hero-zh {
    display: block;
    font-family: var(--font-zh-display);
    font-size: 1.1rem;
    color: var(--secondaryBg);
    margin-bottom: 1.8rem;
}

.about-hero-statement {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--secondaryBg);
    max-width: 38ch;
}

.about-hero-media {
    position: absolute;
    inset: 0;
    left: 50%;
    width: 50%;
    overflow: hidden;
    z-index: 0;
}

.about-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(5,6,5,.4) 0%, transparent 22%, transparent 78%, rgba(5,6,5,.32) 100%); */
}

.about-hero-scroll {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: clamp(1.5rem, 4vw, 2.5rem);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--secondaryBg);
    /* background: var(--accent-clay); */
    border: 1px solid var(--secondaryBg);
    border-radius: 999px;
    padding: 1rem 1rem;
    animation: about-bob 2.4s ease-in-out infinite;
}

.about-hero-scroll:hover { 
    background: var(--accent-gold); 
    color: var(--secondaryBg); 
    border-color: var(--accent-gold);
}  
@keyframes about-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

@media (max-width: 767px) {
    .about-hero { 
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .about-hero-media {
        position: relative;
        inset: auto;
        left: auto;
        width: 100%;
        height: 46vh;
        order: -1;
    }

    .about-hero-bg { 
        display: none;
    }

    .about-hero-container {
        order: 1;
        min-height: auto;
        background: var(--about-bg);
        border-bottom: 1px solid rgba(244,239,228,.22);
    }
    .about-hero-panel { 
        max-width: none;
        padding: 2.4rem 0 3rem;
    }
    .about-hero-statement { 
        max-width: none;
    }
}