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

html { scroll-behavior:smooth; }

body {
    font-family:'Manrope', sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

.scroll-progress {
    position:fixed;
    z-index:1200;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:rgba(255,255,255,0.14);
}

.scroll-progress span {
    display:block;
    width:100%;
    height:100%;
    transform:scaleX(0);
    transform-origin:left;
    background:#fff;
}

.section-reveal.is-ready {
    opacity:0;
    transform:translateY(24px);
    transition:opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-line { position:relative; }

.section-line::before {
    position:absolute;
    z-index:1;
    top:0;
    left:10%;
    width:0;
    height:1px;
    background:rgba(17,17,17,0.22);
    content:"";
    transition:width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-line.line-is-visible::before { width:80%; }

.gallery.section-line::before { background:rgba(255,255,255,0.38); }


/* Navigation */

header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration:none;
}

.logo img {
    display:block;
    max-width:220px;
    max-height:60px;
    width:auto;
    height:auto;
    object-fit:contain;
}

nav ul {
    display: flex;
    align-items:center;
    list-style: none;
    gap: 35px;
}

nav ul li {
    display:flex;
    align-items:center;
}

nav ul a,
.nav-modal-button {
    display:inline-block;
    padding:4px 0;
    border:0;
    background:transparent;
    color: white;
    font-family:inherit;
    text-decoration: none;
    font-size: 16px;
    font-weight:inherit;
    line-height:normal;
    transition:color 0.2s ease;
}

.nav-modal-button {
    margin:0;
}

.nav-modal-button:hover,
.nav-modal-button:focus-visible {
    color:#ddd;
}

nav ul a:hover,
nav ul a:focus-visible {
    color:#ddd;
}

nav ul a.is-active { color:#fff; }

nav ul a.is-active::after {
    display:block;
    width:100%;
    height:1px;
    margin-top:4px;
    background:currentColor;
    content:"";
}


/* Hero Bereich */

.hero {

    height: 100vh;
    position: relative;

    overflow: hidden;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    padding:0 10%;

}


.hero-image {

    position:absolute;
    inset:0;

}


.hero-image img {

    width:100%;
    height:100%;

    object-fit:cover;

    filter:brightness(48%);

}


.hero-text {

    position:relative;

    z-index:2;

    color:white;

    text-align:left;

    max-width:700px;

    transition:0.8s;

}


.hero h1 {

    font-family:'Manrope', sans-serif;

    font-size:clamp(58px, 8vw, 112px);

    font-weight:800;

    letter-spacing:-0.06em;

    margin:8px 0 22px;

    line-height:0.82;

}

.hero h1 span { display:block; }


.hero-eyebrow {
    display:flex;
    align-items:center;
    gap:12px;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.16em;
    text-transform:uppercase;
    opacity:0.82;
}

.hero-eyebrow::before {
    width:36px;
    height:1px;
    background:currentColor;
    content:"";
}

.hero-lead {
    font-size:clamp(20px, 2.1vw, 28px);
    max-width:560px;
    font-weight:500;
    line-height:1.35;
}

.perspective-text h2,
.gallery h2,
.gallery-overlay h3,
.video-section-header h2,
.video-card-content h3,
.more-info-dialog h2,
.expertise-grid h3,
#contact h2 {
    font-family:'Manrope', sans-serif;
    letter-spacing:-0.045em;
}

/* Button */

button {
    margin-top:20px;
    padding:16px 35px;

    border-radius:50px;
    border:none;

    background:#111;
    color:white;

    font-size:16px;
    cursor:pointer;
}


button:hover {
    transform: translateY(-5px);
}

.hero-cta {
    display:inline-block;
    margin-top:20px;
    padding:16px 35px;
    border-radius:50px;
    background:#111;
    color:#fff;
    font-size:16px;
    text-decoration:none;
    transition:transform 0.2s ease, background 0.2s ease;
}

.hero-cta:hover { transform:translateY(-5px); background:#333; }


/* Allgemeine Bereiche */

section {
    padding: 100px 10%;
}


section h2 {
    font-size: 45px;
    margin-bottom: 30px;
}


/* Mobile Ansicht */

@media(max-width:768px){

    header {
        padding: 25px;
    }


    nav {
        position:relative;
        min-height:42px;
        flex-direction:row;
        align-items:flex-start;
    }

    nav ul {
        position:absolute;
        top:0;
        right:0;
        display:grid;
        grid-template-columns:repeat(3, max-content);
        width:auto;
        justify-content:end;
        gap:7px 16px;
        margin-top:0;
        text-align:right;
    }

    nav ul a,
    .nav-modal-button {
        padding:4px 0;
        font-size:13px;
    }


    .hero h1 { font-size:52px; }
    .hero-lead { font-size:19px; }

}
/* Meine Perspektive */

.perspective {

    padding:120px 10%;

    background:#ffffff;

}


.perspective-container {

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}


.perspective-text {

    width:50%;

}


.perspective-text h2 {

    font-family:'Playfair Display', serif;

    font-size:55px;

    margin-bottom:20px;

}


.perspective-text h3 {

    font-size:28px;

    font-weight:500;

    margin-bottom:30px;

}


.perspective-text p {

    font-size:18px;

    line-height:1.8;

    color:#444;

    margin-bottom:20px;

}


.perspective-image {

    width:40%;

}


.perspective-image img {

    width:100%;

    height:600px;

    object-fit:cover;

}
/* Galerie */

.gallery {

    padding:120px 10% 30px;

    background:#111;

    color:white;

}


.gallery-header {

    margin-bottom:50px;

}


.gallery h2 {

    font-family:'Playfair Display', serif;

    font-size:60px;

    margin-bottom:20px;

}


.gallery p {

    font-size:20px;

    color:#ccc;

}


/* 6 Bilder Querformat */

.gallery-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.gallery-item {

    position:relative;

    overflow:hidden;

    opacity:0;

    transform:translateY(40px);

    transition:0.8s ease;

}


.gallery-item.show {

    opacity:1;

    transform:translateY(0);

}


.gallery-item img {

    width:100%;

    aspect-ratio:16 / 9;

    object-fit:cover;

    display:block;

    transition:0.6s ease;

}


.gallery-item:hover img {

    transform:scale(1.08);

}


/* Text über Bild */

.gallery-overlay {

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:30px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,0.8)
    );

    opacity:0;

    transition:0.4s;

}


.gallery-overlay h3 {

    color:white;

    font-size:28px;

    font-family:'Playfair Display', serif;

}


.gallery-item:hover .gallery-overlay {

    opacity:1;

}

@media (min-width:601px) {
    .gallery { padding:76px 10%; }
}

.perspective-text .perspective-tagline {
    font-family:'Manrope', sans-serif;
    font-size:clamp(23px, 2.1vw, 31px);
    font-weight:700;
    letter-spacing:-0.04em;
    line-height:1.25;
}

.perspective-rail {
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin:-8px 0 28px;
    color:#4f4a44;
    font-size:11px;
    font-weight:700;
    letter-spacing:0.12em;
    opacity:1;
    visibility:visible;
    text-transform:uppercase;
}

.perspective-rail span {
    opacity:0.55;
    animation:rail-label 4.8s ease-in-out infinite;
}

.perspective-rail span:nth-of-type(2) { animation-delay:0.8s; }
.perspective-rail span:nth-of-type(3) { animation-delay:1.6s; }

.perspective-rail i {
    position:relative;
    display:block;
    flex:0 0 28px;
    width:28px;
    min-width:28px;
    height:1px;
    overflow:visible;
    background:#b8b0a5;
}

.perspective-rail i::after {
    position:absolute;
    top:50%;
    left:0;
    width:5px;
    height:5px;
    border-radius:50%;
    background:#151515;
    content:"";
    transform:translateY(-50%);
    animation:rail-dot 2.8s ease-in-out infinite;
}

.perspective-rail i:nth-of-type(2)::after { animation-delay:0.35s; }

@keyframes rail-dot {
    0%, 100% { left:0; opacity:0.35; }
    50% { left:calc(100% - 5px); opacity:1; }
}

@keyframes rail-label {
    0%, 45%, 100% { opacity:0.55; transform:translateY(0); }
    15%, 30% { opacity:1; transform:translateY(-2px); }
}


/* Zehn Bilder: editoriales, asymmetrisches Raster */

.gallery-grid {
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:18px;
}

.gallery-item {
    grid-column:span 1;
    min-height:0;
    aspect-ratio:16 / 9;
    border-radius:4px;
    background:#242424;
    box-shadow:0 14px 32px rgba(0,0,0,0.18);
    transition:opacity 0.45s ease, transform 0.55s ease, box-shadow 0.35s ease;
}

.gallery-item img {
    height:100%;
    aspect-ratio:16 / 9;
    transition:transform 0.6s ease;
}

.gallery-item:hover { box-shadow:0 22px 44px rgba(0,0,0,0.34); }

.gallery-item { cursor:zoom-in; }

.gallery-item { touch-action:pan-y; }

.gallery-item:focus-visible {
    outline:3px solid #fff;
    outline-offset:4px;
}

.gallery-overlay {
    padding:25px;
    background:linear-gradient(rgba(0,0,0,0.04) 25%, rgba(0,0,0,0.86));
    transition:opacity 0.4s ease;
}

.gallery-overlay h3 {
    max-width:100%;
    font-size:clamp(16px, 1.6vw, 24px);
    line-height:1.1;
    overflow-wrap:anywhere;
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
    .gallery-item,
    .gallery-item:nth-child(n) { grid-column:span 1; min-height:0; }
}

@media (max-width: 600px) {
    .gallery { padding:80px 7%; }
    .gallery h2 { font-size:44px; }
    .gallery-grid { grid-template-columns:1fr; gap:14px; }
    .gallery-item,
    .gallery-item:nth-child(n) { min-height:0; }
    .gallery-overlay { opacity:1; }
}


.lightbox {
    position:fixed;
    z-index:1000;
    inset:0;
    display:grid;
    place-items:center;
    padding:40px;
    background:rgba(0,0,0,0.92);
    opacity:0;
    visibility:hidden;
    transition:opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
    opacity:1;
    visibility:visible;
}

.lightbox-image {
    display:block;
    max-width:min(1200px, 92vw);
    max-height:86vh;
    width:auto;
    height:auto;
    object-fit:contain;
    box-shadow:0 24px 70px rgba(0,0,0,0.55);
}

.lightbox-close {
    position:absolute;
    top:20px;
    right:25px;
    border:0;
    padding:0;
    color:#fff;
    background:transparent;
    font-size:42px;
    line-height:1;
    cursor:pointer;
}

.lightbox-close:focus-visible {
    outline:2px solid #fff;
    outline-offset:4px;
}

.lightbox-nav {
    position:absolute;
    z-index:1;
    top:50%;
    margin:0;
    padding:0 12px;
    border:0;
    border-radius:0;
    background:transparent;
    color:#fff;
    font-size:64px;
    font-weight:300;
    line-height:1;
    transform:translateY(-50%);
}

.lightbox-nav:hover { transform:translateY(-50%) scale(1.12); }
.lightbox-prev { left:18px; }
.lightbox-next { right:18px; }


/* Zwei Perspektiven: Sport und Moderation */

.perspective-image {
    display:flex;
    flex-direction:column;
    gap:14px;
}

.perspective-photo {
    position:relative;
    margin:0;
    aspect-ratio:3 / 2;
    overflow:hidden;
    opacity:0;
    transform:translateY(30px);
    transition:opacity 0.5s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.perspective-photo.show {
    opacity:1;
    transform:translateY(0);
}

.perspective-photo img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
    .perspective-image:hover .perspective-photo:first-of-type img {
        transform:scale(1.04) translateX(-8px);
    }

    .perspective-image:hover .perspective-photo:nth-of-type(2) img {
        transform:scale(1.04) translateX(8px);
    }
}

@media (hover: none), (pointer: coarse) {
    .perspective-photo:active img,
    .perspective-photo.is-touch-zoomed img {
        transform:scale(1.08);
    }
}

.more-info-button {
    margin-top:14px;
    padding:12px 22px;
    border:1px solid #111;
    border-radius:0;
    background:transparent;
    color:#111;
    font-size:14px;
    font-weight:600;
    transition:background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.more-info-button:hover {
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}

.more-info-modal {
    position:fixed;
    z-index:1100;
    inset:0;
    display:grid;
    place-items:center;
    padding:28px;
    background:rgba(17,17,17,0.78);
    opacity:0;
    visibility:hidden;
    transition:opacity 0.25s ease, visibility 0.25s ease;
}

.more-info-modal.is-open {
    opacity:1;
    visibility:visible;
}

.impressum-modal:target {
    opacity:1;
    visibility:visible;
}

.more-info-dialog {
    position:relative;
    width:min(850px, 100%);
    max-height:88vh;
    overflow-y:auto;
    padding:58px;
    background:#f5f1eb;
    color:#151515;
    box-shadow:0 24px 70px rgba(0,0,0,0.35);
}

.more-info-dialog h2 {
    margin:8px 0 22px;
    font-family:'Playfair Display', serif;
    font-size:clamp(38px, 5vw, 62px);
    line-height:1.02;
}

.more-info-dialog > p:not(.section-kicker) {
    max-width:690px;
    font-size:18px;
    line-height:1.7;
}

.more-info-close {
    position:absolute;
    top:18px;
    right:22px;
    margin:0;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    color:#151515;
    font-size:38px;
    line-height:1;
    text-decoration:none;
}

.impressum-dialog {
    width:min(660px, 100%);
    padding:42px 46px 38px;
    background:#f7f4ef;
}

.impressum-dialog h2 {
    margin:5px 0 22px;
    font-size:clamp(34px, 4vw, 46px);
}

.impressum-content {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:9px 22px;
}

.impressum-content section {
    padding:7px 0 0;
    border-top:1px solid #d3cec6;
}

.impressum-content section:nth-child(3),
.impressum-content section:nth-child(4) {
    grid-column:1 / -1;
}

.impressum-content h3 {
    margin:0 0 3px;
    color:#716b63;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.055em;
    line-height:1.35;
    text-transform:uppercase;
}

.impressum-content p,
.impressum-content address {
    margin:0;
    font-size:15px;
    font-style:normal;
    line-height:1.4;
}

.impressum-content a {
    color:inherit;
}

.impressum-copyright {
    grid-column:1 / -1;
    padding-top:8px;
    border-top:1px solid #d3cec6;
    color:#5c5852;
}

.impressum-dialog .impressum-close {
    top:14px;
    right:18px;
    font-size:32px;
}

@media (max-width: 560px) {
    .impressum-dialog {
        padding:38px 24px 26px;
    }

    .impressum-content {
        grid-template-columns:1fr;
        gap:8px;
    }

    .impressum-content section:nth-child(3),
    .impressum-content section:nth-child(4),
    .impressum-copyright {
        grid-column:auto;
    }
}

.expertise-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
    margin-top:34px;
}

.expertise-grid > div {
    padding-top:16px;
    border-top:1px solid #bdb7ae;
}

.expertise-grid h3 {
    margin-bottom:8px;
    font-family:'Playfair Display', serif;
    font-size:23px;
}

.expertise-grid p { color:#5c5852; }

@media (max-width: 650px) {
    .more-info-dialog:not(.impressum-dialog) { padding:48px 25px 30px; }
    .expertise-grid { grid-template-columns:1fr; }
}

@media (max-width: 800px) {
    .perspective-container { flex-direction:column; gap:42px; }
    .perspective-text,
    .perspective-image { width:100%; }
}


/* Einsatzbereiche */

.versatility {
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
    padding:54px 8%;
    background:#ebe6de;
    color:#171717;
}

.versatility-intro {
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(300px, 0.75fr);
    column-gap:clamp(40px, 8vw, 120px);
    align-items:end;
}

.versatility-intro .section-kicker,
.versatility-intro h2 {
    grid-column:1;
}

.versatility-intro h2 {
    margin:6px 0 14px;
    font-size:clamp(34px, 4vw, 54px);
    letter-spacing:-0.055em;
    line-height:0.98;
}

.versatility-intro > p:last-child {
    grid-column:2;
    grid-row:1 / span 2;
    max-width:560px;
    margin-bottom:3px;
    color:#5f5a53;
    font-size:15px;
    line-height:1.6;
}

.versatility-grid {
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
    width:100%;
    padding:0;
    background:transparent;
}

.versatility-item {
    display:flex;
    flex:1 1 0;
    justify-content:center;
    align-items:baseline;
    gap:10px;
    min-width:0;
    margin:0;
    padding:9px 10px;
    border:1px solid #b8b1a7;
    border-radius:999px;
    background:rgba(255,255,255,0.22);
    color:#171717;
    font:inherit;
    text-align:center;
    transition:background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.versatility-item:nth-child(odd),
.versatility-item:nth-child(even) { padding-left:10px; padding-right:10px; }

.versatility-item span {
    flex:0 0 auto;
    color:#8b847b;
    font-size:10px;
    font-weight:700;
    letter-spacing:0.12em;
}

.versatility-item strong {
    min-width:0;
    font-size:clamp(13px, 1.25vw, 18px);
    font-weight:650;
    letter-spacing:-0.035em;
    white-space:nowrap;
    transition:transform 0.25s ease;
}

@media (hover:hover) {
    .versatility-item:hover strong { transform:translateX(5px); }
    button.versatility-item:hover {
        border-color:#777067;
        background:rgba(255,255,255,0.5);
        transform:translateY(-2px);
    }
}

.versatility-item:focus-visible {
    outline:2px solid #171717;
    outline-offset:3px;
}

.availability-dialog {
    width:min(600px, 100%);
    padding:48px;
}

.availability-dialog h2 {
    margin:6px 0 18px;
    font-size:clamp(34px, 4vw, 48px);
}

.availability-dialog > p:not(.section-kicker) {
    max-width:510px;
    font-size:16px;
    line-height:1.65;
}

.availability-mail-button {
    display:inline-block;
    margin-top:24px;
    padding:13px 20px;
    background:#171717;
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:background 0.2s ease, transform 0.2s ease;
}

.availability-mail-button:hover {
    background:#343434;
    transform:translateY(-2px);
}

@media (max-width:600px) {
    .availability-dialog { padding:42px 24px 28px; }
    .availability-mail-button { width:100%; text-align:center; }
}

@media (max-width: 850px) {
    .versatility-intro {
        grid-template-columns:1fr;
        gap:18px;
    }

    .versatility-intro > p:last-child {
        grid-column:1;
        grid-row:auto;
        margin-bottom:0;
    }

    .versatility-grid { flex-wrap:wrap; }
    .versatility-item { flex:1 1 calc(33.333% - 10px); }
}

@media (max-width: 600px) {
    .versatility {
        gap:22px;
        padding:46px 7%;
    }

    .versatility-intro h2 { font-size:34px; }
    .versatility-intro > p:last-child { font-size:14px; }

    .versatility-item {
        flex:1 1 calc(50% - 5px);
        gap:8px;
        padding:9px 12px;
    }

    .versatility-item:last-child { flex-basis:100%; }

    .versatility-item:nth-child(odd),
    .versatility-item:nth-child(even) { padding-left:8px; padding-right:8px; }
    .versatility-item strong { font-size:14px; }
}


/* Videos */

#showreel {
    background:#f5f1eb;
}

#contact {
    display:flex;
    flex-direction:column;
    padding:0 10% 90px;
    background:#f3f0ea;
    color:#151515;
}

#contact h2 {
    margin-bottom:30px;
    font-family:'Playfair Display', serif;
    font-size:clamp(42px, 5vw, 62px);
}

.contact-content {
    display:grid;
    grid-template-columns:minmax(0, 1fr) 420px;
    align-items:center;
    gap:48px;
    padding:44px 0 0;
    border-top:1px solid #c9c3b9;
    background:transparent;
    box-shadow:none;
}

.contact-personal-logo {
    display:grid;
    place-items:center end;
    min-height:180px;
    padding-left:48px;
    border-left:1px solid #c9c3b9;
}

.contact-personal-logo img {
    display:block;
    max-width:420px;
    max-height:220px;
    width:100%;
    height:auto;
    object-fit:contain;
}

.contact-content .contact-link {
    border-color:#bdb7ae;
    background:transparent;
    color:#151515;
}

.contact-content .contact-link:hover {
    border-color:#151515;
    background:#151515;
    color:#fff;
}

.contact-content .contact-link:nth-child(1) {
    border-color:transparent;
    background:linear-gradient(135deg, #4b5563, #1f2937);
    color:#fff;
}

.contact-content .contact-link:nth-child(2) {
    border-color:transparent;
    background:linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
    color:#fff;
}

.contact-content .contact-link:nth-child(3) {
    border-color:transparent;
    background:linear-gradient(135deg, #0a66c2, #004182);
    color:#fff;
}

.contact-content .contact-link:hover {
    border-color:transparent;
    filter:brightness(1.08);
}

.phone-request {
    max-width:520px;
    margin-top:30px;
    padding-top:24px;
    border-top:1px solid #c9c3b9;
}

.phone-request label {
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:700;
}

.phone-request-row {
    display:flex;
    gap:10px;
}

.phone-request input {
    min-width:0;
    flex:1;
    padding:12px 14px;
    border:1px solid #bdb7ae;
    border-radius:0;
    background:#fff;
    color:#151515;
    font:inherit;
}

.phone-request button {
    margin:0;
    padding:12px 18px;
    border-radius:0;
    background:#151515;
    color:#fff;
    font:inherit;
    font-weight:700;
}

.phone-request-note,
.phone-reveal {
    margin-top:9px;
    color:#6a655e;
    font-size:13px;
}

.phone-reveal {
    color:#151515;
    font-size:16px;
    font-weight:700;
}

.phone-reveal a { color:inherit; }

.contact-links {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.contact-link {
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:13px 18px;
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
    text-decoration:none;
    transition:background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-link:hover {
    border-color:#fff;
    background:rgba(255,255,255,0.12);
    transform:translateY(-3px);
}

.contact-link svg {
    width:20px;
    height:20px;
    fill:currentColor;
}

.contact-link:nth-child(2) svg {
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
}

.references {
    order:-1;
    margin-top:0;
    margin-bottom:55px;
    padding-top:24px;
    border-top:1px solid #c9c3b9;
}

.references-title {
    margin-bottom:14px;
    color:#6a655e;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
}

.references-window {
    overflow:hidden;
    padding:10px 0;
    background:#fff;
    mask-image:linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.references-track {
    display:flex;
    width:max-content;
    animation:reference-scroll 28s linear infinite;
}

.references-window:hover .references-track { animation-play-state:paused; }

.media-mentions {
    margin-top:42px;
    border-top:1px solid #c9c3b9;
}

.media-mentions h3 {
    margin:0;
    padding:18px 0 12px;
    color:#6a655e;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
}

.media-mentions-list { border-top:1px solid #d6d0c7; }

.mobile-media-logo { display:none; }

.media-mentions-list a {
    display:grid;
    grid-template-columns:150px minmax(0, 1fr) 24px;
    gap:20px;
    align-items:center;
    padding:15px 0;
    border-bottom:1px solid #d6d0c7;
    color:#151515;
    text-decoration:none;
    transition:padding 0.25s ease, color 0.25s ease;
}

.media-source {
    color:#777168;
    font-size:11px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

.media-title {
    font-size:15px;
    font-weight:600;
    line-height:1.4;
}

.media-arrow {
    justify-self:end;
    font-size:18px;
    transition:transform 0.25s ease;
}

@media (hover:hover) {
    .media-mentions-list a:hover { padding-left:8px; color:#555049; }
    .media-mentions-list a:hover .media-arrow { transform:translate(3px, -3px); }
}

@media (max-width:600px) {
    .media-mentions { margin-top:32px; }
    .media-mentions-list a {
        grid-template-columns:minmax(0, 1fr) 20px;
        gap:4px 12px;
        padding:14px 0;
    }
    .media-source { grid-column:1; }
    .media-title { grid-column:1; font-size:14px; }
    .media-arrow { grid-column:2; grid-row:1 / span 2; }

    .mobile-media-logo {
        display:grid;
        place-items:center;
        margin-top:34px;
        padding-top:26px;
        border-top:1px solid #c9c3b9;
    }

    .mobile-media-logo img {
        display:block;
        width:min(190px, 58vw);
        height:auto;
    }
}

@media (min-width:700px) and (max-width:1100px) {
    .perspective { padding:90px 6%; }

    .perspective-container {
        align-items:stretch;
        flex-direction:row;
        gap:34px;
    }

    .perspective-text { width:55%; }

    .perspective-image {
        width:45%;
        align-self:stretch;
    }

    .perspective-photo {
        flex:1 1 0;
        min-height:0;
        aspect-ratio:auto;
    }

    .perspective-photo:first-of-type img { object-position:center center; }
    .perspective-photo:nth-of-type(2) img { object-position:82% center; }
}

.reference-logo {
    display:grid;
    flex:0 0 175px;
    place-items:center;
    height:72px;
    margin-right:14px;
    color:#555;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.08em;
}

.reference-logo img {
    max-width:78%;
    max-height:48px;
    object-fit:contain;
    filter:none;
}

.reference-logo {
    transition:transform 0.25s ease, opacity 0.25s ease;
}

.references-window:hover .reference-logo { opacity:0.55; }
.references-window:hover .reference-logo:hover {
    opacity:1;
    transform:scale(1.06);
}

@keyframes reference-scroll {
    to { transform:translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .references-track { animation:none; }
    .section-reveal.is-ready {
        opacity:1;
        transform:none;
        transition:none;
    }
    .section-line::before {
        width:80%;
        transition:none;
    }
}

@media (max-width: 600px) {
    .contact-links { flex-direction:column; }
    .contact-link { justify-content:center; }
    .contact-content {
        grid-template-columns:1fr;
        gap:30px;
        padding:34px 0 0;
    }
    .contact-personal-logo {
        place-items:center start;
        min-height:0;
        padding:30px 0 0;
        border-top:1px solid #c9c3b9;
        border-left:0;
    }
    .phone-request-row { flex-direction:column; }
}

/* Einheitliche, moderne Typografie */
.perspective-text h2,
.gallery h2,
.gallery-overlay h3,
.video-section-header h2,
.video-card-content h3,
.more-info-dialog h2,
.expertise-grid h3,
#contact h2 {
    font-family:'Manrope', sans-serif;
    letter-spacing:-0.045em;
}

#showreel > p { display:none; }

.video-section-header {
    max-width:680px;
    margin-bottom:42px;
}

.section-kicker,
.video-label {
    color:#8a5e3b;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
}

.video-section-header h2 {
    margin:8px 0 16px;
    font-family:'Playfair Display', serif;
    font-size:clamp(42px, 5vw, 66px);
    line-height:1.05;
}

.video-section-header > p:last-child,
.video-card-content > p:last-child {
    color:#555;
    font-size:18px;
}

.video-grid {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:28px;
}

.video-card {
    overflow:hidden;
    background:#fff;
    box-shadow:0 14px 36px rgba(17,17,17,0.09);
}

.video-player {
    position:relative;
    aspect-ratio:16 / 9;
    background:#1b1b1b;
}

.video-play-overlay {
    position:absolute;
    z-index:2;
    top:50%;
    left:50%;
    display:grid;
    place-items:center;
    width:58px;
    height:58px;
    margin:0;
    padding:0;
    border:1px solid rgba(255,255,255,0.72);
    border-radius:50%;
    background:rgba(12,12,12,0.28);
    color:#fff;
    box-shadow:0 8px 28px rgba(0,0,0,0.2);
    backdrop-filter:blur(4px);
    transform:translate(-50%, -50%);
    transition:opacity 0.25s ease, background 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.video-play-icon {
    position:relative;
    display:grid;
    place-items:center;
    width:16px;
    height:18px;
}

.video-play-icon::after {
    width:0;
    height:0;
    margin-left:2px;
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
    border-left:12px solid #fff;
    content:"";
}

.video-play-overlay:hover {
    background:rgba(12,12,12,0.48);
    transform:translate(-50%, -50%) scale(1.06);
}

.video-play-overlay:focus-visible {
    outline:3px solid #fff;
    outline-offset:4px;
}

.video-player.is-playing .video-play-overlay {
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.video-player video,
.video-player iframe {
    display:block;
    width:100%;
    height:100%;
    border:0;
    object-fit:cover;
}

.video-card-content {
    padding:25px 28px 30px;
}

.video-card-content h3 {
    margin:5px 0 10px;
    font-family:'Playfair Display', serif;
    font-size:30px;
}

@media (max-width: 700px) {
    .video-grid { grid-template-columns:1fr; }
}

/* Mobile Feinschliff – Desktop bleibt unverändert */
@media (max-width: 600px) {
    header { padding:18px; }

    nav {
        position:relative;
        align-items:flex-start;
    }

    .logo img {
        max-width:105px;
        max-height:42px;
    }

    .contact-personal-logo { display:none; }

    .video-play-overlay { display:none; }

    nav ul {
        position:absolute;
        top:0;
        right:0;
        display:grid;
        grid-template-columns:repeat(3, max-content);
        width:auto;
        justify-content:end;
        gap:7px 13px;
        margin-top:0;
        text-align:right;
    }

    nav ul a,
    .nav-modal-button {
        font-size:12px;
        line-height:1.2;
    }

    .hero {
        min-height:680px;
        height:100svh;
        padding:110px 7% 40px;
    }

    .hero-text { max-width:100%; }

    .hero h1 {
        margin:8px 0 18px;
        font-size:clamp(52px, 15vw, 72px);
        line-height:0.86;
    }

    .hero-eyebrow {
        gap:9px;
        font-size:10px;
        letter-spacing:0.12em;
    }

    .hero-eyebrow::before { width:24px; }

    .hero-lead {
        font-size:20px;
        line-height:1.28;
    }

    .hero-cta {
        margin-top:24px;
        padding:14px 22px;
        font-size:14px;
    }

    .perspective,
    #showreel,
    #contact { padding-left:7%; padding-right:7%; }

    .perspective { padding-top:76px; padding-bottom:76px; }

    .perspective-text h2,
    .gallery h2,
    #contact h2 { font-size:42px; }

    .perspective-text h3,
    .perspective-text .perspective-tagline { font-size:23px; }

    .perspective-text p { font-size:16px; line-height:1.7; }

    .perspective-rail {
        gap:7px;
        margin-bottom:24px;
        font-size:10px;
        letter-spacing:0.08em;
    }

    .perspective-rail i { width:18px; }

    .perspective-image { gap:12px; }

    .gallery { padding-left:7%; padding-right:7%; }

    .gallery-header { margin-bottom:30px; }

    .gallery p { font-size:16px; }

    .gallery-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:10px;
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column:span 1;
        aspect-ratio:auto;
        opacity:1;
        transform:none;
    }

    .gallery-item:hover,
    .gallery-item:active {
        box-shadow:0 14px 32px rgba(0,0,0,0.18);
    }

    .gallery-item:hover img,
    .gallery-item:active img {
        transform:none;
    }

    .gallery-item img {
        height:auto;
        aspect-ratio:auto;
        object-fit:contain;
    }

    .gallery-item:nth-child(9),
    .gallery-item:nth-child(10) {
        aspect-ratio:16 / 9;
    }

    .gallery-item:nth-child(9) img,
    .gallery-item:nth-child(10) img {
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .gallery-overlay { padding:10px; }

    .gallery-overlay h3 {
        font-size:clamp(13px, 3.5vw, 17px);
        line-height:1.05;
    }

    #showreel { padding-top:76px; padding-bottom:76px; }

    .video-section-header { margin-bottom:30px; }

    .video-section-header > p:last-child,
    .video-card-content > p:last-child { font-size:16px; }

    .video-card-content { padding:20px; }

    .lightbox { padding:16px; }

    .lightbox-image { max-width:100%; max-height:80vh; }

    .lightbox-close { top:12px; right:16px; }

    .lightbox-nav {
        padding:0 7px;
        font-size:46px;
    }

    .lightbox-prev { left:4px; }
    .lightbox-next { right:4px; }

    .more-info-modal { padding:12px; }

    .more-info-dialog { max-height:92vh; }

    .references { margin-bottom:38px; }

    .references-window { margin:0 -7vw; }

    .reference-logo { flex-basis:140px; height:64px; }

    .contact-links { gap:10px; }

    .contact-link { padding:12px 15px; font-size:14px; }

    .phone-request { margin-top:24px; }
}
