:root {
    --vv-pink: #fc1a75;
    --vv-ink: #170030;
    --vv-text: #1f1a21;
    --vv-muted: #8d8890;
    --vv-soft: #f1f0f1;
    --vv-line: #d9d5db;
    --vv-white: #ffffff;
    --vv-page-bg: #ffffff;
    --vv-content-max: 1700px;
    --vv-content-side: 34px;
    --vv-header-height: 116px;
    --vv-home-gap: 56px;
    --vv-radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--vv-page-bg);
    color: var(--vv-text);
    font-family: "Chillax";
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.vv-menu-open,
body.vv-lightbox-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    background: var(--vv-pink);
    color: var(--vv-white);
}

.screen-reader-text,
.vv-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vv-skip-link:focus {
    z-index: 9999;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    clip: auto;
    background: var(--vv-ink);
    color: var(--vv-white);
}

.vv-shell {
    width: 100%;
    max-width: var(--vv-content-max);
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1768px) {
    .vv-shell {
        width: auto;
        margin-right: var(--vv-content-side);
        margin-left: var(--vv-content-side);
    }
}

/* Header */
.vv-header {
    position: sticky;
    z-index: 120;
    top: 0;
    height: var(--vv-header-height);
    background: var(--vv-page-bg);
    transition: background-color .32s ease;
}

body.admin-bar .vv-header {
    top: 32px;
}

.vv-header__inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid transparent;
    border-radius: 0;
    background: var(--vv-page-bg);
    box-shadow: 0 0 0 rgba(23, 0, 48, 0);
    transform: translate3d(0, 0, 0);
    transition: height .58s cubic-bezier(.16, 1, .3, 1), max-width .58s cubic-bezier(.16, 1, .3, 1), padding .58s cubic-bezier(.16, 1, .3, 1), border-color .3s ease, border-radius .58s cubic-bezier(.16, 1, .3, 1), background-color .3s ease, box-shadow .42s ease, transform .58s cubic-bezier(.16, 1, .3, 1);
}

.vv-logo {
    width: 116px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    transition: width .5s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, transform .58s cubic-bezier(.16, 1, .3, 1);
}

.vv-logo img {
    width: 116px;
    height: auto;
    transition: width .5s cubic-bezier(.16, 1, .3, 1);
}

.vv-nav {
    display: flex;
    align-items: center;
    gap: 74px;
    transition: gap .5s cubic-bezier(.16, 1, .3, 1), transform .58s cubic-bezier(.16, 1, .3, 1);
}

.vv-nav__link {
    position: relative;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    padding: 14px 5px;
    color: #59545c;
    font-size: 17px;
    line-height: 1;
    transition: min-height .36s cubic-bezier(.16, 1, .3, 1), padding .36s cubic-bezier(.16, 1, .3, 1), font-size .28s ease, color .2s ease, opacity .2s ease;
}

.vv-nav:hover .vv-nav__link {
    opacity: .5;
}

.vv-nav .vv-nav__link:hover,
.vv-nav .vv-nav__link.is-active {
    color: var(--vv-ink);
    opacity: 1;
}

.vv-nav__link::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 8px;
    left: 5px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.vv-nav__link:hover::after,
.vv-nav__link.is-active::after {
    transform: scaleX(1);
}

.vv-menu-toggle,
.vv-mobile-menu {
    display: none;
}

@media (min-width: 901px) {
    .vv-header .vv-nav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
    }

    .vv-is-home .vv-logo {
        opacity: 0;
        transform: translate3d(-22px, 0, 0) scale(.94);
        pointer-events: none;
    }

    .vv-header.is-condensing {
        background: transparent;
    }

    .vv-header.is-condensing .vv-header__inner {
        max-width: 1180px;
        height: 88px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 20px;
        padding-left: 20px;
        border-color: rgba(23, 0, 48, .045);
        border-radius: 18px;
        background: rgba(255, 255, 255, .82);
        box-shadow: 0 9px 30px rgba(23, 0, 48, .045);
        transform: translate3d(0, 7px, 0);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .vv-header.is-condensing .vv-logo,
    .vv-header.is-condensing .vv-logo img {
        width: 96px;
    }

    .vv-header.is-condensing .vv-logo {
        transform: translate3d(8px, 0, 0);
    }

    .vv-is-home .vv-header.is-condensing .vv-logo {
        opacity: .62;
        transform: translate3d(8px, 0, 0) scale(.98);
        pointer-events: auto;
    }

    .vv-header.is-condensing .vv-nav {
        gap: 52px;
        transform: translate3d(-52%, -50%, 0);
    }

    .vv-header.is-condensing .vv-nav__link {
        min-height: 48px;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 16px;
    }

    .vv-header.is-scrolled .vv-header__inner {
        max-width: 820px;
        height: 68px;
        padding-right: 20px;
        padding-left: 20px;
        border-color: rgba(23, 0, 48, .075);
        border-radius: 23px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 14px 42px rgba(23, 0, 48, .085);
        transform: translate3d(0, 11px, 0);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .vv-header.is-scrolled .vv-logo,
    .vv-header.is-scrolled .vv-logo img {
        width: 78px;
    }

    .vv-header.is-scrolled .vv-logo {
        transform: translate3d(10px, 0, 0);
    }

    .vv-is-home .vv-header.is-scrolled .vv-logo {
        opacity: 1;
        transform: translate3d(10px, 0, 0) scale(1);
    }

    .vv-header.is-scrolled .vv-nav {
        gap: 34px;
        transform: translate3d(-55%, -50%, 0);
    }

    .vv-header.is-scrolled .vv-nav__link {
        min-height: 42px;
        padding: 10px 4px;
        font-size: 14.5px;
    }

    .vv-header.is-scrolled .vv-nav__link::after {
        bottom: 5px;
    }
}


/* Shared UI */
.vv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--vv-pink);
    font-size: 14px;
    font-weight: 500;
}

.vv-eyebrow img {
    width: 14px;
    height: 14px;
    object-fit: cover;
    object-position: left top;
}

.vv-muted {
    display: block;
    color: var(--vv-muted);
    font-size: 13px;
}

.vv-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border: 1px solid var(--vv-ink);
    border-radius: 999px;
    background: transparent;
    color: var(--vv-ink);
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.vv-button:hover {
    transform: translateY(-2px);
    background: var(--vv-ink);
    color: var(--vv-white);
}

.vv-button--dark {
    background: var(--vv-ink);
    color: var(--vv-white);
}

.vv-button--dark:hover {
    border-color: var(--vv-pink);
    background: var(--vv-pink);
}

.vv-button--pink {
    border-color: var(--vv-pink);
    background: var(--vv-pink);
    color: var(--vv-white);
}

.vv-button--pink:hover {
    border-color: var(--vv-ink);
    background: var(--vv-ink);
}

.vv-pill {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #272229;
    font-size: 13px;
    line-height: 1;
}

/* Project card base */
.vv-project-card {
    position: relative;
    min-width: 0;
}

.vv-project-card__link,
.vv-project-card__media {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.vv-project-card__link {
    overflow: hidden;
    border-radius: var(--vv-radius);
}

.vv-project-card__media {
    overflow: hidden;
    background: #eceaec;
}

.vv-project-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-project-card__top,
.vv-project-card__bottom {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.vv-project-card__top-inner,
.vv-project-card__bottom-inner {
    position: relative;
    z-index: 2;
}

/* Cursor */
.vv-project-cursor {
    position: fixed;
    z-index: 140;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-140px, -140px, 0);
    transition: opacity .18s ease;
    will-change: transform;
}

.vv-project-cursor.is-visible {
    opacity: 1;
}

.vv-project-cursor__ball {
    position: absolute;
    top: -27px;
    left: -27px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--vv-pink);
    opacity: 0;
    transform: scale(.56);
    box-shadow: 0 10px 24px rgba(252, 26, 117, .18);
    transition: opacity .2s ease, transform .42s cubic-bezier(.22, .61, .36, 1), box-shadow .42s ease;
}

.vv-project-cursor.is-visible .vv-project-cursor__ball {
    opacity: 1;
    transform: scale(.78);
}

.vv-project-cursor.is-over-project .vv-project-cursor__ball {
    transform: scale(1);
    box-shadow: 0 13px 28px rgba(252, 26, 117, .22);
}

.vv-project-cursor.is-strong .vv-project-cursor__ball {
    transform: scale(1.08);
    box-shadow: 0 15px 34px rgba(252, 26, 117, .25);
}

.vv-project-cursor__icon {
    position: absolute;
    top: -11px;
    left: -11px;
    width: 22px;
    height: 22px;
    opacity: 0;
    transform: scale(.62);
    transition: opacity .2s ease, transform .42s cubic-bezier(.22, .61, .36, 1);
}

.vv-project-cursor.is-visible .vv-project-cursor__icon {
    opacity: 1;
    transform: scale(.78);
}

.vv-project-cursor.is-over-project .vv-project-cursor__icon {
    transform: scale(1);
}

.vv-project-cursor.is-strong .vv-project-cursor__icon {
    transform: scale(1.06);
}

.vv-project-cursor__icon::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 3px;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--vv-white);
    transform: rotate(-45deg);
}

.vv-project-cursor__icon::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--vv-white);
    border-right: 2px solid var(--vv-white);
}

.vv-project-cursor--horizontal .vv-project-cursor__icon::before {
    top: 10px;
    left: 3px;
    transform: none;
}

.vv-project-cursor--horizontal .vv-project-cursor__icon::after {
    top: 6px;
    right: 2px;
    transform: rotate(45deg);
}

/* Home */
.vv-is-home {
    overflow-y: hidden;
}

.vv-home {
    height: calc(100dvh - var(--vv-header-height));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.admin-bar .vv-home {
    height: calc(100dvh - var(--vv-header-height) - 32px);
}

.vv-home-rail {
    position: relative;
    min-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
    cursor: auto;
    touch-action: pan-x pan-y;
}

.vv-home-rail__viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vv-home-rail__track {
    width: max-content;
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: var(--vv-home-gap);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.vv-home-rail__set {
    height: 100%;
    display: flex;
    flex: 0 0 auto;
    gap: var(--vv-home-gap);
    transform-origin: 50% 50%;
    will-change: transform;
    backface-visibility: hidden;
}

.vv-project-card--home {
    width: 34vw;
    min-width: 480px;
    height: 100%;
    flex: 0 0 34vw;
    overflow: hidden;
    border-radius: 8px;
}

.vv-project-card--home:nth-child(3n + 2) {
    width: 39vw;
    flex-basis: 39vw;
}

.vv-project-card--home:nth-child(4n) {
    width: 30vw;
    flex-basis: 30vw;
}

.vv-project-card--home .vv-project-card__link {
    border-radius: 8px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.vv-project-card--home .vv-project-card__link:focus-visible {
    outline: 2px solid var(--vv-pink);
    outline-offset: -2px;
}

.vv-project-card--home .vv-project-card__media,
.vv-project-card--home .vv-project-card__image {
    border-radius: inherit;
}

.vv-project-card--home img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.vv-project-card--home .vv-project-card__top,
.vv-project-card--home .vv-project-card__bottom {
    display: none;
}

.vv-project-card--home .vv-project-card__image {
    transform: scale(1.025);
}

.vv-home-intro {
    flex: 0 0 auto;
    padding: 34px 0 34px;
}

.vv-home-intro__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.vv-home-intro__brand {
    width: 250px;
    flex: 0 0 auto;
}

.vv-home-intro__brand img {
    width: 205px;
    height: auto;
}

.vv-home-intro__copy {
    min-width: 0;
    flex: 1 1 auto;
    text-align: right;
}

.vv-home-intro h1 {
    margin: 0 0 24px;
    color: var(--vv-ink);
    font-size: 46px;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.vv-home-intro__actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.vv-home-intro__actions .vv-button {
    min-height: 53px;
    padding: 13px 25px;
    font-size: 16px;
}

/* Works */
.vv-works-page {
    padding-top: 8px;
}

.vv-works-head {
    padding-top: 12px;
    padding-bottom: 34px;
    text-align: center;
}

.vv-works-head .vv-eyebrow {
    justify-content: center;
}

.vv-works-head h1 {
    margin: 5px 0 16px;
    color: #242027;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.vv-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.vv-filter {
    min-width: 72px;
    min-height: 42px;
    padding: 9px 18px;
    border: 1px solid #dad6dc;
    border-radius: 999px;
    background: var(--vv-white);
    color: #5d5860;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.vv-filter:hover,
.vv-filter.is-active {
    border-color: var(--vv-ink);
    background: var(--vv-ink);
    color: var(--vv-white);
}

.vv-works-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 18px;
    row-gap: 18px;
    padding-bottom: 72px;
}

.vv-project-card--works {
    --vv-work-radius: 14px;
    --vv-cutout-radius: 24px;
    --vv-cutout-curve: 40px;
    --vv-cutout-pad: 12px;
    transition: opacity .25s ease, transform .25s ease;
}

.vv-project-card--works.vv-work-card--portrait {
    width: calc((100% - 36px) / 3);
    aspect-ratio: 4 / 5;
}

.vv-project-card--works.vv-work-card--landscape {
    width: calc((100% - 18px) / 2);
    aspect-ratio: 3 / 2;
}

.vv-project-card--works.vv-work-card--wide {
    width: 100%;
    aspect-ratio: 12 / 5;
}

.vv-project-card--works.is-filtering {
    opacity: 0;
    transform: translateY(8px);
}

.vv-project-card--works[hidden] {
    display: none;
}

/*
 * Works card geometry
 * -------------------
 * The whole card is the clipping stage, matching the reference interaction:
 * the white label panels travel from outside the image but are never allowed
 * to paint over neighbouring cards. Their vector connectors remain inside the
 * stage and create the concave inner corners only after they enter the frame.
 */
.vv-project-card--works .vv-project-card__link {
    /*
     * Keep the animation stage rectangular. The photograph owns the visible
     * rounding instead. This prevents Chrome/Firefox from anti-aliasing a
     * white hover panel against the rounded outer clip and leaving a 1px arc.
     */
    overflow: hidden;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.vv-project-card--works .vv-project-card__media {
    overflow: hidden;
    border-radius: var(--vv-work-radius);
    background: var(--vv-white);
}

.vv-project-card--works .vv-project-card__image {
    transform: scale(1.005);
    transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.vv-project-card--works:hover .vv-project-card__image,
.vv-project-card--works:focus-within .vv-project-card__image {
    transform: scale(1.025);
}

/*
 * Hover panels use transform only. There is intentionally no opacity or
 * visibility animation: the card stage clips the off-screen state, so the
 * reveal stays continuous instead of popping in halfway through the motion.
 */
.vv-project-card--works .vv-project-card__top,
.vv-project-card--works .vv-project-card__bottom {
    display: block;
    max-width: calc(100% - var(--vv-cutout-curve));
    border: 0;
    background: var(--vv-white);
    overflow: visible;
    transition: transform .58s cubic-bezier(.16, 1, .3, 1);
}

.vv-project-card--works .vv-project-card__top {
    top: -1px;
    right: -1px;
    padding: 1px 0 var(--vv-cutout-pad) var(--vv-cutout-pad);
    border-bottom-left-radius: var(--vv-cutout-radius);
    transform: translate3d(0, calc(-100% - var(--vv-cutout-curve)), 0);
}

.vv-project-card--works .vv-project-card__bottom {
    bottom: -1px;
    left: -1px;
    padding: var(--vv-cutout-pad) var(--vv-cutout-pad) 0 1px;
    border-top-right-radius: var(--vv-cutout-radius);
    transform: translate3d(0, calc(100% + var(--vv-cutout-curve)), 0);
    transition-duration: .62s;
}

.vv-project-card--works .vv-project-card__top-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0 12px 0 0;
    background: var(--vv-white);
    white-space: nowrap;
}

.vv-project-card--works .vv-project-card__bottom-inner {
    min-height: 54px;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 7px 0 18px;
    background: var(--vv-white);
    color: #2f2930;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
}

.vv-project-card--works .vv-project-card__bottom-inner > span:first-child {
    min-width: 0;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vv-project-card--works .vv-project-card__bottom-inner > span:last-child {
    flex: 0 0 auto;
}

/* Vector corner connectors mirror the MadeByShape construction. */
.vv-project-card--works .vv-project-curve {
    position: absolute;
    z-index: 1;
    width: var(--vv-cutout-curve);
    height: var(--vv-cutout-curve);
    display: block;
    overflow: visible;
    color: var(--vv-white);
    fill: currentColor;
    pointer-events: none;
    shape-rendering: geometricPrecision;
}

.vv-project-card--works .vv-project-curve path {
    stroke: none;
}

.vv-project-card--works .vv-project-curve--top-left {
    top: 1px;
    left: 1px;
    transform: translateX(-100%);
}

.vv-project-card--works .vv-project-curve--top-side {
    right: 0;
    bottom: 1px;
    transform: translateY(100%);
}

.vv-project-card--works .vv-project-curve--bottom-side {
    right: 1px;
    bottom: 1px;
    transform: translateX(100%) rotate(180deg);
    transform-origin: center;
}

.vv-project-card--works .vv-project-curve--bottom-left {
    top: 1px;
    left: 0;
    transform: translateY(-100%) rotate(180deg);
    transform-origin: center;
}

.vv-project-card--works:hover .vv-project-card__top,
.vv-project-card--works:hover .vv-project-card__bottom,
.vv-project-card--works:focus-within .vv-project-card__top,
.vv-project-card--works:focus-within .vv-project-card__bottom {
    transform: translate3d(0, 0, 0);
}

.vv-project-card--works .vv-pill {
    min-height: 40px;
    padding: 10px 18px;
    border: 0;
    border-radius: 20px;
    background: #f2f1f2;
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
}

.vv-project-card--works .vv-pill-more {
    display: none;
}

/* Single project */
.vv-project-head {
    padding-top: 22px;
    padding-bottom: 20px;
}

.vv-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #69636a;
    font-size: 13px;
    transition: color .2s ease;
}

.vv-back:hover {
    color: var(--vv-pink);
}

.vv-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.vv-project-tags .vv-pill {
    background: var(--vv-soft);
}

.vv-project-gallery {
    width: auto;
    display: flex;
    gap: 18px;
    margin-left: var(--vv-content-side);
    padding-right: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: auto;
    touch-action: pan-x pan-y;
}

.vv-project-gallery::-webkit-scrollbar {
    display: none;
}


.vv-project-gallery__item {
    position: relative;
    height: 520px;
    flex: 0 0 38vw;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--vv-radius);
    background: #eceaec;
    cursor: pointer;
}

.vv-project-gallery__item::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(105deg, #eceaec 24%, #f6f4f6 42%, #eceaec 60%);
    background-size: 220% 100%;
    animation: vv-gallery-placeholder 1.35s linear infinite;
    transition: opacity .3s ease;
    pointer-events: none;
}

.vv-project-gallery__item.is-media-loaded::before {
    opacity: 0;
    animation: none;
}

@keyframes vv-gallery-placeholder {
    from { background-position: 120% 0; }
    to { background-position: -120% 0; }
}

.vv-project-gallery__item:nth-child(3n + 2) {
    flex-basis: 46vw;
}

.vv-project-gallery__item:nth-child(3n) {
    flex-basis: 33vw;
}

.vv-project-gallery__image,
.vv-project-gallery__video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-project-gallery__image {
    opacity: 0;
    transform: scale(1.002);
    transition: opacity .34s ease, transform .6s cubic-bezier(.22, .61, .36, 1);
}

.vv-project-gallery__item.is-media-loaded .vv-project-gallery__image {
    opacity: 1;
}

.vv-project-gallery__item:hover .vv-project-gallery__image {
    transform: scale(1.025);
}

.vv-project-gallery.is-wheel-scrolling .vv-project-gallery__image {
    transform: scale(1.014);
    transition-duration: .3s;
}

.vv-project-gallery.is-wheel-scrolling .vv-project-gallery__item:hover .vv-project-gallery__image {
    transform: scale(1.028);
}

.vv-project-gallery__item--video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0d10;
}

.vv-project-gallery__video {
    display: block;
    background: #0f0d10;
}

.vv-project-gallery__play {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    margin: -36px 0 0 -36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
    opacity: 1;
    transform: scale(1);
    transition: opacity .24s ease, transform .34s cubic-bezier(.22, .61, .36, 1), background .24s ease;
    pointer-events: auto;
}

.vv-project-gallery__play-icon {
    position: absolute;
    left: 29px;
    top: 23px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid var(--vv-ink);
}

.vv-project-gallery__item--video:hover .vv-project-gallery__play,
.vv-project-gallery__play:focus-visible {
    transform: scale(1.06);
    background: var(--vv-white);
}

.vv-project-gallery__play:focus-visible {
    opacity: 1;
    outline: 2px solid var(--vv-pink);
    outline-offset: 3px;
}

.vv-project-gallery__item--video.is-playing .vv-project-gallery__play {
    opacity: 0;
    transform: scale(.84);
    pointer-events: none;
}

.vv-project-gallery__item--video.is-playing:hover .vv-project-gallery__play {
    opacity: .92;
    transform: scale(.78);
    pointer-events: auto;
}

.vv-project-gallery__item--video.is-playing .vv-project-gallery__play-icon {
    left: 25px;
    top: 22px;
    width: 22px;
    height: 28px;
    border: 0;
}

.vv-project-gallery__item--video.is-playing .vv-project-gallery__play-icon::before,
.vv-project-gallery__item--video.is-playing .vv-project-gallery__play-icon::after {
    content: "";
    position: absolute;
    top: 0;
    width: 7px;
    height: 28px;
    border-radius: 2px;
    background: var(--vv-ink);
}

.vv-project-gallery__item--video.is-playing .vv-project-gallery__play-icon::before {
    left: 0;
}

.vv-project-gallery__item--video.is-playing .vv-project-gallery__play-icon::after {
    right: 0;
}

.vv-project-info {
    display: flex;
    gap: 56px;
    padding-top: 52px;
    padding-bottom: 42px;
}

.vv-project-info__title {
    width: 42%;
}

.vv-project-info__title h1 {
    margin: 8px 0 0;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.vv-project-info__location {
    display: block;
    margin-top: 12px;
    color: #8b858d;
    font-size: 13px;
}

.vv-project-info__details {
    width: 58%;
}

.vv-project-info__description {
    max-width: 760px;
    color: #6a656c;
    font-size: 18px;
    line-height: 1.62;
}

.vv-project-info__description p {
    margin: 0 0 14px;
}

.vv-project-info__meta {
    display: flex;
    gap: 80px;
    margin-top: 24px;
}

.vv-project-info__meta > div {
    min-width: 170px;
}

.vv-project-info__meta strong {
    display: block;
    margin-top: 7px;
    font-size: 25px;
    font-weight: 500;
}

.vv-project-pager {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding-bottom: 14px;
    color: #736e74;
    font-size: 15px;
}

.vv-project-pager > span {
    min-width: 0;
    max-width: 48%;
}

.vv-project-pager > span:last-child {
    text-align: right;
}

.vv-project-pager a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    white-space: nowrap;
    transition: color .2s ease;
}

.vv-project-pager a:hover {
    color: var(--vv-pink);
}

/* Lightbox */
.vv-lightbox {
    position: fixed;
    z-index: 200;
    inset: 0;
    padding: 42px;
    background: rgba(244, 242, 244, .88);
    color: var(--vv-ink);
    opacity: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: opacity .28s ease;
}

.vv-lightbox[hidden] {
    display: none;
}

.vv-lightbox:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vv-lightbox.is-open {
    opacity: 1;
}

.vv-lightbox__frame {
    position: relative;
    width: min(1380px, calc(100vw - 132px));
    height: min(82vh, 900px);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border: 1px solid rgba(23, 0, 45, .1);
    border-radius: 26px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 30px 90px rgba(23, 0, 45, .12);
    overflow: hidden;
    transform: translateY(18px) scale(.985);
    opacity: 0;
    transition: transform .48s cubic-bezier(.16, 1, .3, 1), opacity .32s ease;
}

.vv-lightbox.is-open .vv-lightbox__frame {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.vv-lightbox__stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vv-lightbox__stage img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 18px 52px rgba(23, 0, 45, .09);
    transform-origin: center;
}

.vv-lightbox__close,
.vv-lightbox__nav {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.vv-lightbox__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(243, 241, 243, .96);
    color: var(--vv-ink);
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.vv-lightbox__close:hover {
    transform: rotate(8deg) scale(1.05);
    background: var(--vv-pink);
    color: var(--vv-white);
}

.vv-lightbox__nav {
    top: 50%;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    border-radius: 50%;
    background: var(--vv-pink);
    color: var(--vv-white);
    font-size: 21px;
    box-shadow: 0 12px 28px rgba(252, 26, 117, .16);
    transition: left .42s cubic-bezier(.16, 1, .3, 1), right .42s cubic-bezier(.16, 1, .3, 1), transform .28s cubic-bezier(.22, .61, .36, 1), box-shadow .28s ease;
}


.vv-lightbox__nav:hover {
    transform: scale(1.07);
    box-shadow: 0 16px 36px rgba(252, 26, 117, .24);
}


.vv-lightbox__nav--prev {
    left: var(--vv-lightbox-nav-left, 22px);
}

.vv-lightbox__nav--next {
    right: var(--vv-lightbox-nav-right, 22px);
}

.vv-lightbox__counter {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 4;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(243, 241, 243, .92);
    color: #777179;
    font-size: 12px;
    letter-spacing: .04em;
}

.vv-lightbox__stage.is-changing img {
    animation: vv-lightbox-swap .38s cubic-bezier(.22, .61, .36, 1);
}

@keyframes vv-lightbox-swap {
    0% { opacity: 0; transform: translateY(10px) scale(.985); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* About */
.vv-about__hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 72px;
    padding-top: 20px;
    padding-bottom: 74px;
}

.vv-about__copy {
    width: 62%;
    max-width: 980px;
    padding-top: 18px;
}

.vv-about__copy h1 {
    margin: 8px 0 27px;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.vv-richtext {
    color: #4f4a52;
    font-size: 18px;
    line-height: 1.62;
}

.vv-richtext p {
    margin: 0 0 20px;
}

.vv-richtext h2,
.vv-richtext h3 {
    color: var(--vv-text);
}

.vv-about__media {
    width: 33%;
    max-width: 500px;
    flex: 0 1 500px;
}

.vv-about__media img {
    width: 100%;
    height: 780px;
    min-height: 0;
    border-radius: var(--vv-radius);
    object-fit: cover;
    object-position: center center;
}

.vv-collaborators {
    margin-top: 54px;
}

.vv-collaborators h2 {
    margin: 0 0 16px;
    color: var(--vv-pink);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
}

.vv-collaborators__row {
    padding: 15px 22px;
    border-top: 1px solid var(--vv-pink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.vv-collaborators__row:last-child {
    border-bottom: 1px solid var(--vv-pink);
}

/* Workflow */
.vv-workflow__intro {
    display: flex;
    align-items: flex-start;
    gap: 74px;
    padding-top: 28px;
}

.vv-workflow__lead {
    width: 44%;
    padding-top: 74px;
}

.vv-workflow__lead h1 {
    margin: 8px 0 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -.025em;
}

.vv-workflow__hero-image {
    width: 52%;
    height: 315px;
    border-radius: var(--vv-radius);
    object-fit: cover;
}

.vv-workflow__steps {
    padding-top: 68px;
}

.vv-workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 58px;
}

.vv-workflow-step > img {
    width: 47%;
    height: 410px;
    border-radius: var(--vv-radius);
    object-fit: cover;
}

.vv-workflow-step > div {
    width: 53%;
    padding-top: 4px;
}

.vv-workflow-step h2,
.vv-process > h2 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -.03em;
}

.vv-workflow-step h2 {
    margin: 0 0 18px;
    line-height: 1.1;
}

.vv-workflow-step p {
    margin: 0 0 19px;
    color: #625d64;
    font-size: 18px;
    line-height: 1.58;
}

.vv-process {
    padding-bottom: 52px;
}

.vv-process > h2 {
    margin: 0;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--vv-pink);
}

.vv-process__row {
    min-height: 132px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 0;
    border-bottom: 1px solid var(--vv-pink);
}

.vv-process__row strong {
    width: 96px;
    flex: 0 0 96px;
    font-size: 20px;
    font-weight: 500;
}

.vv-process__row img {
    width: 146px;
    height: 86px;
    flex: 0 0 146px;
    border-radius: 4px;
    object-fit: cover;
}

.vv-process__row span {
    width: 156px;
    flex: 0 0 156px;
    color: #777179;
    font-size: 13px;
    line-height: 1.4;
}

.vv-process__row p {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #625d64;
    font-size: 18px;
    line-height: 1.5;
}

.vv-process > .vv-button {
    min-width: 118px;
    min-height: 44px;
    display: inline-flex;
    margin: 28px 0 0 50%;
    padding: 11px 20px;
    font-size: 14px;
    white-space: nowrap;
    transform: translateX(-50%);
}

.vv-process > .vv-button:hover {
    transform: translateX(-50%) translateY(-2px);
}

/* Contact */
.vv-contact-layout {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    padding-top: 34px;
    padding-bottom: 78px;
}

.vv-contact-copy {
    width: 50%;
    padding-top: 7px;
}

.vv-contact-copy h1 {
    margin: 9px 0 30px;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.vv-contact-copy > p {
    max-width: 720px;
    margin: 0 0 25px;
    color: #4f4a52;
    font-size: 18px;
    line-height: 1.6;
}

.vv-contact-copy strong {
    color: var(--vv-text);
    font-weight: 500;
}

.vv-contact-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 13px 0 36px;
    font-size: 22px;
    line-height: 1.35;
}

.vv-contact-links a:hover {
    color: var(--vv-pink);
}

.vv-contact-images {
    display: flex;
    gap: 18px;
}

.vv-contact-images img {
    width: calc((100% - 18px) / 2);
    height: 178px;
    border-radius: var(--vv-radius);
    object-fit: cover;
}

.vv-contact-form-wrap {
    width: 50%;
    padding: 30px 34px 32px;
    border-radius: 12px;
    background: #efeeef;
}

.vv-contact-form-wrap h2 {
    margin: 0 0 24px;
    color: var(--vv-pink);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
}

.vv-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vv-form-row {
    display: flex;
    gap: 22px;
}

.vv-form-row label {
    width: calc((100% - 22px) / 2);
}

.vv-contact-form label {
    display: flex;
    flex-direction: column;
    color: #8a858c;
    font-size: 16px;
    line-height: 1.35;
}

.vv-contact-form input[type="text"],
.vv-contact-form input[type="email"],
.vv-contact-form input[type="tel"],
.vv-contact-form textarea {
    width: 100%;
    padding: 8px 2px 7px;
    border: 0;
    border-bottom: 1px solid #5d5660;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--vv-text);
    font-family: "Chillax";
    font-size: 16px;
    line-height: 1.45;
    transition: border-color .2s ease;
}

.vv-contact-form textarea {
    min-height: 112px;
    resize: vertical;
}

.vv-contact-form input:focus,
.vv-contact-form textarea:focus {
    border-color: var(--vv-pink);
}

.vv-contact-form .vv-consent {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    color: #3d383f;
    font-size: 15px;
    line-height: 1.48;
    cursor: pointer;
}

.vv-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.vv-consent-box {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 1px;
    border: 1px solid #777179;
    border-radius: 6px;
    background: #fff;
    transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.vv-consent-box::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transform: rotate(45deg) scale(.75);
    transition: opacity .18s ease, transform .18s ease;
}

.vv-consent input:checked + .vv-consent-box {
    border-color: var(--vv-pink);
    background: var(--vv-pink);
}

.vv-consent input:checked + .vv-consent-box::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.vv-consent input:focus-visible + .vv-consent-box {
    outline: 2px solid rgba(255, 23, 112, .25);
    outline-offset: 3px;
}

.vv-consent:hover .vv-consent-box {
    border-color: var(--vv-pink);
    transform: translateY(-1px);
}

.vv-consent a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(61, 56, 63, .45);
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.vv-consent a:hover {
    color: var(--vv-pink);
    text-decoration-color: var(--vv-pink);
}

.vv-contact-form .vv-button {
    width: auto;
    min-width: 154px;
    max-width: 100%;
    min-height: 48px;
    align-self: center;
    margin-top: 3px;
    padding-right: 24px;
    padding-left: 24px;
    font-size: 15px;
}

.vv-contact-form .vv-honeypot {
    position: absolute;
    left: -9999px;
}


/* Contact Form 7 uses the same visual system as the native fallback form. */
.vv-contact-form-wrap .wpcf7,
.vv-contact-form-wrap .wpcf7-form {
    width: 100%;
    margin: 0;
}

.vv-contact-form-wrap .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
}

.vv-contact-form--cf7 > p,
.vv-contact-form--cf7 .vv-form-row > p {
    display: contents;
    margin: 0;
}

.vv-contact-form--cf7 br {
    display: none;
}

.vv-contact-form--cf7 label,
.vv-contact-form--cf7 .vv-form-row label {
    min-width: 0;
}

.vv-contact-form--cf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
    display: block;
    width: 100%;
    max-width: none;
}

.vv-contact-form-wrap .wpcf7 .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.vv-contact-form-wrap .wpcf7-not-valid-tip {
    margin-top: 5px;
    color: var(--vv-pink);
    font-size: 13px;
    line-height: 1.35;
}

.vv-contact-form-wrap .wpcf7 form .wpcf7-response-output {
    margin: 15px 0 0;
    padding: 11px 14px;
    border: 1px solid rgba(255, 23, 112, .35);
    border-radius: 8px;
    color: #3d383f;
    font-size: 14px;
    line-height: 1.45;
}

.vv-contact-form-wrap .wpcf7 form.sent .wpcf7-response-output {
    border-color: rgba(32, 93, 53, .25);
    background: #e6f6ec;
    color: #205d35;
}

.vv-cf7-consent {
    color: #3d383f;
    font-size: 15px;
    line-height: 1.48;
}

.vv-cf7-consent .wpcf7-acceptance,
.vv-cf7-consent .wpcf7-form-control,
.vv-cf7-consent .wpcf7-list-item {
    display: block;
    width: 100%;
    margin: 0;
}

.vv-cf7-consent .wpcf7-list-item label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
}

.vv-cf7-consent input[type="checkbox"] {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin: 1px 0 0;
    border: 1px solid #777179;
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 11px 9px;
    cursor: pointer;
    transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.vv-cf7-consent input[type="checkbox"]:checked {
    border-color: var(--vv-pink);
    background-color: var(--vv-pink);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.vv-cf7-consent input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(255, 23, 112, .25);
    outline-offset: 3px;
}

.vv-cf7-consent label:hover input[type="checkbox"] {
    border-color: var(--vv-pink);
    transform: translateY(-1px);
}

.vv-cf7-consent a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(61, 56, 63, .45);
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.vv-cf7-consent a:hover {
    color: var(--vv-pink);
    text-decoration-color: var(--vv-pink);
}

.vv-cf7-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 3px;
}

.vv-cf7-submit .vv-button {
    margin-top: 0;
}

.vv-cf7-submit .wpcf7-spinner {
    position: absolute;
    left: calc(50% + 88px);
    margin: 0;
}

.vv-form-message {
    margin: 0 0 16px;
    padding: 10px 13px;
    border-radius: 7px;
    font-size: 12px;
}

.vv-form-message--success {
    background: #e6f6ec;
    color: #205d35;
}

.vv-form-message--error {
    background: #fde9ee;
    color: #8e1e3d;
}

/* Contact strip and footer */
.vv-contact-strip {
    background: var(--vv-ink);
    color: var(--vv-white);
}

.vv-contact-strip__inner {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vv-contact-strip__title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.03em;
    transition: color .2s ease;
}

.vv-contact-strip__title:hover {
    color: var(--vv-pink);
}

.vv-contact-strip__icon {
    width: 56px;
    transition: transform .25s ease;
}

.vv-contact-strip__icon:hover {
    transform: rotate(8deg) scale(1.06);
}

.vv-footer {
    padding: 47px 0 18px;
    background: var(--vv-white);
}

.vv-footer__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 44px;
    padding-bottom: 40px;
}

.vv-footer__logo {
    width: 250px;
    flex: 0 0 250px;
    padding-top: 5px;
}

.vv-footer__logo img {
    width: 250px;
    height: auto;
}

.vv-footer__column {
    min-width: 0;
    flex: 0 1 230px;
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.vv-footer__label {
    margin: 0 0 15px;
    color: #98939a;
    font-size: 15px;
}

.vv-footer__column a {
    transition: color .2s ease;
}

.vv-footer__column a:hover {
    color: var(--vv-pink);
}

.vv-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vv-footer-nav .vv-nav__link {
    min-height: 0;
    padding: 0;
    color: inherit;
    font-size: 18px;
}

.vv-footer-nav .vv-nav__link::after {
    display: none;
}

.vv-footer__links {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vv-footer__links a {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.vv-footer__socials {
    flex: 0 0 190px;
}

.vv-footer__socials a,
.vv-footer__social-placeholder {
    width: 100%;
    min-width: 0;
    max-width: 190px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.vv-footer__social-placeholder {
    color: inherit;
}

.vv-footer__bottom {
    min-height: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    border-top: 1px solid #77717a;
    color: #9a959c;
    font-size: 14px;
}

.vv-footer__bottom > span {
    min-width: 0;
}

.vv-footer__bottom > span:last-child {
    text-align: right;
}

.vv-footer__bottom a:hover {
    color: var(--vv-pink);
}

/* Privacy Policy */
.vv-privacy-page {
    padding-top: 74px;
    padding-bottom: 104px;
}

.vv-privacy-layout {
    display: block;
}

.vv-privacy-content {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    color: #4f4a52;
    font-size: 17px;
    line-height: 1.66;
}

.vv-privacy-lead {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 54px;
    padding: 26px 30px;
    border: 1px solid rgba(24, 0, 49, .08);
    border-radius: 22px;
    background: #f3f2f3;
    color: var(--vv-ink);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.32;
    letter-spacing: -.02em;
}

.vv-privacy-lead a {
    flex: 0 0 auto;
    color: var(--vv-pink);
}

.vv-privacy-content h2,
.vv-privacy-content h3,
.vv-privacy-content h4 {
    color: var(--vv-ink);
    font-weight: 500;
    letter-spacing: -.018em;
}

.vv-privacy-section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 50px 0 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(252, 26, 117, .26);
    font-size: 25px;
    line-height: 1.22;
}

.vv-privacy-section-title:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.vv-privacy-section-title > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 30px;
    flex: 0 0 42px;
    border-radius: 999px;
    background: rgba(252, 26, 117, .09);
    color: var(--vv-pink);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
}

.vv-privacy-content h3 {
    margin: 30px 0 11px;
    font-size: 18px;
    line-height: 1.38;
}

.vv-privacy-subsection-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vv-privacy-subsection-title > span {
    flex: 0 0 auto;
    color: var(--vv-pink);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
}

.vv-privacy-subsection-title > strong {
    color: var(--vv-ink);
    font-weight: 500;
}

.vv-privacy-content h4 {
    margin: 26px 0 10px;
    font-size: 17px;
    line-height: 1.4;
}

.vv-privacy-content p,
.vv-privacy-content ul,
.vv-privacy-content ol,
.vv-privacy-content table {
    margin-top: 0;
    margin-bottom: 15px;
}

.vv-privacy-content p {
    max-width: 1040px;
}

.vv-privacy-content strong {
    color: var(--vv-ink);
    font-weight: 500;
}

.vv-privacy-content ul,
.vv-privacy-content ol {
    max-width: 1040px;
    padding-left: 21px;
}

.vv-privacy-content li + li {
    margin-top: 7px;
}

.vv-privacy-content li::marker {
    color: var(--vv-pink);
}

.vv-privacy-content a {
    color: var(--vv-ink);
    text-decoration: underline;
    text-decoration-color: rgba(252, 26, 117, .52);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.vv-privacy-content a:hover {
    color: var(--vv-pink);
    text-decoration-color: var(--vv-pink);
}

.vv-privacy-content hr {
    height: 1px;
    margin: 34px 0;
    border: 0;
    background: rgba(252, 26, 117, .28);
}

.vv-privacy-content table {
    width: 100%;
    border-collapse: collapse;
}

.vv-privacy-content th,
.vv-privacy-content td {
    padding: 11px 0;
    border-bottom: 1px solid rgba(252, 26, 117, .2);
    text-align: left;
    vertical-align: top;
}

/* Generic and 404 */
.vv-generic {
    min-height: 60vh;
    padding-top: 50px;
    padding-bottom: 70px;
}

.vv-generic__article {
    max-width: 900px;
}

.vv-generic h1 {
    font-size: 38px;
    font-weight: 500;
}

.vv-404 {
    min-height: 62vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

.vv-404 h1 {
    max-width: 760px;
    margin: 10px 0 16px;
    color: var(--vv-ink);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.vv-404 p {
    max-width: 600px;
    margin: 0 0 28px;
    color: #635d65;
}

/* Tablet */
@media (max-width: 1180px) {
    :root {
        --vv-content-side: 30px;
        --vv-home-gap: 44px;
        --vv-header-height: 104px;
    }

    .vv-nav {
        gap: 48px;
    }

    .vv-nav__link {
        font-size: 16px;
    }

 .vv-home-intro h1 {
        font-size: 38px;
    }

    .vv-project-card--home,
    .vv-project-card--home:nth-child(3n + 2),
    .vv-project-card--home:nth-child(4n) {
        width: 46vw;
        min-width: 390px;
        flex-basis: 46vw;
    }

    .vv-about__hero,
    .vv-workflow__intro {
        gap: 46px;
    }

    .vv-about__hero {
        padding-top: 8px;
    }

    .vv-about__copy {
        padding-top: 8px;
    }

    .vv-richtext {
        font-size: 17px;
    }

    .vv-privacy-page {
        padding-top: 58px;
        padding-bottom: 74px;
    }

    .vv-privacy-content {
        max-width: 980px;
        font-size: 16px;
    }

    .vv-privacy-lead {
        margin-bottom: 44px;
        padding: 22px 24px;
        font-size: 20px;
    }

    .vv-privacy-section-title {
        margin-top: 42px;
        font-size: 22px;
    }


    .vv-collaborators h2 {
        font-size: 16px;
    }

    .vv-collaborators__row {
        font-size: 15px;
    }

    .vv-workflow-step {
        gap: 34px;
    }

    .vv-contact-layout {
        gap: 42px;
        padding-top: 12px;
        padding-bottom: 64px;
    }

    .vv-contact-copy h1 {
        margin-bottom: 24px;
        font-size: 32px;
    }

    .vv-contact-copy > p {
        margin-bottom: 20px;
        font-size: 17px;
    }

    .vv-contact-links {
        margin-bottom: 30px;
        font-size: 19px;
    }

    .vv-contact-form-wrap {
        padding: 26px 28px 28px;
    }

    .vv-contact-form-wrap h2 {
        margin-bottom: 18px;
        font-size: 27px;
    }

    .vv-contact-form {
        gap: 12px;
    }

    .vv-contact-form label {
        font-size: 15px;
    }

    .vv-contact-form textarea {
        min-height: 96px;
    }

    .vv-contact-form .vv-consent {
        font-size: 14px;
    }

    .vv-contact-form .vv-button {
        min-width: 148px;
        min-height: 46px;
        font-size: 14px;
    }

    .vv-project-card--works,
    .vv-project-card--works.vv-work-card--portrait,
    .vv-project-card--works.vv-work-card--landscape,
    .vv-project-card--works.vv-work-card--wide,
    .vv-project-card--works.vv-work-card--mobile {
        width: calc((100% - 14px) / 2);
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .vv-works-list {
        column-gap: 14px;
        row-gap: 14px;
    }

    .vv-project-card--works .vv-project-card__top-inner {
        gap: 6px;
        padding-right: 8px;
    }

    .vv-project-card--works .vv-pill {
        min-height: 32px;
        padding: 7px 11px;
        font-size: 12px;
    }

    .vv-project-card--works .vv-project-card__bottom-inner {
        gap: 5px;
        padding-right: 7px;
        padding-left: 13px;
        font-size: 13px;
    }

    .vv-process__row {
        gap: 18px;
    }
}

/* Tablet Works cards: compact labels without the oversized white tray. */
@media (min-width: 681px) and (max-width: 1024px) {
    .vv-project-card--works .vv-project-card__link {
        overflow: hidden;
        border-radius: 0;
        background: transparent;
    }

    .vv-project-card--works .vv-project-card__media {
        border-radius: 14px;
        background: transparent;
    }

    .vv-project-card--works .vv-project-card__image,
    .vv-project-card--works:hover .vv-project-card__image,
    .vv-project-card--works:focus-within .vv-project-card__image {
        transform: scale(1.01);
    }

    .vv-project-card--works .vv-project-curve {
        display: none;
    }

    .vv-project-card--works .vv-project-card__top,
    .vv-project-card--works .vv-project-card__bottom {
        max-width: calc(100% - 24px);
        padding: 0;
        border-radius: 0;
        background: transparent;
        transform: none;
        transition: none;
        overflow: visible;
    }

    .vv-project-card--works .vv-project-card__top {
        top: 12px;
        right: 12px;
        bottom: auto;
        left: auto;
    }

    .vv-project-card--works .vv-project-card__bottom {
        top: auto;
        right: auto;
        bottom: 12px;
        left: 12px;
    }

    .vv-project-card--works .vv-project-card__top-inner {
        min-height: 0;
        max-width: 100%;
        gap: 6px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        overflow: hidden;
        white-space: nowrap;
    }

    .vv-project-card--works .vv-project-card__top-inner .vv-pill {
        min-height: 30px;
        padding: 7px 10px;
        border: 1px solid rgba(23, 0, 42, .055);
        border-radius: 999px;
        background: rgba(255, 255, 255, .94);
        font-size: 12px;
        line-height: 1;
        white-space: nowrap;
    }

    .vv-project-card--works .vv-project-card__bottom-inner {
        min-height: 36px;
        width: max-content;
        max-width: 100%;
        gap: 5px;
        padding: 0 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .96);
        font-size: 12px;
        line-height: 1;
        white-space: nowrap;
    }

    .vv-project-card--works .vv-project-card__bottom-inner > span:first-child {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* Mobile navigation and tablet layout */
@media (max-width: 900px) {
    :root {
        --vv-content-side: 18px;
        --vv-home-gap: 28px;
        --vv-header-height: 82px;
    }

    .vv-logo,
    .vv-logo img {
        width: 88px;
    }

    .vv-header .vv-nav {
        display: none;
    }

    .vv-menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .vv-menu-toggle span:not(.screen-reader-text) {
        width: 24px;
        height: 1px;
        display: block;
        background: var(--vv-ink);
        transition: transform .22s ease;
    }

    .vv-menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .vv-menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .vv-mobile-menu {
        position: fixed;
        z-index: 70;
        inset: var(--vv-header-height) 0 0;
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: var(--vv-page-bg);
        transform: translateY(-10px);
        transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
    }

    body.admin-bar .vv-mobile-menu {
        top: calc(var(--vv-header-height) + 32px);
    }

    .vv-mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .vv-mobile-menu__inner {
        padding-top: 42px;
    }

    .vv-mobile-menu .vv-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .vv-mobile-menu .vv-nav__link {
        min-height: 0;
        padding: 6px 0;
        color: var(--vv-ink);
        font-size: 34px;
    }

    .vv-mobile-menu__contact {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 42px;
        font-size: 16px;
    }


    .vv-project-card--home,
    .vv-project-card--home:nth-child(3n + 2),
    .vv-project-card--home:nth-child(4n) {
        width: 72vw;
        min-width: 0;
        flex-basis: 72vw;
    }

.vv-home-intro {
        padding: 26px 0 24px;
    }

 .vv-home-intro__brand {
        width: 32%;
    }

 .vv-home-intro__brand img {
        width: 148px;
    }

 .vv-home-intro__copy {
        min-width: 0;
        flex: 1 1 auto;
    }

 .vv-home-intro h1 {
        font-size: 29px;
    }

    .vv-filters {
        gap: 8px;
    }

    .vv-filter {
        min-height: 40px;
        padding: 9px 15px;
        font-size: 13px;
    }

    /*
     * Touch/tablet Works cards intentionally use a simpler inset overlay.
     * The desktop concave cutout relies on vector connectors and hover motion;
     * on narrow/touch layouts those connectors can create sub-pixel seams.
     * Keeping both labels fully inside the image removes that failure mode.
     */
    .vv-project-card--works .vv-project-card__link {
        overflow: hidden;
        border-radius: 0;
        background: transparent;
    }

    .vv-project-card--works .vv-project-card__media {
        border-radius: 12px;
        background: transparent;
    }

    .vv-project-card--works .vv-project-card__image,
    .vv-project-card--works:hover .vv-project-card__image,
    .vv-project-card--works:focus-within .vv-project-card__image {
        transform: scale(1.01);
    }

    .vv-project-card--works .vv-project-curve {
        display: none;
    }

    .vv-project-card--works .vv-project-card__top,
    .vv-project-card--works .vv-project-card__bottom {
        max-width: calc(100% - 20px);
        padding: 0;
        border-radius: 0;
        background: transparent;
        transform: none;
        transition: none;
        overflow: visible;
    }

    .vv-project-card--works .vv-project-card__top {
        top: 10px;
        right: 10px;
        bottom: auto;
        left: auto;
    }

    .vv-project-card--works .vv-project-card__bottom {
        top: auto;
        right: auto;
        bottom: 10px;
        left: 10px;
    }

    .vv-project-card--works .vv-project-card__top-inner,
    .vv-project-card--works .vv-project-card__bottom-inner {
        border-radius: 999px;
        background: rgba(255, 255, 255, .96);
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .vv-project-gallery__item {
        height: 430px;
        flex-basis: 56vw;
    }

    .vv-project-gallery__item:nth-child(3n + 2) {
        flex-basis: 66vw;
    }

    .vv-project-gallery__item:nth-child(3n) {
        flex-basis: 56vw;
    }

    .vv-project-info {
        gap: 30px;
    }

    .vv-project-info__title {
        width: 38%;
    }

    .vv-project-info__details {
        width: 62%;
    }

    .vv-about__hero {
        gap: 34px;
    }

    .vv-about__copy {
        width: 63%;
    }

    .vv-about__media {
        width: 34%;
        max-width: 430px;
        flex-basis: 430px;
    }

    .vv-about__media img {
        height: 670px;
        min-height: 0;
    }

    .vv-workflow__intro {
        gap: 30px;
    }

    .vv-workflow__lead {
        padding-top: 35px;
    }

    .vv-workflow__lead h1 {
        font-size: 31px;
    }

    .vv-workflow__hero-image {
        height: 280px;
    }

    .vv-workflow-step > img {
        height: 330px;
    }

    .vv-process__row {
        min-height: 0;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px 18px;
        padding: 18px 0;
    }

    .vv-process__row strong {
        width: 76px;
        flex-basis: 76px;
        font-size: 18px;
    }

    .vv-process__row img {
        width: 124px;
        height: 74px;
        flex-basis: 124px;
    }

    .vv-process__row span {
        width: auto;
        flex: 1 1 130px;
        font-size: 12px;
    }

    .vv-process__row p {
        width: 100%;
        flex: 0 0 100%;
        font-size: 16px;
        line-height: 1.52;
    }

    .vv-contact-layout {
        flex-direction: column;
    }

    .vv-contact-copy,
    .vv-contact-form-wrap {
        width: 100%;
    }

    .vv-contact-images {
        max-width: 680px;
    }

    .vv-contact-strip__inner {
        min-height: 126px;
    }

    .vv-contact-strip__title {
        font-size: 40px;
    }

    .vv-project-pager {
        font-size: 14px;
    }

    .vv-footer__logo {
        width: 210px;
        flex-basis: 210px;
    }

    .vv-footer__logo img {
        width: 210px;
    }

    .vv-footer__main {
        gap: 24px;
    }

    .vv-footer__column {
        flex-basis: 190px;
    }

    .vv-footer__socials {
        flex-basis: 170px;
    }

    .vv-footer__column,
    .vv-footer-nav .vv-nav__link {
        font-size: 16px;
    }

    .vv-footer__label {
        margin-bottom: 13px;
        font-size: 13px;
    }

    .vv-footer-nav,
    .vv-footer__links {
        gap: 16px;
    }
}

/* Small mobile */
@media (max-width: 680px) {
    .vv-privacy-page {
        padding-top: 34px;
        padding-bottom: 54px;
    }

    .vv-privacy-content {
        font-size: 15px;
        line-height: 1.6;
    }

    .vv-privacy-lead {
        display: block;
        margin-bottom: 34px;
        padding: 18px 18px;
        border-radius: 16px;
        font-size: 18px;
        line-height: 1.4;
    }

    .vv-privacy-lead span,
    .vv-privacy-lead a {
        display: block;
    }

    .vv-privacy-lead a {
        margin-top: 4px;
    }

    .vv-privacy-section-title {
        gap: 12px;
        margin-top: 34px;
        margin-bottom: 16px;
        padding-top: 18px;
        font-size: 19px;
    }

    .vv-privacy-section-title > span {
        width: 36px;
        height: 26px;
        flex-basis: 36px;
        font-size: 12px;
    }

    .vv-privacy-content h3 {
        margin-top: 24px;
        font-size: 16px;
    }

    .vv-privacy-content p,
    .vv-privacy-content ul,
    .vv-privacy-content ol {
        margin-bottom: 13px;
    }

    :root {
        --vv-content-side: 14px;
        --vv-home-gap: 18px;
        --vv-header-height: 76px;
        --vv-radius: 14px;
    }

    body {
        font-size: 15px;
    }

    body.vv-is-home {
        overflow-y: auto;
    }

    body.admin-bar .vv-home {
        height: auto;
        min-height: calc(100dvh - var(--vv-header-height) - 46px);
    }

    .vv-home {
        height: auto;
        min-height: calc(100dvh - var(--vv-header-height));
    }

    .vv-home-rail {
        height: 54svh;
        min-height: 330px;
        max-height: 500px;
        flex: 0 0 auto;
        cursor: auto;
        touch-action: pan-y;
    }

    .vv-project-card--home,
    .vv-project-card--home:nth-child(3n + 2),
    .vv-project-card--home:nth-child(4n) {
        width: 84vw;
        flex-basis: 84vw;
    }

.vv-home-intro {
        padding: 20px 0 max(26px, env(safe-area-inset-bottom));
    }

 .vv-home-intro__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

 .vv-home-intro__brand,
 .vv-home-intro__copy {
        width: 100%;
        max-width: none;
        text-align: left;
    }

 .vv-home-intro__brand img {
        width: 136px;
    }

 .vv-home-intro h1 {
        max-width: 390px;
        margin-bottom: 17px;
        font-size: 27px;
        white-space: normal;
    }

 .vv-home-intro__actions {
        justify-content: flex-start;
    }

 .vv-home-intro__actions .vv-button {
        min-height: 46px;
        padding: 11px 20px;
        font-size: 14px;
    }

    .vv-works-head {
        padding-top: 8px;
        padding-bottom: 24px;
    }

    .vv-works-head h1 {
        margin-top: 4px;
        margin-bottom: 14px;
        font-size: 28px;
    }

    .vv-filters {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 7px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 2px 2px 8px;
        scroll-padding-inline: 8px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }

    .vv-filters::-webkit-scrollbar {
        display: none;
    }

    .vv-filter {
        min-width: 0;
        min-height: 44px;
        flex: 0 0 auto;
        padding: 8px 14px;
        font-size: 12px;
        scroll-snap-align: start;
        touch-action: manipulation;
    }

    .vv-works-list {
        column-gap: 0;
        row-gap: 16px;
        padding-bottom: max(48px, env(safe-area-inset-bottom));
    }

    .vv-project-card--works,
    .vv-project-card--works.vv-work-card--portrait,
    .vv-project-card--works.vv-work-card--landscape,
    .vv-project-card--works.vv-work-card--wide,
    .vv-project-card--works.vv-work-card--mobile {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        aspect-ratio: 1 / 1.08;
    }





    .vv-project-card--works {
        --vv-work-radius: 12px;
    }

    .vv-project-card--works .vv-project-card__top {
        top: 8px;
        right: 8px;
        max-width: calc(100% - 16px);
    }

    .vv-project-card--works .vv-project-card__bottom {
        bottom: 8px;
        left: 8px;
        max-width: calc(100% - 16px);
    }

    .vv-project-card--works .vv-project-card__top-inner {
        min-height: 32px;
        max-width: 100%;
        gap: 4px;
        padding: 3px 4px;
        overflow: hidden;
        white-space: nowrap;
    }

    .vv-project-card--works .vv-project-card__bottom-inner {
        min-height: 32px;
        max-width: 100%;
        gap: 4px;
        padding: 0 9px;
        overflow: hidden;
        font-size: 12px;
        line-height: 1;
        white-space: nowrap;
    }

    .vv-project-card--works .vv-project-card__bottom-inner > span:first-child {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vv-project-card--works .vv-pill {
        min-height: 26px;
        flex: 0 0 auto;
        padding: 5px 8px;
        font-size: 12px;
        line-height: 1;
        white-space: nowrap;
    }

    .vv-project-head {
        padding-top: 10px;
    }

    .vv-project-tags {
        margin-top: 24px;
    }

    .vv-project-gallery {
        width: auto;
        gap: 9px;
        margin-left: var(--vv-content-side);
        padding-right: 9px;
    }

    .vv-project-gallery__item,
    .vv-project-gallery__item:nth-child(3n + 2),
    .vv-project-gallery__item:nth-child(3n) {
        height: 108vw;
        max-height: 590px;
        flex-basis: 86vw;
        cursor: pointer;
    }

    .vv-project-gallery__play {
        width: 64px;
        height: 64px;
        margin: -32px 0 0 -32px;
    }

    .vv-project-gallery__play-icon {
        left: 26px;
        top: 21px;
        border-top-width: 11px;
        border-bottom-width: 11px;
        border-left-width: 17px;
    }

    .vv-project-gallery__item--video.is-playing .vv-project-gallery__play-icon {
        left: 23px;
        top: 20px;
        width: 18px;
        height: 24px;
    }

    .vv-project-gallery__item--video.is-playing .vv-project-gallery__play-icon::before,
    .vv-project-gallery__item--video.is-playing .vv-project-gallery__play-icon::after {
        width: 6px;
        height: 24px;
    }

    .vv-project-info {
        flex-direction: column;
        padding-top: 34px;
        padding-bottom: 30px;
    }

    .vv-project-info__title,
    .vv-project-info__details {
        width: 100%;
    }

    .vv-project-info__title h1 {
        font-size: 29px;
    }

    .vv-project-info__meta {
        gap: 30px;
    }

    .vv-project-info__meta > div {
        min-width: 120px;
    }

    .vv-project-info__meta strong {
        font-size: 21px;
    }

   .vv-project-pager {
        min-height: 72px;
    }

    .vv-lightbox {
        padding: 16px;
    }

    .vv-lightbox__frame {
        width: 100%;
        height: min(78vh, 720px);
        min-height: 360px;
        padding: 14px;
        border-radius: 20px;
    }

    .vv-lightbox__stage {
        width: 100%;
        height: 100%;
        padding-bottom: 54px;
    }

    .vv-lightbox__stage img {
        border-radius: 12px;
    }

    .vv-lightbox__close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .vv-lightbox__nav {
        top: auto;
        bottom: 12px;
        width: 46px;
        height: 46px;
        margin-top: 0;
    }

    .vv-lightbox__nav--prev {
        left: calc(50% - 58px);
    }

    .vv-lightbox__nav--next {
        right: calc(50% - 58px);
    }

    .vv-lightbox__counter {
        left: 12px;
        bottom: 17px;
        min-height: 30px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .vv-about__hero {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 44px;
    }

    .vv-about__copy,
    .vv-about__media {
        width: 100%;
        max-width: none;
    }

    .vv-about__copy h1 {
        font-size: 29px;
    }

    .vv-about__media {
        order: 0;
    }

    .vv-about__media img {
        height: 460px;
        min-height: 0;
        max-height: 460px;
        object-fit: cover;
        object-position: center center;
    }

    .vv-collaborators {
        margin-top: 40px;
    }

    .vv-workflow__intro {
        flex-direction: column;
        padding-top: 15px;
    }

    .vv-workflow__lead,
    .vv-workflow__hero-image {
        width: 100%;
    }

    .vv-workflow__lead {
        padding-top: 0;
    }

    .vv-workflow__lead h1 {
        font-size: 25px;
    }

    .vv-workflow__hero-image {
        height: 54vw;
        min-height: 220px;
    }

    .vv-workflow__steps {
        padding-top: 42px;
    }

    .vv-workflow-step {
        flex-direction: column;
        margin-bottom: 42px;
    }

    .vv-workflow-step > img,
    .vv-workflow-step > div {
        width: 100%;
    }

    .vv-workflow-step > img {
        height: 72vw;
        max-height: 430px;
    }

    .vv-workflow-step--text-first img {
        order: -1;
    }

    .vv-workflow-step h2,
    .vv-process > h2 {
        font-size: 32px;
    }

    .vv-process__row {
        min-height: 0;
        gap: 12px 14px;
        padding: 18px 0;
    }

    .vv-process__row strong {
        width: 100%;
        flex: 0 0 100%;
        font-size: 20px;
    }

    .vv-process__row img {
        width: 120px;
        height: 72px;
        flex: 0 0 120px;
    }

    .vv-process__row span {
        width: auto;
        flex: 1 1 120px;
        font-size: 12px;
    }

    .vv-process__row p {
        font-size: 16px;
        line-height: 1.55;
    }

    .vv-process > .vv-button {
        min-width: 118px;
        max-width: calc(100% - 24px);
        min-height: 44px;
        padding: 11px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .vv-contact-layout {
        gap: 34px;
        padding-top: 12px;
        padding-bottom: 48px;
    }

    .vv-contact-copy h1 {
        font-size: 31px;
    }

    .vv-contact-copy > p {
        font-size: 16px;
        line-height: 1.58;
    }

    .vv-contact-links {
        font-size: 18px;
    }

    .vv-contact-images {
        gap: 9px;
    }

    .vv-contact-images img {
        width: calc((100% - 9px) / 2);
        height: 29vw;
        min-height: 120px;
    }

    .vv-contact-form-wrap {
        padding: 24px 18px;
    }

    .vv-form-row {
        flex-direction: column;
        gap: 14px;
    }

    .vv-form-row label {
        width: 100%;
    }

    .vv-contact-strip__inner {
        min-height: 104px;
    }

    .vv-contact-strip__title {
        font-size: 32px;
    }

    .vv-contact-strip__icon,
    .vv-contact-strip__icon img {
        width: 43px;
    }

    .vv-footer {
        padding-top: 28px;
        padding-bottom: 12px;
    }

    .vv-footer__main {
        flex-wrap: wrap;
        gap: 18px 16px;
        padding-bottom: 24px;
    }

    .vv-footer__logo {
        width: 100%;
        flex: 0 0 100%;
        padding-top: 0;
    }

    .vv-footer__logo img {
        width: 180px;
    }

    .vv-footer__column {
        width: calc((100% - 16px) / 2);
        min-width: 0;
        flex: 0 0 calc((100% - 16px) / 2);
        font-size: 16px;
    }

    .vv-footer-nav .vv-nav__link {
        font-size: 16px;
    }

    .vv-footer__label {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .vv-footer-nav,
    .vv-footer__links {
        gap: 2px;
    }

    .vv-footer-nav .vv-nav__link,
    .vv-footer__links a,
    .vv-footer__social-placeholder {
        min-height: 30px;
        display: flex;
        align-items: center;
    }

    .vv-footer__socials {
        width: 100%;
        max-width: 240px;
        flex: 0 0 100%;
        margin-left: 0;
    }

    .vv-footer__socials a,
    .vv-footer__social-placeholder {
        max-width: 220px;
    }

    .vv-footer__bottom {
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2px;
        padding-top: 10px;
        padding-bottom: max(2px, env(safe-area-inset-bottom));
        font-size: 14px;
        line-height: 1.3;
    }

    .vv-footer__bottom > span {
        width: 100%;
        display: block;
        text-align: left;
    }

    .vv-footer__bottom > span:first-child,
    .vv-footer__bottom > span:last-child {
        text-align: left;
    }

    .vv-footer__bottom a {
        display: inline-flex;
        align-items: center;
        min-height: 24px;
    }

    .vv-404 h1 {
        font-size: 39px;
    }
}

@media (max-width: 480px) {
    .vv-project-card--works .vv-project-card__top-inner > .vv-pill--term:nth-of-type(n + 3) {
        display: none;
    }

    .vv-project-card--works .vv-pill-more--two {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .vv-project-card--works .vv-project-card__bottom-inner {
        font-size: 12px;
    }
}

@media (max-width: 340px) {
    .vv-project-card--works .vv-project-card__top-inner > .vv-pill--term:nth-of-type(n + 2) {
        display: none;
    }

    .vv-project-card--works .vv-pill-more--two {
        display: none;
    }

    .vv-project-card--works .vv-pill-more--one {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .vv-project-card--works .vv-pill {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 12px;
    }

    .vv-project-card--works .vv-project-card__bottom-inner {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 12px;
    }
}

@media (min-width: 681px) and (max-width: 782px) {
    body.admin-bar .vv-home {
        height: calc(100dvh - var(--vv-header-height) - 46px);
    }
}

@media (max-width: 782px) {
    body.admin-bar .vv-header {
        top: 46px;
    }

    body.admin-bar .vv-mobile-menu {
        top: calc(var(--vv-header-height) + 46px);
    }
}

@media (pointer: coarse), (hover: none) {
    .vv-project-cursor {
        display: none;
    }
}

@media (pointer: fine) {
    .vv-home-rail,
    .vv-home-rail *,
    .vv-project-card--works .vv-project-card__link,
    .vv-project-gallery,
    .vv-project-gallery * {
        cursor: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
