/* Studio-Hero: Bild vollständig extern, kein Inline-CSS in studio-final.php */
body.mw-new-home .mw-studio-hero {
    --mw-subpage-hero-image: url('../images/mw-subpage-background.jpg');
}

/* ======================================================
   MOST WANTED – STUDIO
   Datei: css/studio.css
====================================================== */

/* ======================================================
   HERO – ORIGINAL AUS DEM FUNKTIONIERENDEN UNTERSEITEN-TEMPLATE
====================================================== */

/* ======================================================
       UNIVERSALER UNTERSEITEN-HERO
    ====================================================== */

    body.mw-new-home .mw-subpage-hero {
        position: relative;
        display: flex;
        min-height: clamp(540px, 72vh, 760px);
        align-items: center;
        overflow: hidden;
        isolation: isolate;
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.30) 72%, rgba(0, 0, 0, 0.48) 100%),
            var(--mw-subpage-hero-image) center center / cover no-repeat;
    }

    body.mw-new-home .mw-subpage-hero-overlay {
        position: absolute;
        inset: 0;
        z-index: -2;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48)),
            radial-gradient(circle at 72% 38%, rgba(0, 174, 239, 0.08), transparent 30%);
    }

    body.mw-new-home .mw-subpage-hero-vignette {
        position: absolute;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.88);
    }

    body.mw-new-home .mw-subpage-hero-inner {
        width: min(1240px, calc(100% - 48px));
        margin: 0 auto;
        padding: 130px 0 120px;
    }

    body.mw-new-home .mw-subpage-hero-content {
        width: min(700px, 62%);
    }

    body.mw-new-home .mw-subpage-breadcrumb,
    body.mw-new-home .mw-subpage-hero-kicker {
        display: block;
        margin-bottom: 16px;
        color: var(--mw-blue, #00aeef);
        font-size: 0.75rem;
        font-weight: 800;
        line-height: 1.4;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    body.mw-new-home .mw-subpage-breadcrumb {
        color: rgba(255, 255, 255, 0.64);
    }

    body.mw-new-home .mw-subpage-hero h1 {
        max-width: 760px;
        margin: 0;
        color: #fff;
        font-size: clamp(3rem, 6.4vw, 6.6rem);
        font-weight: 900;
        line-height: 0.92;
        letter-spacing: -0.055em;
    }

    body.mw-new-home .mw-subpage-hero h2 {
        max-width: 680px;
        margin: 18px 0 0;
        color: var(--mw-blue, #00aeef);
        font-size: clamp(1.35rem, 2.5vw, 2.4rem);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -0.025em;
    }

    body.mw-new-home .mw-subpage-hero p {
        max-width: 630px;
        margin: 24px 0 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(1rem, 1.3vw, 1.2rem);
        line-height: 1.7;
    }

    body.mw-new-home .mw-subpage-hero-button {
        display: inline-flex;
        min-height: 52px;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        padding: 0 26px;
        border: 1px solid var(--mw-blue, #00aeef);
        border-radius: 4px;
        background: rgba(0, 0, 0, 0.28);
        color: #fff;
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0.05em;
        text-decoration: none;
        text-transform: uppercase;
        transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

    body.mw-new-home .mw-subpage-hero-button:hover,
    body.mw-new-home .mw-subpage-hero-button:focus-visible {
        background: var(--mw-blue, #00aeef);
        color: #050505;
        transform: translateY(-2px);
    }

    body.mw-new-home .mw-subpage-hero-scroll {
        position: absolute;
        bottom: 24px;
        left: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.15em;
        text-decoration: none;
        text-transform: uppercase;
        transform: translateX(-50%);
    }

    body.mw-new-home .mw-subpage-hero-scroll i {
        display: block;
        width: 1px;
        height: 34px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.18), var(--mw-blue, #00aeef));
        animation: mwSubpageScroll 1.8s ease-in-out infinite;
    }

    @keyframes mwSubpageScroll {
        0%, 100% {
            opacity: 0.4;
            transform: scaleY(0.72);
            transform-origin: top;
        }
        50% {
            opacity: 1;
            transform: scaleY(1);
            transform-origin: top;
        }
    }

    @media screen and (max-width: 820px) {
        body.mw-new-home .mw-subpage-hero {
            min-height: 650px;
            background-position: 66% center;
        }

        body.mw-new-home .mw-subpage-hero-inner {
            width: min(100% - 36px, 1240px);
            padding: 128px 0 120px;
        }

        body.mw-new-home .mw-subpage-hero-content {
            width: 100%;
        }

        body.mw-new-home .mw-subpage-hero h1 {
            max-width: 92%;
            font-size: clamp(2.8rem, 14vw, 4.8rem);
        }

        body.mw-new-home .mw-subpage-hero h2 {
            max-width: 92%;
        }

        body.mw-new-home .mw-subpage-hero p {
            max-width: 90%;
        }
    }

    @media screen and (max-width: 520px) {
        body.mw-new-home .mw-subpage-hero {
            min-height: 620px;
            background-position: 72% center;
        }

        body.mw-new-home .mw-subpage-hero-inner {
            width: calc(100% - 30px);
            padding-top: 112px;
        }

        body.mw-new-home .mw-subpage-hero h1 {
            max-width: 100%;
            font-size: clamp(2.55rem, 13vw, 3.75rem);
        }

        body.mw-new-home .mw-subpage-hero h2,
        body.mw-new-home .mw-subpage-hero p {
            max-width: 100%;
        }

        body.mw-new-home .mw-subpage-hero-scroll {
            bottom: 18px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        body.mw-new-home .mw-subpage-hero-scroll i {
            animation: none;
        }
    }

/* ======================================================
   STUDIO – SEITENDESIGN
====================================================== */

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

    .mw-studio-page {
        --studio-bg: #08090a;
        --studio-panel: #111315;
        --studio-panel-2: #16191c;
        --studio-line: rgba(255,255,255,.09);
        --studio-muted: rgba(255,255,255,.67);
        --studio-soft: rgba(255,255,255,.84);
        --studio-blue: var(--mw-blue, #00aeef);
        background: var(--studio-bg);
        color: #fff;
        overflow: hidden;
    }

    .mw-studio-inner {
        width: min(1240px, calc(100% - 48px));
        margin: 0 auto;
    }

    .mw-studio-kicker {
        display: block;
        margin-bottom: 14px;
        color: var(--studio-blue);
        font-size: .72rem;
        font-weight: 900;
        letter-spacing: .18em;
        text-transform: uppercase;
    }

    .mw-studio-title {
        max-width: 900px;
        margin: 0;
        color: #fff;
        font-size: clamp(2.4rem, 5vw, 5.2rem);
        font-weight: 900;
        line-height: .98;
        letter-spacing: -.05em;
    }

    .mw-studio-lead {
        max-width: 860px;
        margin: 24px 0 0;
        color: var(--studio-soft);
        font-size: clamp(1.04rem, 1.4vw, 1.22rem);
        line-height: 1.8;
    }

    .mw-studio-intro {
        padding: 105px 0 88px;
        background:
            radial-gradient(circle at 88% 14%, rgba(0,174,239,.09), transparent 28%),
            linear-gradient(180deg, #0b0c0d, #08090a);
    }

    .mw-studio-intro-grid {
        display: grid;
        grid-template-columns: minmax(0,1.3fr) minmax(300px,.7fr);
        gap: 58px;
        align-items: start;
    }

    .mw-studio-copy p {
        margin: 0 0 22px;
        color: var(--studio-soft);
        font-size: 1.04rem;
        line-height: 1.85;
    }

    .mw-studio-copy strong {
        color: #fff;
    }

    .mw-studio-quote {
        padding: 34px;
        border: 1px solid rgba(0,174,239,.26);
        border-radius: 16px;
        background:
            linear-gradient(145deg, rgba(0,174,239,.08), transparent 44%),
            var(--studio-panel);
    }

    .mw-studio-quote span {
        display: block;
        margin-bottom: 18px;
        color: rgba(255,255,255,.08);
        font-size: 4.8rem;
        font-weight: 900;
        line-height: .7;
    }

    .mw-studio-quote strong {
        display: block;
        margin-bottom: 14px;
        color: #fff;
        font-size: 1.45rem;
        line-height: 1.2;
    }

    .mw-studio-quote p {
        margin: 0;
        color: var(--studio-muted);
        line-height: 1.75;
    }

    .mw-studio-values {
        padding: 26px 0 88px;
        background: #08090a;
    }

    .mw-studio-values-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0,1fr));
        gap: 14px;
    }

    .mw-studio-value {
        min-height: 180px;
        padding: 24px;
        border: 1px solid var(--studio-line);
        border-radius: 12px;
        background: var(--studio-panel);
    }

    .mw-studio-value span {
        display: block;
        margin-bottom: 28px;
        color: var(--studio-blue);
        font-size: .7rem;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .mw-studio-value h3 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 1.18rem;
    }

    .mw-studio-value p {
        margin: 0;
        color: var(--studio-muted);
        line-height: 1.65;
    }

    .mw-studio-experience {
        padding: 105px 0;
        border-top: 1px solid var(--studio-line);
        background: #0d0f11;
    }

    .mw-studio-experience-grid {
        display: grid;
        grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
        gap: 70px;
        align-items: start;
    }

    .mw-studio-experience-copy p {
        margin: 0 0 20px;
        color: var(--studio-soft);
        line-height: 1.82;
    }

    .mw-studio-list {
        display: grid;
        gap: 14px;
    }

    .mw-studio-list-item {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 18px;
        padding: 22px 0;
        border-bottom: 1px solid var(--studio-line);
    }

    .mw-studio-list-item:first-child {
        border-top: 1px solid var(--studio-line);
    }

    .mw-studio-list-item span {
        color: var(--studio-blue);
        font-size: .72rem;
        font-weight: 900;
    }

    .mw-studio-list-item h3 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 1.2rem;
    }

    .mw-studio-list-item p {
        margin: 0;
        color: var(--studio-muted);
        line-height: 1.7;
    }

    .mw-studio-video-section {
        padding: 105px 0;
        background:
            radial-gradient(circle at 12% 10%, rgba(0,174,239,.07), transparent 26%),
            #08090a;
    }

    .mw-studio-video-head {
        display: grid;
        grid-template-columns: minmax(0,1fr) minmax(260px,.55fr);
        gap: 48px;
        align-items: end;
        margin-bottom: 42px;
    }

    .mw-studio-video-head p {
        margin: 0;
        color: var(--studio-muted);
        line-height: 1.75;
    }

    .mw-studio-video-frame {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 18px;
        background: #000;
        box-shadow: 0 30px 70px rgba(0,0,0,.35);
    }

    .mw-studio-video-frame video {
        display: block;
        width: 100%;
        height: auto;
        background: #000;
    }

    .mw-studio-video-caption {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        padding: 18px 22px;
        border-top: 1px solid var(--studio-line);
        background: var(--studio-panel);
        color: var(--studio-muted);
        font-size: .82rem;
    }

    .mw-studio-team {
        padding: 105px 0;
        border-top: 1px solid var(--studio-line);
        background: #0d0f11;
    }

    .mw-studio-team-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 18px;
        margin-top: 46px;
    }

    .mw-studio-team-card {
        min-height: 270px;
        padding: 28px;
        border: 1px solid var(--studio-line);
        border-radius: 15px;
        background:
            linear-gradient(155deg, rgba(0,174,239,.06), transparent 38%),
            var(--studio-panel);
    }

    .mw-studio-team-card span {
        display: block;
        margin-bottom: 38px;
        color: rgba(255,255,255,.25);
        font-size: 2.8rem;
        font-weight: 900;
    }

    .mw-studio-team-card h3 {
        margin: 0 0 12px;
        color: #fff;
        font-size: 1.35rem;
    }

    .mw-studio-team-card p {
        margin: 0;
        color: var(--studio-muted);
        line-height: 1.72;
    }

    .mw-studio-visit {
        padding: 105px 0;
        background:
            linear-gradient(120deg, rgba(0,174,239,.10), transparent 42%),
            #0a0c0e;
    }

    .mw-studio-visit-box {
        display: grid;
        grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr);
        gap: 50px;
        padding: 44px;
        border: 1px solid rgba(0,174,239,.24);
        border-radius: 18px;
        background: rgba(0,0,0,.2);
    }

    .mw-studio-visit-box h2 {
        margin: 0 0 16px;
        color: #fff;
        font-size: clamp(2.2rem, 4vw, 4rem);
        line-height: 1;
        letter-spacing: -.045em;
    }

    .mw-studio-visit-box p {
        margin: 0;
        color: var(--studio-soft);
        line-height: 1.8;
    }

    .mw-studio-visit-info {
        display: grid;
        gap: 12px;
    }

    .mw-studio-visit-info div {
        padding: 18px 20px;
        border: 1px solid var(--studio-line);
        border-radius: 10px;
        background: rgba(0,0,0,.18);
    }

    .mw-studio-visit-info span {
        display: block;
        margin-bottom: 5px;
        color: var(--studio-blue);
        font-size: .68rem;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .mw-studio-visit-info strong,
    .mw-studio-visit-info a {
        color: #fff;
        text-decoration: none;
        line-height: 1.45;
    }

    .mw-studio-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 26px;
    }

    .mw-studio-button {
        display: inline-flex;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        padding: 0 22px;
        border: 1px solid var(--studio-blue);
        border-radius: 4px;
        background: var(--studio-blue);
        color: #050505 !important;
        font-size: .74rem;
        font-weight: 900;
        letter-spacing: .06em;
        text-decoration: none !important;
        text-transform: uppercase;
        transition: .22s ease;
    }

    .mw-studio-button:hover {
        transform: translateY(-2px);
        filter: brightness(1.08);
    }

    .mw-studio-button-ghost {
        background: transparent;
        color: #fff !important;
    }

    @media (max-width: 960px) {
        .mw-studio-intro-grid,
        .mw-studio-experience-grid,
        .mw-studio-video-head,
        .mw-studio-visit-box {
            grid-template-columns: 1fr;
        }

        .mw-studio-values-grid {
            grid-template-columns: repeat(2, minmax(0,1fr));
        }

        .mw-studio-team-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 700px) {
        .mw-studio-inner {
            width: calc(100% - 30px);
        }

        .mw-studio-intro,
        .mw-studio-experience,
        .mw-studio-video-section,
        .mw-studio-team,
        .mw-studio-visit {
            padding: 72px 0;
        }

        .mw-studio-values {
            padding-bottom: 72px;
        }

        .mw-studio-values-grid {
            grid-template-columns: 1fr;
        }

        .mw-studio-visit-box {
            padding: 28px 22px;
        }

        .mw-studio-video-caption {
            flex-direction: column;
            gap: 6px;
        }
    }
