/* =========================================================
   REINIREINISON
   Build 01 – Desktop Grundgerüst
   ========================================================= */
/* =========================================================
   LOKALE SCHRIFTARTEN
   ========================================================= */

@font-face {
    font-family: "Sora";
    src: url("../assets/fonts/Sora-Variable.ttf") format("truetype");
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("../assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("../assets/fonts/IBMPlexMono-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ---------- RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ---------- BASIS ---------- */

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #0a0a0c;
    color: #f5f5f5;
    font-family: "Manrope", sans-serif;
    overflow: hidden;
}


/* ---------- STARTSEITE ---------- */

.home {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}


/* ---------- HINTERGRUND-BRANDING ---------- */

.background-brand {
    position: absolute;

    top: 50%;
    left: 55%;

    transform: translate(-50%, -50%);

    width: 145vw;
    height: 145vw;

    max-width: 2000px;
    max-height: 2000px;

    opacity: 0.08;

    pointer-events: none;
    user-select: none;

    z-index: 0;
}

.background-brand img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* ---------- LINKE NAVIGATION ---------- */

.side-navigation {
    position: fixed;
    top: 0;
    left: 0;

    width: 9vw;
    min-width: 80px;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(255, 255, 255, 0.20);

    z-index: 10;
}


.nav-trigger {
    background: transparent;
    border: 0;

    color: #f5f5f5;

    font-size: 2rem;
    font-weight: 300;

    cursor: pointer;

    transition: color 0.3s ease,
                transform 0.3s ease;
}


.nav-trigger:hover {
    color: #e10600;
    transform: translateX(4px);
}

/* Pfeil rot, solange die Navigation geöffnet ist */

.side-navigation:hover .nav-trigger,
.home:has(.nav-overlay:hover) .nav-trigger {
    color: #e10600;
}


/* Navigation bleibt in Build 01 noch versteckt */

.nav-menu {
    display: none;
}


/* ---------- PANEL-BEREICH ---------- */

.panel-area {
    position: absolute;

    top: 0;
    right: 0;

    width: 91vw;
    height: 100vh;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    z-index: 2;
}


/* ---------- EINZELNE PANELS ---------- */

.panel {
    position: relative;

    min-width: 0;

    padding: 12vh 2vw 8vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid rgba(255, 255, 255, 0.20);

    cursor: pointer;
}


.panel:first-child {
    border-left: none;
}


.panel-number {
    position: absolute;
    top: 8vh;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.18em;

    color: rgba(255, 255, 255, 0.55);
}


.panel h1,
.panel h2 {
    font-family: "Sora", sans-serif;

    font-size: clamp(1.45rem, 2.15vw, 2.7rem);
    font-weight: 600;

    line-height: 1.05;

    text-transform: uppercase;

    letter-spacing: 0.03em;
}

.panel-discover h2 {
    font-size: clamp(1.35rem, 1.9vw, 2.4rem);
}


.panel-line {
    display:block;

    width: 32px;
    height: 2px;

    margin-top: 24px;

    background: #e10600;
}

/* ---------- PANEL 01 HOVER TEST ---------- */

.panel-content {
    position: relative;
    width: 100%;
}

.panel-services .panel-line {
    transition:
        width 0.4s ease,
        background-color 0.4s ease;
}

.panel-hover-content {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    margin-top: 28px;

    opacity: 0;
    transform: translateY(14px);

    pointer-events: none;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.panel-hover-content p {
    margin-bottom: 10px;

    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;

    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.72);
}

.panel-status {
    display: block;

    margin-top: 30px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.45);
}

.panel-link {
    display: block;

    margin-top: 24px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #f5f5f5;
}


/* Hover */

.panel-services:hover .panel-line {
    width: 64px;
}

.panel-services:hover .panel-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.panel-projects .panel-line {
    transition:
        width 0.4s ease,
        background-color 0.4s ease;
}

.panel-projects:hover .panel-line {
    width: 64px;
}

.panel-projects:hover .panel-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.panel-about .panel-line {
    transition:
        width 0.4s ease,
        background-color 0.4s ease;
}

.panel-about:hover .panel-line {
    width: 64px;
}

.panel-about:hover .panel-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.panel-discover .panel-line {
    transition:
        width 0.4s ease,
        background-color 0.4s ease;
}

.panel-discover:hover .panel-line {
    width: 64px;
}

.panel-discover:hover .panel-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.panel-hover-discover p {
    font-family: "Sora", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.panel-discover:hover .panel-status {
    color: rgba(225, 6, 0, 0.75);
}

.panel-contact .panel-line {
    transition:
        width 0.4s ease,
        background-color 0.4s ease;
}

.panel-contact:hover .panel-line {
    width: 64px;
}

.panel-contact:hover .panel-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- ENTDECKEN CURSOR ---------- */

.cursor {
    color: #e10600;

    animation: cursorBlink 1.5s infinite;
}


@keyframes cursorBlink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

/* =========================================================
   NAVIGATION OVERLAY
   komplett unabhängig vom bestehenden Layout
   ========================================================= */

.nav-overlay {
    position: fixed;

    top: 0;
    left: 0;

    width: 240px;
    height: 100vh;

    background:rgba(10, 10, 12, 0.98);

    border-right: 1px solid rgba(255, 255, 255, 0.20);

    transform: translateX(-100%);

    opacity: 0;

    pointer-events: none;

    transition:
        transform 0.45s ease,
        opacity 0.35s ease;

    z-index: 1000;
}


.nav-overlay-inner {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 8vh 34px 6vh;
}


/* Öffnen nur, wenn Maus im linken Navigationsbereich ist */

.side-navigation:hover + .nav-overlay,
.nav-overlay:hover {
    transform: translateX(0);

    opacity: 1;

    pointer-events: auto;
}


/* ---------- MARKE ---------- */

.nav-brand {
    margin-bottom: 8vh;

    font-family: "Sora", sans-serif;

    font-size: 0.85rem;
    font-weight: 600;

    letter-spacing: 0.12em;

    color: #f5f5f5;
}


/* ---------- HAUPTMENÜ ---------- */

.nav-overlay-menu {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.nav-overlay-menu a {
    width: fit-content;

    font-family: "Manrope", sans-serif;

    font-size: 0.9rem;
    font-weight: 500;

    letter-spacing: 0.04em;

    text-decoration: none;

    color: rgba(255, 255, 255, 0.72);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.nav-overlay-menu a:hover {
    color: #f5f5f5;

    transform: translateX(5px);
}


/* ---------- RECHTLICH ---------- */

.nav-overlay-legal {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 6vh;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.nav-legal-title {
    display: block;

    margin-bottom: 14px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.62rem;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.35);
}


.nav-overlay-legal > a,
.privacy-toggle,
.privacy-submenu a {
    font-family: "IBM Plex Mono", monospace;

    text-transform: uppercase;

    text-decoration: none;
}


.nav-overlay-legal > a {
    display: block;

    margin-bottom: 14px;

    font-size: 0.68rem;

    letter-spacing: 0.06em;

    color: rgba(255, 255, 255, 0.60);
}


/* ---------- DATENSCHUTZ ---------- */

.privacy-toggle {
    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 0;

    background: transparent;
    border: 0;

    font-size: 0.68rem;

    letter-spacing: 0.06em;

    color: rgba(255, 255, 255, 0.60);

    cursor: pointer;
}


.privacy-submenu {
    display: none;

    flex-direction: column;

    gap: 8px;

    margin-top: 12px;
    padding-left: 12px;
}


.privacy-menu:hover .privacy-submenu {
    display: flex;
}


.privacy-submenu a {
    font-size: 0.62rem;

    letter-spacing: 0.05em;

    color: rgba(255, 255, 255, 0.42);
}


/* ---------- HOVER ---------- */

.nav-overlay-legal a:hover,
.privacy-toggle:hover {
    color: #e10600;
}

/* =========================================================
   CONTENT LAYER
   ========================================================= */

.content-layer {
    position: fixed;

    top: 0;
    left: 9vw;

    width: 91vw;
    height: 100vh;

    padding: 8vh 6vw;

    background: #0a0a0c;

    opacity: 0;
    visibility: hidden;

    transform: scale(0.96);

    pointer-events: none;

    transition:
        opacity 0.45s ease,
        transform 0.55s ease,
        visibility 0.55s;

    z-index: 20;
}


/* Geöffneter Zustand */

.content-layer.is-active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);

    pointer-events: auto;
}


/* ---------- ZURÜCK ---------- */

.content-back {
    position: absolute;

    top: 5vh;
    right: 5vw;

    padding: 0;

    background: transparent;
    border: 0;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.68rem;
    letter-spacing: 0.10em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.content-back:hover {
    color: #e10600;

    transform: translateX(-4px);
}


/* ---------- INHALT ---------- */

.content-inner {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


.content-index {
    display: block;

    margin-bottom: 22px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.68rem;

    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.45);
}


.content-header h2 {
    font-family: "Sora", sans-serif;

    font-size: clamp(2.8rem, 5vw, 6rem);
    font-weight: 600;

    line-height: 0.95;

    letter-spacing: -0.03em;
}


.content-line {
    display: block;

    width: 72px;
    height: 2px;

    margin-top: 28px;

    background: #e10600;
}


/* ---------- DREI BEREICHE ---------- */

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 5vw;

    margin-top: 10vh;
}


.service-number {
    display: block;

    margin-bottom: 18px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.65rem;

    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.40);
}


.service-item h3 {
    margin-bottom: 18px;

    font-family: "Sora", sans-serif;

    font-size: clamp(1.1rem, 1.6vw, 1.8rem);
    font-weight: 600;

    line-height: 1.15;

    text-transform: uppercase;
}


.service-item p {
    max-width: 280px;

    font-family: "Manrope", sans-serif;

    font-size: 0.9rem;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.58);
}

/* =========================================================
   STARTOBERFLÄCHE – OPEN ANIMATION
   ========================================================= */

.panel-area,
.background-brand {
    transition:
        opacity 0.55s ease,
        transform 0.65s ease;
}


/* Panel 01 */

.home.is-opening-services .panel-services {
    transform: translate(-35vw, 45vh);
    opacity: 0;
}


/* Panel 02 */

.home.is-opening-services .panel-projects {
    transform: translateY(-110vh);
    opacity: 0;
}


/* Panel 03 */

.home.is-opening-services .panel-about {
    transform: translate(55vw, 35vh);
    opacity: 0;
}


/* Panel 04 */

.home.is-opening-services .panel-discover {
    transform: translateY(110vh);
    opacity: 0;
}


/* Panel 05 */

.home.is-opening-services .panel-contact {
    transform: translateX(110vw);
    opacity: 0;
}


/* Alle Panels bekommen Animation */

.panel {
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
}


/* Hintergrundlogo */

.home.is-opening-services .background-brand {
    opacity: 0.025;
    transform:
        translate(-50%, -50%)
        scale(1.05);
}

/* =========================================================
   WAS ICH MACHE – CTA
   ========================================================= */

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 9vh;
    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}


/* Kleine Überschrift */

.services-cta-label {
    font-family: "IBM Plex Mono", monospace;

    font-size: 0.65rem;
    font-weight: 500;

    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.42);
}


/* Button */

.services-cta-button {
    position: relative;

    padding: 0 0 7px 0;

    background: transparent;
    border: 0;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.08em;

    color: #f5f5f5;

    cursor: pointer;
}


/* Rote Linie unter dem Button */

.services-cta-button::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 2px;

    background: #e10600;

    transition: width 0.3s ease;
}


/* Hover */

.services-cta-button:hover::after {
    width: 100%;
}

.services-cta-button:hover {
    color: #ffffff;
}

/* =========================================================
   02 – PROJEKTE
   ========================================================= */

.projects-intro {
    margin-top: 24px;

    font-family: "Manrope", sans-serif;
    font-size: 1rem;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.48);
}


/* ---------- PROJEKT GRID ---------- */

.projects-grid {
    display: grid;

    grid-template-columns: 1.2fr 1fr;

    grid-template-rows: repeat(2, minmax(180px, 1fr));

    gap: 22px;

    margin-top: 7vh;

    height: 48vh;
}


/* ---------- PROJEKTKARTE ---------- */

.project-card {
    position: relative;

    padding: 28px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);

    background: rgba(255, 255, 255, 0.015);

    cursor: pointer;

    transition:
        border-color 0.35s ease,
        transform 0.35s ease,
        background 0.35s ease;
}


.project-card:hover {
    transform: translateY(-4px);

    border-color: rgba(225, 6, 0, 0.65);

    background: rgba(255, 255, 255, 0.025);
}


/* Große Soul-of-Pizza-Karte */

.project-card-large {
    grid-row: span 2;
}


/* ---------- STATUS ---------- */

.project-status {
    position: absolute;

    top: 24px;
    right: 24px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.6rem;

    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.38);
}


/* ---------- INHALT DER KARTE ---------- */

.project-card-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;
}


.project-type {
    display: block;

    margin-bottom: 12px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.62rem;

    letter-spacing: 0.12em;

    color: rgba(255, 255, 255, 0.40);
}


.project-card h3 {
    margin-bottom: 20px;

    font-family: "Sora", sans-serif;

    font-size: clamp(1.2rem, 2vw, 2.2rem);
    font-weight: 600;

    line-height: 1.05;

    text-transform: uppercase;
}


.project-link {
    position: relative;

    display: inline-block;

    padding-bottom: 6px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.72);
}


.project-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: #e10600;

    transition: width 0.3s ease;
}


.project-card:hover .project-link::after {
    width: 100%;
}


/* ---------- NEXT PROJECT ---------- */

.project-card-next {
    grid-column: 1 / -1;

    min-height: 90px;
    max-height: 110px;

    background: transparent;
}

.project-card-next-content {
    position: static;

    display: flex;
    align-items: center;

    gap: 28px;

    height: 100%;
}

.project-card-next-content .project-type {
    margin-bottom: 0;
}

.project-card-next-content h3 {
    margin: 0;

    font-size: 1.4rem;
}

.project-card-next-content .project-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.project-card-next h3 {
    color: rgba(255, 255, 255, 0.28);
}

/* =========================================================
   PROJECT DETAIL – SOUL OF PIZZA
   ========================================================= */

.project-detail {
    position: absolute;
    inset: 0;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 8vh 6vw;

    background: #0a0a0c;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(18px);

    transition:
        opacity 0.35s ease,
        transform 0.4s ease,
        visibility 0.4s;

    z-index: 30;
}

.project-detail.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.project-detail-back {
    position: absolute;

    top: 5vh;
    right: 5vw;

    padding: 0;

    border: 0;
    background: transparent;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.10em;

    color: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.project-detail-back:hover {
    color: #e10600;
    transform: translateX(-4px);
}

.project-detail-inner {
    width: 100%;
    min-height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.project-detail-meta {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-bottom: 22px;
}

.project-detail-index,
.project-detail-status {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
}

.project-detail-index {
    color: rgba(255, 255, 255, 0.45);
}

.project-detail-status {
    color: #e10600;
}

.project-detail h2 {
    font-family: "Sora", sans-serif;

    font-size: clamp(2.8rem, 5vw, 6rem);
    font-weight: 600;

    line-height: 0.95;
    letter-spacing: -0.03em;
}

.project-detail-content {
    margin-top: 7vh;

    width: 100%;
}

.project-detail-lead {
    max-width: 720px;

    font-family: "Manrope", sans-serif;
    font-size: 1rem;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.62);
}

.project-detail-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 4vw;

    width: 100%;

    margin-top: 7vh;
    padding-top: 32px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.project-detail-label {
    display: block;

    margin-bottom: 18px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;

    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.38);
}

.project-detail-item p {
    max-width: 240px;

    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;

    line-height: 1.6;

    color: rgba(255, 255, 255, 0.58);
}

/* =========================================================
   SOUL OF PIZZA – APP SHOWCASE
   ========================================================= */

.sop-showcase {
    width: 100%;
    margin-top: 14vh;
    padding-bottom: 12vh;
}


/* ---------- HEADER ---------- */

.sop-showcase-header {
    margin-bottom: 9vh;
}

.sop-showcase-index {
    display: block;
    margin-bottom: 24px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.42);
}

.sop-showcase-header h3 {
    margin: 0;

    max-width: 700px;

    font-family: "Sora", sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 4.8rem);
    font-weight: 600;

    line-height: 0.98;
    letter-spacing: -0.045em;

    color: #ffffff;
}

.sop-showcase-header .content-line {
    display: block;

    width: 90px;
    height: 2px;

    margin-top: 38px;

    background: #e10600;
}


/* ---------- SCREENSHOT LAYOUT ---------- */

.sop-showcase-grid {
    display: grid;
    grid-template-columns: 360px 360px;

    justify-content: center;
    align-items: start;

    gap: 10vh 80px;

    width: 100%;

}

.sop-shot {
    margin: 0;

}

.sop-showcase {
    width: 100%;
    margin-top: 14vh;
    padding-bottom: 12vh;

}

.sop-shot-start,
.sop-shot-pizza,
.sop-shot-config,
.sop-shot-menu,
.sop-shot-cart {
    width: 360px;
    max-width: 100%;
    margin: 0;

    align-self: start;
    justify-self: center;

    transform: none;
}

.sop-shot-cart {
    grid-column: 1 / -1;
}

/* ---------- SCREENSHOTS ---------- */

.sop-shot {
    margin: 0;
}

.sop-shot-frame {
    position: relative;

    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);

    background: #0b0b0d;
}

.sop-shot-frame img {
    display: block;

    width: 100%;
    height: auto;
}

/* ---------- CAPTIONS ---------- */

.sop-shot figcaption {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-top: 16px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.12em;

    color: rgba(255, 255, 255, 0.62);
}

.sop-shot figcaption span {
    color: rgba(255, 255, 255, 0.32);
}


/* ---------- FOOTER ---------- */

.sop-showcase-footer {
    margin-top: 16vh;
    padding-top: 44px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sop-showcase-footer > span {
    display: block;

    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.035em;

    color: #ffffff;
}

.sop-showcase-footer p {
    margin: 24px 0 0;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.42);
}

.sop-showcase-footer .sop-showcase-summary {
    max-width: 680px;

    margin: 28px 0 0;

    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: normal;

    color: rgba(255, 255, 255, 0.58);
}

.sop-showcase-tech {
    margin-top: 30px !important;

    font-family: "IBM Plex Mono", monospace !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.42) !important;
}

/* =========================================================
   02 – PROJEKTE OPEN ANIMATION
   ========================================================= */

.home.is-opening-projects .panel-services {
    transform: translate(-35vw, 45vh);
    opacity: 0;
}

.home.is-opening-projects .panel-projects {
    transform: translateY(-110vh);
    opacity: 0;
}

.home.is-opening-projects .panel-about {
    transform: translate(55vw, 35vh);
    opacity: 0;
}

.home.is-opening-projects .panel-discover {
    transform: translateY(110vh);
    opacity: 0;
}

.home.is-opening-projects .panel-contact {
    transform: translateX(110vw);
    opacity: 0;
}

.home.is-opening-projects .background-brand {
    opacity: 0.025;

    transform:
        translate(-50%, -50%)
        scale(1.05);
}

/* =========================================================
   03 – ÜBER MICH
   ========================================================= */

.about-stage {
    position: relative;

    width: 100%;

    margin-top: 7vh;
    padding: 5vh 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.about-word {
    font-family: "Sora", sans-serif;

    font-size: clamp(2.8rem, 7vw, 8rem);
    font-weight: 600;

    letter-spacing: -0.04em;

    color: rgba(255, 255, 255, 0.08);

    text-transform: uppercase;

    white-space: nowrap;
}

.about-word {
    transition:
        opacity 0.32s ease,
        transform 0.32s ease;
}

.about-word.is-changing {
    opacity: 0;
    transform: translateY(8px);
}


/* ---------- ABOUT TABS ---------- */

.about-tabs {
    display: flex;

    gap: 42px;

    margin-top: 5vh;
}


.about-tab {
    position: relative;

    padding: 0 0 9px 0;

    background: transparent;
    border: 0;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.65rem;
    letter-spacing: 0.12em;

    color: rgba(255, 255, 255, 0.38);

    cursor: pointer;

    transition: color 0.3s ease;
}


.about-tab::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #e10600;

    transition: width 0.3s ease;
}


.about-tab:hover,
.about-tab.is-active {
    color: #ffffff;
}


.about-tab.is-active::after {
    width: 32px;
}


/* ---------- ABOUT CONTENT ---------- */

.about-panels {
    position: relative;

    margin-top: 4vh;

    min-height: 60px;
}


.about-panel {
    display: none;

    font-family: "Sora", sans-serif;

    font-size: 1.2rem;
    font-weight: 600;

    letter-spacing: 0.02em;
}


.about-panel.is-active {
    display: block;
}

.content-about .about-panel p {
    max-width: 720px;

    margin-top: 12px;

    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 400;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.58);
}

/* =========================================================
   03 – ÜBER MICH OPEN ANIMATION
   ========================================================= */

.home.is-opening-about .panel-services {
    transform: translate(-35vw, 45vh);
    opacity: 0;
}

.home.is-opening-about .panel-projects {
    transform: translateY(-110vh);
    opacity: 0;
}

.home.is-opening-about .panel-about {
    transform: translate(55vw, 35vh);
    opacity: 0;
}

.home.is-opening-about .panel-discover {
    transform: translateY(110vh);
    opacity: 0;
}

.home.is-opening-about .panel-contact {
    transform: translateX(110vw);
    opacity: 0;
}

.home.is-opening-about .background-brand {
    opacity: 0.025;

    transform:
        translate(-50%, -50%)
        scale(1.05);
}

/* =========================================================
   04 – ENTDECKEN
   ========================================================= */

.discover-inner {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 8vh 6vw;

    overflow: hidden;
}

.discover-title {
    margin-top: 22px;

    font-family: "Sora", sans-serif;

    font-size: clamp(2.8rem, 5vw, 6rem);
    font-weight: 600;

    line-height: 0.95;

    letter-spacing: -0.03em;
}

.discover-stage {
    position: relative;

    width: 100%;
    height: clamp(280px, 42vh, 440px);

    margin-top: clamp(30px, 5vh, 60px);
}

.discover-item {
    position: absolute;

    background: transparent;
    border: 0;

    font-family: "Archivo Black", "Sora", sans-serif;

    font-size: clamp(1.2rem, 2.4vw, 2.8rem);

    color: rgba(255, 255, 255, 0.20);

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.discover-item:hover {
    color: #ffffff;

    transform: scale(1.04);
}

.discover-playground {
    top: 8%;
    left: 8%;
}

.discover-experiments {
    top: 18%;
    right: 10%;
}

.discover-stories {
    bottom: 18%;
    left: 24%;
}

.discover-unknown {
    top: 58%;
    right: 12%;

    color: rgba(225, 6, 0, 0.55);
}

/* =========================================================
   04 – ENTDECKEN OPEN ANIMATION
   ========================================================= */

.home.is-opening-discover .panel-services {
    transform: translate(-35vw, 45vh);
    opacity: 0;
}

.home.is-opening-discover .panel-projects {
    transform: translateY(-110vh);
    opacity: 0;
}

.home.is-opening-discover .panel-about {
    transform: translate(55vw, 35vh);
    opacity: 0;
}

.home.is-opening-discover .panel-discover {
    transform: translateY(110vh);
    opacity: 0;
}

.home.is-opening-discover .panel-contact {
    transform: translateX(110vw);
    opacity: 0;
}

.home.is-opening-discover .background-brand {
    opacity: 0.015;

    transform:
        translate(-50%, -50%)
        scale(1.08);
}

/* =========================================================
   DISCOVER – SECRET
   ========================================================= */

.discover-secret {
    position: absolute;

    top: 50%;
    left: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;

    opacity: 0;
    pointer-events: none;

    transform: translate(-50%, -45%);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.discover-secret.is-visible {
    opacity: 1;
    pointer-events: auto;

    transform: translate(-50%, -50%);
}


.secret-status {
    font-family: "IBM Plex Mono", monospace;

    font-size: 0.65rem;

    letter-spacing: 0.18em;

    color: rgba(255, 255, 255, 0.38);
}


.secret-enter {
    position: relative;

    padding: 0 0 8px 0;

    border: 0;
    background: transparent;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.1em;

    color: #ffffff;

    cursor: pointer;
}


.secret-enter::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

    background: #e10600;

    transition: width 0.3s ease;
}


.secret-enter:hover::after {
    width: 100%;
}

/* =========================================================
   DISCOVER – SECOND LEVEL
   ========================================================= */

.discover-section {
    position: absolute;

    inset: 0;

    padding: 8vh 6vw;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translateY(18px);

    transition:
        opacity 0.35s ease,
        transform 0.4s ease,
        visibility 0.4s;
}


.discover-section.is-active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);
}


.discover-section-back {
    position: absolute;

    top: 5vh;
    right: 5vw;

    padding: 0;

    border: 0;
    background: transparent;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.68rem;
    letter-spacing: 0.10em;

    color: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.discover-section-back:hover {
    color: #e10600;

    transform: translateX(-4px);
}


.discover-section-index {
    display: block;

    margin-bottom: 22px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.68rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.45);
}


.discover-section h3 {
    font-family: "Sora", sans-serif;

    font-size: clamp(2.8rem, 5vw, 6rem);
    font-weight: 600;

    line-height: 0.95;
}


.discover-section-placeholder {
    margin-top: 8vh;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.65rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.20);
}

.discover-coming-soon span {
    display: block;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;

    color: #e10600;
}

.discover-coming-soon p {
    margin-top: 14px;

    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 500;

    letter-spacing: 0.03em;

    color: rgba(255, 255, 255, 0.48);
}

/* =========================================================
   EXPERIMENTE – FEATURED
   ========================================================= */

.experiment-featured {
    position: relative;

    width: 100%;
    min-height: 320px;

    margin-top: 7vh;
    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    overflow: hidden;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease;
}

.experiment-featured:hover {
    border-color: rgba(225, 6, 0, 0.65);
    transform: translateY(-3px);
}

.experiment-featured-index {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.38);
}

.experiment-featured-content {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 32px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

.experiment-featured-series {
    display: block;

    margin-bottom: 12px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.14em;

    color: #e10600;
}

.experiment-featured h4 {
    margin: 0;

    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.02em;

    color: #ffffff;
}

.experiment-featured-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 18px;

    flex-shrink: 0;
}

.experiment-featured-status {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.35);
}

.experiment-featured-open {
    padding: 0;

    border: 0;
    background: transparent;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.10em;

    color: rgba(255, 255, 255, 0.65);

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.experiment-featured-open:hover {
    color: #e10600;
    transform: translateX(4px);
}

/* =========================================================
   EXPERIMENT_001 – DETAIL
   ========================================================= */

.experiment-detail {
    position: absolute;
    inset: 0;

    padding: 8vh 6vw;

    overflow-y: auto;
    overflow-x: hidden;

    background: #0a0a0c;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(18px);

    transition:
        opacity 0.35s ease,
        transform 0.4s ease,
        visibility 0.4s;

    z-index: 20;
}

.experiment-detail.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.experiment-detail-back {
    position: absolute;

    top: 4vh;
    right: 5vw;

    border: 0;
    background: transparent;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.10em;

    color: rgba(255, 255, 255, 0.55);

    cursor: pointer;
}

.experiment-detail-inner {
    width: 100%;

    min-height: 100%;
    height: auto;
}

.experiment-detail-index {
    display: block;

    margin-bottom: 28px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.45);
}

.experiment-detail-series {
    display: block;

    margin-bottom: 14px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;

    color: #e10600;
}

.experiment-detail h3 {
    margin: 0;

    font-family: "Sora", sans-serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 600;

    line-height: 0.95;
    letter-spacing: -0.04em;

    color: #ffffff;
}

.experiment-detail .content-line {
    display: block;

    margin-top: 28px;
}

.experiment-detail-placeholder {
    margin-top: 8vh;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.65rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.25);
}

/* =========================================================
   EXPERIMENT 001 – VIDEO PREVIEW
   ========================================================= */

.experiment-detail-video {
    position: relative;

    width: 100%;
    max-width: 1100px;
    height: min(72vh, 780px);

    margin-top: 5vh;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0d0d0f;
}

.experiment-video {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.experiment-video-background {
    position: absolute;
    inset: -20px;

    width: calc(100% + 40px);
    height: calc(100% + 40px);

    object-fit: cover;

    filter: blur(18px) brightness(0.32);
    transform: scale(1.08);

    opacity: 0.85;

    pointer-events: none;

    z-index: 1;
}

.experiment-video-label {
    position: absolute;
    left: 24px;
    bottom: 20px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.58);

    z-index: 3;
}

/* ---------- EXPERIMENT 001 – IDEA ---------- */

.experiment-detail-idea {
    width: 100%;
    max-width: 760px;

    margin-top: 10vh;
    padding-bottom: 8vh;
}

.experiment-detail-kicker {
    display: block;

    margin-bottom: 24px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;

    color: #ff0000;
}

.experiment-detail-idea p {
    margin: 0;

    font-family: "Sora", sans-serif;
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.72);
}

/* ---------- EXPERIMENT 001 – INFO ---------- */

.experiment-detail-info {
    width: 100%;

    margin-top: 2vh;
    padding-top: 28px;
    padding-bottom: 8vh;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 3vw;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.experiment-info-item {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.experiment-info-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.16em;

    color: rgba(255, 255, 255, 0.35);
}

.experiment-info-value {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.72);
}


/* Discovery-Hauptfläche kann ausgeblendet werden */

.discover-stage,
.discover-title,
.discover-inner > .content-index,
.discover-inner > .content-line {
    transition:
        opacity 0.3s ease,
        transform 0.35s ease;
}


.content-discover.is-subview .discover-stage,
.content-discover.is-subview .discover-title,
.content-discover.is-subview > .discover-inner > .content-index,
.content-discover.is-subview > .discover-inner > .content-line {
    opacity: 0;

    pointer-events: none;

    transform: translateY(-10px);
}

/* =========================================================
   05 – KONTAKT
   ========================================================= */

.contact-inner {
    width: 100%;
    height: 100%;

    padding: 8vh 6vw;

    overflow: auto;
}


.contact-layout {
    display: grid;

    grid-template-columns: 1.6fr 0.8fr;

    gap: 8vw;

    margin-top: 7vh;
}


/* ---------- LABEL ---------- */

.contact-section-label {
    display: block;

    margin-bottom: 28px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.65rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.38);
}


/* ---------- FORMULAR ---------- */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 28px;
}


.contact-field {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.contact-field label,
.contact-field-label {
    font-family: "IBM Plex Mono", monospace;

    font-size: 0.62rem;
    letter-spacing: 0.12em;

    color: rgba(255, 255, 255, 0.42);
}


.contact-field input,
.contact-field textarea {
    width: 100%;

    padding: 10px 0;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);

    outline: none;

    background: transparent;

    font-family: "Manrope", sans-serif;

    font-size: 0.9rem;

    color: #ffffff;

    resize: none;

    transition: border-color 0.3s ease;
}


.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #e10600;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.20);
}


/* ---------- AUSWAHL ---------- */

.contact-topics {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


.contact-topic {
    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, 0.16);

    background: transparent;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.6rem;
    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.48);

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.contact-topic:hover,
.contact-topic.is-active {
    color: #ffffff;

    border-color: #e10600;

    background: rgba(225, 6, 0, 0.08);
}


/* ---------- ABSENDEN ---------- */

.contact-submit {
    position: relative;

    align-self: flex-start;

    padding: 0 0 8px 0;

    border: 0;
    background: transparent;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.10em;

    color: #ffffff;

    cursor: pointer;
}


.contact-submit::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 2px;

    background: #e10600;

    transition: width 0.3s ease;
}


.contact-submit:hover::after {
    width: 100%;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-status {
    min-height: 20px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.58);
}

.contact-status.is-success {
    color: #ffffff;
}

.contact-status.is-error {
    color: #e10600;
}

.contact-submit:disabled {
    opacity: 0.45;
    cursor: default;
}


/* ---------- DIREKT / SOCIAL ---------- */

.contact-direct {
    padding-left: 4vw;

    border-left: 1px solid rgba(255, 255, 255, 0.12);
}


.contact-direct-block + .contact-direct-block {
    margin-top: 8vh;
}


.contact-direct-link,
.contact-social-link {
    position: relative;

    display: block;

    margin-bottom: 18px;
    padding: 0 0 7px 0;

    border: 0;
    background: transparent;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.68rem;
    letter-spacing: 0.10em;

    color: rgba(255, 255, 255, 0.58);

    cursor: pointer;

    transition: color 0.3s ease;
}


.contact-direct-link:hover,
.contact-social-link:hover {
    color: #ffffff;
}


.contact-direct-link::after,
.contact-social-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #e10600;

    transition: width 0.3s ease;
}


.contact-direct-link:hover::after,
.contact-social-link:hover::after {
    width: 100%;
}

/* =========================================================
   05 – KONTAKT OPEN ANIMATION
   ========================================================= */

.home.is-opening-contact .panel-services {
    transform: translate(-35vw, 45vh);
    opacity: 0;
}

.home.is-opening-contact .panel-projects {
    transform: translateY(-110vh);
    opacity: 0;
}

.home.is-opening-contact .panel-about {
    transform: translate(55vw, 35vh);
    opacity: 0;
}

.home.is-opening-contact .panel-discover {
    transform: translateY(110vh);
    opacity: 0;
}

.home.is-opening-contact .panel-contact {
    transform: translateX(110vw);
    opacity: 0;
}

.home.is-opening-contact .background-brand {
    opacity: 0.025;

    transform:
        translate(-50%, -50%)
        scale(1.05);
}

.nav-overlay-menu a.is-active {
    color: #ffffff;

    transform: translateX(5px);
}

.nav-overlay-menu a.is-active::before {
    content: "";

    display: inline-block;

    width: 12px;
    height: 2px;

    margin-right: 8px;

    vertical-align: middle;

    background: #e10600;
}

/* =========================================================
   LEGAL CONTENT
   ========================================================= */

.legal-inner {
    width: 100%;
    height: 100%;

    padding: 8vh 6vw;

    overflow-y: auto;
}


.legal-inner h2 {
    margin-top: 22px;

    font-family: "Sora", sans-serif;

    font-size: clamp(2.8rem, 5vw, 6rem);
    font-weight: 600;

    line-height: 0.95;
}


.legal-placeholder {
    margin-top: 8vh;

    padding: 40px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.7rem;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.35);
}

.legal-text {
    margin-top: 8vh;
    padding: 40px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    max-width: 760px;
}

.legal-text h3 {
    margin: 0 0 18px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;

    color: rgba(255, 255, 255, 0.42);
}

.legal-text h3:not(:first-child) {
    margin-top: 42px;
}

.legal-text p {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.62);
}

.legal-text a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;

    border-bottom: 1px solid rgba(225, 6, 0, 0.65);

    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #ffffff;
}

/* =========================================================
   MOBILE STARTANSICHT
   ========================================================= */

@media (max-width: 768px) {

    body {
        overflow: hidden;
    }

    .home {
        width: 100vw;
        height: 100vh;
    }

    /* Linker Desktop-Navigationsraum entfällt */
    .side-navigation {
        width: 56px;
        min-width: 56px;

        border-right: none;

        align-items: flex-start;
        justify-content: flex-start;

        padding-top: 24px;
        padding-left: 18px;
    }

    .nav-trigger {
        position: static;

        transform: none;

        font-size: 1.7rem;
    }

    .nav-trigger:hover {
        transform: none;
    }

    /* Logo zentral im Hintergrund */
    .background-brand {
        top: 50%;
        left: 50%;

        width: 180vw;
        height: 180vw;

        max-width: none;
        max-height: none;

        transform: translate(-50%, -50%);

        opacity: 0.06;
    }

    /* Panels werden horizontale Slides */
    .panel-area {
        position: relative;

        width: 100vw;
        height: 100vh;

        display: flex;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;

        scrollbar-width: none;
    }

    .panel-area::-webkit-scrollbar {
        display: none;
    }

    .panel {
        flex: 0 0 100vw;

        width: 100vw;
        height: 100vh;

        padding:
            18vh
            10vw
            12vh;

        border-left: none;
        border-right: none;

        scroll-snap-align: start;

        justify-content: center;
    }

    .panel-number {
        top: 14vh;

        font-size: 0.7rem;
    }

    .panel h1,
    .panel h2 {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    .panel-discover h2 {
        font-size: clamp(1.9rem, 7.5vw, 3rem);
    }

    .panel-line {
        margin-top: 20px;
    }

    /* Mobile: Hover-Inhalte aus */
    .panel-hover-content {
        display: none;
    }


/* MOBILE NAVIGATION – NUR KLICK */

.nav-overlay {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Klickzustand gewinnt immer */
.nav-overlay.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Desktop-Hover darf Mobile NICHT öffnen */
.side-navigation:hover + .nav-overlay:not(.is-open),
.nav-overlay:hover:not(.is-open) {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

.privacy-menu.is-open .privacy-submenu {
    display: flex;
}

.home:has(.nav-overlay.is-open) .nav-trigger {
    color: #e10600;
}

/* =========================================================
   MOBILE – 01 WAS ICH MACHE
   ========================================================= */

.content-services {
    overflow: hidden;
}

.content-services {
    overflow-y: auto;
    overflow-x: hidden;
}

.content-services .content-inner {
    min-height: 100%;
    height: auto;

    padding: 8vh 8vw 10vh;
}


/* Services untereinander statt Desktop-Spalten */

.content-services .service-grid {
    display: flex;
    flex-direction: column;

    gap: 48px;

    margin-top: 7vh;
}

.content-services .service-item {
    width: 100%;
    max-width: none;
}


/* Textbreite freigeben */

.content-services .service-item p {
    max-width: 100%;
}


/* Abschlussbereich */

.content-services .services-footer {
    margin-top: 7vh;
    padding-top: 28px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 24px;
}


/* CTA links statt Desktop rechts */

.content-services .services-cta {
    width: 100%;
}

.content-services .services-cta-button {
    align-self: flex-start;
}

/* =========================================================
   MOBILE – 02 PROJEKTE
   ========================================================= */

.content-projects {
    overflow-y: auto;
    overflow-x: hidden;
}

.content-projects .content-inner {
    min-height: 100%;
    height: auto;

    padding: 8vh 8vw 10vh;
}

/* Projektkarten untereinander */

.content-projects .projects-grid {
    display: flex;
    flex-direction: column;

    gap: 18px;

    height: auto;
    margin-top: 6vh;
}

/* Alle Karten bekommen mobile Höhe */

.content-projects .project-card {
    width: 100%;
    min-height: 210px;

    padding: 24px;
}

/* Die große Soul-of-Pizza-Karte nicht mehr doppelt hoch */

.content-projects .project-card-large {
    min-height: 280px;
}

/* Inhalte sauber unten positionieren */

.content-projects .project-card-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
}

/* NEXT-Karte wieder kompakt */

.content-projects .project-card-next {
    min-height: 120px;
    max-height: none;
}

/* NEXT-Inhalt mobile untereinander */

.content-projects .project-card-next-content {
    position: static;

    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 10px;
}

/* Unsere Desktop-Zentrierung von "NOCH NICHT." aufheben */

.content-projects .project-card-next-content .project-link {
    position: static;

    margin-left: 0;

    transform: none;
}

/* Titel etwas kompakter */

.content-projects .project-card h3 {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
}

/* =========================================================
   MOBILE – 02.1 SOUL OF PIZZA
   ========================================================= */

.project-detail {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 8vh 8vw 10vh;

    overflow-y: auto;
    overflow-x: hidden;

    background: #0a0a0c;

    z-index: 100;
}

.content-projects.is-project-open {
    overflow: hidden;
}

.content-projects.is-project-open > .content-inner {
    display: none;
}

.project-detail-lead,
.project-detail-item p {
    width: 100%;
    max-width: 100%;

    overflow-wrap: break-word;
}

.project-detail-inner {
    width: 100%;
    min-height: 100%;
    height: auto;

    justify-content: flex-start;

    padding-top: 8vh;
}

.project-detail-back {
    top: 4vh;
    right: 6vw;
}

.project-detail-meta {
    flex-wrap: wrap;

    gap: 10px 18px;

    margin-bottom: 20px;
}

.project-detail h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);

    line-height: 0.95;

    max-width: 100%;
}

.project-detail-content {
    margin-top: 6vh;
}

.project-detail-lead {
    max-width: 100%;

    font-size: 0.95rem;
    line-height: 1.65;
}

.project-detail-grid {
    display: flex;
    flex-direction: column;

    gap: 36px;

    margin-top: 6vh;
    padding-top: 28px;
}

.project-detail-item {
    width: 100%;
}

.project-detail-item p {
    max-width: 100%;

    font-size: 0.9rem;
}

.project-detail-label {
    margin-bottom: 12px;
}

/* =========================================================
   MOBILE – 03 ÜBER MICH
   ========================================================= */

.content-about {
    overflow-y: auto;
    overflow-x: hidden;
}

.content-about .content-inner {
    min-height: 100%;
    height: auto;

    padding: 8vh 8vw 10vh;
}


/* ---------- ABOUT STAGE ---------- */

.content-about .about-stage {
    width: 100%;

    margin-top: 6vh;
    padding: 5vh 0;

    overflow: hidden;
}


/* Großer Hintergrundbegriff */

.content-about .about-word {
    width: 100%;

    font-size: clamp(2rem, 9vw, 3.4rem);
    line-height: 1;

    white-space: nowrap;

    overflow: hidden;

    letter-spacing: -0.04em;
}


/* ---------- TABS ---------- */

.content-about .about-tabs {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    margin-top: 5vh;
}


/* Tabs auf Mobile etwas größer */

.content-about .about-tab {
    font-size: 0.68rem;
}


/* ---------- TAB CONTENT ---------- */

.content-about .about-panels {
    margin-top: 4vh;

    min-height: 80px;
}

.content-about .about-panel {
    font-size: 1.1rem;
}

.content-about .about-panel p {
    max-width: 100%;

    margin-top: 10px;

    font-size: 0.95rem;
    font-weight: 400;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.58);
}

.content-about .about-panel p {
    max-width: 100%;

    margin-top: 10px;

    font-size: 0.95rem;
    font-weight: 400;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.58);
}

/* =========================================================
   MOBILE – EXPERIMENTE FEATURED
   ========================================================= */

.experiment-featured {
    min-height: 360px;

    margin-top: 6vh;
    padding: 24px;
}

.experiment-featured-content {
    left: 24px;
    right: 24px;
    bottom: 24px;

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    gap: 28px;
}

.experiment-featured-meta {
    width: 100%;

    align-items: flex-start;

    gap: 12px;
}

.experiment-featured h4 {
    font-size: 1.15rem;
}

.experiment-featured-open {
    font-size: 0.62rem;
}

/* ---------- EXPERIMENT 001 – VIDEO PREVIEW ---------- */

.experiment-detail-video {
    margin-top: 6vh;
    height: 68vh;
}

.experiment-video {
    height: 100%;
}

.experiment-video-label {
    left: 16px;
    bottom: 14px;

    font-size: 0.6rem;
}

/* ---------- EXPERIMENT 001 – IDEA ---------- */

.experiment-detail-idea {
    margin-top: 7vh;
    padding-bottom: 6vh;
}

.experiment-detail-kicker {
    margin-bottom: 18px;
    font-size: 0.62rem;
}

.experiment-detail-idea p {
    max-width: 100%;

    font-size: 1rem;
    line-height: 1.65;
}


/* ---------- EXPERIMENT 001 – INFO ---------- */

.experiment-detail-info {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 8vh;

    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
}

.experiment-info-label {
    font-size: 0.56rem;
}

.experiment-info-value {
    font-size: 0.66rem;
    line-height: 1.5;
}

/* =========================================================
   MOBILE – 04 ENTDECKEN
   ========================================================= */

.content-discover {
    overflow-y: auto;
    overflow-x: hidden;
}

.content-discover .content-inner {
    min-height: 100%;
    height: auto;

    padding: 8vh 8vw 10vh;
}


/* ---------- DISCOVER STAGE ---------- */

.content-discover .discover-stage {
    position: relative;

    width: 100%;
    height: clamp(360px, 48vh, 460px);

    margin-top: 5vh;
}


/* Begriffe auf Mobile verkleinern */

.content-discover .discover-item {
    font-size: clamp(1.15rem, 5.5vw, 1.65rem);
}


/* PLAYGROUND */

.content-discover .discover-playground {
    top: 5%;
    left: 5%;
}


/* EXPERIMENTE */

.content-discover .discover-experiments {
    top: 22%;
    right: 2%;
}


/* STORIES */

.content-discover .discover-stories {
    left: 8%;
    bottom: 12%;
}


/* ??? */

.content-discover .discover-unknown {
    right: 10%;
    bottom: 28%;
}

/* TROTZDEM – Mobile Position */

.content-discover .discover-secret {
    top: 68%;
    left: 8%;

    align-items: flex-start;

    transform: none;
}

.content-discover .discover-secret.is-visible {
    transform: none;
}

/* DISCOVER UNTERSEITEN – MOBILE */

.content-discover .discover-section h3 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.95;

    max-width: 100%;
    white-space: normal;
}

/* =========================================================
   MOBILE – 05 KONTAKT
   ========================================================= */

.content-contact {
    overflow-y: auto;
    overflow-x: hidden;
}

.content-contact .contact-inner {
    width: 100%;
    min-height: 100%;
    height: auto;

    padding: 8vh 8vw 10vh;

    overflow: visible;
}


/* Desktop-Zweispalter auf Mobile untereinander */

.content-contact .contact-layout {
    display: flex;
    flex-direction: column;

    gap: 7vh;

    margin-top: 7vh;
}


/* Formular volle Breite */

.content-contact .contact-form-area {
    width: 100%;
}

.content-contact .contact-form {
    width: 100%;
}


/* Themenbuttons dürfen umbrechen */

.content-contact .contact-topics {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


/* DIREKT / SOCIAL unter das Formular */

.content-contact .contact-direct {
    width: 100%;

    padding-left: 0;
    padding-top: 5vh;

    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


/* Social-Bereich etwas kompakter */

.content-contact .contact-direct-block + .contact-direct-block {
    margin-top: 6vh;
}


/* Eingabefelder sicher innerhalb des Screens */

.content-contact .contact-field input,
.content-contact .contact-field textarea {
    width: 100%;
    max-width: 100%;
}

/* =========================================================
   MOBILE – LEGAL
   ========================================================= */

.legal-inner h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    line-height: 0.95;

    max-width: 100%;
}

/* =========================================================
   MOBILE – SOUL OF PIZZA SHOWCASE
   ========================================================= */

.sop-showcase-grid {
    grid-template-columns: 1fr;
    justify-items: center;

    gap: 10vh;
}

.sop-shot-start,
.sop-shot-pizza,
.sop-shot-config,
.sop-shot-menu,
.sop-shot-cart {
    width: min(360px, 100%);
    max-width: 100%;

    grid-column: auto;
}

}