﻿:root {
    --brand: #6b2d5c;
    --brand-dark: #34182f;
    --brand-soft: #f1eaf0;
    --anthracite: #202020;
    --text: #252525;
    --muted: #696969;
    --light: #f7f7f7;
    --white: #ffffff;
    --line: rgba(0,0,0,.09);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.72;
}

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

a {
    color: inherit;
}

.parallax-fixed-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity .18s ease;
}

body.parallax-fixed-ready .parallax-fixed-bg.is-visible {
    opacity: 1;
}

header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.055);
}

.nav {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo-link {
    display: block;
    flex: 0 0 auto;
}

.logo {
    height: 58px;
    width: auto;
    max-width: none;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navlinks a {
    color: var(--anthracite);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.navlinks a:hover,
.navlinks a.is-active {
    color: var(--brand);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0,0,0,.12);
    background: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--anthracite);
    transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.hero,
.page-hero,
.image-band {
    --parallax-bg: url("assets/images/references/villa-wien/rataplan-8264.jpg");
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    color: white;
    background: var(--parallax-bg);
    background-size: cover;
    background-position: center;
}

.hero {
    min-height: 92vh;
}

.page-hero {
    min-height: 64vh;
}

.hero::before,
.page-hero::before {
    content: none;
}

.image-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.36) 50%, rgba(0,0,0,0) 50%);
}

body.parallax-fixed-ready .hero,
body.parallax-fixed-ready .page-hero,
body.parallax-fixed-ready .image-band {
    background: transparent;
    z-index: 1;
}
.section,
.split,
.references,
.contact,
footer {
    position: relative;
    z-index: 1;
}

.section,
.split {
    background: var(--white);
}

.section {
    box-shadow: 0 0 0 100vmax var(--white);
    clip-path: inset(0 -100vmax);
}

.section.compact,
.section.home-overview {
    background: var(--white);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 160px 34px 90px;
}

.kicker,
.label {
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.kicker {
    margin-bottom: 30px;
    color: rgba(255,255,255,.82);
}

.label {
    margin-bottom: 22px;
    color: var(--brand);
}

.hero h1,
.page-hero h1 {
    font-size: clamp(48px, 7vw, 98px);
    line-height: 1.05;
    font-weight: 300;
    max-width: 980px;
    margin-bottom: 34px;
}

.hero h1 strong,
.page-hero h1 strong {
    color: var(--brand);
    font-weight: 500;
}

.hero p,
.page-hero p {
    max-width: 720px;
    font-size: 22px;
    color: rgba(255,255,255,.9);
}

.btn {
    display: inline-block;
    margin-top: 42px;
    padding: 15px 31px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: 0;
    transition: transform .25s ease, background .25s ease;
}

.btn:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: var(--brand);
    border: 1px solid currentColor;
}

.section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 128px 34px;
}

.section.compact {
    padding-top: 84px;
    padding-bottom: 84px;
}

.intro {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
    gap: 80px;
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.15;
    font-weight: 300;
    color: var(--anthracite);
}

h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    color: var(--anthracite);
}

.lead {
    max-width: 760px;
    font-size: 22px;
    color: var(--anthracite);
}

.text {
    max-width: 760px;
    margin-top: 24px;
    font-size: 17px;
    color: var(--muted);
}

.image-band {
    min-height: 72vh;
}

.image-band.one {
    --parallax-bg: url("assets/images/general/yoga-fenster.jpg");
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-light {
    background: rgba(255,255,255,.92);
    color: var(--ink);
}

.home-area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 64px;
}

.home-area {
    display: grid;
    grid-template-rows: minmax(280px, 42vh) auto;
    min-height: 620px;
    border: 1px solid var(--line);
    background: white;
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-area:hover,
.home-area:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(107,45,92,.28);
    box-shadow: 0 18px 42px rgba(0,0,0,.10);
}

.home-area-media {
    background-size: cover;
    background-position: center;
}

.home-area-copy {
    padding: 38px;
}

.home-area-copy h3 {
    max-width: 680px;
}

.home-area-copy ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.home-proof .split-img {
    background: url("assets/images/references/live-flughafen/terminal-abflug-01-wolfgang-hummer-e1577544277470.jpg") center/cover;
}

.image-band.two {
    --parallax-bg: url("assets/images/references/live-mp09/xal-showroom_16.11.2010_498243_rz.jpg");
}

.band-content {
    position: relative;
    z-index: 2;
    width: 50%;
    max-width: none;
    margin: 0 auto 0 0;
    padding: 120px 34px 120px max(34px, calc((100vw - 1320px) / 2 + 34px));
    box-sizing: border-box;
}

.band-content h2 {
    max-width: 850px;
    color: white;
}

.band-content p {
    max-width: 620px;
    margin-top: 28px;
    font-size: 22px;
    color: rgba(255,255,255,.86);
}

.service-list,
.teaser-grid,
.ref-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 58px;
}

.service,
.teaser,

.team-card {
    border: 1px solid var(--line);
    background: white;
}

.service,
.teaser {
    padding: 34px;
}

.service span {
    display: block;
    margin-bottom: 32px;
    color: var(--brand);
    font-size: 13px;
    letter-spacing: .18em;
}

.service p,
.teaser p {
    margin-top: 18px;
    color: var(--muted);
}

.teaser {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease;
}

.teaser:hover {
    transform: translateY(-4px);
    border-color: rgba(107,45,92,.4);
}

.soft-block {
    background: var(--brand-dark);
    color: white;
    padding: 116px 34px;
}

.quote {
    max-width: 1040px;
    margin: 0 auto;
}

.quote h2 {
    color: white;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 660px;
}

.split-img {
    background: url("assets/images/references/live-mp09/06-mp09-pachleitner-graz_493612_m-e1577542616448.jpg") center/cover;
}

.split-text {
    padding: 110px 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.references {
    background: var(--light);
    color: var(--text);
}

.references h2,
.references .lead {
    color: var(--anthracite);
}

.references .label {
    color: var(--brand);
}

.ref {
    position: relative;
    min-height: 360px;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    color: white;
    background-size: cover;
    background-position: center;
    transition: transform .25s ease;
}

.ref:hover,
.ref:focus-visible {
    transform: translateY(-5px);
}

.ref::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.75));
}

.ref div {
    position: absolute;
    inset: auto 0 0 0;
    padding: 34px;
}

.ref h3 {
    color: white;
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 620px;
}

.gallery-main {
    background: url("assets/images/references/mp09/xal-showroom-498243-rz.jpg") center/cover;
}

.gallery-side {
    display: grid;
}

.gallery-side div {
    background-size: cover;
    background-position: center;
}

.team-intro {
    max-width: 920px;
}

.team-feature {
    margin-top: 58px;
    display: grid;
    grid-template-columns: minmax(260px, 430px) 1fr;
    border: 1px solid var(--line);
    background: var(--light);
}

.team-feature-mark {
    min-height: 300px;
    background: url("assets/images/team/kw-01.jpg") center/cover;
}

.team-feature-text {
    padding: 48px;
}

.team-feature-text p {
    color: var(--muted);
}


.team-card {
    overflow: hidden;
}

.team-photo {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
}

.team-info {
    padding: 25px;
}

.team-role {
    margin-top: 8px;
    color: var(--muted);
}

.team-mail {
    display: inline-block;
    margin-top: 16px;
    color: var(--brand);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact {
    background: var(--brand-dark);
    color: white;
    text-align: center;
    padding: 126px 34px;
}

.contact h2 {
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.contact p {
    max-width: 620px;
    margin: 26px auto 0;
    color: rgba(255,255,255,.82);
    font-size: 20px;
}

footer {
    background: white;
    padding: 54px 34px 46px;
    color: var(--anthracite);
}

footer img {
    height: 52px;
    width: auto;
    filter: none;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    color: #3d3d3d;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.legal h2 { margin-bottom: 26px; }
.legal h3 { margin-top: 42px; }
.legal p, .legal li { max-width: 940px; color: var(--muted); }
.legal ul, .legal ol { margin: 18px 0 0 22px; }

.project-overlay,
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    background: rgba(18,18,18,.88);
}

.project-overlay.is-open,
.image-lightbox.is-open {
    display: block;
}

.project-close,
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    z-index: 230;
    border: 0;
    background: white;
    color: var(--anthracite);
    cursor: pointer;
}

.project-close,
.lightbox-close {
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    font-size: 34px;
}

.project-dialog {
    width: min(1180px, calc(100% - 48px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    overflow: auto;
    background: white;
}

.project-hero {
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.project-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.72));
}

.project-hero-content {
    position: relative;
    padding: 52px;
}

.project-hero h2 {
    color: white;
}

.project-body {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 54px;
    padding: 58px 52px;
}

.project-meta-item {
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.project-meta-item span {
    display: block;
    color: var(--brand);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.project-copy ul {
    margin: 28px 0 0 20px;
    color: var(--muted);
}


.project-videos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 52px 38px;
}

.project-videos[hidden] {
    display: none;
}

.project-video {
    background: var(--light);
}

.project-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.project-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.project-video h3 {
    padding: 18px 20px 20px;
    font-size: 18px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 52px 52px;
}

.project-gallery button {
    border: 0;
    cursor: zoom-in;
    background: var(--light);
}

.project-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.lightbox-image {
    position: fixed;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    max-width: calc(100vw - 120px);
    max-height: calc(100vh - 120px);
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    width: 58px;
    height: 58px;
    transform: translateY(-50%);
    font-size: 42px;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-counter {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    color: white;
    font-size: 13px;
    letter-spacing: .14em;
}

@media (max-width: 920px) {
    .home-area-grid {
        grid-template-columns: 1fr;
    }

    .home-area {
        min-height: 0;
    }

    .nav {
        align-items: center;
        padding: 12px 20px;
        position: relative;
    }

    .logo {
        height: 44px;
        width: auto;
        max-width: none;
    }

    .nav-toggle {
        display: flex;
        flex: 0 0 auto;
    }

    .navlinks {
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 0;
        padding: 12px 0;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 18px 42px rgba(0,0,0,.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .navlinks.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navlinks a {
        padding: 13px 18px;
        font-size: 12px;
    }

    .hero,
    .page-hero {
        min-height: 78vh;
    }

    .hero-inner,
    .section,
    .band-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .image-band::before {
        background: linear-gradient(90deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.34) 70%, rgba(0,0,0,.08) 100%);
    }

    .band-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 96px 24px;
    }

    .section {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .intro,
    .split,
    .gallery,
    .team-feature,
    .project-body {
        grid-template-columns: 1fr;
    }

    .service-list,
    .teaser-grid,
    .ref-grid,
    .team-grid,
    .project-videos,
    .project-gallery {
        grid-template-columns: 1fr;
    }

    .split-img {
        min-height: 420px;
    }

    .split-text {
        padding: 74px 24px;
    }

    .project-dialog {
        width: 100%;
        max-height: 100vh;
        margin: 0;
    }

    .project-hero-content,
    .project-body,
    .project-videos,
    .project-gallery {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .lightbox-image {
        max-width: calc(100vw - 36px);
        max-height: calc(100vh - 136px);
    }
}
.living-original-flow {
    display: grid;
    gap: 42px;
}

.living-topic-heading {
    max-width: 900px;
    margin-top: 28px;
}

.living-topic-heading:first-child {
    margin-top: 0;
}

.living-detail {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    min-height: 430px;
    border: 1px solid var(--line);
    background: white;
}

.living-detail.reverse .living-detail-copy {
    order: 2;
}

.living-detail-copy {
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.living-detail-copy h3 {
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 300;
}

.living-detail-copy p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 17px;
}

.living-detail-image {
    min-height: 430px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 920px) {
    .living-original-flow {
        gap: 32px;
    }

    .living-topic-heading {
        margin-top: 10px;
    }

    .living-detail,
    .living-detail.reverse {
        grid-template-columns: 1fr;
    }

    .living-detail.reverse .living-detail-copy {
        order: 0;
    }

    .living-detail-copy {
        padding: 38px 28px;
    }

    .living-detail-image {
        min-height: 300px;
    }
}
.living-photo-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 18px;
    margin-top: 58px;
}

.living-photo-grid .living-photo {
    min-height: 280px;
    border: 0;
    cursor: zoom-in;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.living-photo-grid .living-photo:first-child {
    grid-row: span 2;
}

.team-mail:hover,
.team-mail:focus-visible,
.js-mail:hover,
.js-mail:focus-visible {
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal h4, .legal h5, .legal h6 {
    margin-top: 30px;
    color: var(--anthracite);
    font-size: 18px;
    line-height: 1.4;
}

.legal ol {
    max-width: 940px;
    color: var(--muted);
}

@media (max-width: 920px) {
    .living-photo-grid {
        grid-template-columns: 1fr;
    }

    .living-photo-grid .living-photo:first-child {
        grid-row: auto;
    }
}



.team-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.team-card:hover,
.team-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(107,45,92,.22);
    box-shadow: 0 18px 42px rgba(0,0,0,.10);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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