    :root {
        --ink: #0c0c0d;
        --ink-soft: #17171a;
        --paper: #faf8f3;
        --paper-soft: #f1ede3;
        --line: rgba(12, 12, 13, .13);
        --line-dark: rgba(245, 242, 234, .14);
        --muted: #6f6a5c;
        --muted-dark: rgba(245, 242, 234, .55);
        --brass: #a97f45;
        --brass-light: #d9ac6c;
        --brass-dim: rgba(169, 127, 69, .16);
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        color: var(--ink);
        background: var(--paper);
        -webkit-font-smoothing: antialiased;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ::selection {
        background: var(--brass);
        color: #fff;
    }

    .serif {
        font-family: 'Fraunces', serif;
        font-optical-sizing: auto;
    }

    .mono {
        font-family: 'IBM Plex Mono', monospace;
    }

    .eyebrow {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .72rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--brass);
        display: inline-flex;
        align-items: center;
        gap: .7rem;
    }

    .eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--brass);
    }

    .eyebrow.on-dark {
        color: var(--brass-light);
    }

    .eyebrow.on-dark::before {
        background: var(--brass-light);
    }

    h1,
    h2,
    h3 {
        letter-spacing: -.01em;
    }

    .btn-ink {
        background: var(--ink);
        color: var(--paper);
        border: 1px solid var(--ink);
        font-size: .84rem;
        font-weight: 600;
        padding: .68rem 1.5rem;
        border-radius: 2px;
        transition: all .25s ease;
    }

    .btn-ink:hover {
        background: var(--brass);
        border-color: var(--brass);
        color: #fff;
    }

    .btn-outline-ink {
        background: transparent;
        color: var(--ink);
        border: 1px solid var(--ink);
        font-size: .84rem;
        font-weight: 600;
        padding: .68rem 1.5rem;
        border-radius: 2px;
        transition: all .25s ease;
    }

    .btn-outline-ink:hover {
        background: var(--ink);
        color: var(--paper);
    }

    .btn-outline-light {
        background: transparent;
        color: var(--paper);
        border: 1px solid var(--line-dark);
        font-size: .84rem;
        font-weight: 600;
        padding: .68rem 1.5rem;
        border-radius: 2px;
        transition: all .25s ease;
    }

    .btn-outline-light:hover {
        background: var(--brass);
        border-color: var(--brass);
        color: #fff;
    }

    /* ============ NAVBAR ============ */
    .navbar {
        border-bottom: 1px solid var(--line);
        padding-top: 1.05rem;
        padding-bottom: 1.05rem;
        background: rgba(250, 248, 243, .92);
        backdrop-filter: blur(10px);
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border: 1px solid var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: .85rem;
        font-family: 'Fraunces', serif;
        flex-shrink: 0;
        position: relative;
    }

    .brand-mark::after {
        content: "";
        position: absolute;
        top: -4px;
        right: -4px;
        width: 6px;
        height: 6px;
        background: var(--brass);
        border-radius: 50%;
    }

    .brand-name {
        font-weight: 700;
        font-size: .88rem;
        letter-spacing: .03em;
        line-height: 1.1;
    }

    .brand-sub {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .58rem;
        letter-spacing: .1em;
        color: var(--muted);
        text-transform: uppercase;
    }

    .nav-link-custom {
        font-size: .85rem;
        font-weight: 500;
        color: var(--ink) !important;
        padding: .4rem .9rem !important;
        position: relative;
    }

    .nav-link-custom.active-link::after {
        content: "";
        position: absolute;
        left: .9rem;
        right: .9rem;
        bottom: -1px;
        height: 2px;
        background: var(--brass);
    }

    .nav-link-custom:hover {
        color: var(--brass) !important;
    }

    /* ============ HERO ============ */
    .hero {
        background: var(--paper);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: -30%;
        right: -10%;
        width: 55%;
        height: 160%;
        background: radial-gradient(ellipse at center, var(--brass-dim), transparent 65%);
        pointer-events: none;
    }

    .hero-copy h1 {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: clamp(2.3rem, 4.4vw, 3.4rem);
        line-height: 1.08;
    }

    .hero-copy h1 em {
        font-style: italic;
        color: var(--brass);
    }

    .hero-copy p.lede {
        color: var(--muted);
        max-width: 420px;
        font-size: 1rem;
    }

    .hero-photo-wrap {
        position: relative;
        height: 100%;
        min-height: 460px;
    }

    .hero-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: grayscale(30%) contrast(1.05);
    }

    .hero-photo-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg, rgba(169, 127, 69, .28), rgba(12, 12, 13, .35) 75%);
        mix-blend-mode: multiply;
    }

    .quote-card {
        position: absolute;
        top: 8%;
        left: 6%;
        z-index: 2;
        background: var(--paper);
        padding: 1rem 1.2rem;
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-weight: 500;
        font-size: 1.05rem;
        line-height: 1.25;
        border-top: 2px solid var(--brass);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
        max-width: 160px;
    }

    .scroll-down {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .72rem;
        letter-spacing: .08em;
        color: var(--muted);
        display: inline-flex;
        align-items: center;
        gap: .5rem;
    }

    .scroll-down .line {
        width: 22px;
        height: 1px;
        background: var(--muted);
        display: inline-block;
    }

    /* ============ TRUST STRIP ============ */
    .trust-strip {
        padding: 2.4rem 0;
        border-bottom: 1px solid var(--line);
        background: var(--paper-soft);
    }

    .trust-mark {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .82rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
        text-align: center;
        transition: color .25s ease;
    }

    .trust-mark:hover {
        color: var(--brass);
    }

    /* ============ SECTION BASE ============ */
    .section {
        padding: 6rem 0;
    }

    /* ============ ABOUT ============ */
    .about-heading {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        line-height: 1.12;
    }

    .about-heading em {
        font-style: italic;
        color: var(--brass);
    }

    .stats-panel {
        background: var(--ink);
        color: var(--paper);
        padding: .2rem;
        border-radius: 2px;
    }

    .stat-cell {
        padding: 1.6rem 1.7rem;
        position: relative;
    }

    .stat-cell:nth-child(1),
    .stat-cell:nth-child(2) {
        border-bottom: 1px solid var(--line-dark);
    }

    .stat-cell:nth-child(odd) {
        border-right: 1px solid var(--line-dark);
    }

    .stat-num {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: 2.3rem;
        color: var(--brass-light);
        line-height: 1;
    }

    .stat-label {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .66rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--muted-dark);
        margin-top: .5rem;
    }

    /* ============ VENTURES (premium ledger, unchanged identity) ============ */
    .ventures-section {
        background: var(--ink);
        color: var(--paper);
        padding: 6.5rem 0;
        position: relative;
        overflow: hidden;
    }

    .ventures-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 85% 0%, var(--brass-dim), transparent 60%);
        pointer-events: none;
    }

    .v-heading {
        font-family: 'Fraunces', serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-size: clamp(2.1rem, 4vw, 3.3rem);
        line-height: 1.08;
        letter-spacing: -.01em;
        margin: 1rem 0 0;
    }

    .v-heading em {
        font-style: italic;
        color: var(--brass-light);
    }

    .v-sub {
        color: var(--muted-dark);
        max-width: 600px;
        font-size: .92rem;
        margin-top: 1.1rem;
    }

    .v-count {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .78rem;
        color: var(--muted-dark);
        letter-spacing: .04em;
    }

    .ventures-grid {
        display: grid;
        grid-template-columns: 1.15fr 1fr;
        gap: 3.5rem;
        align-items: center;
        margin-top: 3.5rem;
    }

    .ventures-list {
        border-top: 1px solid var(--line-dark);
    }

    .ventures-row {
        display: flex;
        align-items: baseline;
        gap: 1.6rem;
        padding: 1.7rem 0;
        border-bottom: 1px solid var(--line-dark);
        cursor: pointer;
        position: relative;
        transition: opacity .4s ease, padding .3s ease;
        text-decoration: none;
        color: inherit;
    }

    .ventures-row .v-index {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .78rem;
        color: var(--brass);
        min-width: 28px;
        transition: color .3s ease;
    }

    .ventures-row .v-body {
        flex: 1;
        min-width: 0;
    }

    .ventures-row .v-name {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: clamp(1.5rem, 2.4vw, 2rem);
        line-height: 1.15;
        transition: color .3s ease, transform .3s ease;
        display: inline-block;
    }

    .ventures-row .v-desc {
        font-size: .85rem;
        color: var(--muted-dark);
        margin-top: .35rem;
        max-width: 420px;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity .35s ease, max-height .35s ease, margin-top .35s ease;
    }

    .ventures-row .v-arrow {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 1.1rem;
        color: var(--brass-light);
        opacity: 0;
        transform: translateX(-8px);
        transition: opacity .3s ease, transform .3s ease;
        flex-shrink: 0;
    }

    .ventures-list.is-hovering .ventures-row:not(.is-active) {
        opacity: .38;
    }

    .ventures-row.is-active {
        padding-left: .4rem;
        padding-right: .4rem;
    }

    .ventures-row.is-active .v-index {
        color: var(--brass-light);
    }

    .ventures-row.is-active .v-name {
        color: var(--brass-light);
        transform: translateX(6px);
    }

    .ventures-row.is-active .v-desc {
        opacity: 1;
        max-height: 90px;
        margin-top: .5rem;
    }

    .ventures-row.is-active .v-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .ventures-visual {
        position: sticky;
        top: 100px;
        aspect-ratio: 4/5;
        border: 1px solid var(--line-dark);
        overflow: hidden;
        background: #050505;
    }

    .v-image {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transform: scale(1.06);
        transition: opacity .8s ease, transform 1.4s ease;
    }

    .v-image.is-active {
        opacity: 1;
        transform: scale(1);
    }

    .v-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(12, 12, 13, .15), rgba(12, 12, 13, .75) 92%), linear-gradient(120deg, rgba(182, 138, 78, .5), rgba(12, 12, 13, .55));
        mix-blend-mode: multiply;
    }

    .v-image-tag {
        position: absolute;
        left: 1.4rem;
        bottom: 1.3rem;
        right: 1.4rem;
        z-index: 2;
        font-family: 'IBM Plex Mono', monospace;
        font-size: .72rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--paper);
        display: flex;
        justify-content: space-between;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity .5s ease .1s, transform .5s ease .1s;
    }

    .v-image.is-active .v-image-tag {
        opacity: 1;
        transform: translateY(0);
    }

    /* ============ SERVICES ============ */
    .services-section {
        background: var(--paper-soft);
    }

    .service-card {
        padding: 2rem 1.6rem 1.8rem;
        border-left: 1px solid var(--line);
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: background .3s ease;
    }

    .service-card:hover {
        background: var(--paper);
    }

    .service-num {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: 3.6rem;
        color: var(--line);
        position: absolute;
        top: -.4rem;
        right: .6rem;
        line-height: 1;
        transition: color .3s ease;
        user-select: none;
    }

    .service-card:hover .service-num {
        color: var(--brass-dim);
    }

    .service-icon {
        width: 34px;
        height: 34px;
        color: var(--brass);
        margin-bottom: 1.3rem;
        position: relative;
        z-index: 1;
    }

    .service-title {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: 1.2rem;
        margin-bottom: .55rem;
        position: relative;
        z-index: 1;
    }

    .service-text {
        font-size: .86rem;
        color: var(--muted);
        margin-bottom: 1.1rem;
        position: relative;
        z-index: 1;
    }

    .service-link {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .74rem;
        letter-spacing: .03em;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        color: var(--ink);
        position: relative;
        z-index: 1;
    }

    .service-link .rule {
        width: 16px;
        height: 1px;
        background: var(--brass);
        transition: width .3s ease;
    }

    .service-card:hover .service-link .rule {
        width: 30px;
    }

    /* ============ MY APPROACH ============ */
    .approach-step {
        border-top: 1px solid var(--line);
        padding-top: 1.4rem;
        height: 100%;
    }

    .approach-num {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .78rem;
        color: var(--brass);
        letter-spacing: .06em;
    }

    .approach-title {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: 1.6rem;
        margin: .5rem 0 .6rem;
    }

    .approach-text {
        font-size: .9rem;
        color: var(--muted);
        max-width: 32ch;
        margin: 0;
    }

    /* ============ WHY WORK WITH ME (pillars) ============ */
    .pillar-card {
        border: 1px solid var(--line);
        padding: 1.5rem 1.4rem;
        height: 100%;
        background: var(--paper);
        transition: border-color .25s ease;
    }

    .pillar-card:hover {
        border-color: var(--brass);
    }

    .pillar-title {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: 1.05rem;
        margin-bottom: .35rem;
    }

    .pillar-text {
        font-size: .84rem;
        color: var(--muted);
        margin: 0;
    }

    /* ============ SELECTED WORK ============ */
    .work-card {
        position: relative;
        aspect-ratio: 4/5;
        overflow: hidden;
        display: block;
        background: #111;
    }

    .work-card .w-img {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: grayscale(35%);
        transition: transform 1s ease, filter .6s ease;
    }

    .work-card:hover .w-img {
        transform: scale(1.08);
        filter: grayscale(5%);
    }

    .work-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(12, 12, 13, .88) 0%, rgba(12, 12, 13, .15) 55%, rgba(169, 127, 69, .25) 100%);
    }

    .work-meta {
        position: absolute;
        left: 1.4rem;
        right: 1.4rem;
        bottom: 1.4rem;
        z-index: 2;
        color: var(--paper);
    }

    .work-tag {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .68rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--brass-light);
    }

    .work-title {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: 1.35rem;
        margin-top: .5rem;
        line-height: 1.18;
    }

    .work-arrow {
        position: absolute;
        top: 1.4rem;
        right: 1.4rem;
        z-index: 2;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(245, 242, 234, .4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--paper);
        opacity: 0;
        transform: translate(-6px, 6px);
        transition: opacity .3s ease, transform .3s ease;
    }

    .work-card:hover .work-arrow {
        opacity: 1;
        transform: translate(0, 0);
    }

    .work-card-placeholder {
        background: var(--paper-soft);
        border: 1px dashed var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .wp-inner {
        padding: 2rem;
    }

    .wp-index {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .72rem;
        letter-spacing: .1em;
        color: var(--brass);
    }

    .wp-title {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: 1.2rem;
        color: var(--muted);
        margin-top: .6rem;
    }

    .wp-desc {
        font-size: .78rem;
        color: var(--muted);
        margin-top: .5rem;
    }

    /* ============ ARTICLES (editorial index) ============ */
    .article-row {
        display: flex;
        gap: 1.6rem;
        align-items: center;
        padding: 1.7rem 0;
        border-bottom: 1px solid var(--line);
        transition: padding .3s ease;
    }

    .article-row:first-child {
        border-top: 1px solid var(--line);
    }

    .article-row:hover {
        padding-left: .5rem;
    }

    .article-thumb {
        width: 96px;
        height: 96px;
        flex-shrink: 0;
        background-size: cover;
        background-position: center;
        filter: grayscale(30%);
        position: relative;
    }

    .article-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg, rgba(169, 127, 69, .3), rgba(12, 12, 13, .25));
        mix-blend-mode: multiply;
    }

    .article-index {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .72rem;
        color: var(--brass);
        flex-shrink: 0;
        width: 24px;
    }

    .article-cat {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .68rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .article-title {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: 1.25rem;
        margin: .3rem 0;
        line-height: 1.2;
    }

    .article-desc {
        font-size: .85rem;
        color: var(--muted);
        max-width: 520px;
    }

    .article-arrow {
        margin-left: auto;
        flex-shrink: 0;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 1.1rem;
        color: var(--brass);
        opacity: 0;
        transform: translateX(-6px);
        transition: all .3s ease;
    }

    .article-row:hover .article-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .topic-pill {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .74rem;
        letter-spacing: .04em;
        padding: .55rem 1rem;
        border: 1px solid var(--line);
        color: var(--muted);
        background: var(--paper);
        transition: all .2s ease;
    }

    .topic-pill:hover {
        border-color: var(--brass);
        color: var(--brass);
    }

    /* ============ CTA ============ */
    .cta-band {
        background: var(--ink);
        color: var(--paper);
        padding: 4rem 0;
        position: relative;
        overflow: hidden;
    }

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 80% at 15% 50%, var(--brass-dim), transparent 65%);
    }

    .cta-icon {
        width: 52px;
        height: 52px;
        border: 1px solid var(--line-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--brass-light);
    }

    .cta-heading {
        font-family: 'Fraunces', serif;
        font-weight: 500;
        font-size: clamp(1.4rem, 2.6vw, 2rem);
    }

    /* ============ CONTACT ============ */
    .contact-line {
        display: flex;
        gap: 1.2rem;
        padding: .9rem 0;
        border-bottom: 1px solid var(--line);
        font-size: .92rem;
        align-items: center;
    }

    .contact-label {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .68rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--muted);
        min-width: 90px;
    }

    .contact-line a {
        color: var(--ink);
        border-bottom: 1px solid transparent;
        transition: border-color .2s ease, color .2s ease;
    }

    .contact-line a:hover {
        color: var(--brass);
        border-color: var(--brass);
    }

    .social-icon-light {
        width: 30px;
        height: 30px;
        border: 1px solid var(--line);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: .4rem;
        color: var(--ink);
        transition: all .2s ease;
    }

    .social-icon-light:hover {
        background: var(--brass);
        border-color: var(--brass);
        color: #fff;
    }

    .form-label-custom {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .68rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: .4rem;
        display: block;
    }

    .form-control-custom {
        width: 100%;
        background: var(--paper-soft);
        border: 1px solid var(--line);
        border-radius: 2px;
        padding: .7rem .9rem;
        font-family: 'Inter', sans-serif;
        font-size: .9rem;
        color: var(--ink);
        transition: border-color .2s ease, background .2s ease;
    }

    .form-control-custom:focus {
        outline: none;
        border-color: var(--brass);
        background: var(--paper);
    }

    /* ============ FOOTER ============ */
    footer {
        background: var(--ink);
        color: var(--paper);
        padding: 4rem 0 1.6rem;
    }

    .footer-heading {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .1em;
        margin-bottom: 1.1rem;
        color: var(--brass-light);
    }

    .footer-links a {
        font-size: .86rem;
        color: var(--muted-dark);
        display: block;
        margin-bottom: .6rem;
        transition: color .2s ease;
    }

    .footer-links a:hover {
        color: var(--brass-light);
    }

    .social-icon {
        width: 34px;
        height: 34px;
        border: 1px solid var(--line-dark);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: .5rem;
        color: var(--paper);
        transition: all .2s ease;
    }

    .social-icon:hover {
        background: var(--brass);
        border-color: var(--brass);
        color: #fff;
    }

    footer hr {
        border-color: var(--line-dark);
    }

    .footer-text {
        font-size: .85rem;
        color: var(--muted-dark);
        max-width: 280px;
    }

    /* ============ REVEAL ============ */
    .reveal {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
        .reveal {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }

    @media (max-width: 991px) {
        .hero-photo-wrap {
            min-height: 340px;
            margin-top: 2rem;
        }

        .ventures-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .ventures-visual {
            position: relative;
            top: 0;
            aspect-ratio: 16/10;
        }

        .ventures-row .v-desc {
            opacity: 1;
            max-height: 90px;
            margin-top: .4rem;
        }

        .ventures-row .v-arrow {
            opacity: 1;
            transform: none;
        }

        .ventures-row.is-active .v-name {
            transform: none;
        }

        .stat-cell:nth-child(odd) {
            border-right: none;
        }

        .stat-cell {
            border-bottom: 1px solid var(--line-dark) !important;
        }

        .article-row {
            flex-wrap: wrap;
        }

        .article-arrow {
            display: none;
        }
    }