@charset "utf-8";

:root
{
    --font-color-0: #cf4b4b;
    --font-color-1: #191919;
    --font-color-2: #333;
    --font-color-3: #858585;
    --bg-color-1: #f7f7f4;
    --bg-color-2: #fafafa;
    --line-1: #eee;
    --line-2: #deded8;
}
p
{
    word-wrap: break-word;
    white-space: pre-wrap;
}

body
{
    font-family: "Montserrat", "SF UI Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", "Helvetica Neue", Helvetica, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
    color: var(--font-color-2);
    background: #fbfbf8;
}
a
{
    text-decoration: none;
    color: var(--font-color-3);
}

.paper
{
    /* padding: 4vw; */
}
.paper-main
{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 104px 8vw 32px;
    background: #fff;
    min-height: 100vh;
}

.header-sticky
{
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 8vw 0;
    background: rgba(251, 251, 248, .88);
    backdrop-filter: blur(14px);
}

.header
{
    padding: 14px 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--line-1);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.logo
{
    font-size: 1rem;
    font-weight: 600;
    color: var(--font-color-1);
    margin-bottom: 0;
    flex: 0 1 auto;
}
.nav
{
    margin: 0;
    flex: 0 1 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
}
.nav li
{
    padding: 2px 0;
    margin-right: 18px;
    font-size: 0.92rem;
}
.nav li:last-of-type
{
    margin-right: 0;
}
.nav li a
{
    color: var(--font-color-1);
    opacity: .7;
    transition: opacity ease-in-out .5s;
}
.nav li a:hover
{
    opacity: 1;
    transition: opacity ease-in-out .5s;
}

.post-header
{
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-1);
}
.post-header .logo
{
    font-size: 1rem;
}
.post-header .go-home
{
    display: block;
    padding: 10px 20px 8px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eee;
    margin: 8px 0;
    transition: background ease-in-out .5s;
}
.post-header .go-home:hover
{
    background: var(--bg-color-1);
    transition: background ease-in-out .5s;
}
.post-header .go-home svg
{
    transform: translateX(0);
    transition: transform ease-in-out .5s;
}
.post-header .go-home:hover svg
{
    transform: translateX(-4px);
    transition: transform ease-in-out .5s;
}

.post-list
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
.post
{
    width: 100%;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px dashed var(--line-2);
}
.post-title
{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
    color: var(--font-color-1);
    /*transition: color ease-in-out .5s;*/
}
.post-title:hover
{
    color: var(--font-color-0);
    transition: color ease-in-out .5s;
}
.post-except
{
    word-break: break-all;
    margin-bottom: 12px;
}
.read-more
{
    padding: 0 4px;
    color: var(--font-color-0);   
}
.read-more:before,
.read-more:after
{
    display: inline-block;
    transition: transform ease-in-out .5s;
}
.read-more:before
{
    content: "{ ";
}
.read-more:after
{
    content: " }";
}
.read-more:hover:before
{
    transform: translateX(-4px);
    transition: transform ease-in-out .25s;
}
.read-more:hover:after
{
    transform: translateX(4px);
    transition: transform ease-in-out .25s;
}
.post-date
{
    font-size: 0.875rem;
    color: var(--font-color-3);
}

.landing-hero
{
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 56px;
    align-items: center;
    padding: 56px 0 72px;
    border-bottom: 1px solid var(--line-1);
}
.landing-eyebrow
{
    margin-bottom: 18px;
    color: var(--font-color-0);
    font-size: .86rem;
    font-weight: 600;
    text-transform: uppercase;
}
.landing-copy h1
{
    margin-bottom: 20px;
    font-size: 3.3rem;
    line-height: 1.08;
    font-weight: 600;
    color: var(--font-color-1);
}
.landing-lede
{
    max-width: 680px;
    margin-bottom: 28px;
    color: #555;
    font-size: 1.08rem;
}
.landing-actions
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.landing-actions a,
.landing-cta a,
.landing-more
{
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 16px;
    border: 1px solid var(--line-2);
    border-radius: 20px;
    color: var(--font-color-1);
    background: #fff;
    transition: color ease-in-out .25s, border-color ease-in-out .25s, transform ease-in-out .25s;
}
.landing-actions a:hover,
.landing-cta a:hover,
.landing-more:hover
{
    color: var(--font-color-0);
    border-color: var(--font-color-0);
    transform: translateY(-1px);
}
.landing-profile
{
    justify-self: end;
    text-align: center;
}
.landing-profile img
{
    display: block;
    width: 176px;
    height: 176px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--line-1);
    margin-bottom: 14px;
}
.landing-profile span
{
    display: block;
    max-width: 220px;
    color: var(--font-color-3);
    font-size: .86rem;
    line-height: 1.5;
}
.landing-section
{
    padding: 64px 0;
    border-bottom: 1px solid var(--line-1);
}
.landing-section--soft
{
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
    background: var(--bg-color-2);
}
.landing-section-head
{
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 28px;
}
.landing-section-head span
{
    color: var(--font-color-0);
    font-size: .82rem;
    font-weight: 600;
}
.landing-section-head h2
{
    font-size: 1.55rem;
    color: var(--font-color-1);
    font-weight: 600;
}
.landing-principles,
.landing-projects,
.landing-posts
{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.landing-principles article,
.landing-projects a,
.landing-post-card
{
    display: block;
    min-height: 156px;
    padding: 22px;
    border: 1px solid var(--line-1);
    border-radius: 14px;
    background: #fff;
    color: var(--font-color-2);
    transition: border-color ease-in-out .25s, transform ease-in-out .25s;
}
.landing-principles article:hover,
.landing-projects a:hover,
.landing-post-card:hover
{
    border-color: rgba(207, 75, 75, .45);
    transform: translateY(-2px);
}
.landing-principles h3,
.landing-projects strong,
.landing-post-card h3
{
    display: block;
    margin-bottom: 10px;
    color: var(--font-color-1);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
}
.landing-principles p,
.landing-projects span,
.landing-post-card p
{
    color: #666;
    font-size: .94rem;
    line-height: 1.65;
}
.landing-post-card time
{
    display: block;
    margin-bottom: 10px;
    color: var(--font-color-3);
    font-size: .82rem;
}
.landing-more
{
    margin-top: 24px;
}
.landing-cta
{
    margin: 64px 0 24px;
    padding: 38px;
    border-radius: 16px;
    color: #fff;
    background: #1f1f1f;
}
.landing-cta h2
{
    max-width: 760px;
    margin-bottom: 10px;
    font-size: 1.55rem;
    line-height: 1.35;
    font-weight: 600;
}
.landing-cta p
{
    max-width: 760px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .72);
}
.landing-cta a
{
    border-color: rgba(255, 255, 255, .26);
    color: #fff;
    background: transparent;
}

.paginator
{
    font-size: 0.875rem;
    width: 100%;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.paginator *
{
    display: block;
    padding: 8px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eee;
}
.paginator .space
{
    display: block;
    padding: 8px 16px;
    border-radius: 18px;
    background: #fff;
    border: none;
}
.paginator a
{
    margin: 4px;
    color: var(--font-color-2);
    transition: color ease-in-out .5s;
}
.paginator a:hover
{
    color: var(--font-color-0);
    transition: color ease-in-out .5s;
}
.paginator .current
{
    color: var(--font-color-0);
    border: 1px solid var(--font-color-0);
}

.footer
{
    padding: 24px 0;
    font-size: 0.875rem;
    color: var(--font-color-3);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    align-content: center;
}
.footer span
{
    text-align: center;
    margin-bottom: 0;
}
.footer a
{
    color: var(--font-color-3);
    transition: color ease-in-out .5s;
}
.footer a:hover
{
    color: var(--font-color-0);
    transition: color ease-in-out .5s;
}

.post-main
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
}
.post-main-title
{
    flex: 0 0 100%;
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--font-color-1);
}
.post-meta
{
    font-size: 0.875rem;
    color: var(--font-color-3);
    flex: 0 0 100%;
    margin-bottom: 15px;
}

.archive
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: normal;
}
.archive li
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line-1);
}
.archive li:last-child
{
    border-bottom: 0;
}
.archive li span
{
    flex: 0 0 auto;
    width: 92px;
    color: var(--font-color-3);
    font-size: .9rem;
}
.archive-main
{
    flex: 1 1 auto;
}
.archive-title
{
    color: var(--font-color-1);
    font-size: 1.02rem;
    line-height: 1.5;
    transition: color ease-in-out .25s;
}
.archive-title:hover
{
    color: var(--font-color-0);
}

/* Projects page (data-driven) */
.page-title
{
    margin: 0 0 10px;
    color: var(--font-color-1);
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
}
.page-intro
{
    margin: 0 0 40px;
    max-width: 760px;
}
.archive-page .page-title
{
    margin-bottom: 26px;
}
.page-intro p
{
    margin: 0;
    color: #666;
    font-size: 1.02rem;
    line-height: 1.7;
    white-space: normal;
}
.project-item
{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed var(--line-2);
}
.project-item:last-child
{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.project-title
{
    margin: 0 0 8px;
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 700;
    color: var(--font-color-1);
}
.project-title a
{
    color: var(--font-color-1);
    transition: color ease-in-out .25s;
}
.project-title a:hover
{
    color: var(--font-color-0);
}
.project-meta
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 16px;
    margin-bottom: 12px;
    font-size: .92rem;
    color: var(--font-color-3);
}
.project-venue
{
    font-style: italic;
}
.project-link
{
    color: var(--font-color-0);
    font-weight: 600;
    transition: opacity ease-in-out .25s;
}
.project-link:hover
{
    text-decoration: underline;
}
.project-desc p
{
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.78;
    white-space: normal;
}





/* 文章分类 */
.tags {
    margin-bottom: 32px;
}

.tags a {
    display: inline-block;
    box-sizing: border-box;
    padding: 0 1em;
    height: 28px;
    line-height: 28px;
    border-radius: 28px;
    background-color:#000;
    color: #fff;
    text-decoration: none
}

.tags a+a {
    margin-left: .2em
}

.tags .new {
    --color: #3778FF;
    color: #fff
}

.tags .update {
    --color: #E016C4;
    color: #fff
}

.tags .fix,.tags .bugfix {
    --color: #FF4772;
    color: #fff
}

@media (max-width: 860px)
{
    .paper-main
    {
        padding: 88px 6vw 28px;
    }
    .header-sticky
    {
        padding: 12px 6vw 0;
    }
    .header,
    .post-header
    {
        align-items: flex-start;
    }
    .logo
    {
        flex: 0 0 100%;
        margin-bottom: 8px;
    }
    .nav
    {
        flex: 0 0 100%;
    }
    .nav li
    {
        margin-right: 16px;
        font-size: .88rem;
    }
    .landing-hero
    {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0 54px;
    }
    .landing-copy h1
    {
        font-size: 2.45rem;
    }
    .landing-lede
    {
        font-size: 1rem;
    }
    .landing-profile
    {
        justify-self: start;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    .landing-profile img
    {
        width: 92px;
        height: 92px;
        margin-bottom: 0;
    }
    .landing-section
    {
        padding: 48px 0;
    }
    .landing-section--soft
    {
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .landing-principles,
    .landing-projects,
    .landing-posts
    {
        grid-template-columns: 1fr;
    }
    .landing-cta
    {
        margin-top: 48px;
        padding: 26px;
    }
}

@media (max-width: 520px)
{
    .paper-main
    {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-sticky
    {
        padding-left: 20px;
        padding-right: 20px;
    }
    .landing-actions a,
    .landing-cta a,
    .landing-more
    {
        width: 100%;
        justify-content: center;
    }
    .archive li
    {
        flex-wrap: wrap;
    }
    .archive li span,
    .archive-main
    {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* ZenMind-style homepage */
.home-page
{
    background: #fff;
}
.home-page .paper-main,
.inner-page .paper-main
{
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}
.home-page .header-sticky,
.inner-page .header-sticky
{
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid var(--line-1);
}
.home-page .header,
.inner-page .header,
.inner-page .post-header
{
    width: 100%;
    max-width: 1120px;
    min-height: auto;
    margin: 0 auto;
    padding: 18px clamp(24px, 5vw, 48px);
    box-sizing: border-box;
    border-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
}
.inner-page .page-shell
{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px clamp(24px, 5vw, 48px) 40px;
    box-sizing: border-box;
}
.mark-logo
{
    display: inline-grid;
    grid-template-columns: repeat(2, 32px);
    gap: 3px;
    width: 68px;
    height: 34px;
    align-items: end;
    color: #111;
    font-size: 1.85rem;
    line-height: .82;
    font-weight: 900;
    letter-spacing: 0;
}
.mark-logo span
{
    display: block;
    color: #111;
}
.site-logo
{
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.site-logo img
{
    display: block;
    width: auto;
    height: 40px;
}
.home-page .nav,
.inner-page .nav
{
    flex: 0 1 auto;
    align-items: center;
    min-width: 0;
}
.home-page .nav li,
.inner-page .nav li
{
    margin-right: 28px;
    padding: 0;
    font-size: 1.04rem;
    font-weight: 500;
    line-height: 1.2;
}
.home-page .nav li a,
.inner-page .nav li a
{
    position: relative;
    color: #8b8b8b;
    opacity: 1;
}
.home-page .nav li:first-child a
{
    color: #242424;
}
.home-page .nav li:first-child a::after
{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 2px;
    background: #242424;
}
.home-page .nav li a:hover,
.inner-page .nav li a:hover
{
    color: #242424;
}
.hero-shot
{
    position: relative;
    min-height: auto;
    overflow: hidden;
    background: #fff;
}
.hero-shot-inner
{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 88px clamp(24px, 5vw, 48px) 56px;
}
.hero-shot h1
{
    margin: 0 0 32px;
    color: #222;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}
.hero-title,
.hero-subtitle
{
    max-width: 1040px;
    margin: 0;
    color: #535353;
    font-size: 1.15rem;
    line-height: 1.48;
    font-weight: 500;
    white-space: normal;
}
.hero-title
{
    margin-bottom: 4px;
}
.hero-socials
{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 48px;
}
.hero-socials a
{
    display: inline-flex;
    width: 22px;
    height: 22px;
    color: #808080;
    transition: color .2s ease, transform .2s ease;
}
.hero-socials a:hover
{
    color: #cf5c5c;
    transform: translateY(-2px);
}
.hero-socials svg
{
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.hero-geometry
{
    position: absolute;
    inset: 0;
    color: rgba(214, 92, 92, .18);
    pointer-events: none;
}
.geo,
.hero-orbit,
.hero-glow
{
    position: absolute;
    display: block;
    box-sizing: border-box;
}
.geo-plus
{
    width: 22px;
    height: 22px;
}
.geo-plus::before,
.geo-plus::after
{
    content: "";
    position: absolute;
    background: currentColor;
}
.geo-plus::before
{
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
}
.geo-plus::after
{
    left: 0;
    top: 10px;
    width: 100%;
    height: 2px;
}
.geo-dot
{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.geo-diamond
{
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
}
.geo-square
{
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
}
.geo-triangle
{
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid currentColor;
}
.geo-line
{
    width: 46px;
    height: 2px;
    background: currentColor;
}
.hero-orbit
{
    border: 2px solid rgba(214, 92, 92, .13);
    border-radius: 50%;
}
.orbit-one
{
    right: -170px;
    top: 26px;
    width: 360px;
    height: 360px;
}
.orbit-two
{
    right: 54px;
    top: 304px;
    width: 58px;
    height: 58px;
}
.orbit-three
{
    right: -40px;
    top: 146px;
    width: 186px;
    height: 186px;
    border-left-color: transparent;
    border-bottom-color: transparent;
}
.hero-glow
{
    right: -105px;
    top: 106px;
    width: 290px;
    height: 290px;
    border: 1px solid rgba(214, 92, 92, .07);
    border-radius: 50%;
    background: transparent;
}
.p1 { left: 0; top: 118px; }
.p2 { left: 42%; top: 270px; }
.p3 { right: 22%; bottom: 142px; }
.d1 { left: 6%; top: 156px; }
.d2 { left: 34%; top: 362px; }
.d3 { right: 26%; top: 185px; }
.d4 { right: 10%; bottom: 112px; }
.q1 { left: 6.5%; top: 270px; }
.q2 { right: 5%; top: 310px; }
.s1 { left: 15%; bottom: 150px; }
.s2 { right: 31%; bottom: 120px; }
.t1 { left: 16.5%; top: 112px; }
.t2 { left: 39.5%; bottom: 180px; }
.l1 { left: 20%; top: 378px; }
.l2 { right: 26%; bottom: 68px; }
.home-about-section
{
    background: #f4f5f7;
}
.home-band-inner
{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 60px clamp(24px, 5vw, 48px);
}
.home-band-inner h2
{
    margin: 0 0 26px;
    color: #252525;
    font-size: 1.55rem;
    line-height: 1.25;
    font-weight: 800;
}
.home-copy
{
    max-width: 1280px;
    margin: 0;
}
.home-copy p
{
    margin: 0 0 18px;
    color: #555;
    font-size: 1rem;
    line-height: 1.78;
    white-space: normal;
}
.home-copy h3
{
    margin: 34px 0 14px;
    color: #252525;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 800;
}
.home-copy ul
{
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}
.home-copy li
{
    position: relative;
    margin: 0 0 12px;
    padding-left: 24px;
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
}
.home-copy li::before
{
    content: "";
    position: absolute;
    left: 0;
    top: .78em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d95757;
}
.home-section
{
    background: #fff;
}
.home-section-muted
{
    background: #f7f7f8;
}
.home-section .home-band-inner
{
    padding-top: 66px;
    padding-bottom: 72px;
}
.home-section .landing-projects,
.home-section .landing-posts
{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.home-section .landing-projects a,
.landing-post-card
{
    display: block;
    min-height: 132px;
    padding: 26px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    color: #555;
    box-sizing: border-box;
}
.home-section .landing-projects strong,
.landing-post-card h3
{
    display: block;
    margin: 0 0 10px;
    color: #222;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 700;
}
.home-section .landing-projects span,
.landing-post-card p
{
    margin: 0;
    color: #666;
    font-size: .94rem;
    line-height: 1.7;
    white-space: normal;
}
.landing-post-card time
{
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-size: .82rem;
}
.landing-more
{
    display: inline-flex;
    margin-top: 28px;
    color: #cf4b4b;
    font-weight: 700;
}
.home-cv-content h3:first-child
{
    margin-top: 0;
}
.home-page .footer,
.inner-page .footer
{
    max-width: 1120px;
    margin: 0 auto;
    padding: 36px clamp(24px, 5vw, 48px);
    justify-content: space-between;
}

@media (max-width: 1180px)
{
    .home-page .header
    {
        min-height: 78px;
        gap: 24px;
    }
    .home-page .nav li
    {
        margin-right: 20px;
        font-size: .96rem;
    }
    .hero-shot h1
    {
        font-size: 3.1rem;
    }
    .hero-title,
    .hero-subtitle
    {
        max-width: 720px;
        font-size: 1.05rem;
    }
}

@media (max-width: 860px)
{
    .home-page .header-sticky,
    .inner-page .header-sticky
    {
        position: static;
    }
    .home-page .header,
    .inner-page .header,
    .inner-page .post-header
    {
        min-height: auto;
        width: 100%;
        padding: 16px clamp(20px, 6vw, 32px) 14px;
        flex-wrap: wrap;
        gap: 16px;
    }
    .inner-page .page-shell
    {
        padding-top: 40px;
    }
    .mark-logo
    {
        flex: 0 0 auto;
        width: 58px;
        height: 30px;
        grid-template-columns: repeat(2, 27px);
        font-size: 1.55rem;
    }
    .site-logo img
    {
        height: 34px;
    }
    .home-page .nav,
    .inner-page .nav
    {
        order: 3;
        flex: 0 0 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }
    .home-page .nav li
    {
        flex: 0 0 auto;
        margin-right: 22px;
        font-size: .98rem;
    }
    .hero-shot
    {
        min-height: 500px;
    }
    .hero-shot-inner
    {
        width: 100%;
        padding: 84px clamp(20px, 6vw, 32px) 48px;
    }
    .hero-shot h1
    {
        margin-bottom: 26px;
        font-size: 2.85rem;
    }
    .hero-title,
    .hero-subtitle
    {
        max-width: 560px;
        font-size: .98rem;
    }
    .hero-socials
    {
        gap: 24px;
        margin-top: 34px;
    }
    .orbit-one
    {
        right: -230px;
        top: 102px;
        width: 420px;
        height: 420px;
    }
    .orbit-three,
    .hero-glow
    {
        display: none;
    }
    .home-band-inner
    {
        width: 100%;
        padding: 54px clamp(20px, 6vw, 32px);
    }
    .home-copy li
    {
        font-size: 1.04rem;
        line-height: 1.75;
    }
    .home-copy p
    {
        font-size: 1rem;
    }
    .home-section .landing-projects,
    .home-section .landing-posts
    {
        grid-template-columns: 1fr;
    }
}
