.mkbp {
    --mkbp-bg: #fff;
    --mkbp-text: #050505;
    --mkbp-muted: #b8c1c8;
    --mkbp-soft: #dfe5e9;
    --mkbp-accent: #aeb6bd;
    --mkbp-triangle: rgba(0, 0, 0, .045);
    --mkbp-triangle-dark: rgba(255, 255, 255, .055);
    --mkbp-field: #101b21;
    --mkbp-max: 1180px;
    --mkbp-legal: rgba(0, 0, 0, .45);
    background: var(--mkbp-bg);
    color: var(--mkbp-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.48;
    overflow-x: clip;
}

.mkbp-page-assigned .entry-title,
.mkbp-page-assigned .wp-block-post-title {
    display: none;
}

.mkbp-page-assigned {
    --wp--style--root--padding-left: 0 !important;
    --wp--style--root--padding-right: 0 !important;
    background: #fff;
}

.mkbp-page-assigned .wp-site-blocks {
    padding: 0 !important;
}

.mkbp-page-assigned .wp-site-blocks > header,
.mkbp-page-assigned .wp-site-blocks > footer,
.mkbp-page-assigned .wp-site-blocks > .wp-block-template-part,
.mkbp-page-assigned main.wp-block-group > .wp-block-group.alignfull.has-tertiary-background-color {
    display: none !important;
}

.mkbp-page-assigned main.wp-block-group,
.mkbp-page-assigned .entry-content,
.mkbp-page-assigned .wp-block-post-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mkbp-page-assigned .entry-content > .mkbp,
.mkbp-page-assigned .wp-block-post-content > .mkbp,
.mkbp-page-assigned .entry-content > .mkbp-page,
.mkbp-page-assigned .wp-block-post-content > .mkbp-page,
.mkbp.alignfull {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.mkbp *,
.mkbp *::before,
.mkbp *::after {
    box-sizing: border-box;
}

.mkbp a {
    color: inherit;
}

.mkbp-container {
    max-width: var(--mkbp-max);
    width: min(var(--mkbp-max), calc(100% - 2rem));
    margin: 0 auto;
}

.mkbp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.mkbp-nav-inner {
    max-width: var(--mkbp-max);
    margin: 0 auto;
    padding: .9rem 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.mkbp-nav strong {
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--mkbp-accent);
    font-size: .88rem;
}

.mkbp-nav ul {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mkbp-nav a {
    color: #000;
    text-decoration: none;
}

.mkbp-button {
    display: inline-flex;
    align-items: center;
    background: #000;
    border: 1px solid #000;
    color: #fff !important;
    border-radius: 999px;
    padding: .55rem .95rem;
}

.mkbp-tri {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background: var(--mkbp-triangle);
}

.mkbp-tri.left {
    left: -8vw;
    bottom: -2vh;
    width: 36vw;
    height: 60vh;
    clip-path: polygon(0 0, 70% 100%, 0 100%);
    animation: mkbpTriLeft 1.3s ease both;
}

.mkbp-tri.right {
    right: -8vw;
    bottom: -6vh;
    width: 40vw;
    height: 72vh;
    clip-path: polygon(62% 0, 100% 0, 72% 100%, 0 100%);
    animation: mkbpTriRight 1.3s ease both;
}

.mkbp-tri.mid {
    right: 9vw;
    top: 16vh;
    width: 19vw;
    height: 46vh;
    clip-path: polygon(55% 0, 100% 0, 45% 100%, 0 100%);
    opacity: .75;
    animation: mkbpFloatTri 7s ease-in-out infinite;
}

@keyframes mkbpTriLeft {
    from {
        transform: translateX(-70px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes mkbpTriRight {
    from {
        transform: translateX(70px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes mkbpFloatTri {
    50% {
        transform: translateY(18px);
    }
}

.mkbp-hero {
    min-height: 100vh;
    position: relative;
    background: #fff;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 3rem 0 2rem;
}

.mkbp-hero-mini,
.mkbp-hero-person {
    background-image: var(--mkbp-portrait, url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=900&q=80'));
    background-position: center;
    background-size: cover;
    filter: grayscale(1);
}

.mkbp-hero-mini {
    position: absolute;
    left: 8vw;
    top: 2rem;
    width: 52px;
    height: 52px;
    border: 3px solid #000;
    border-radius: 50%;
    z-index: 6;
}

.mkbp-hero-stage {
    width: min(1000px, 92vw);
    height: 660px;
    position: relative;
    display: grid;
    place-items: center;
    z-index: 2;
}

.mkbp-hero-name {
    position: absolute;
    text-align: center;
    z-index: 1;
}

.mkbp-hero-name h1 {
    font-size: clamp(4rem, 12vw, 12rem);
    line-height: .78;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 950;
    margin: 0;
    color: var(--mkbp-soft);
}

.mkbp-hero-name span {
    display: block;
}

.mkbp-hero-name .last {
    position: relative;
    z-index: 6;
    color: rgba(223, 229, 233, .92);
}

.mkbp-hero-person {
    position: absolute;
    z-index: 3;
    bottom: 0;
    width: min(390px, 58vw);
    height: 565px;
    filter: grayscale(1) contrast(1.06);
    clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.mkbp-hero-sub {
    position: absolute;
    bottom: .5rem;
    text-align: center;
    font-size: 1rem;
    letter-spacing: .08em;
    color: var(--mkbp-accent);
}

.mkbp-headline {
    position: relative;
    margin-bottom: 2.4rem;
    padding-top: 3.7rem;
}

.mkbp-headline .ghost {
    position: absolute;
    left: 0;
    top: .1rem;
    font-size: clamp(4rem, 11vw, 10rem);
    line-height: .9;
    text-transform: uppercase;
    font-weight: 950;
    color: transparent;
    -webkit-text-stroke: 1.3px rgba(0, 0, 0, .12);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.mkbp-headline h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.4rem, 5vw, 5.4rem);
    line-height: .88;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: 0;
    margin: 0;
}

.mkbp-headline h2 span,
.mkbp-category-title h2 span,
.mkbp-project-info .label,
.mkbp-service .icon {
    color: var(--mkbp-accent);
}

.mkbp-about-wrap,
.mkbp-refs,
.mkbp-services {
    background: #050505;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mkbp-about-wrap .mkbp-tri {
    background: var(--mkbp-triangle-dark);
}

.mkbp-about {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 4rem;
    align-items: start;
    padding: 5rem 0;
}

.mkbp-about-big {
    font-size: clamp(2rem, 4.3vw, 4.4rem);
    line-height: .94;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: .01em;
    color: #fff;
}

.mkbp-about-copy {
    color: #c3c9ce;
    font-size: 1.06rem;
    max-width: 720px;
}

.mkbp-about-copy h2,
.mkbp-about-copy h3 {
    color: #fff;
}

.mkbp-about-copy h2 {
    font-size: 1.05rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.mkbp-cv-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.mkbp-cv-section::after {
    content: "";
    position: absolute;
    right: -12vw;
    top: 0;
    width: 58vw;
    height: 100%;
    min-height: calc(100vh * 3 + 18rem);
    background: var(--mkbp-triangle);
    clip-path: polygon(42% 0, 100% 0, 72% 100%, 0 100%);
    z-index: 1;
    pointer-events: none;
}

.mkbp-cv-title {
    padding-top: 3rem;
    position: relative;
    z-index: 2;
}

.mkbp-cv-title .mkbp-headline {
    margin-bottom: 0;
}

.mkbp-cv-story {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.mkbp-cv-side {
    background: #000;
    color: #fff;
    padding: 1.8rem 1.85rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 8;
}

.mkbp-cv-side h2,
.mkbp-cv-side h3 {
    color: #fff;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.mkbp-cv-side h2 {
    font-size: .88rem;
    margin: 0 0 .65rem;
}

.mkbp-cv-side h3 {
    font-size: .78rem;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: .32rem;
    margin: 1.45rem 0 .65rem;
}

.mkbp-cv-side p,
.mkbp-cv-side li {
    color: #fff;
    font-size: .77rem;
    line-height: 1.42;
}

.mkbp-cv-side ul {
    padding-left: .95rem;
    margin: .35rem 0;
}

.mkbp-cv-main,
.mkbp-cv-track {
    position: relative;
}

.mkbp-cv-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(clamp(2rem, 7vw, 8rem) + 180px + 40px - .75px);
    width: 1.5px;
    background: #000;
    z-index: 3;
    pointer-events: none;
}

.mkbp-cv-station {
    height: 100vh;
    display: grid;
    grid-template-columns: 180px 80px minmax(320px, 720px);
    align-items: center;
    position: sticky;
    top: 0;
    padding: 0 clamp(2rem, 7vw, 8rem);
    z-index: 4;
    color: #000;
}

.mkbp-cv-inner {
    display: contents;
    opacity: 0;
    transform: translateY(95px);
    transition: opacity .65s ease, transform .65s ease;
}

.mkbp-cv-station.active .mkbp-cv-inner {
    opacity: 1;
    transform: none;
}

.mkbp-cv-station.past .mkbp-cv-inner {
    opacity: 0;
    transform: translateY(-95px);
}

.mkbp-cv-date {
    font-size: .92rem;
    color: #000;
    line-height: 1.32;
}

.mkbp-cv-marker {
    width: 80px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.mkbp-cv-dot {
    width: 14px;
    height: 14px;
    background: #000;
    border-radius: 50%;
}

.mkbp-cv-content {
    max-width: 760px;
    color: #000;
    z-index: 5;
}

.mkbp-cv-content h3 {
    font-size: clamp(1.32rem, 2.15vw, 2rem);
    letter-spacing: .17em;
    text-transform: uppercase;
    margin: 0 0 .05rem;
    color: #000;
    line-height: 1.08;
}

.mkbp-cv-content h4 {
    font-size: 1rem;
    font-weight: 400;
    margin: .1rem 0 1rem;
    color: #000;
}

.mkbp-cv-group {
    margin: .9rem 0;
}

.mkbp-cv-group-title {
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 .45rem;
    font-size: .9rem;
    color: #000;
}

.mkbp-cv-content ul {
    margin: 0;
    padding-left: 1rem;
    line-height: 1.45;
}

.mkbp-cv-content li {
    margin-bottom: .14rem;
    font-size: .95rem;
}

.mkbp-cv-downloads {
    position: absolute;
    right: clamp(2rem, 7vw, 8rem);
    bottom: 1.3rem;
    z-index: 9;
    display: flex;
    gap: .65rem;
}

.mkbp-cv-downloads a {
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    padding: .58rem .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .7rem;
    background: rgba(255, 255, 255, .85);
}

.mkbp-refs,
.mkbp-services {
    padding: 3.8rem 0;
}

.mkbp-refs .mkbp-headline .ghost,
.mkbp-services .mkbp-headline .ghost {
    -webkit-text-stroke: 1.3px rgba(255, 255, 255, .12);
}

.mkbp-refs p,
.mkbp-refs li,
.mkbp-services p {
    color: #d4d8db;
}

.mkbp-category-title {
    margin: 7rem 0 .8rem;
}

.mkbp-category-title:first-of-type {
    margin-top: 1rem;
}

.mkbp-category-title h2 {
    font-size: clamp(2.6rem, 5.5vw, 6rem);
    line-height: .82;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}

.mkbp-category-title h2 span {
    font-size: .45em;
    vertical-align: top;
}

.mkbp-category-title p {
    margin: .65rem 0 0;
    color: var(--mkbp-accent);
    letter-spacing: .18em;
    text-transform: uppercase;
}

.mkbp-project-row {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
    padding: .8rem 0 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mkbp-project-row.reverse {
    grid-template-columns: 48% 52%;
}

.mkbp-project-row.reverse .mkbp-mockup {
    order: 2;
}

.mkbp-mockup {
    min-height: 390px;
    display: grid;
    place-items: center;
    position: relative;
}

.mkbp-mockup::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 58%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 62%);
    filter: blur(18px);
}

.mkbp-mockup img {
    position: relative;
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .65)) grayscale(.05);
}

.mkbp-project-info .label {
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .78rem;
}

.mkbp-project-info h3 {
    font-size: clamp(1.9rem, 3.6vw, 4rem);
    line-height: .92;
    text-transform: uppercase;
    font-weight: 950;
    margin: .6rem 0 1rem;
    color: #fff;
}

.mkbp-project-info a {
    display: inline-block;
    margin-top: 1rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    padding: .65rem .9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .82rem;
}

.mkbp-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.2rem;
}

.mkbp-service {
    background: #0d0d0d;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    padding: 2rem;
    min-height: 245px;
    transition: .35s;
}

.mkbp-service:hover {
    border-color: var(--mkbp-accent);
    transform: translateY(-8px);
}

.mkbp-service .icon {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.mkbp-service h3 {
    color: #fff;
    font-size: 1.35rem;
}

.mkbp-contact {
    background: #fff;
    color: #000;
    padding: 3.8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.mkbp-contact-grid {
    display: grid;
    grid-template-columns: 34% 66%;
    gap: 3rem;
    align-items: start;
}

.mkbp-contact-info {
    background: #000;
    color: #fff;
    padding: 2rem;
    height: 100%;
}

.mkbp-contact-info h3,
.mkbp-contact-info p,
.mkbp-contact-info a {
    color: #fff;
}

.mkbp-contact-info h3 {
    letter-spacing: .2em;
    text-transform: uppercase;
}

.mkbp-contact article {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 0;
    padding: 2rem;
    align-self: start;
    margin: 0;
}

.mkbp-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 2.2vw, 30px);
}

.mkbp-form-panel {
    background: var(--mkbp-form-panel-bg, #fff);
    border: 1px solid var(--mkbp-form-panel-border, #d9dde1);
    box-shadow: 0 24px 44px rgba(0, 0, 0, .12);
    padding: clamp(28px, 4vw, 56px);
}

.mkbp-form-panel h3 {
    margin: 0 0 .45rem;
    color: var(--mkbp-form-heading-color, #dfe5e9);
    font-size: clamp(2rem, 3.3vw, 3.5rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .95;
}

.mkbp-form-intro {
    margin: 0 0 clamp(24px, 3vw, 40px);
    color: var(--mkbp-form-text-color, #6f7880);
    font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.mkbp-contact-form input,
.mkbp-contact-form textarea {
    width: 100%;
    background: var(--mkbp-form-field-bg, #101d23);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--mkbp-form-field-text-color, #fff);
    font-size: clamp(1rem, 1.2vw, 1.22rem);
    padding: 1.1rem 1.2rem;
}

.mkbp-contact-form input::placeholder,
.mkbp-contact-form textarea::placeholder {
    color: var(--mkbp-form-placeholder-color, #7d8a93);
}

.mkbp-contact-form textarea,
.mkbp-contact-form .privacy,
.mkbp-contact-form button {
    grid-column: 1 / -1;
}

.mkbp-contact-form .privacy {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    font-size: clamp(.95rem, 1.1vw, 1.1rem);
    color: var(--mkbp-form-text-color, #6f7880);
    line-height: 1.5;
}

.mkbp-contact-form .privacy input {
    width: auto;
    margin-top: .28rem;
}

.mkbp-contact-form .privacy a {
    color: var(--mkbp-form-link-color, #000);
    text-decoration: underline;
}

.mkbp-contact-form button {
    justify-self: stretch;
    background: var(--mkbp-form-button-bg, #000);
    border: 1px solid var(--mkbp-form-button-bg, #000);
    border-radius: 999px;
    color: var(--mkbp-form-button-text-color, #fff);
    font-size: clamp(1rem, 1.2vw, 1.16rem);
    font-weight: 700;
    padding: 1rem 1.4rem;
    cursor: pointer;
}

.mkbp-form-status {
    grid-column: 1 / -1;
    margin: 0 0 .25rem;
    padding: .8rem 1rem;
    border: 1px solid currentColor;
}

.mkbp-form-status-success {
    color: #0f6b38;
}

.mkbp-form-status-error {
    color: #9a1b1b;
}

.mkbp-pattern-contact .mkbp-contact-form {
    align-items: start;
}

.mkbp-legal-links {
    position: absolute;
    left: clamp(1rem, 5vw, 4rem);
    bottom: 1.4rem;
    display: flex;
    gap: .45rem;
    align-items: center;
    font-size: .76rem;
    font-weight: 300;
    letter-spacing: .08em;
    z-index: 4;
}

.mkbp-legal-links a,
.mkbp-legal-links span {
    color: var(--mkbp-legal);
    text-decoration: none;
}

.mkbp-legal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(var(--mkbp-pattern-max), calc(100% - 40px));
    max-width: var(--mkbp-pattern-max);
    margin: clamp(36px, 5vw, 70px) auto 0 !important;
    padding: 1rem 1.2rem;
    background: var(--mkbp-footer-bg, #000);
    color: var(--mkbp-footer-text-color, #fff);
    font-size: .92rem;
}

.mkbp-legal-footer p {
    margin: 0 !important;
    color: var(--mkbp-footer-text-color, #fff);
}

.mkbp-legal-footer nav {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.mkbp-legal-footer a,
.mkbp-legal-footer span {
    color: var(--mkbp-footer-link-color, #fff);
}

.mkbp-legal-footer a {
    text-decoration: underline;
    text-underline-offset: .18em;
}

.mkbp-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: .75s;
}

.mkbp-slide-left {
    opacity: 0;
    transform: translateX(-100vw);
    transition: 1s cubic-bezier(.2, .8, .2, 1);
}

.mkbp-slide-right {
    opacity: 0;
    transform: translateX(100vw);
    transition: 1s cubic-bezier(.2, .8, .2, 1);
}

.mkbp .visible {
    opacity: 1;
    transform: none;
}

.mkbp-editor-shell {
    border: 1px solid #dcdcde;
    background: #fff;
}

.mkbp-editor-preview {
    display: grid;
    grid-template-columns: minmax(180px, 32%) 1fr;
    gap: 24px;
    align-items: stretch;
    min-height: 320px;
    padding: 24px;
    background: #050505;
    color: #fff;
}

.mkbp-editor-preview-image {
    min-height: 260px;
    background-image: var(--mkbp-portrait);
    background-position: center;
    background-size: cover;
    filter: grayscale(1);
    clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.mkbp-editor-preview-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
}

.mkbp-editor-preview-copy h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(2.2rem, 7vw, 6rem);
    line-height: .86;
    text-transform: uppercase;
    letter-spacing: 0;
}

.mkbp-editor-preview-copy p,
.mkbp-editor-preview-copy small {
    color: #d4d8db;
}

.mkbp-editor-preview-copy strong,
.mkbp-editor-kicker {
    color: var(--mkbp-accent);
    text-transform: uppercase;
    letter-spacing: .16em;
}

.mkbp-editor-kicker {
    margin: 0 0 18px;
    font-size: .78rem;
}

.mkbp-page {
    --mkbp-pattern-max: 1180px;
    background: #fff;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: clip;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.mkbp-page,
.mkbp-page * {
    box-sizing: border-box;
}

.mkbp-page .alignfull {
    width: 100%;
    max-width: none;
}

.mkbp-pattern-nav {
    position: sticky;
    top: var(--mkbp-sticky-top, 0);
    z-index: 1000;
    width: 100%;
    padding: 14px clamp(16px, 4vw, 32px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(16px);
}

.is-style-mkbp-sticky-top,
.is-style-mkbp-sticky-glass,
.is-style-mkbp-sticky-sidebar {
    position: sticky !important;
    top: var(--mkbp-sticky-top, 0);
    z-index: 50;
}

.is-style-mkbp-sticky-glass {
    z-index: 1000;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.is-style-mkbp-sticky-sidebar {
    top: var(--mkbp-sticky-sidebar-top, 24px);
    align-self: start;
    z-index: 30;
}

.admin-bar .mkbp-pattern-nav,
.admin-bar .is-style-mkbp-sticky-top,
.admin-bar .is-style-mkbp-sticky-glass {
    --mkbp-sticky-top: 32px;
}

.admin-bar .is-style-mkbp-sticky-sidebar {
    --mkbp-sticky-sidebar-top: 56px;
}

.mkbp-responsive-preview {
    background: #202124;
}

.mkbp-responsive-preview::before {
    content: "Desktop Vorschau";
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100000;
    padding: 8px 12px;
    background: #050505;
    color: #fff;
    border-radius: 999px;
    font: 12px/1.2 Arial, Helvetica, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mkbp-preview-tablet::before {
    content: "Tablet Vorschau";
}

.mkbp-preview-mobile::before {
    content: "Mobil Vorschau";
}

.mkbp-preview-tablet .wp-site-blocks,
.mkbp-preview-mobile .wp-site-blocks {
    min-height: 100vh;
    margin: 0 auto !important;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
    overflow-x: hidden;
}

.mkbp-preview-tablet .wp-site-blocks {
    width: min(768px, 100vw);
}

.mkbp-preview-mobile .wp-site-blocks {
    width: min(390px, 100vw);
}

@media (min-width: 1025px) {
    .is-style-mkbp-hide-desktop {
        display: none !important;
    }
}

@media (min-width: 782px) and (max-width: 1024px) {
    .is-style-mkbp-hide-tablet {
        display: none !important;
    }

    .is-style-mkbp-tablet-stack {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 781px) {
    .is-style-mkbp-hide-mobile {
        display: none !important;
    }

    .is-style-mkbp-mobile-stack {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .is-style-mkbp-mobile-centered {
        text-align: center;
        justify-content: center !important;
        align-items: center !important;
    }
}

.mkbp-preview-tablet .is-style-mkbp-hide-tablet,
.mkbp-preview-mobile .is-style-mkbp-hide-mobile {
    display: none !important;
}

.mkbp-preview-tablet .is-style-mkbp-tablet-stack,
.mkbp-preview-mobile .is-style-mkbp-mobile-stack {
    display: grid !important;
    grid-template-columns: 1fr !important;
}

.mkbp-preview-mobile .is-style-mkbp-mobile-centered {
    text-align: center;
    justify-content: center !important;
    align-items: center !important;
}

.mkbp-pattern-brand {
    margin: 0;
    color: #aeb6bd;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.mkbp-pattern-menu .wp-block-button__link {
    border-radius: 999px;
    padding: .52rem .82rem;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mkbp-pattern-hero {
    min-height: 92vh;
    --mkbp-hero-img-shift-x: 0px;
    --mkbp-hero-img-shift-y: 0px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
}

.mkbp-pattern-hero::before,
.mkbp-pattern-hero::after,
.mkbp-pattern-section::before {
    content: "";
    position: absolute;
    pointer-events: none;
    background: rgba(0, 0, 0, .045);
    z-index: 1;
}

.mkbp-pattern-hero::before {
    left: -8vw;
    bottom: -2vh;
    width: 36vw;
    height: 60vh;
    clip-path: polygon(0 0, 70% 100%, 0 100%);
}

.mkbp-pattern-hero::after {
    right: -8vw;
    bottom: -6vh;
    width: 40vw;
    height: 72vh;
    clip-path: polygon(62% 0, 100% 0, 72% 100%, 0 100%);
}

.mkbp-hero-mini-image {
    position: absolute;
    left: clamp(24px, 8vw, 120px);
    top: clamp(24px, 5vw, 72px);
    z-index: 7;
    width: 56px;
    height: 56px;
    margin: 0 !important;
    border: 3px solid #000;
    border-radius: 999px;
    overflow: hidden;
}

.mkbp-hero-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.mkbp-hero-portrait {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 4;
    width: min(700px, 82vw);
    height: auto;
    margin: 0 !important;
    transform: translateX(-50%);
    clip-path: none;
    overflow: visible;
    text-align: center;
}

.mkbp-hero-portrait img,
.mkbp-pattern-hero .wp-block-cover__image-background {
    width: min(700px, 82vw) !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain;
    object-position: center bottom;
    margin-top: var(--mkbp-hero-img-shift-y);
    transform: translateX(var(--mkbp-hero-img-shift-x));
    filter: grayscale(1) contrast(1.06);
}

.mkbp-pattern-hero .wp-block-cover__image-background {
    inset: auto auto 0 50% !important;
    transform: translateX(-50%);
    clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.mkbp-pattern-hero .wp-block-cover__inner-container {
    position: relative;
    z-index: 3;
}

.mkbp-hero-first,
.mkbp-hero-last,
.mkbp-pattern-hero-title {
    position: absolute;
    left: 50%;
    width: min(1180px, 92vw);
    margin: 0 !important;
    color: rgba(223, 229, 233, .92);
    font-size: clamp(4.6rem, 12vw, 12rem) !important;
    font-weight: 950;
    letter-spacing: 0;
    line-height: .78;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.mkbp-hero-first {
    top: 29%;
    z-index: 2;
}

.mkbp-hero-last {
    top: 51%;
    z-index: 5;
}

.mkbp-pattern-hero-title {
    z-index: 5;
}

.mkbp-pattern-subline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(42px, 7vh, 76px);
    z-index: 6;
    width: fit-content;
    max-width: none;
    margin: 0 auto !important;
    padding: 2mm clamp(18px, 3.6vw, 16mm);
    background: #fff;
    border-radius: 6px;
    color: #aeb6bd;
    letter-spacing: .08em;
    text-align: center;
    transform: none;
}

.mkbp-pattern-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 0 !important;
}

.mkbp-pattern-section > * {
    position: relative;
    z-index: 2;
}

.mkbp-pattern-dark {
    background: #050505;
    color: #fff;
}

.mkbp-pattern-dark p,
.mkbp-pattern-dark li {
    color: #d4d8db;
}

.mkbp-pattern-light {
    background: #fff;
    color: #050505;
}

.mkbp-pattern-contact {
    background: #fff;
    color: #050505;
}

.mkbp-pattern-loud {
    color: #fff;
    font-size: clamp(2rem, 4.3vw, 4.4rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .94;
    text-transform: uppercase;
}

.mkbp-pattern-title {
    position: relative;
    font-size: clamp(2.4rem, 5vw, 5.4rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .88;
    text-transform: uppercase;
    margin-bottom: clamp(32px, 5vw, 64px);
}

.mkbp-has-outline {
    position: relative;
    isolation: isolate;
}

.mkbp-has-outline::before,
.mkbp-pattern-title.mkbp-has-outline::before {
    content: attr(data-mkbp-outline);
    position: absolute;
    left: var(--mkbp-outline-x, 0);
    top: var(--mkbp-outline-y, -60%);
    z-index: -1;
    color: transparent;
    opacity: var(--mkbp-outline-opacity, .12);
    -webkit-text-stroke: 1.3px var(--mkbp-outline-color, #000);
    font-size: var(--mkbp-outline-size, 140px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .9;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.mkbp-pattern-dark .mkbp-has-outline::before,
.mkbp-pattern-dark .mkbp-pattern-title.mkbp-has-outline::before {
    -webkit-text-stroke-color: var(--mkbp-outline-color, #fff);
}

.editor-styles-wrapper .wp-block.mkbp-has-outline {
    position: relative;
    isolation: isolate;
}

.editor-styles-wrapper .wp-block.mkbp-has-outline::before {
    content: attr(data-mkbp-outline);
    position: absolute;
    left: var(--mkbp-outline-x, 0);
    top: var(--mkbp-outline-y, -60%);
    z-index: -1;
    color: transparent;
    opacity: var(--mkbp-outline-opacity, .12);
    -webkit-text-stroke: 1.3px var(--mkbp-outline-color, #000);
    font-size: var(--mkbp-outline-size, 140px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .9;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.mkbp-pattern-title:not(.mkbp-has-outline)::before {
    content: "";
    position: absolute;
    left: 0;
    top: -.58em;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 1.3px rgba(0, 0, 0, .11);
    font-size: clamp(4rem, 11vw, 10rem);
    font-weight: 950;
    line-height: .9;
    text-transform: uppercase;
    white-space: nowrap;
}

.mkbp-title-career:not(.mkbp-has-outline)::before {
    content: "Career";
}

#referenzen .mkbp-pattern-title:not(.mkbp-has-outline)::before {
    content: "Portfolio";
    -webkit-text-stroke-color: rgba(255, 255, 255, .14);
}

#kontakt .mkbp-pattern-title:not(.mkbp-has-outline)::before {
    content: "Kontakt";
}

.mkbp-pattern-section > .wp-block-columns,
.mkbp-pattern-section > .wp-block-group,
.mkbp-pattern-section > .wp-block-heading,
.mkbp-pattern-section > .wp-block-buttons,
.mkbp-pattern-section > p {
    max-width: var(--mkbp-pattern-max);
    margin-left: auto !important;
    margin-right: auto !important;
    width: min(var(--mkbp-pattern-max), calc(100% - 40px));
}

.mkbp-pattern-dark,
.mkbp-pattern-light,
.mkbp-pattern-contact {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mkbp-pattern-dark > .wp-block-columns.are-vertically-aligned-top {
    grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 88px);
}

.mkbp-pattern-timeline {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: stretch !important;
    position: relative;
}

.mkbp-pattern-project {
    grid-template-columns: minmax(320px, 52%) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 88px);
}

.mkbp-pattern-section > .wp-block-columns {
    display: grid !important;
}

.mkbp-pattern-section > .wp-block-columns > .wp-block-column {
    flex-basis: auto !important;
    width: auto !important;
}

.mkbp-pattern-sidebar,
.mkbp-pattern-contactbox {
    background: var(--mkbp-contact-info-bg, #000);
    color: var(--mkbp-contact-info-text-color, #fff);
    padding: clamp(24px, 4vw, 36px);
}

.mkbp-pattern-contactbox {
    min-height: 0;
    padding: clamp(36px, 4.5vw, 64px);
}

.mkbp-pattern-contactbox p {
    color: var(--mkbp-contact-info-text-color, #fff);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.45;
    margin-bottom: clamp(24px, 3vw, 42px);
}

.mkbp-pattern-contactbox strong {
    display: inline-block;
    margin-bottom: .35rem;
    color: var(--mkbp-contact-info-text-color, #fff);
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
}

.mkbp-journey-scroll {
    min-height: calc(var(--mkbp-journey-steps, 6) * 100vh);
    padding: 0 !important;
    overflow: visible;
    background: #000;
    color: #fff;
}

.mkbp-journey-scroll::before,
.mkbp-journey-scroll::after {
    content: "";
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    margin-bottom: -100vh;
    pointer-events: none;
    z-index: 0;
}

.mkbp-journey-scroll::before {
    float: left;
    width: 30vw;
    background: rgba(255, 255, 255, .055);
    clip-path: polygon(0 0, 72% 100%, 0 100%);
}

.mkbp-journey-scroll::after {
    float: right;
    width: 34vw;
    background: rgba(255, 255, 255, .05);
    clip-path: polygon(54% 0, 100% 0, 74% 100%, 0 100%);
}

.mkbp-journey-sticky {
    position: sticky;
    top: var(--mkbp-sticky-top, 0);
    z-index: 2;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-items: center;
    min-height: 100vh;
    padding: clamp(34px, 5vh, 68px) 0 clamp(28px, 5vh, 60px);
}

.mkbp-journey-scroll .mkbp-pattern-title {
    margin-bottom: clamp(10px, 2vh, 22px);
    color: #fff;
}

.mkbp-journey-intro {
    max-width: 720px !important;
    margin: 0 auto clamp(18px, 3vh, 36px) !important;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1rem, 1.45vw, 1.35rem);
    line-height: 1.45;
    text-align: center;
}

.mkbp-journey-stage {
    position: relative;
    width: min(100%, 1120px) !important;
    min-height: min(52vh, 560px);
    margin: 0 auto !important;
}

.mkbp-journey-step {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    justify-items: center;
    width: min(460px, 42vw) !important;
    margin: 0 !important;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.72);
    transition: opacity .5s ease, transform .62s ease, filter .62s ease;
    pointer-events: none;
    filter: grayscale(1) brightness(.72);
}

.mkbp-journey-step.mkbp-journey-active {
    z-index: 4;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    filter: grayscale(1) brightness(1);
}

.mkbp-journey-step.mkbp-journey-prev {
    z-index: 2;
    opacity: .34;
    transform: translate(calc(-50% - min(33vw, 360px)), -45%) scale(.72);
}

.mkbp-journey-step.mkbp-journey-next {
    z-index: 2;
    opacity: .34;
    transform: translate(calc(-50% + min(33vw, 360px)), -45%) scale(.72);
}

.mkbp-journey-step.mkbp-journey-far {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.62);
}

.mkbp-journey-image {
    width: min(100%, clamp(230px, 30vw, 390px)) !important;
    margin: 0 auto clamp(18px, 2.4vh, 30px) !important;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.mkbp-journey-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.mkbp-journey-step h3 {
    margin: 0 !important;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 3.2rem);
    font-weight: 850;
    letter-spacing: .14em;
    line-height: .95;
    text-transform: uppercase;
}

.mkbp-journey-subtitle {
    margin: .45rem 0 0 !important;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.mkbp-journey-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: min(680px, 86vw) !important;
    margin: clamp(12px, 3vh, 28px) auto 0 !important;
}

.mkbp-journey-dot {
    position: relative;
    flex: 1 1 0;
    height: 28px;
    border: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
}

.mkbp-journey-dot::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, .35);
    transform: translateY(-50%);
}

.mkbp-journey-dot:first-child::before {
    left: 50%;
}

.mkbp-journey-dot:last-child::before {
    right: 50%;
}

.mkbp-journey-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
    transform: translate(-50%, -50%) scale(.74);
    transition: background .28s ease, transform .28s ease;
}

.mkbp-journey-dot.mkbp-journey-dot-active::after {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.2);
}

.mkbp-cv-scroll-section {
    min-height: calc(var(--mkbp-cv-stations, 2) * 100vh);
    padding: 0 !important;
    overflow: visible;
    background: #fff;
}

.mkbp-cv-scroll-section::before,
.mkbp-cv-scroll-section::after {
    content: "";
    position: sticky;
    display: block;
    pointer-events: none;
    z-index: 0;
}

.mkbp-cv-scroll-section::before {
    top: 0;
    float: right;
    width: 34vw;
    height: 100vh;
    margin-bottom: -100vh;
    background: rgba(0, 0, 0, .035);
    clip-path: polygon(58% 0, 100% 0, 68% 100%, 0 100%);
}

.mkbp-cv-scroll-section::after {
    top: 0;
    float: left;
    width: 24vw;
    height: 100vh;
    margin-bottom: -100vh;
    background: rgba(0, 0, 0, .045);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.mkbp-cv-scroll-section > .mkbp-pattern-title {
    position: relative;
    top: auto;
    z-index: 6;
    padding-top: clamp(42px, 7vh, 86px);
    margin-bottom: clamp(24px, 4vh, 48px);
    pointer-events: auto;
}

.mkbp-cv-scroll-section .mkbp-pattern-timeline {
    position: sticky;
    top: var(--mkbp-sticky-top, 0);
    min-height: 100vh;
    z-index: 3;
    margin-top: 0 !important;
    align-items: stretch !important;
    background: transparent;
}

.mkbp-cv-scroll-section .mkbp-pattern-sidebar {
    position: sticky;
    top: var(--mkbp-sticky-top, 0);
    min-height: 100vh;
    height: 100vh;
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 7;
    overflow: hidden;
    margin: 0 !important;
}

.mkbp-scroll-stations {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    padding-left: clamp(54px, 7vw, 96px);
    overflow: hidden;
    z-index: 4;
}

.mkbp-scroll-stations::before {
    content: "";
    position: absolute;
    top: 8vh;
    bottom: 8vh;
    left: clamp(18px, 2.4vw, 34px);
    width: 2px;
    background: #000;
    z-index: 1;
}

.mkbp-pattern-sidebar p,
.mkbp-pattern-sidebar li,
.mkbp-pattern-contactbox p {
    color: inherit;
}

.mkbp-pattern-station {
    position: absolute;
    inset: 0 0 0 clamp(54px, 7vw, 96px);
    min-height: auto;
    padding: clamp(90px, 14vh, 150px) clamp(20px, 5vw, 72px) clamp(70px, 10vh, 120px) 0;
    display: grid;
    align-content: center;
    justify-items: start;
    text-align: left;
    background: transparent;
    z-index: 2;
    opacity: 0;
    transform: translateY(56px);
    transition: opacity .58s ease, transform .58s ease;
    pointer-events: none;
}

.mkbp-pattern-station > * {
    width: 100%;
    max-width: 760px;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
}

.mkbp-pattern-station ul,
.mkbp-pattern-station ol {
    padding-left: 1.25em;
    text-align: left;
}

.mkbp-pattern-station li {
    text-align: left;
}

.mkbp-pattern-station::before {
    content: "";
    position: absolute;
    left: calc((clamp(54px, 7vw, 96px) * -1) + clamp(18px, 2.4vw, 34px) - 6px);
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #000;
    transform: translateY(-50%);
    z-index: 3;
}

.mkbp-pattern-station.mkbp-cv-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.mkbp-pattern-station.mkbp-cv-past {
    opacity: 0;
    transform: translateY(-56px);
}

.mkbp-scroll-stations .mkbp-pattern-station,
.mkbp-scroll-stations .mkbp-pattern-station.mkbp-in-view,
.mkbp-scroll-stations .mkbp-pattern-station.visible,
.mkbp-scroll-stations .mkbp-pattern-station.is-style-mkbp-fade-right.mkbp-in-view {
    opacity: 0 !important;
    transform: translateY(56px) !important;
    pointer-events: none;
}

.mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-active,
.mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-active.mkbp-in-view,
.mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-active.visible,
.mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-active.is-style-mkbp-fade-right.mkbp-in-view {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
}

.mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-past,
.mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-past.mkbp-in-view,
.mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-past.visible {
    opacity: 0 !important;
    transform: translateY(-56px) !important;
}

.mkbp-pattern-date,
.mkbp-pattern-label {
    color: #aeb6bd;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mkbp-pattern-project {
    align-items: center !important;
    min-height: 440px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mkbp-pattern-image img {
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .65)) grayscale(.05);
}

.is-style-mkbp-fade-up,
.is-style-mkbp-fade-down,
.is-style-mkbp-fade-left,
.is-style-mkbp-fade-right,
.is-style-mkbp-zoom-in,
.is-style-mkbp-blur-in,
.is-style-mkbp-clip-reveal,
.is-style-mkbp-rotate-in,
.is-style-mkbp-flip-up,
.is-style-mkbp-stagger-children > * {
    opacity: 0;
    transition-duration: var(--mkbp-anim-duration, .78s);
    transition-property: opacity, transform, filter, clip-path;
    transition-timing-function: cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--mkbp-anim-delay, 0ms);
    will-change: opacity, transform, filter, clip-path;
}

.is-style-mkbp-fade-up,
.is-style-mkbp-stagger-children > * {
    transform: translateY(46px);
}

.is-style-mkbp-fade-down {
    transform: translateY(-46px);
}

.is-style-mkbp-fade-left {
    transform: translateX(-72px);
}

.is-style-mkbp-fade-right {
    transform: translateX(72px);
}

.is-style-mkbp-zoom-in {
    transform: scale(.9);
}

.is-style-mkbp-blur-in {
    filter: blur(18px);
    transform: translateY(18px);
}

.is-style-mkbp-clip-reveal {
    clip-path: inset(0 100% 0 0);
}

.is-style-mkbp-rotate-in {
    transform: rotate(-7deg) translateY(32px);
    transform-origin: left bottom;
}

.is-style-mkbp-flip-up {
    transform: perspective(900px) rotateX(18deg) translateY(34px);
    transform-origin: center bottom;
}

.is-style-mkbp-fade-up.mkbp-in-view,
.is-style-mkbp-fade-down.mkbp-in-view,
.is-style-mkbp-fade-left.mkbp-in-view,
.is-style-mkbp-fade-right.mkbp-in-view,
.is-style-mkbp-zoom-in.mkbp-in-view,
.is-style-mkbp-blur-in.mkbp-in-view,
.is-style-mkbp-rotate-in.mkbp-in-view,
.is-style-mkbp-flip-up.mkbp-in-view,
.is-style-mkbp-stagger-children.mkbp-in-view > * {
    opacity: 1;
    filter: none;
    transform: none;
}

.is-style-mkbp-clip-reveal.mkbp-in-view {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.mkbp-pattern-hero .mkbp-hero-portrait,
.mkbp-pattern-hero .mkbp-hero-portrait.visible {
    left: 50% !important;
    bottom: 0 !important;
    transform: translateX(-50%) !important;
    clip-path: none !important;
    overflow: visible !important;
}

.mkbp-pattern-hero .mkbp-hero-portrait.is-style-mkbp-zoom-in {
    opacity: 0;
    transform: translateX(-50%) scale(.92) !important;
}

.mkbp-pattern-hero .mkbp-hero-portrait.is-style-mkbp-zoom-in.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-portrait.is-style-mkbp-zoom-in.visible {
    opacity: 1 !important;
    filter: none !important;
    transform: translateX(-50%) scale(1) !important;
}

.mkbp-pattern-hero .mkbp-hero-first,
.mkbp-pattern-hero .mkbp-hero-last {
    left: 50% !important;
    text-align: center;
    transform: translateX(-50%) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-fade-up,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-fade-up {
    transform: translateX(-50%) translateY(46px) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-fade-down,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-fade-down {
    transform: translateX(-50%) translateY(-46px) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-fade-left,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-fade-left {
    transform: translateX(calc(-50% - 72px)) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-fade-right,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-fade-right {
    transform: translateX(calc(-50% + 72px)) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-zoom-in,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-zoom-in {
    transform: translateX(-50%) scale(.9) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-blur-in,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-blur-in {
    filter: blur(18px);
    transform: translateX(-50%) translateY(18px) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-rotate-in,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-rotate-in {
    transform: translateX(-50%) rotate(-7deg) translateY(32px) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-flip-up,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-flip-up {
    transform: translateX(-50%) perspective(900px) rotateX(18deg) translateY(34px) !important;
}

.mkbp-pattern-hero .mkbp-hero-first.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-first.visible,
.mkbp-pattern-hero .mkbp-hero-last.visible,
.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-fade-up.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-fade-up.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-fade-down.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-fade-down.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-fade-left.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-fade-left.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-fade-right.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-fade-right.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-zoom-in.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-zoom-in.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-blur-in.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-blur-in.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-rotate-in.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-rotate-in.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-first.is-style-mkbp-flip-up.mkbp-in-view,
.mkbp-pattern-hero .mkbp-hero-last.is-style-mkbp-flip-up.mkbp-in-view {
    left: 50% !important;
    opacity: 1 !important;
    filter: none !important;
    text-align: center;
    transform: translateX(-50%) !important;
}

.mkbp-pattern-hero .mkbp-pattern-subline,
.mkbp-pattern-hero .mkbp-pattern-subline.is-style-mkbp-fade-up.mkbp-in-view {
    left: 50% !important;
    right: auto !important;
    width: auto !important;
    max-width: calc(100vw - 40px) !important;
    display: inline-block !important;
    background: #fff !important;
    padding: 2mm clamp(18px, 3.6vw, 16mm) !important;
    border-radius: 6px !important;
    text-align: center;
    transform: translateX(-50%) !important;
}

.is-style-mkbp-stagger-children > :nth-child(1) {
    transition-delay: calc(var(--mkbp-anim-delay, 0ms) + 0ms);
}

.is-style-mkbp-stagger-children > :nth-child(2) {
    transition-delay: calc(var(--mkbp-anim-delay, 0ms) + 90ms);
}

.is-style-mkbp-stagger-children > :nth-child(3) {
    transition-delay: calc(var(--mkbp-anim-delay, 0ms) + 180ms);
}

.is-style-mkbp-stagger-children > :nth-child(4) {
    transition-delay: calc(var(--mkbp-anim-delay, 0ms) + 270ms);
}

.is-style-mkbp-stagger-children > :nth-child(5) {
    transition-delay: calc(var(--mkbp-anim-delay, 0ms) + 360ms);
}

.is-style-mkbp-stagger-children > :nth-child(n+6) {
    transition-delay: calc(var(--mkbp-anim-delay, 0ms) + 450ms);
}

.is-style-mkbp-float {
    animation: mkbpFloatSoft 5.6s ease-in-out infinite;
}

.is-style-mkbp-pulse {
    animation: mkbpPulseSoft 2.8s ease-in-out infinite;
}

.editor-styles-wrapper .is-style-mkbp-fade-up,
.editor-styles-wrapper .is-style-mkbp-fade-down,
.editor-styles-wrapper .is-style-mkbp-fade-left,
.editor-styles-wrapper .is-style-mkbp-fade-right,
.editor-styles-wrapper .is-style-mkbp-zoom-in,
.editor-styles-wrapper .is-style-mkbp-blur-in,
.editor-styles-wrapper .is-style-mkbp-clip-reveal,
.editor-styles-wrapper .is-style-mkbp-rotate-in,
.editor-styles-wrapper .is-style-mkbp-flip-up,
.editor-styles-wrapper .is-style-mkbp-stagger-children > * {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
}

.mkbp-custom-spacing {
    margin: var(--mkbp-space-mt, 0) var(--mkbp-space-mr, 0) var(--mkbp-space-mb, 0) var(--mkbp-space-ml, 0) !important;
    padding: var(--mkbp-space-pt, 0) var(--mkbp-space-pr, 0) var(--mkbp-space-pb, 0) var(--mkbp-space-pl, 0) !important;
    transform: translate(var(--mkbp-space-shift-x, 0), var(--mkbp-space-shift-y, 0)) scale(var(--mkbp-space-scale, 1)) !important;
    transform-origin: center;
}

.editor-styles-wrapper .wp-block.mkbp-custom-spacing {
    margin: var(--mkbp-space-mt, 0) var(--mkbp-space-mr, 0) var(--mkbp-space-mb, 0) var(--mkbp-space-ml, 0) !important;
    padding: var(--mkbp-space-pt, 0) var(--mkbp-space-pr, 0) var(--mkbp-space-pb, 0) var(--mkbp-space-pl, 0) !important;
    transform: translate(var(--mkbp-space-shift-x, 0), var(--mkbp-space-shift-y, 0)) scale(var(--mkbp-space-scale, 1)) !important;
    transform-origin: center;
}

.editor-styles-wrapper .mkbp-pattern-hero .mkbp-hero-portrait,
.editor-styles-wrapper .mkbp-pattern-hero .mkbp-hero-portrait.is-style-mkbp-zoom-in,
.editor-styles-wrapper .mkbp-pattern-hero .mkbp-hero-portrait.is-style-mkbp-zoom-in.mkbp-in-view,
.editor-styles-wrapper .mkbp-pattern-hero .mkbp-hero-portrait.is-style-mkbp-zoom-in.visible {
    display: block !important;
    left: 50% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) scale(1) !important;
}

.editor-styles-wrapper .mkbp-pattern-hero .mkbp-hero-portrait img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.editor-styles-wrapper .mkbp-pattern-hero .mkbp-hero-portrait.is-selected,
.editor-styles-wrapper .mkbp-pattern-hero .mkbp-hero-portrait:focus-within {
    outline: 2px solid #2271b1;
    outline-offset: 6px;
}

.editor-styles-wrapper .mkbp-cv-scroll-section {
    min-height: auto !important;
    padding-top: 56px !important;
    padding-bottom: 56px !important;
    overflow: visible !important;
}

.editor-styles-wrapper .mkbp-cv-scroll-section::before,
.editor-styles-wrapper .mkbp-cv-scroll-section::after {
    position: absolute !important;
    top: 0 !important;
    height: 100% !important;
    margin-bottom: 0 !important;
}

.editor-styles-wrapper .mkbp-cv-scroll-section > .mkbp-pattern-title {
    padding-top: 0 !important;
    margin-bottom: 32px !important;
}

.editor-styles-wrapper .mkbp-cv-scroll-section .mkbp-pattern-timeline {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: minmax(240px, 32%) minmax(0, 1fr);
    gap: 32px;
    align-items: start !important;
}

.editor-styles-wrapper .mkbp-cv-scroll-section .mkbp-pattern-sidebar {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    height: auto !important;
    justify-content: flex-start !important;
    align-self: start !important;
    overflow: visible !important;
    outline: 1px dashed rgba(255, 255, 255, .3);
    outline-offset: -12px;
}

.editor-styles-wrapper .mkbp-scroll-stations {
    position: relative !important;
    min-height: auto !important;
    height: auto !important;
    padding: 0 0 0 56px !important;
    overflow: visible !important;
}

.editor-styles-wrapper .mkbp-scroll-stations::before {
    top: 12px !important;
    bottom: 12px !important;
    left: 22px !important;
}

.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station,
.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station.mkbp-in-view,
.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station.visible,
.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station.is-style-mkbp-fade-right,
.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station.is-style-mkbp-fade-right.mkbp-in-view,
.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-active,
.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-past {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    min-height: auto !important;
    margin: 0 0 28px !important;
    padding: 28px 28px 28px 0 !important;
    background: rgba(255, 255, 255, .78) !important;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
}

.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station::before {
    left: -40px !important;
    top: 34px !important;
    transform: none !important;
}

.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station::after {
    content: "Scroll-Station";
    position: absolute;
    right: 0;
    top: 0;
    color: #8b949b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.editor-styles-wrapper .mkbp-scroll-stations .mkbp-pattern-station > * {
    opacity: 1 !important;
    transform: none !important;
}

.editor-styles-wrapper .mkbp-journey-scroll {
    min-height: auto !important;
    padding: 56px 0 !important;
    overflow: visible !important;
    background: #000 !important;
}

.editor-styles-wrapper .mkbp-journey-scroll::before,
.editor-styles-wrapper .mkbp-journey-scroll::after {
    position: absolute !important;
    top: 0 !important;
    height: 100% !important;
    margin-bottom: 0 !important;
}

.editor-styles-wrapper .mkbp-journey-sticky {
    position: relative !important;
    top: auto !important;
    display: block !important;
    min-height: auto !important;
    padding: 0 !important;
}

.editor-styles-wrapper .mkbp-journey-stage {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    min-height: auto !important;
    width: min(1120px, calc(100% - 40px)) !important;
}

.editor-styles-wrapper .mkbp-journey-step,
.editor-styles-wrapper .mkbp-journey-step.mkbp-journey-active,
.editor-styles-wrapper .mkbp-journey-step.mkbp-journey-prev,
.editor-styles-wrapper .mkbp-journey-step.mkbp-journey-next,
.editor-styles-wrapper .mkbp-journey-step.mkbp-journey-far {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 18px !important;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    pointer-events: auto !important;
}

.editor-styles-wrapper .mkbp-journey-image {
    width: 100% !important;
}

.editor-styles-wrapper .mkbp-journey-dots {
    display: none !important;
}

.mkbp-delay-1 {
    --mkbp-anim-delay: 120ms;
}

.mkbp-delay-2 {
    --mkbp-anim-delay: 240ms;
}

.mkbp-delay-3 {
    --mkbp-anim-delay: 360ms;
}

.mkbp-delay-4 {
    --mkbp-anim-delay: 520ms;
}

.mkbp-anim-fast {
    --mkbp-anim-duration: .48s;
}

.mkbp-anim-slow {
    --mkbp-anim-duration: 1.12s;
}

.mkbp-anim-soft {
    --mkbp-anim-duration: 1.4s;
}

@keyframes mkbpFloatSoft {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes mkbpPulseSoft {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.025);
        filter: brightness(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .is-style-mkbp-fade-up,
    .is-style-mkbp-fade-down,
    .is-style-mkbp-fade-left,
    .is-style-mkbp-fade-right,
    .is-style-mkbp-zoom-in,
    .is-style-mkbp-blur-in,
    .is-style-mkbp-clip-reveal,
    .is-style-mkbp-rotate-in,
    .is-style-mkbp-flip-up,
    .is-style-mkbp-stagger-children > *,
    .is-style-mkbp-float,
    .is-style-mkbp-pulse {
        animation: none !important;
        clip-path: none !important;
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 930px) {
    .mkbp-custom-spacing {
        margin-top: var(--mkbp-space-tablet-mt, var(--mkbp-space-mt, 0)) !important;
        margin-right: var(--mkbp-space-tablet-mr, var(--mkbp-space-mr, 0)) !important;
        margin-bottom: var(--mkbp-space-tablet-mb, var(--mkbp-space-mb, 0)) !important;
        margin-left: var(--mkbp-space-tablet-ml, var(--mkbp-space-ml, 0)) !important;
        padding-top: var(--mkbp-space-tablet-pt, var(--mkbp-space-pt, 0)) !important;
        padding-right: var(--mkbp-space-tablet-pr, var(--mkbp-space-pr, 0)) !important;
        padding-bottom: var(--mkbp-space-tablet-pb, var(--mkbp-space-pb, 0)) !important;
        padding-left: var(--mkbp-space-tablet-pl, var(--mkbp-space-pl, 0)) !important;
        transform: translate(var(--mkbp-space-tablet-shift-x, var(--mkbp-space-shift-x, 0)), var(--mkbp-space-tablet-shift-y, var(--mkbp-space-shift-y, 0))) scale(var(--mkbp-space-tablet-scale, var(--mkbp-space-scale, 1))) !important;
    }

    .mkbp-nav-inner {
        padding: .8rem 1rem;
    }

    .mkbp-nav ul {
        gap: .75rem;
        overflow: auto;
    }

    .mkbp-nav ul li:nth-child(n+4):not(:last-child) {
        display: none;
    }

    .mkbp-hero-stage {
        height: min(560px, 72vh);
    }

    .mkbp-hero-name h1 {
        font-size: clamp(3.8rem, 17vw, 7rem);
    }

    .mkbp-hero-person {
        height: min(430px, 58vh);
        width: min(310px, 66vw);
    }

    .mkbp-hero-mini {
        left: 1rem;
        top: 5rem;
    }

    .mkbp-about,
    .mkbp-project-row,
    .mkbp-project-row.reverse,
    .mkbp-contact-grid {
        grid-template-columns: 1fr;
    }

    .mkbp-project-row.reverse .mkbp-mockup {
        order: 0;
    }

    .mkbp-cv-story {
        grid-template-columns: 1fr;
    }

    .mkbp-cv-side {
        position: relative;
        top: auto;
        height: auto;
        overflow: visible;
    }

    .mkbp-cv-line {
        left: 31.25px;
        top: 4.8rem;
        bottom: 4rem;
    }

    .mkbp-cv-station {
        position: relative;
        grid-template-columns: 1fr;
        min-height: 100vh;
        height: auto;
        padding: 5rem 1.3rem 4rem 4.4rem;
        align-items: start;
    }

    .mkbp-cv-marker {
        position: absolute;
        left: 22px;
        top: 5.15rem;
        width: 20px;
    }

    .mkbp-cv-date {
        font-weight: 700;
        margin-bottom: .7rem;
    }

    .mkbp-cv-content h3 {
        font-size: 1.35rem;
    }

    .mkbp-cv-content li {
        font-size: .92rem;
    }

    .mkbp-cv-downloads {
        position: static;
        padding: 1rem 1.3rem 1.5rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .mkbp-mockup {
        min-height: 300px;
    }

    .mkbp-project-row {
        gap: 1rem;
        min-height: auto;
    }

    .mkbp-headline .ghost {
        white-space: normal;
    }

    .mkbp-contact-form {
        grid-template-columns: 1fr;
    }

    .mkbp-form-panel {
        padding: 24px;
    }

    .mkbp-legal-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .mkbp-editor-preview {
        grid-template-columns: 1fr;
    }

    .mkbp-pattern-nav {
        position: sticky;
        top: var(--mkbp-sticky-top, 0);
    }

    .mkbp-pattern-hero .wp-block-cover__image-background {
        width: min(560px, 78vw) !important;
        height: auto !important;
    }

    .mkbp-hero-portrait,
    .mkbp-hero-portrait img {
        width: min(560px, 78vw) !important;
        height: auto !important;
    }

    .mkbp-pattern-hero {
        --mkbp-hero-img-shift-x: 0px;
        --mkbp-hero-img-shift-y: 0px;
    }

    .mkbp-hero-first,
    .mkbp-hero-last,
    .mkbp-pattern-hero-title {
        font-size: clamp(3.2rem, 14vw, 6.2rem) !important;
    }

    .mkbp-hero-first {
        top: 16%;
    }

    .mkbp-hero-last {
        top: 36%;
    }

    .mkbp-pattern-dark > .wp-block-columns.are-vertically-aligned-top,
    .mkbp-pattern-timeline,
    .mkbp-pattern-project,
    .mkbp-pattern-section > .wp-block-columns {
        grid-template-columns: 1fr;
    }

    .mkbp-journey-sticky {
        padding: clamp(34px, 5vh, 52px) 0 clamp(28px, 4vh, 46px);
    }

    .mkbp-journey-stage {
        min-height: min(50vh, 520px);
    }

    .mkbp-journey-step {
        width: min(420px, 64vw) !important;
    }

    .mkbp-journey-step.mkbp-journey-prev {
        opacity: .22;
        transform: translate(calc(-50% - min(44vw, 280px)), -45%) scale(.66);
    }

    .mkbp-journey-step.mkbp-journey-next {
        opacity: .22;
        transform: translate(calc(-50% + min(44vw, 280px)), -45%) scale(.66);
    }

    .mkbp-journey-image {
        width: min(100%, clamp(220px, 48vw, 340px)) !important;
    }

    .is-style-mkbp-sticky-sidebar {
        position: static !important;
    }

    .mkbp-cv-scroll-section .mkbp-pattern-sidebar {
        position: relative;
        min-height: auto;
        height: auto;
    }

    .mkbp-cv-scroll-section,
    .mkbp-cv-scroll-section .mkbp-pattern-timeline {
        min-height: auto;
    }

    .mkbp-cv-scroll-section .mkbp-pattern-timeline {
        position: relative;
        top: auto;
    }

    .mkbp-scroll-stations {
        min-height: auto;
        height: auto;
        padding-left: 56px;
        overflow: visible;
    }

    .mkbp-pattern-station {
        position: relative;
        inset: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        min-height: auto;
        padding: 56px 0;
    }

    .mkbp-pattern-station.mkbp-cv-past {
        opacity: 1;
        transform: none;
    }

    .mkbp-scroll-stations .mkbp-pattern-station,
    .mkbp-scroll-stations .mkbp-pattern-station.mkbp-in-view,
    .mkbp-scroll-stations .mkbp-pattern-station.visible,
    .mkbp-scroll-stations .mkbp-pattern-station.is-style-mkbp-fade-right.mkbp-in-view,
    .mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-active,
    .mkbp-scroll-stations .mkbp-pattern-station.mkbp-cv-past {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }
}

@media (max-width: 520px) {
    .mkbp-custom-spacing {
        margin-top: var(--mkbp-space-mobile-mt, var(--mkbp-space-tablet-mt, var(--mkbp-space-mt, 0))) !important;
        margin-right: var(--mkbp-space-mobile-mr, var(--mkbp-space-tablet-mr, var(--mkbp-space-mr, 0))) !important;
        margin-bottom: var(--mkbp-space-mobile-mb, var(--mkbp-space-tablet-mb, var(--mkbp-space-mb, 0))) !important;
        margin-left: var(--mkbp-space-mobile-ml, var(--mkbp-space-tablet-ml, var(--mkbp-space-ml, 0))) !important;
        padding-top: var(--mkbp-space-mobile-pt, var(--mkbp-space-tablet-pt, var(--mkbp-space-pt, 0))) !important;
        padding-right: var(--mkbp-space-mobile-pr, var(--mkbp-space-tablet-pr, var(--mkbp-space-pr, 0))) !important;
        padding-bottom: var(--mkbp-space-mobile-pb, var(--mkbp-space-tablet-pb, var(--mkbp-space-pb, 0))) !important;
        padding-left: var(--mkbp-space-mobile-pl, var(--mkbp-space-tablet-pl, var(--mkbp-space-pl, 0))) !important;
        transform: translate(var(--mkbp-space-mobile-shift-x, var(--mkbp-space-tablet-shift-x, var(--mkbp-space-shift-x, 0))), var(--mkbp-space-mobile-shift-y, var(--mkbp-space-tablet-shift-y, var(--mkbp-space-shift-y, 0)))) scale(var(--mkbp-space-mobile-scale, var(--mkbp-space-tablet-scale, var(--mkbp-space-scale, 1)))) !important;
    }

    .mkbp-mockup img {
        max-height: 300px;
    }

    .mkbp-pattern-hero {
        min-height: 92svh;
        --mkbp-hero-img-shift-x: 0px;
        --mkbp-hero-img-shift-y: 0px;
    }

    .mkbp-hero-stage {
        height: min(470px, 68vh);
    }

    .mkbp-hero-person {
        height: min(350px, 50vh);
    }

    .mkbp-hero-portrait,
    .mkbp-hero-portrait img {
        width: min(410px, 84vw) !important;
        height: auto !important;
    }

    .mkbp-hero-first,
    .mkbp-hero-last,
    .mkbp-pattern-hero-title {
        font-size: clamp(2.7rem, 13vw, 4.6rem) !important;
    }

    .mkbp-hero-first {
        top: 14%;
    }

    .mkbp-hero-last {
        top: 31%;
    }

    .mkbp-pattern-subline {
        bottom: 22px;
        font-size: clamp(.7rem, 3vw, .86rem);
        padding: 6px 16px !important;
        max-width: calc(100vw - 28px) !important;
    }

    .mkbp-journey-scroll {
        min-height: calc(var(--mkbp-journey-steps, 6) * 92vh);
    }

    .mkbp-journey-sticky {
        min-height: 92vh;
        padding: 34px 0 26px;
    }

    .mkbp-journey-scroll .mkbp-pattern-title {
        margin-bottom: 10px;
    }

    .mkbp-journey-intro {
        max-width: calc(100vw - 44px) !important;
        margin-bottom: 16px !important;
        font-size: .95rem;
    }

    .mkbp-journey-stage {
        min-height: 48vh;
    }

    .mkbp-journey-step {
        width: min(330px, 78vw) !important;
    }

    .mkbp-journey-step.mkbp-journey-prev,
    .mkbp-journey-step.mkbp-journey-next {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.7);
    }

    .mkbp-journey-image {
        width: min(100%, 280px) !important;
        margin-bottom: 16px !important;
    }

    .mkbp-journey-step h3 {
        font-size: clamp(1.35rem, 8vw, 2rem);
    }

    .mkbp-journey-subtitle {
        font-size: .86rem;
    }

    .mkbp-journey-dots {
        width: calc(100vw - 52px) !important;
        margin-top: 8px !important;
    }

    .mkbp-category-title h2 {
        font-size: 2.4rem;
    }

    .mkbp-contact-info,
    .mkbp-contact article {
        padding: 1.4rem;
    }

    .mkbp-pattern-contactbox,
    .mkbp-form-panel {
        padding: 22px;
    }

    .mkbp-nav strong {
        letter-spacing: .12em;
    }
}

/* Mobile portfolio shell overrides for assigned pages. Kept at the end so theme/plugin defaults cannot win. */
.mkbp-page-assigned .wp-site-blocks > header,
.mkbp-page-assigned header.wp-block-template-part,
.mkbp-page-assigned .wp-site-blocks > .wp-block-template-part,
.mkbp-page-assigned .wp-block-post-title,
.mkbp-page-assigned .entry-title {
    display: none !important;
}

@media (max-width: 781px) {
    .mkbp-page-assigned .mkbp-pattern-nav {
        align-items: center !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        min-height: 64px !important;
        padding: 14px 20px !important;
    }

    .mkbp-page-assigned .mkbp-pattern-menu {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 18px 20px 22px !important;
        background: rgba(255, 255, 255, .96) !important;
        border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
        box-shadow: 0 18px 38px rgba(0, 0, 0, .12) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-10px) !important;
        transition: opacity .22s ease, transform .22s ease !important;
    }

    .mkbp-page-assigned .mkbp-pattern-nav.mkbp-mobile-nav-open .mkbp-pattern-menu {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .mkbp-page-assigned .mkbp-pattern-menu .wp-block-button,
    .mkbp-page-assigned .mkbp-pattern-menu .wp-block-button__link {
        width: 100% !important;
    }

    .mkbp-page-assigned .mkbp-mobile-menu-toggle {
        appearance: none !important;
        width: 44px !important;
        height: 38px !important;
        display: inline-flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 6px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: #111 !important;
        cursor: pointer !important;
    }

    .mkbp-page-assigned .mkbp-mobile-menu-toggle span {
        display: block !important;
        width: 31px !important;
        height: 3px !important;
        margin-left: auto !important;
        background: currentColor !important;
        transition: transform .22s ease, opacity .22s ease !important;
    }

    .mkbp-page-assigned .mkbp-pattern-nav.mkbp-mobile-nav-open .mkbp-mobile-menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    .mkbp-page-assigned .mkbp-pattern-nav.mkbp-mobile-nav-open .mkbp-mobile-menu-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    .mkbp-page-assigned .mkbp-pattern-nav.mkbp-mobile-nav-open .mkbp-mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }

    .mkbp-page-assigned .mkbp-pattern-hero,
    .mkbp-page-assigned .mkbp-mobile-hero-tight {
        min-height: 100svh !important;
        height: 100svh !important;
        display: block !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-mini-image,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-mini-image {
        top: 16px !important;
        left: 24px !important;
        width: 58px !important;
        height: 58px !important;
    }

    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first,
    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first.visible,
    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first.mkbp-in-view,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.visible,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.mkbp-in-view {
        top: 26svh !important;
        left: 50% !important;
        width: 118vw !important;
        font-size: clamp(4.2rem, 22vw, 7.2rem) !important;
        line-height: .78 !important;
        text-align: center !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }

    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last,
    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last.visible,
    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last.mkbp-in-view,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.visible,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.mkbp-in-view {
        top: 43svh !important;
        left: 50% !important;
        width: 118vw !important;
        font-size: clamp(4.2rem, 22vw, 7.2rem) !important;
        line-height: .78 !important;
        text-align: center !important;
        transform: translateX(-50%) !important;
        z-index: 5 !important;
    }

    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait,
    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait.visible,
    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait.mkbp-in-view,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.visible,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.mkbp-in-view {
        left: 50% !important;
        bottom: -1svh !important;
        width: min(620px, 118vw) !important;
        transform: translateX(-50%) !important;
        z-index: 4 !important;
    }

    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait img,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait img {
        width: min(620px, 118vw) !important;
        max-width: none !important;
        height: auto !important;
    }

    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline,
    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline.visible,
    .mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline.mkbp-in-view,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.visible,
    .mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.mkbp-in-view {
        bottom: 18px !important;
        z-index: 6 !important;
    }
}

/* Follow-up hardening: hide theme chrome broadly and keep the generated burger mobile-only. */
body.mkbp-page-assigned > header,
body.mkbp-page-assigned .site-header,
body.mkbp-page-assigned #masthead,
body.mkbp-page-assigned .elementor-location-header,
body.mkbp-page-assigned .wp-site-blocks > header,
body.mkbp-page-assigned header.wp-block-template-part,
body.mkbp-page-assigned .wp-block-template-part,
body.mkbp-page-assigned .page-header,
body.mkbp-page-assigned .entry-header,
body.mkbp-page-assigned .wp-block-post-title,
body.mkbp-page-assigned .entry-title {
    display: none !important;
}

body.mkbp-page-assigned .mkbp-mobile-menu-toggle {
    display: none !important;
}

@media (max-width: 781px) {
    body.mkbp-page-assigned .mkbp-pattern-nav {
        position: sticky !important;
        top: 0 !important;
        z-index: 10000 !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-menu {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-10px) !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-nav.mkbp-mobile-nav-open .mkbp-pattern-menu {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-menu-toggle {
        display: inline-flex !important;
    }
}

/* Mobile hero refinement: responsive text scale, no word breaks. */
@media (max-width: 781px) {
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first.visible,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first.mkbp-in-view,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.mkbp-in-view {
        top: 24svh !important;
        width: 100vw !important;
        max-width: 100vw !important;
        font-size: clamp(3rem, 15.5vw, 4.8rem) !important;
        line-height: .82 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        hyphens: none !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last.visible,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last.mkbp-in-view,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.mkbp-in-view {
        top: 39svh !important;
        width: 100vw !important;
        max-width: 100vw !important;
        font-size: clamp(3rem, 15.5vw, 4.8rem) !important;
        line-height: .82 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        hyphens: none !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait.visible,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait.mkbp-in-view,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.mkbp-in-view {
        bottom: -2svh !important;
        width: min(540px, 104vw) !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait img,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait img {
        width: min(540px, 104vw) !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline.visible,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline.mkbp-in-view,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.mkbp-in-view {
        max-width: calc(100vw - 42px) !important;
        font-size: clamp(.72rem, 3vw, .9rem) !important;
        line-height: 1.35 !important;
        white-space: normal !important;
    }
}

/* Mobile hero final composition: compact viewport, names behind portrait, no text breaking. */
@media (max-width: 781px) {
    body.mkbp-page-assigned .mkbp-pattern-hero,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight {
        min-height: 100svh !important;
        height: 100svh !important;
        max-height: 100svh !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-mini-image,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-mini-image {
        top: 14px !important;
        left: 22px !important;
        width: 54px !important;
        height: 54px !important;
        z-index: 8 !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first.visible,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-first.mkbp-in-view,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.mkbp-in-view {
        top: 28svh !important;
        left: 50% !important;
        width: 100vw !important;
        max-width: 100vw !important;
        font-size: clamp(2.8rem, 14vw, 4.35rem) !important;
        line-height: .82 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        hyphens: none !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last.visible,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-last.mkbp-in-view,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.mkbp-in-view {
        top: 39svh !important;
        left: 50% !important;
        width: 100vw !important;
        max-width: 100vw !important;
        font-size: clamp(2.8rem, 14vw, 4.35rem) !important;
        line-height: .82 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        hyphens: none !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait.visible,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait.mkbp-in-view,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.mkbp-in-view {
        left: 50% !important;
        bottom: 5svh !important;
        width: min(420px, 86vw) !important;
        transform: translateX(-50%) !important;
        z-index: 4 !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-hero-portrait img,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait img {
        width: min(420px, 86vw) !important;
        max-width: none !important;
        height: auto !important;
    }

    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline.visible,
    body.mkbp-page-assigned .mkbp-pattern-hero .mkbp-pattern-subline.mkbp-in-view,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.mkbp-in-view {
        bottom: 14px !important;
        max-width: calc(100vw - 38px) !important;
        font-size: clamp(.68rem, 2.8vw, .84rem) !important;
        line-height: 1.25 !important;
        z-index: 6 !important;
    }
}

/* Mobile/desktop split: only the duplicated mobile hero is shown on phones. */
body.mkbp-page-assigned .mkbp-mobile-hero-tight {
    display: none !important;
}

@media (max-width: 781px) {
    body.mkbp-page-assigned .mkbp-pattern-hero:not(.mkbp-mobile-hero-tight) {
        display: none !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight {
        display: block !important;
        min-height: 100svh !important;
        height: 100svh !important;
        max-height: 100svh !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: relative !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-mini-image {
        top: 14px !important;
        left: 22px !important;
        width: 52px !important;
        height: 52px !important;
        z-index: 8 !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.mkbp-in-view {
        top: 21svh !important;
        left: 50% !important;
        width: 100vw !important;
        max-width: 100vw !important;
        font-size: clamp(2.55rem, 13vw, 4rem) !important;
        line-height: .82 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        hyphens: none !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.mkbp-in-view {
        top: 30svh !important;
        left: 50% !important;
        width: 100vw !important;
        max-width: 100vw !important;
        font-size: clamp(2.55rem, 13vw, 4rem) !important;
        line-height: .82 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        hyphens: none !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.mkbp-in-view {
        left: 50% !important;
        bottom: 0 !important;
        width: min(460px, 92vw) !important;
        transform: translateX(-50%) !important;
        z-index: 4 !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait img {
        width: min(460px, 92vw) !important;
        max-width: none !important;
        height: auto !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.mkbp-in-view {
        bottom: 12px !important;
        max-width: calc(100vw - 38px) !important;
        font-size: clamp(.68rem, 2.8vw, .84rem) !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        z-index: 6 !important;
    }
}

/* Single mobile hero mode: use the one existing hero, do not hide it. */
body.mkbp-page-assigned .mkbp-mobile-hero-tight {
    display: block !important;
}

@media (max-width: 781px) {
    body.mkbp-page-assigned .mkbp-pattern-hero:not(.mkbp-mobile-hero-tight) {
        display: block !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight {
        min-height: calc(100svh - 64px) !important;
        height: calc(100svh - 64px) !important;
        max-height: calc(100svh - 64px) !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: relative !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-mini-image {
        top: 18px !important;
        left: 22px !important;
        width: 52px !important;
        height: 52px !important;
        z-index: 8 !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-first.mkbp-in-view {
        top: 18svh !important;
        left: 50% !important;
        width: 100vw !important;
        max-width: 100vw !important;
        font-size: clamp(2.45rem, 12.5vw, 3.8rem) !important;
        line-height: .82 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        hyphens: none !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-last.mkbp-in-view {
        top: 27svh !important;
        left: 50% !important;
        width: 100vw !important;
        max-width: 100vw !important;
        font-size: clamp(2.45rem, 12.5vw, 3.8rem) !important;
        line-height: .82 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        hyphens: none !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait.mkbp-in-view {
        left: 50% !important;
        bottom: -4svh !important;
        width: min(510px, 104vw) !important;
        transform: translateX(-50%) !important;
        z-index: 4 !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-hero-portrait img {
        width: min(510px, 104vw) !important;
        max-width: none !important;
        height: auto !important;
    }

    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.visible,
    body.mkbp-page-assigned .mkbp-mobile-hero-tight .mkbp-pattern-subline.mkbp-in-view {
        bottom: 12px !important;
        max-width: calc(100vw - 36px) !important;
        font-size: clamp(.66rem, 2.7vw, .82rem) !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        z-index: 6 !important;
    }
}

/* Journey section: compact enough to keep title, outline, gallery and dots in view. */
body.mkbp-page-assigned .mkbp-journey-scroll {
    --mkbp-journey-nav-offset: 78px;
    min-height: calc(var(--mkbp-journey-steps, 6) * 76svh) !important;
    scroll-margin-top: var(--mkbp-journey-nav-offset) !important;
}

body.mkbp-page-assigned .mkbp-journey-scroll::before,
body.mkbp-page-assigned .mkbp-journey-scroll::after {
    top: var(--mkbp-journey-nav-offset) !important;
    height: calc(100svh - var(--mkbp-journey-nav-offset)) !important;
    margin-bottom: calc((100svh - var(--mkbp-journey-nav-offset)) * -1) !important;
}

body.mkbp-page-assigned .mkbp-journey-sticky {
    top: var(--mkbp-journey-nav-offset) !important;
    min-height: calc(100svh - var(--mkbp-journey-nav-offset)) !important;
    height: calc(100svh - var(--mkbp-journey-nav-offset)) !important;
    padding: clamp(86px, 9.2vh, 124px) 0 clamp(8px, 1.2vh, 14px) !important;
    overflow: hidden !important;
    grid-template-rows: auto auto minmax(0, 1fr) auto !important;
}

body.mkbp-page-assigned .mkbp-journey-scroll .mkbp-pattern-title {
    margin: 0 auto clamp(2px, .45vh, 6px) !important;
    font-size: clamp(3.1rem, 6.4vw, 5.6rem) !important;
    line-height: .84 !important;
}

body.mkbp-page-assigned .mkbp-journey-intro {
    max-width: min(720px, calc(100vw - 44px)) !important;
    margin: 0 auto clamp(6px, .9vh, 12px) !important;
    font-size: clamp(.9rem, 1.2vw, 1.08rem) !important;
    line-height: 1.26 !important;
}

body.mkbp-page-assigned .mkbp-journey-stage {
    min-height: 0 !important;
    height: clamp(330px, 49svh, 540px) !important;
}

body.mkbp-page-assigned .mkbp-journey-step {
    width: min(560px, 44vw) !important;
}

body.mkbp-page-assigned .mkbp-journey-step.mkbp-journey-prev {
    transform: translate(calc(-50% - min(32vw, 390px)), -45%) scale(.66) !important;
}

body.mkbp-page-assigned .mkbp-journey-step.mkbp-journey-next {
    transform: translate(calc(-50% + min(32vw, 390px)), -45%) scale(.66) !important;
}

body.mkbp-page-assigned .mkbp-journey-image {
    width: min(100%, clamp(310px, 34vw, 520px)) !important;
    margin-bottom: clamp(7px, .9vh, 12px) !important;
}

body.mkbp-page-assigned .mkbp-journey-step h3 {
    font-size: clamp(1.45rem, 2.35vw, 2.55rem) !important;
    line-height: .96 !important;
}

body.mkbp-page-assigned .mkbp-journey-subtitle {
    margin-top: .22rem !important;
    font-size: clamp(.82rem, 1.05vw, 1.08rem) !important;
}

body.mkbp-page-assigned .mkbp-journey-dots {
    margin-top: clamp(2px, .55vh, 7px) !important;
}

@media (max-width: 1024px) {
    body.mkbp-page-assigned .mkbp-journey-scroll {
        --mkbp-journey-nav-offset: 68px;
        min-height: calc(var(--mkbp-journey-steps, 6) * 74svh) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-sticky {
        padding-top: clamp(66px, 7.6vh, 90px) !important;
        padding-bottom: 10px !important;
    }

    body.mkbp-page-assigned .mkbp-journey-scroll .mkbp-pattern-title {
        font-size: clamp(2.6rem, 8vw, 4.5rem) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-stage {
        height: clamp(310px, 47svh, 460px) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-step {
        width: min(500px, 62vw) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-image {
        width: min(100%, clamp(300px, 50vw, 450px)) !important;
    }
}

@media (max-width: 781px) {
    body.mkbp-page-assigned .mkbp-journey-scroll {
        --mkbp-journey-nav-offset: 64px;
        min-height: calc(var(--mkbp-journey-steps, 6) * 72svh) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-sticky {
        padding: 56px 0 8px !important;
    }

    body.mkbp-page-assigned .mkbp-journey-scroll .mkbp-pattern-title {
        margin-bottom: 2px !important;
        font-size: clamp(2.2rem, 11vw, 3.4rem) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-intro {
        max-width: calc(100vw - 38px) !important;
        margin-bottom: 6px !important;
        font-size: clamp(.78rem, 3.4vw, .92rem) !important;
        line-height: 1.22 !important;
    }

    body.mkbp-page-assigned .mkbp-journey-stage {
        height: clamp(300px, 48svh, 410px) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-step {
        width: min(360px, 84vw) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-image {
        width: min(100%, 330px) !important;
        margin-bottom: 7px !important;
    }

    body.mkbp-page-assigned .mkbp-journey-step h3 {
        font-size: clamp(1.18rem, 6.2vw, 1.62rem) !important;
        letter-spacing: .12em !important;
    }

    body.mkbp-page-assigned .mkbp-journey-subtitle {
        font-size: clamp(.68rem, 3vw, .82rem) !important;
        letter-spacing: .15em !important;
    }

    body.mkbp-page-assigned .mkbp-journey-dots {
        width: calc(100vw - 46px) !important;
        margin-top: 0 !important;
    }
}

@media (max-height: 760px) {
    body.mkbp-page-assigned .mkbp-journey-sticky {
        padding-top: 58px !important;
        padding-bottom: 6px !important;
    }

    body.mkbp-page-assigned .mkbp-journey-scroll .mkbp-pattern-title {
        font-size: clamp(2.35rem, 5.4vw, 4.3rem) !important;
    }

    body.mkbp-page-assigned .mkbp-journey-intro {
        margin-bottom: 4px !important;
    }

    body.mkbp-page-assigned .mkbp-journey-stage {
        height: clamp(270px, 44svh, 390px) !important;
    }
}

/* Journey-only outline mapping: builder values stay the desktop source of truth. */
body.mkbp-page-assigned .mkbp-journey-scroll .mkbp-pattern-title.mkbp-has-outline::before {
    left: calc(var(--mkbp-outline-x, 0%) * var(--mkbp-journey-outline-x-scale, 1));
    top: calc(var(--mkbp-outline-y, -60%) * var(--mkbp-journey-outline-y-scale, 1));
    font-size: calc(var(--mkbp-outline-size, 140px) * var(--mkbp-journey-outline-size-scale, 1));
}

@media (max-width: 1024px) {
    body.mkbp-page-assigned .mkbp-journey-scroll {
        --mkbp-journey-outline-x-scale: .86;
        --mkbp-journey-outline-y-scale: .82;
        --mkbp-journey-outline-size-scale: .74;
    }
}

@media (max-width: 781px) {
    body.mkbp-page-assigned .mkbp-journey-scroll {
        --mkbp-journey-outline-x-scale: .66;
        --mkbp-journey-outline-y-scale: .62;
        --mkbp-journey-outline-size-scale: .52;
    }
}

@media (max-width: 420px) {
    body.mkbp-page-assigned .mkbp-journey-scroll {
        --mkbp-journey-outline-x-scale: .58;
        --mkbp-journey-outline-y-scale: .56;
        --mkbp-journey-outline-size-scale: .46;
    }
}
