.home-hero {
    position: relative;
    height: clamp(500px, calc(100vh - 150px), 610px);
    min-height: 500px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.home-hero__image,
.home-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__image {
    object-fit: cover;
    object-position: center 68%;
}

.home-hero__shade {
    background: rgba(12, 14, 15, .68);
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    padding: 44px 0 64px;
}

.home-hero__content {
    width: min(100%, 660px);
    padding-left: 28px;
    border-left: 5px solid var(--red);
}

.home-hero__kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
    color: #d6d9d8;
    font-size: 12px;
    font-weight: 750;
}

.home-hero__kicker span {
    color: #f1b4aa;
}

.home-hero h1 {
    margin: 0;
    font-family: "Songti SC", "STSong", serif;
    font-size: 62px;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-hero__lead {
    margin: 10px 0 0;
    font-size: 25px;
    font-weight: 650;
}

.home-hero__copy {
    max-width: 620px;
    margin: 18px 0 0;
    color: #d0d5d3;
    font-size: 17px;
}

.home-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(100%, 590px);
    height: 52px;
    margin-top: 28px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, .5);
}

.home-search input {
    min-width: 0;
    padding: 0 17px;
    color: var(--ink);
    border: 0;
    background: transparent;
    outline: 0;
}

.home-search button {
    padding: 0 22px;
    color: var(--white);
    font-weight: 700;
    border: 0;
    background: var(--red);
}

.home-search button:hover {
    background: var(--red-dark);
}

.home-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: #e2e4e3;
    font-size: 13px;
    font-weight: 650;
}

.home-hero__link:hover {
    color: var(--white);
}

.home-hero__caption {
    position: absolute;
    right: 28px;
    bottom: 18px;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
}

.home-paths {
    padding: 78px 0 86px;
    background: var(--paper);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    counter-reset: path;
    border-bottom: 1px solid var(--line);
}

.path-entry {
    position: relative;
    min-width: 0;
    min-height: 280px;
    padding: 22px 20px 24px;
    border-top: 3px solid var(--ink);
    border-right: 1px solid var(--line);
    counter-increment: path;
}

.path-entry:last-child {
    border-right: 0;
}

.path-entry:hover {
    color: var(--white);
    background: var(--ink);
    border-top-color: var(--red);
}

.path-entry__index::before {
    content: "0" counter(path);
}

.path-entry__index {
    color: var(--red-dark);
    font: 700 12px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.path-entry:hover .path-entry__index {
    color: #efa99e;
}

.path-entry h3 {
    margin: 34px 0 12px;
    font-family: "Songti SC", "STSong", serif;
    font-size: 24px;
    line-height: 1.25;
}

.path-entry p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.path-entry:hover p {
    color: #bdc4c2;
}

.path-entry__more {
    position: absolute;
    right: 20px;
    bottom: 22px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.home-evidence {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
    min-height: 610px;
    color: #e9e6df;
    background: var(--ink);
}

.home-evidence__media {
    min-height: 520px;
}

.home-evidence__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-evidence__content {
    align-self: center;
    padding: 70px clamp(36px, 7vw, 110px);
}

.home-evidence__content .section-kicker {
    color: #e2a49a;
}

.home-evidence__content h2 {
    max-width: 540px;
    margin: 10px 0 18px;
    font-family: "Songti SC", "STSong", serif;
    font-size: 38px;
    line-height: 1.25;
}

.home-evidence__content > p:not(.section-kicker) {
    max-width: 600px;
    margin: 0;
    color: #b7bfbc;
}

.evidence-scale {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 32px 0 0;
    background: var(--line-dark);
    border: 1px solid var(--line-dark);
}

.evidence-scale div {
    min-height: 112px;
    padding: 18px;
    background: #202526;
}

.evidence-scale dt {
    color: #f0b1a6;
    font-weight: 800;
}

.evidence-scale dd {
    margin: 7px 0 0;
    color: #aeb6b3;
    font-size: 13px;
}

.home-latest {
    padding: 82px 0 90px;
    background: #fcfaf5;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.latest-grid > p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 34px 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.latest-entry {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.latest-entry__media {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--paper-deep);
}

.latest-entry__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.latest-entry:hover .latest-entry__image {
    transform: scale(1.025);
}

.latest-entry__body {
    padding: 22px;
}

.latest-entry__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.latest-entry__meta a {
    color: var(--red-dark);
    font-weight: 700;
}

.latest-entry h3 {
    margin: 12px 0 10px;
    font-size: 20px;
    line-height: 1.45;
}

.latest-entry h3 a:hover {
    color: var(--red-dark);
}

.latest-entry__body > p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.latest-entry__more {
    display: inline-flex;
    gap: 8px;
    margin-top: 18px;
    color: var(--red-dark);
    font-size: 13px;
    font-weight: 700;
}

.home-standards {
    padding: 66px 0;
    color: var(--white);
    background: var(--green);
}

.home-standards__inner {
    display: grid;
    grid-template-columns: .8fr 1.4fr;
    gap: 76px;
    align-items: start;
}

.home-standards .section-kicker {
    color: #cae3da;
}

.home-standards h2 {
    margin: 8px 0 0;
    font-family: "Songti SC", "STSong", serif;
    font-size: 34px;
    line-height: 1.3;
}

.standard-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .2);
}

.standard-list p {
    min-height: 92px;
    margin: 0;
    padding: 18px;
    background: var(--green);
}

.standard-list strong,
.standard-list span {
    display: block;
}

.standard-list strong {
    color: var(--white);
}

.standard-list span {
    margin-top: 5px;
    color: #cfe0da;
    font-size: 13px;
}

.home-friends {
    padding: 46px 0;
    background: var(--paper-deep);
    border-top: 1px solid var(--line);
}

.home-friends__inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.home-friends h2 {
    margin: 2px 0 0;
    font-size: 22px;
}

.home-friends__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.home-friends__links a {
    color: var(--ink-soft);
    font-size: 14px;
}

.home-friends__links a:hover {
    color: var(--red-dark);
}

@media (max-width: 980px) {
    .path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .path-entry:nth-child(2n) {
        border-right: 0;
    }

    .path-entry:last-child {
        grid-column: 1 / -1;
        min-height: 220px;
    }

    .home-evidence {
        grid-template-columns: 1fr;
    }

    .home-evidence__media {
        min-height: 440px;
    }

    .latest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-hero {
        height: 560px;
        min-height: 560px;
    }

    .home-hero__image {
        object-position: 58% center;
    }

    .home-hero__shade {
        background: rgba(12, 14, 15, .72);
    }

    .home-hero__inner {
        align-items: end;
        padding: 44px 0 58px;
    }

    .home-hero__content {
        padding-left: 16px;
        border-left-width: 4px;
    }

    .home-hero h1 {
        font-size: 45px;
    }

    .home-hero__lead {
        font-size: 21px;
    }

    .home-hero__copy {
        font-size: 15px;
    }

    .home-search {
        height: 50px;
    }

    .home-search input {
        padding: 0 12px;
        font-size: 14px;
    }

    .home-search button {
        padding: 0 15px;
        font-size: 14px;
    }

    .home-hero__caption {
        display: none;
    }

    .home-paths,
    .home-latest {
        padding: 58px 0 64px;
    }

    .path-grid {
        grid-template-columns: 1fr;
    }

    .path-entry,
    .path-entry:last-child {
        grid-column: auto;
        min-height: 210px;
        border-right: 0;
    }

    .path-entry h3 {
        margin-top: 22px;
    }

    .home-evidence__media {
        min-height: 300px;
    }

    .home-evidence__content {
        padding: 48px 20px 56px;
    }

    .home-evidence__content h2 {
        font-size: 30px;
    }

    .evidence-scale {
        grid-template-columns: 1fr;
    }

    .evidence-scale div {
        min-height: 92px;
    }

    .latest-grid {
        grid-template-columns: 1fr;
    }

    .home-standards {
        padding: 50px 0;
    }

    .home-standards__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-standards h2 {
        font-size: 29px;
    }

    .standard-list {
        grid-template-columns: 1fr;
    }

    .home-friends__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
