:root {
    --site-edge-x: clamp(22px, 4vw, 52px);
    --site-edge-y: clamp(20px, 3.5vw, 44px);
    --site-header-y: var(--site-edge-y);
    --site-content-gutter: var(--site-edge-x);
}

body { overflow-x: hidden; }

.site-shell-page {
    width: 100% !important;
    max-width: 100% !important;
}

.site-nav-shell {
    top: var(--site-header-y) !important;
    right: var(--site-edge-x) !important;
    left: var(--site-edge-x) !important;
    width: auto !important;
    max-width: none !important;
}

body:not(.site-home) .site-nav-shell {
    position: absolute !important;
}

.site-nav-shell .framer-7EQCV {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.site-nav-shell .framer-788is4,
.site-nav-shell .framer-7EQCV .framer-1x1qwwf {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    justify-content: space-between !important;
}

.site-nav-shell .framer-ker4xb,
.site-nav-shell .framer-1v617ec {
    width: auto !important;
    padding-inline: 0 !important;
}

[data-framer-name="Footer"] {
    display: none !important;
}

.framer-AStPX .framer-1oh7x84,
.framer-AStPX .framer-1ym0sig {
    display: none !important;
}

.about-connect {
    order: 999;
    flex: none;
    width: min(1059px, calc(100vw - (2 * var(--site-edge-x)))) !important;
    min-height: 520px;
    margin: 0 auto;
    padding: 96px 0;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    transform: scale(.9);
    transition: transform .3s cubic-bezier(.44, 0, .56, 1);
}

.about-connect.is-visible { transform: scale(1); }

.about-connect-flaps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.about-connect-flap {
    --about-flap-background: #1f1f1f;
    --about-flap-color: #fff;
    width: 40px;
    height: 56px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--about-flap-background);
    color: var(--about-flap-color);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, .2);
    font: 24px/1 ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.about-connect-flap.is-space { width: 40px; color: var(--about-flap-color); }
.about-connect-flap.is-flipping {
    background: var(--about-flap-background);
    color: var(--about-flap-color);
    opacity: 1;
    animation: about-flap-turn-solid .3s ease-in-out;
}

@keyframes about-flap-turn-solid {
    0% { transform: rotateX(0deg); }
    50% { transform: rotateX(90deg); }
    100% { transform: rotateX(0deg); }
}

.about-connect-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.about-connect-actions a {
    color: #fff;
    font: 500 14px/1 "Inter Variable", "Inter", sans-serif;
    text-decoration: none;
}

.about-connect-actions a:not(.about-connect-email) {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.about-external-icon {
    width: 10px;
    height: 10px;
    flex: none;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.15;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.about-connect-actions a:not(.about-connect-email) {
    color: #aaa;
    transition: color .2s ease;
}

.about-connect-actions a:not(.about-connect-email):hover { color: #fff; }

.about-connect-actions .about-connect-email {
    min-width: 100px;
    padding: 7px 22px;
    border: 1px solid #08f;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    transition: color .25s ease, background-color .25s ease;
}

.about-connect-email:hover { background: #08f; color: #fff; }

.about-connect-meta {
    flex: none;
    position: absolute;
    right: auto;
    bottom: var(--site-edge-y);
    left: 50%;
    width: calc(100vw - (2 * var(--site-edge-x)));
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    color: #999;
    font: 500 12px/1.3 "Inter Variable", "Inter", sans-serif;
    letter-spacing: -.01em;
    transform: translateX(-50%);
}

.about-connect-meta time,
.about-connect-meta span { white-space: nowrap; }

@media (max-width: 809.98px) {
    :root {
        --site-edge-x: 20px;
        --site-edge-y: 12px !important;
        --site-header-y: 8px !important;
        --home-edge-x: 20px;
        --home-edge-y: 12px !important;
        --home-content-gutter: 20px;
    }

    .framer-AStPX .about-connect {
        min-height: 340px;
        padding: 102px 0 68px;
        justify-content: flex-start;
        gap: 28px;
    }
    .about-connect-flaps {
        width: 100%;
        flex-wrap: nowrap;
        gap: 3px;
    }
    .about-connect-flap,
    .about-connect-flap.is-space {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        height: clamp(32px, 10vw, 44px);
        font-size: clamp(13px, 4.4vw, 19px);
    }
    .about-connect-actions { gap: 18px; }
    .about-connect-meta { font-size: 11px; }

    html.site-home .framer-Rkf84 .framer-1cf70bh {
        height: var(--mobile-landing-height, 100dvh) !important;
        min-height: var(--mobile-landing-height, 100dvh) !important;
    }

    html.site-home .framer-Rkf84 .framer-1cf70bh > .framer-rmunsi-container {
        translate: 0 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-connect { opacity: 1; transform: none; transition: none; }
    .about-connect-flap.is-flipping { animation: none; }
}

html.site-home {
    scroll-behavior: auto;
    scroll-snap-type: y mandatory;
}

body.site-home { overscroll-behavior-y: auto; }

.framer-14n88so-container {
    top: var(--site-header-y) !important;
    right: var(--site-edge-x) !important;
    left: var(--site-edge-x) !important;
    width: auto !important;
}

.framer-14n88so-container,
.portfolio-meta-footer {
    opacity: 0;
    transform: translateY(12px);
    animation: homepage-text-reveal .3s cubic-bezier(.22, 1, .36, 1) .05s forwards;
}

@keyframes homepage-text-reveal {
    to { opacity: 1; transform: translateY(0); }
}

.framer-Rkf84 .framer-1cf70bh {
    align-content: center !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100svh !important;
    min-height: 100svh;
    position: relative !important;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

@media (min-width: 1200px) {
    html.site-home .framer-Rkf84 .framer-1cf70bh > .framer-14c1xbw-container {
        /* The Framer component has extra empty canvas on its right edge. */
        translate: 43.5px 0 !important;
    }
}

.project-scroll-panel {
    width: min(1059px, calc(100vw - (2 * var(--site-edge-x)))) !important;
    max-width: calc(100vw - (2 * var(--site-edge-x))) !important;
    height: 100svh !important;
    min-height: 100svh !important;
    padding-block: clamp(42px, 7vh, 80px) !important;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
}

.project-scroll-panel.is-active { opacity: 1 !important; transform: none !important; }
.project-section-label { display: none !important; }

.project-progress {
    position: fixed;
    z-index: 5;
    top: 50%;
    right: var(--site-edge-x);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(10px);
    transition: opacity .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.project-progress.is-visible { opacity: 1; pointer-events: auto; transform: translateY(-50%); }

.project-progress a {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8a8a8a;
    opacity: .35;
    transform: scale(.85);
    transition: opacity .2s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.project-progress a.is-active { opacity: 1; transform: scale(1); }

.project-scroll-panel [data-framer-name="Placeholder"] {
    max-width: min(100%, calc(100svh - 220px)) !important;
    max-height: calc(100svh - 220px) !important;
}

.framer-Rkf84 > [data-framer-name="Footer"],
.framer-a82bxs,
.framer-156ay9t,
.framer-1y7cnzc { display: none !important; }

.portfolio-meta-footer {
    position: fixed;
    z-index: 4;
    right: var(--site-edge-x);
    left: var(--site-edge-x);
    top: calc(100svh - var(--site-edge-y) - 16px);
    bottom: auto;
    width: auto;
    min-height: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    color: #999;
    font: 500 12px/1.3 "Inter Variable", "Inter", sans-serif;
    letter-spacing: -.01em;
}

.portfolio-meta-footer time,
.portfolio-meta-footer span { white-space: nowrap; }

@media (max-width: 809.98px) {
    .project-scroll-panel { padding-block: 68px 32px !important; }
    .portfolio-meta-footer { font-size: 11px; }
    .project-progress { gap: 8px; }

    html.site-home { scroll-snap-type: y mandatory !important; }
    html.site-home { scroll-behavior: auto !important; }
    html.site-home {
        --home-edge-x: 20px !important;
        --home-content-gutter: 20px !important;
        overscroll-behavior-y: auto !important;
    }
    body.site-home {
        overscroll-behavior-y: auto !important;
    }

    .framer-Rkf84 [data-framer-name="section header"] {
        display: none !important;
    }

    html.site-home .framer-Rkf84 .framer-1cf70bh {
        height: var(--mobile-landing-height, 100dvh) !important;
        min-height: var(--mobile-landing-height, 100dvh) !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: normal !important;
    }

    html.site-home .framer-Rkf84 {
        height: auto !important;
        min-height: 0 !important;
    }

    html.site-home .project-scroll-panel {
        box-sizing: border-box !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        padding: 54px 0 !important;
        gap: 24px !important;
        justify-content: center !important;
        overflow: visible !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: normal !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
        background: #000;
        z-index: 2;
    }

    html.site-home .project-scroll-panel.is-active {
        opacity: 1 !important;
        transform: none !important;
    }

    html.site-home .project-scroll-panel > * {
        flex-shrink: 0 !important;
        max-width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }

    html.site-home .project-scroll-panel > :first-child {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 4 / 3;
        position: relative !important;
    }

    html.site-home [data-framer-name="tally section"] > :first-child { aspect-ratio: 4032 / 3024; }
    html.site-home [data-framer-name="sprint x section"] > :first-child { aspect-ratio: 7395 / 5550; }
    html.site-home [data-framer-name="curalink section"] > :first-child { aspect-ratio: 8533 / 6433; }
    html.site-home [data-framer-name="Arch portfolio section"] > :first-child { aspect-ratio: 2698 / 1888; }

    html.site-home .project-scroll-panel > :first-child [data-framer-name="Placeholder"],
    html.site-home .project-scroll-panel > :first-child [data-framer-background-image-wrapper] {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        aspect-ratio: auto !important;
    }

    html.site-home .project-scroll-panel img {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: 50% 50% !important;
    }

    html.site-home .project-scroll-panel.is-active > * {
        opacity: 1 !important;
        transform: none !important;
    }

    html.site-home .project-scroll-panel > :last-child {
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        flex-flow: row wrap !important;
        align-content: flex-start !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }

    html.site-home .project-scroll-panel > :last-child > :first-child {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        justify-content: flex-start !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    html.site-home .project-scroll-panel > :last-child > :first-child > [data-framer-component-type="RichTextContainer"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    html.site-home .project-scroll-panel > :last-child > :not(:first-child) {
        position: relative !important;
        inset: auto !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        transform: none !important;
    }

    html.site-home .project-scroll-panel > :last-child > :nth-child(2) { order: 2 !important; }
    html.site-home .project-scroll-panel > :last-child > :nth-child(3) { order: 1 !important; }
    html.site-home .project-scroll-panel > :last-child > :nth-child(n + 4) { order: 3 !important; }

    html.site-home [data-framer-name="tally section"] .framer-a9ujo6,
    html.site-home [data-framer-name="sprint x section"] .framer-1uef7b5,
    html.site-home [data-framer-name="curalink section"] .framer-lyfyjg,
    html.site-home [data-framer-name="Arch portfolio section"] .framer-r80pms {
        height: min-content !important;
        min-height: 0 !important;
        padding: 0 !important;
    }

    html.site-home [data-framer-name="tally section"] > :last-child {
        column-gap: 8px !important;
        row-gap: 8px !important;
    }

    html.site-home [data-framer-name="tally section"] > :last-child > :first-child {
        margin-bottom: 4px !important;
    }

    html.site-home [data-framer-name="tally section"] .framer-12hj3tg > p.framer-text:has(> br.trailing-break:only-child) {
        display: none !important;
        margin: 0 !important;
    }

    html.site-home [data-framer-name="sprint x section"] > :last-child > :not(:first-child) {
        margin-top: 23px !important;
    }

    html.site-home [data-framer-name="curalink section"] .framer-1cnb6ar,
    html.site-home [data-framer-name="Arch portfolio section"] .framer-1cszixz,
    html.site-home [data-framer-name="Arch portfolio section"] .framer-r4cse6 {
        position: relative !important;
        inset: auto !important;
        align-self: flex-start !important;
        left: 0 !important;
        translate: none !important;
    }

    html.site-home [data-framer-name="curalink section"] .framer-1cnb6ar {
        margin-top: -4px !important;
        transition: none !important;
    }

    html.site-home [data-framer-name="Arch portfolio section"] .framer-1cszixz {
        margin-top: -4px !important;
    }

    html.site-home [data-framer-name="Arch portfolio section"] .framer-r4cse6 {
        margin-top: -8px !important;
    }

    html.site-home [data-framer-name="Arch portfolio section"] .framer-1cszixz,
    html.site-home [data-framer-name="Arch portfolio section"] .framer-r4cse6 {
        transition: none !important;
    }

    body.site-home .portfolio-meta-footer {
        position: fixed !important;
        z-index: 1;
        order: 0 !important;
        top: auto !important;
        right: var(--site-edge-x) !important;
        bottom: calc(var(--site-edge-y) + env(safe-area-inset-bottom, 0px)) !important;
        left: var(--site-edge-x) !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-nav-shell .framer-ker4xb {
        align-self: stretch !important;
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: none !important;
        justify-content: space-between !important;
    }

    html body .site-nav-shell {
        z-index: 1000 !important;
        overflow: visible !important;
        transform: none !important;
        clip-path: none !important;
        contain: none !important;
        isolation: isolate;
    }

    html body .framer-14n88so-container {
        transform: none !important;
    }

    .site-nav-shell .framer-ker4xb,
    .site-nav-shell .framer-ker4xb * {
        transition: none !important;
        animation: none !important;
    }

    .site-nav-shell .framer-ker4xb {
        transform: none !important;
    }

    .site-nav-shell .framer-9sf85-container {
        flex: 0 0 34px !important;
        width: 34px !important;
        height: 34px !important;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow: visible;
    }

    .site-nav-shell .framer-9sf85-container [data-framer-name="open"] {
        width: 100% !important;
        height: 100% !important;
    }

    html body .framer-7EQCV[data-framer-name="Phone"] {
        position: fixed !important;
        z-index: 1100 !important;
        top: 0 !important;
        right: auto !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100vw !important;
        height: 268px !important;
        min-height: 0 !important;
        padding: 20px var(--site-edge-x) !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #000 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        overflow: hidden !important;
        transform: none !important;
        transform-origin: center !important;
        clip-path: inset(0 0 0 0);
        contain: layout paint !important;
        will-change: clip-path;
        animation: mobile-menu-open .28s cubic-bezier(.22, 1, .36, 1) both !important;
    }

    @keyframes mobile-menu-open {
        from { clip-path: inset(0 0 calc(100% - 62px) 0); }
        to { clip-path: inset(0 0 0 0); }
    }

    html body .framer-7EQCV[data-framer-name="Phone"].mobile-menu-closing {
        pointer-events: none !important;
        animation: mobile-menu-close .26s cubic-bezier(.64, 0, .78, 0) both !important;
    }

    @keyframes mobile-menu-close {
        from { clip-path: inset(0 0 0 0); }
        to { clip-path: inset(0 0 calc(100% - 62px) 0); }
    }

    .site-nav-shell.has-mobile-stable-name .framer-ker4xb > [data-framer-component-type="RichTextContainer"] {
        visibility: hidden !important;
    }

    .site-nav-shell.has-mobile-stable-menu-button .framer-9sf85-container {
        visibility: hidden !important;
    }

    .mobile-stable-name {
        position: absolute !important;
        z-index: 1200 !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        white-space: nowrap !important;
        text-decoration: none !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
    }

    .mobile-stable-menu-button {
        position: absolute !important;
        z-index: 1200 !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        transform: none !important;
        transition: none !important;
        cursor: pointer;
    }

    .mobile-stable-menu-button span {
        position: absolute;
        left: 8px;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        transform-origin: center;
        transition: transform .22s cubic-bezier(.22, 1, .36, 1);
    }

    .mobile-stable-menu-button span:first-child { top: 11px; }
    .mobile-stable-menu-button span:last-child { top: 21px; }
    .mobile-stable-menu-button.is-open span:first-child { transform: translateY(5px) rotate(45deg); }
    .mobile-stable-menu-button.is-open span:last-child { transform: translateY(-5px) rotate(-45deg); }

    .site-nav-shell .framer-ker4xb > [data-framer-component-type="RichTextContainer"] .framer-text,
    .site-nav-shell .framer-ker4xb > [data-framer-component-type="RichTextContainer"] a {
        font-family: "Inter", "Inter Placeholder", sans-serif !important;
        font-size: 17px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        font-stretch: 100% !important;
        font-variation-settings: normal !important;
        letter-spacing: -.01em !important;
        line-height: 17px !important;
        text-transform: none !important;
    }

    html body .framer-7EQCV[data-framer-name="Phone"] .framer-788is4,
    html body .framer-7EQCV[data-framer-name="Phone"] .framer-1x1qwwf {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        border-radius: 0 !important;
        transform: none !important;
    }

    html body .framer-7EQCV[data-framer-name="Phone"] .framer-ker4xb {
        flex: 0 0 34px !important;
        width: 100% !important;
        align-self: stretch !important;
        transform: translateY(-12px) !important;
    }

    html body .framer-7EQCV[data-framer-name="Phone"] .framer-ker4xb > [data-framer-component-type="RichTextContainer"],
    html body .framer-7EQCV[data-framer-name="Phone"] .framer-ker4xb > [data-framer-component-type="RichTextContainer"] * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    html body .framer-7EQCV[data-framer-name="Phone"] .framer-ker4xb > [data-framer-component-type="RichTextContainer"] .framer-text,
    html body .framer-7EQCV[data-framer-name="Phone"] .framer-ker4xb > [data-framer-component-type="RichTextContainer"] a {
        font-size: 17px !important;
        line-height: 17px !important;
    }

    html body .framer-7EQCV[data-framer-name="Phone"] .framer-1v617ec {
        flex: 1 1 auto !important;
        align-self: stretch !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: auto !important;
        margin: 0 !important;
        padding: 10px 0 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        opacity: 0;
        animation: mobile-menu-links-in .22s ease-out .06s forwards !important;
    }

    @keyframes mobile-menu-links-in {
        to { opacity: 1; }
    }

    html body .framer-7EQCV[data-framer-name="Phone"] .framer-1v617ec [data-framer-component-type="RichTextContainer"],
    html body .framer-7EQCV[data-framer-name="Phone"] .framer-1v617ec .framer-text {
        width: 100% !important;
        text-align: center !important;
    }

    html body .framer-7EQCV[data-framer-name="Phone"] .framer-1v617ec [data-framer-component-type="RichTextContainer"] {
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    html body .framer-7EQCV[data-framer-name="Phone"] .framer-1v617ec a {
        display: flex !important;
        width: 100% !important;
        min-height: 40px !important;
        justify-content: center !important;
        align-items: center !important;
        color: #fff !important;
        font-size: 15px !important;
        line-height: 1.3 !important;
        letter-spacing: -.01em !important;
    }

    .framer-AStPX .framer-1wfbg45 {
        display: none !important;
    }

    .framer-AStPX .framer-1wmiitu {
        justify-content: flex-start !important;
        padding-top: 31px !important;
    }

    .framer-AStPX .framer-1vz9cvd {
        margin-bottom: 51px !important;
    }

    .framer-AStPX .framer-o0u3ak,
    .framer-AStPX .framer-8bda5g,
    .framer-AStPX .framer-8bda5g .framer-text {
        height: 28px !important;
        min-height: 28px !important;
        max-height: 28px !important;
    }

    .framer-AStPX .framer-8bda5g br {
        display: none !important;
    }

    .framer-AStPX .framer-1vlx344 {
        height: 82px !important;
        min-height: 82px !important;
    }

    html.site-home .project-progress {
        right: 0 !important;
        width: 20px !important;
        padding: 8px 0 !important;
        box-sizing: border-box !important;
        align-items: center !important;
        border-radius: 12px 0 0 12px;
        background: #000;
    }

    body.site-home .site-nav-shell {
        z-index: 1000 !important;
    }

    body.site-home .portfolio-meta-footer {
        z-index: 7 !important;
    }

    html body .site-nav-shell,
    html body .framer-14n88so-container {
        top: var(--site-header-y) !important;
    }
}

@media (max-width: 809.98px) and (max-height: 720px) {
    html.site-home .project-scroll-panel {
        padding: 22px 0 !important;
        gap: 16px !important;
    }

    html.site-home .project-scroll-panel > :first-child {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
}

@media (min-width: 810px) {
    .framer-14n88so-container { height: 20px !important; }
    .framer-14n88so-container .framer-7EQCV { height: 20px !important; overflow: visible !important; }
}

@media (prefers-reduced-motion: reduce) {
    html.site-home { scroll-behavior: auto; }
    .project-scroll-panel { opacity: 1 !important; transform: none !important; transition: none !important; }
    .project-progress { transition: none; }
    .framer-14n88so-container,
    .portfolio-meta-footer { opacity: 1; animation: none; }
    html.site-home .project-scroll-panel > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (min-width: 810px) {
    .site-nav-shell,
    .site-nav-shell .framer-7EQCV { height: 20px !important; }
}

@media (min-width: 1200px) {
    html.site-home [data-framer-name="tally section"] .framer-1d2yxor {
        translate: 11.5px 0 !important;
    }

    html.site-home [data-framer-name="tally section"] .framer-1udxak0 {
        translate: 12.5px 0 !important;
    }
}
