/* EDITORIAL MAGAZINE STYLE - ULTRA BOLD */

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

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #888888;
    --accent: #f58a3d;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 30px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0;
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 60px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* MEGA HERO */
.mega-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.mega-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.mega-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.mega-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 100%;
}

.mega-title-wrapper {
    margin-bottom: 100px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.mega-title {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
    animation: slideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) backwards;
}

.mega-title:nth-child(1) { animation-delay: 0.1s; }
.mega-title:nth-child(2) { animation-delay: 0.3s; }
.mega-title:nth-child(3) { animation-delay: 0.5s; }

.mega-title-highlight {
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mega-scroll-hint span {
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* STATEMENT SECTION */
.statement-section {
    padding: 180px 60px;
    background: #000000;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statement-content {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.statement-line {
    font-size: clamp(56px, 8vw, 140px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -5px;
    color: var(--white);
    margin: 0;
    text-transform: none;
}

.statement-line:nth-child(1) {
    padding-left: 0;
}

.statement-line:nth-child(2) {
    padding-left: 80px;
}

.statement-line:nth-child(3) {
    padding-left: 160px;
}

.statement-highlight {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.35);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(0, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* FULLSCREEN MEDIA */

.mega-quote {
    font-size: clamp(60px, 10vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.mega-subtext {
    font-size: clamp(20px, 2.5vw, 36px);
    line-height: 1.4;
    max-width: 900px;
    font-weight: 400;
    opacity: 0.9;
}

/* EDITORIAL INTRO */
.editorial-intro {
    padding: 200px 60px;
    background: var(--white);
    color: var(--black);
}

.editorial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 100px;
}

.editorial-number {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.1;
}

.editorial-heading {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.editorial-body {
    font-size: clamp(18px, 2vw, 32px);
    line-height: 1.6;
    color: var(--gray);
    font-weight: 400;
}

.editorial-body strong {
    color: var(--black);
    font-weight: 900;
}

/* SERVICES TITLE */
.services-title-section {
    padding: 200px 60px;
    background: var(--black);
    text-align: center;
    overflow: hidden;
}

.ultra-title {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    text-transform: uppercase;
    max-width: 100%;
    word-wrap: break-word;
}

.ultra-highlight {
    color: var(--accent);
}

/* SPLIT SERVICE */
.split-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: transparent;
}

.split-media {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.split-media:hover .split-image {
    transform: scale(1.05);
}

.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.split-content {
    background: var(--black);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.split-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.service-number {
    font-size: 80px;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.split-title {
    font-size: clamp(50px, 6vw, 120px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -4px;
    margin-top: 30px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.split-divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 30px;
}

.split-subtitle {
    font-size: clamp(20px, 2.5vw, 36px);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.accent {
    color: var(--accent);
}

.split-text {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 60px;
}

/* EDITORIAL BUTTON */
.editorial-btn {
    display: inline-block;
    align-self: center;
    padding: 20px 50px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.editorial-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.editorial-btn-light {
    background: transparent;
    color: var(--white);
}

.editorial-btn-light:hover {
    background: var(--white);
    color: var(--black);
}

/* FULLWIDTH SERVICE */
.fullwidth-service {
    position: relative;
    background: var(--black);
}

.fullwidth-media {
    position: relative;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.fullwidth-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullwidth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
}

.fullwidth-overlay-light {
    background: transparent;
}

.service-number-large {
    font-size: 100px;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.fullwidth-title {
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -8px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.fullwidth-subtitle {
    font-size: clamp(20px, 2.5vw, 36px);
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.fullwidth-text {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 600px;
}

.fullwidth-description {
    background: var(--white);
    color: var(--black);
    padding: 100px 60px;
}

.description-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.description-text {
    font-size: clamp(20px, 2.5vw, 36px);
    line-height: 1.6;
    font-weight: 400;
    color: var(--gray);
}

/* MAGAZINE SERVICE */
.magazine-service {
    background: #f8f8f8;
    color: var(--black);
    padding: 200px 60px;
}

.magazine-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.magazine-title {
    font-size: clamp(60px, 8vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.magazine-divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 30px;
}

.magazine-subtitle {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;
    margin-bottom: 40px;
}

.magazine-body {
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 60px;
}

.magazine-image {
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.magazine-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.magazine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.magazine-image:hover img {
    transform: scale(1.05);
}

/* CINEMATIC SERVICE */
.cinematic-service {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--black);
}

.cinematic-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cinematic-image,
.cinematic-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinematic-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.cinematic-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.service-number-outline {
    font-size: 100px;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.cinematic-title {
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.cinematic-line {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 30px;
}

.cinematic-subtitle {
    font-size: clamp(20px, 2.5vw, 36px);
    font-weight: 700;
    margin-bottom: 40px;
}

.cinematic-text {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 60px;
}

.editorial-btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.editorial-btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* BOLD SERVICE */
.bold-service {
    background: #ffffff;
    color: var(--black);
    padding: 150px 60px;
    position: relative;
}

.bold-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
}

.service-number-massive {
    font-size: 160px;
    font-weight: 900;
    line-height: 0.8;
    opacity: 0.15;
}

.bold-mega-title {
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -8px;
    text-transform: uppercase;
}

.bold-right {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.bold-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bold-right:hover .bold-image {
    transform: scale(1.05);
}

.bold-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bold-subtitle {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.bold-text {
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 60px;
}

/* IMMERSIVE SERVICE */
.immersive-service {
    position: relative;
    height: 100vh;
    height: 100dvh;
    margin-bottom: 0;
    background: var(--black);
    overflow: hidden;
}

.immersive-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.immersive-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.immersive-media img,
.immersive-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.immersive-content {
    max-width: 900px;
    padding: 80px 80px;
    text-align: center;
}

.service-number-glow {
    font-size: 100px;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.immersive-title {
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.immersive-divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 30px;
}

.immersive-subtitle {
    font-size: clamp(20px, 2.5vw, 36px);
    font-weight: 700;
    margin-bottom: 40px;
}

.immersive-text {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 60px;
}

.editorial-btn-glow {
    box-shadow: 0 0 40px rgba(245, 138, 61, 0.5);
}

/* DRAMATIC SERVICE */
.dramatic-service {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.dramatic-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.dramatic-background img,
.dramatic-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dramatic-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 60px;
}

.dramatic-box {
    background: transparent;
    backdrop-filter: none;
    padding: 100px 80px;
    max-width: 650px;
    border: none;
}

.service-number-dramatic {
    font-size: 100px;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.dramatic-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.dramatic-line {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 30px;
}

.dramatic-subtitle {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}

.dramatic-text {
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 60px;
}

/* WHY EDITORIAL */
.why-editorial {
    background: var(--white);
    color: var(--black);
    padding: 200px 60px;
}

.why-header {
    text-align: center;
    margin-bottom: 150px;
}

.why-mega-title {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.why-subtitle {
    font-size: clamp(20px, 2.5vw, 36px);
    color: var(--gray);
    font-weight: 500;
}

.why-grid-editorial {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.why-card-editorial {
    padding: 80px 60px;
    background: #fafafa;
    transition: all 0.4s ease;
}

.why-card-editorial:hover {
    background: var(--black);
    color: var(--white);
}

.why-icon-massive {
    font-size: 100px;
    margin-bottom: 40px;
}

.why-card-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.why-card-text {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.7;
    color: var(--gray);
}

.why-card-editorial:hover .why-card-text {
    color: rgba(255,255,255,0.8);
}

/* CONTACT EDITORIAL */
.contact-editorial {
    background: var(--black);
    padding: 200px 60px;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header-editorial {
    text-align: center;
    margin-bottom: 100px;
}

.contact-mega-title {
    font-size: clamp(36px, 6vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.contact-intro-editorial {
    font-size: clamp(18px, 2vw, 32px);
    line-height: 1.6;
    opacity: 0.8;
}

.contact-form-editorial {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.form-group-editorial {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group-editorial label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.form-group-editorial input,
.form-group-editorial textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 18px;
    padding: 15px 0;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group-editorial input:focus,
.form-group-editorial textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.editorial-btn-massive {
    width: 100%;
    padding: 30px;
    font-size: 16px;
    margin-top: 40px;
}

/* CTA Section before Footer */
.cta-section {
    text-align: center;
    padding: 80px 40px 100px;
    background: var(--black);
}

.cta-section .cta-big-btn {
    display: inline-block;
    padding: 28px 70px;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--accent);
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.cta-section .cta-big-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(245, 138, 61, 0.4);
}

/* FOOTER EDITORIAL */
.footer-editorial {
    background: #0a0a0a;
    padding: 100px 60px 60px;
}

.footer-grid-editorial {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.footer-details p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-details a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-details a:hover {
    color: var(--accent);
}

.footer-links-editorial {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.footer-links-editorial a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links-editorial a:hover {
    color: var(--accent);
}

.footer-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
}

.footer-bottom-editorial {
    text-align: center;
}

.footer-bottom-editorial p {
    font-size: 14px;
    opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .statement-content,
    .editorial-grid,
    .magazine-grid,
    .bold-grid,
    .split-service,
    .footer-grid-editorial,
    .form-row {
        grid-template-columns: 1fr;
    }

    .why-grid-editorial {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .split-service {
        min-height: auto;
    }

    .split-media {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    /* --- NAVIGATION --- */
    .navbar {
        padding: 12px 20px;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
        z-index: 10001;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .hamburger {
        display: flex;
        z-index: 10002;
        position: relative;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* --- GENERAL PADDING --- */
    .container {
        padding: 0 20px;
    }

    .statement-section,
    .editorial-intro,
    .services-title-section,
    .split-content,
    .fullwidth-description,
    .magazine-service,
    .bold-service {
        padding-left: 20px;
        padding-right: 20px;
    }

    .why-editorial {
        padding: 80px 20px;
    }

    .contact-editorial {
        padding: 80px 20px;
    }

    .footer-editorial {
        padding: 60px 20px 40px;
    }

    .mega-hero-content {
        padding: 0 20px;
    }

    .services-title-section {
        padding: 80px 20px;
    }

    .statement-section {
        padding: 80px 20px;
    }

    /* --- HERO SECTION --- */
    .mega-hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        transform: none;
    }

    .mega-title-wrapper {
        margin-bottom: 60px;
    }

    .mega-scroll-hint span {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .scroll-line {
        height: 50px;
    }

    /* --- IMMERSIVE SERVICE (Virtuelle Welten) --- */
    .immersive-service {
        height: auto;
        min-height: auto;
    }

    .immersive-wrapper {
        position: relative;
        min-height: auto;
    }

    .immersive-overlay {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }

    .immersive-content {
        padding: 170px 20px 170px;
        text-align: center;
    }

    .service-number-glow {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .immersive-title {
        font-size: clamp(36px, 10vw, 80px);
        letter-spacing: -3px;
        margin-bottom: 16px;
    }

    .immersive-subtitle {
        font-size: clamp(16px, 4.5vw, 24px);
        margin-bottom: 16px;
    }

    .immersive-text {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .immersive-divider {
        margin-bottom: 16px;
    }

    /* --- FULLWIDTH SERVICE (Messen) --- */
    .fullwidth-media {
        position: relative;
        height: auto;
        min-height: auto;
        overflow: hidden;
    }

    .fullwidth-media video,
    .fullwidth-media > img,
    .fullwidth-media > .fullwidth-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fullwidth-overlay {
        position: relative;
        padding: 170px 20px 170px;
        text-align: center;
        background: rgba(0, 0, 0, 0.45);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .fullwidth-overlay .editorial-btn-light {
        align-self: center;
    }

    .service-number-large {
        font-size: 60px;
    }

    .fullwidth-title {
        letter-spacing: -3px;
        margin-bottom: 15px;
    }

    .fullwidth-subtitle {
        font-size: clamp(16px, 4.5vw, 28px);
        margin-bottom: 15px;
    }

    .fullwidth-text {
        font-size: 15px;
        margin-bottom: 25px;
    }

    /* --- CINEMATIC SERVICE (Webdesign) --- */
    .cinematic-service {
        min-height: auto;
    }

    .cinematic-content {
        padding: 170px 20px 170px;
        max-width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }

    .cinematic-content .editorial-btn-outline {
        align-self: center;
    }

    .cinematic-line {
        width: 80px;
        margin: 0 auto 20px;
    }

    .service-number-outline {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .cinematic-title {
        letter-spacing: -3px;
        margin-bottom: 20px;
    }

    .cinematic-subtitle {
        font-size: clamp(16px, 4.5vw, 28px);
        margin-bottom: 20px;
    }

    .cinematic-text {
        font-size: 15px;
        margin-bottom: 30px;
    }

    /* KI SECTION mobile overrides are placed after base KI styles (end of file) */

    /* --- EDITORIAL BUTTONS --- */
    .editorial-btn {
        padding: 14px 30px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .editorial-btn-massive {
        padding: 18px 20px;
        font-size: 14px;
    }

    .editorial-btn-glow {
        box-shadow: 0 0 20px rgba(245, 138, 61, 0.4);
    }

    /* --- WHY SECTION --- */
    .why-grid-editorial {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-header {
        margin-bottom: 60px;
    }

    .why-mega-title {
        letter-spacing: -3px;
        margin-bottom: 20px;
    }

    .why-card-editorial {
        padding: 40px 25px;
        text-align: center;
    }

    .why-icon-massive {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .why-card-title {
        font-size: clamp(24px, 6vw, 36px);
        letter-spacing: -1px;
        margin-bottom: 15px;
    }

    .why-card-text {
        font-size: 14px;
    }

    /* --- CONTACT SECTION --- */
    .contact-header-editorial {
        margin-bottom: 50px;
    }

    .contact-mega-title {
        letter-spacing: -2px;
        margin-bottom: 25px;
    }

    .contact-intro-editorial {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group-editorial input,
    .form-group-editorial textarea {
        font-size: 16px;
        padding: 12px 0;
    }

    /* --- FOOTER --- */
    .footer-grid-editorial {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-title {
        font-size: clamp(28px, 7vw, 48px);
        margin-bottom: 20px;
    }

    .footer-links-editorial {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        max-width: 180px;
    }

    /* --- STATEMENT --- */
    .statement-line:nth-child(1) {
        padding-left: 0;
    }

    .statement-line:nth-child(2) {
        padding-left: 20px;
    }

    .statement-line:nth-child(3) {
        padding-left: 40px;
    }

    .statement-line {
        letter-spacing: -3px;
    }

    /* --- EDITORIAL INTRO --- */
    .editorial-intro {
        padding: 80px 20px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .editorial-number {
        font-size: 80px;
    }

    /* --- DRAMATIC SERVICE --- */
    .dramatic-content {
        padding: 100px 20px 60px;
    }

    .dramatic-box {
        padding: 40px 20px;
        max-width: 100%;
    }

    .service-number-dramatic {
        font-size: 60px;
    }

    /* --- MAGAZINE SERVICE --- */
    .magazine-service {
        padding: 80px 20px;
    }

    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .magazine-image {
        height: 300px;
    }

    /* --- BOLD SERVICE --- */
    .bold-service {
        padding: 80px 20px;
    }

    .bold-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .bold-image {
        min-height: 250px;
    }

    /* --- SPLIT SERVICE --- */
    .split-content {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .split-content .editorial-btn {
        align-self: center;
    }

    .split-content::before {
        display: none;
    }

    .split-divider {
        margin: 0 auto 30px;
    }

    .split-media {
        height: 50vh;
    }
}

/* CTA Section mobile */
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px 60px;
    }

    .cta-section .cta-big-btn {
        padding: 18px 30px;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .page-hero {
        padding: 100px 20px 40px;
    }

    .page-gallery {
        padding: 40px 15px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        height: 40px;
    }

    .mega-title {
        letter-spacing: -2px;
    }

    .immersive-content {
        padding: 150px 15px 150px;
    }

    .ki-right {
        padding: 150px 15px 150px;
    }

    .cinematic-content {
        padding: 150px 15px 150px;
    }

    .fullwidth-overlay {
        padding: 150px 15px 150px;
    }

    .why-card-editorial {
        padding: 30px 20px;
    }

    .editorial-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* PERFORMANCE OPTIMIZATIONS */

/* Hardware acceleration for smooth animations */
.mega-title,
.ultra-title,
.split-title,
.service-number,
.split-media img,
.fullwidth-media img,
.cinematic-media img,
.magazine-media img,
.immersive-media img,
.btn {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Optimize image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.split-media img,
.split-media video,
.fullwidth-media img,
.fullwidth-media video,
.cinematic-media img,
.cinematic-background video,
.magazine-media img,
.immersive-media img,
.immersive-media video,
.bold-image,
.dramatic-background video,
.magazine-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Enhanced hover effects */
.split-service:hover .split-media img,
.split-service:hover .split-media video,
.fullwidth-service:hover .fullwidth-media img,
.fullwidth-service:hover .fullwidth-media video,
.cinematic-service:hover .cinematic-background video,
.bold-service:hover .bold-image {
    transform: scale(1.05) translateZ(0);
}

/* Smooth scrolling enhancements */
html {
    scroll-padding-top: 100px;
}

/* Loading state */
body:not(.loaded) * {
    animation-play-state: paused !important;
}

body.loaded {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Text selection styling */
::selection {
    background: var(--accent);
    color: var(--black);
}

::-moz-selection {
    background: var(--accent);
    color: var(--black);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}

/* Image overlay on hover for editorial feel */
.split-media::after,
.fullwidth-media::after,
.cinematic-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.split-service:hover .split-media::after,
.fullwidth-service:hover .fullwidth-media::after,
.cinematic-service:hover .cinematic-media::after {
    opacity: 0;
}

.fullwidth-service.no-hover-effect:hover .fullwidth-media::after {
    opacity: 0;
}

.fullwidth-service.no-hover-effect:hover .fullwidth-media img,
.fullwidth-service.no-hover-effect:hover .fullwidth-media video {
    transform: none;
}

/* Enhanced service number effects */
.service-number {
    position: relative;
    cursor: pointer;
}

.service-number::before {
    content: attr(data-number);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    opacity: 0.03;
    z-index: -1;
    color: var(--accent);
    transition: all 0.6s ease;
}

.split-service:hover .service-number::before {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Animated gradient borders */
@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhance focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .particles,
    .cursor-glow {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .mega-title,
    .ultra-title {
        color: black;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .mega-title {
        font-size: clamp(40px, 10vw, 80px);
        letter-spacing: -2px;
    }

    .ultra-title {
        font-size: clamp(36px, 9vw, 70px);
        letter-spacing: -2px;
    }

    .split-title {
        font-size: clamp(30px, 7vw, 60px);
        letter-spacing: -2px;
    }

    .service-number {
        font-size: clamp(48px, 10vw, 80px);
    }

    .fullwidth-title,
    .cinematic-title,
    .bold-mega-title {
        font-size: clamp(36px, 9vw, 70px);
        letter-spacing: -2px;
    }

    .service-number-large,
    .service-number-massive {
        font-size: clamp(60px, 12vw, 90px);
    }

    /* Optimize for mobile touch */
    .editorial-btn,
    .btn {
        min-height: 48px;
    }

    /* Reduce parallax on mobile for performance */
    .split-media img,
    .fullwidth-media img {
        transform: none !important;
    }

    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }

    section {
        overflow-x: hidden;
    }
}

/* Dark mode enhancements (if user prefers) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 2px solid var(--white);
    }

    .btn {
        border: 2px solid var(--accent);
    }
}

/* Animation for service sections entering viewport */
.split-service,
.fullwidth-service,
.magazine-service,
.cinematic-service,
.bold-service,
.immersive-service,
.dramatic-service {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced gradient animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes megaTitleColorCycle {
    0%   { color: #ffffff; }
    20%  { color: #ff6b35; }
    40%  { color: #3498db; }
    60%  { color: #e74c3c; }
    80%  { color: #2ecc71; }
    100% { color: #ffffff; }
}

.mega-title-wrapper .mega-title {
    -webkit-text-fill-color: unset;
    animation: slideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) backwards, megaTitleColorCycle 15s ease-in-out infinite;
}

.mega-title-wrapper .mega-title:nth-child(1) { animation-delay: 0.1s, 0s; }
.mega-title-wrapper .mega-title:nth-child(2) { animation-delay: 0.3s, 0s; }

.mega-title-wrapper .mega-title-highlight {
    background: none;
    -webkit-text-fill-color: unset;
}

.highlight-text,
.ultra-highlight {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Self-hosted Inter font — DSGVO-konform */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Inter-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/Inter-Black.woff2') format('woff2');
}

/* GPU acceleration helpers */
@media (min-width: 1024px) {
    .split-media,
    .fullwidth-media,
    .cinematic-media,
    .magazine-media,
    .immersive-media {
        transform: translate3d(0, 0, 0);
        perspective: 1000px;
    }
}

/* GALLERY THUMBNAIL SECTION */
.gallery-thumbnail-section {
    background: var(--black);
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail-container {
    max-width: 300px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.gallery-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(245, 138, 61, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.thumbnail-container:hover {
    transform: translateY(-10px) scale(1.05);
}

.thumbnail-container:hover .gallery-thumbnail {
    box-shadow: 0 20px 60px rgba(245, 138, 61, 0.5);
}

/* IMAGE MODAL */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    animation: modalSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Image Modal Container */
.modal-image-container {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.image-modal .modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--white);
    color: var(--white);
    z-index: 3;
}

.modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.modal-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(245, 138, 61, 0.4);
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Modal Image Styling */
.modal-image-container .modal-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

/* Modal Video Styling */
.modal-image-container video.modal-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.modal-description {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.modal-description h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-description p {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.modal-description p:last-child {
    margin-bottom: 0;
}

/* MODAL RESPONSIVE */
@media (max-width: 1024px) {
    .modal-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 32px;
    }

    .image-modal .modal-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-thumbnail-section {
        padding: 40px 30px;
    }

    .thumbnail-container {
        max-width: 200px;
    }

    .modal-content {
        padding: 20px;
        width: 95%;
    }

    .modal-description {
        padding: 30px 20px;
    }

    .modal-image-container {
        max-width: 95vw;
        max-height: 85vh;
    }

    .modal-image-container .modal-image {
        max-width: 95vw;
        max-height: 85vh;
    }

    .image-modal .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* PRÄSENTATIONEN FULLSCREEN SECTION */
.praes-left {
    background: #7fbfb5;
}

.praes-bg-image {
    object-position: center center;
}

/* ANZEIGEN PAGE STYLES */
.page-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 160px 60px 10px;
    text-align: center;
}

.page-hero-content {
    max-width: 1200px;
}

.page-mega-title {
    font-size: clamp(42px, 7vw, 104px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.anzeigen-subtitle {
    font-size: clamp(20px, 2vw, 34px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ANZEIGEN GALLERY */
.page-gallery {
    background: var(--black);
    padding: 40px 60px;
    min-height: 100vh;
}

/* Masonry Gallery Layout */
.gallery-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: flex-start;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(245, 138, 61, 0.35);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Video Styles */
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    background: #1a1a1a;
}

.gallery-grid .gallery-item {
    width: calc(33.333% - 19px);
    aspect-ratio: 16 / 9;
}

.gallery-item:hover .gallery-video {
    transform: scale(1.05);
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.video-play-overlay svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.gallery-item:hover .video-play-overlay {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
}


/* RESPONSIVE ANZEIGEN PAGE */
@media (max-width: 1200px) {
    .gallery-grid {
        gap: 20px;
    }

    .gallery-grid .gallery-item {
        width: calc(50% - 10px);
    }

    .gallery-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 30px 80px;
    }

    .page-gallery {
        padding: 60px 30px;
    }

    .gallery-grid {
        gap: 16px;
    }

    .gallery-grid .gallery-item {
        width: 100%;
    }

    .gallery-item {
        margin-bottom: 20px;
    }

    .pdf-modal-content {
        width: 98%;
        height: 95vh;
    }
}


/* ========== KI SECTION - KOMPLETT NEU ========== */
.ki-section {
    margin: 0;
    padding: 0;
    min-height: auto;
}

.ki-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.ki-left {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    background: var(--black);
}

.ki-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.design-left {
    background: var(--black);
}

.anzeigen-left {
    background: var(--black);
}

.anzeigen-bg-image {
    object-fit: cover;
    object-position: center bottom;
}

.design-bg-image {
    object-fit: cover;
    object-position: center 30%;
}

.ki-right {
    background: var(--black);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ki-number {
    font-size: 100px;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.ki-heading {
    font-size: clamp(38px, 4.5vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-top: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--white);
}

.ki-line {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 30px;
}

.ki-subheading {
    font-size: clamp(20px, 2.5vw, 36px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--white);
    text-transform: uppercase;
}

.ki-text {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 42px;
}

/* KI Responsive — must come AFTER base KI styles */
@media (max-width: 1200px) {
    .ki-right {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .ki-section {
        position: relative;
        overflow: hidden;
    }

    .ki-grid {
        display: block;
        position: relative;
        width: 100%;
    }

    .ki-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        z-index: 0;
    }

    .ki-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .ki-right {
        position: relative;
        z-index: 2;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.55) 30%,
            rgba(0, 0, 0, 0.8) 100%
        );
        padding: 170px 30px 170px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: auto;
    }

    .ki-right .editorial-btn {
        align-self: center;
    }

    .ki-line {
        width: 60px;
        height: 3px;
        margin: 0 auto 16px;
    }

    .ki-number {
        font-size: 48px;
        margin-bottom: 8px;
        opacity: 0.3;
    }

    .ki-heading {
        font-size: clamp(32px, 9vw, 56px);
        letter-spacing: -2px;
        margin-top: 10px;
        margin-bottom: 16px;
    }

    .ki-subheading {
        font-size: clamp(16px, 4.5vw, 24px);
        margin-bottom: 16px;
    }

    .ki-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
        color: rgba(255, 255, 255, 0.85);
    }
}
