/* ==========================================================================
   RESET & VARIABLES (Art Gallery Theme)
   ========================================================================== */
:root {
    --black: #050505;
    --dark-grey: #121212;
    --grey: #888888;
    --light-grey: #e0e0e0;
    --white: #ffffff;
    
    --accent: #D97736; /* Deep Amber / Rostorange */
    
    --font-art: 'Playfair Display', serif;
    --font-tech: 'Inter', sans-serif;
    
    --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* inter-100 to 900 - latin */
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 100; src: url('../fonts/inter-v20-latin-100.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 200; src: url('../fonts/inter-v20-latin-200.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 300; src: url('../fonts/inter-v20-latin-300.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 400; src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 500; src: url('../fonts/inter-v20-latin-500.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 600; src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 700; src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 800; src: url('../fonts/inter-v20-latin-800.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 900; src: url('../fonts/inter-v20-latin-900.woff2') format('woff2'); }

/* ==========================================================================
   CUSTOM SCROLLBARS & GLOBALS
   ========================================================================== */
html {
    scrollbar-width: thin;
    scrollbar-color: #444444 var(--black);
}

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
    background-color: #333333; 
    border-radius: 10px;
    border: 3px solid var(--black); 
    background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background-color: #555555; }

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

body {
    background-color: var(--black);
    color: var(--light-grey);
    font-family: var(--font-tech);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

.img-responsive {
    width: 100%;
    height: auto;
    max-width: 512px;
}

.list-unstyled {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.d-flex { display: flex; }
.align-items-start { align-items: flex-start; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.art-heading {
    font-family: var(--font-art);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

.art-subheading {
    font-family: var(--font-art);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-top: 1em;
}

.art-heading.medium { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }

.sub-heading {
    display: block;
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.body-text { font-size: 1.1rem; color: var(--light-grey); }
.body-text.large { font-size: clamp(1.2rem, 3vw, 1.8rem); line-height: 1.5; font-weight: 300; }
.mt-2 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mt-5 { margin-top: 4rem; }
.mb-4 { margin-bottom: 3rem; }
.mb-5 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* ==========================================================================
   LAYOUT & SECTIONS
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.dark-bg { background-color: var(--black); color: var(--light-grey); }
.light-bg { background-color: var(--white); color: var(--black); }
.light-bg .art-heading { color: var(--black); }
.light-bg .body-text { color: var(--dark-grey); }

.section-text-block { padding: 15vh 0; }
.border-top { border-top: 1px solid #1a1a1a; }
.border-bottom { border-bottom: 1px solid rgba(0,0,0,0.1); }
.pb-padding { padding-bottom: 20vh; }
.pb-0 { padding-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pt-5 { padding-top: 5rem; }

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
@media (min-width: 768px) {
    .split-layout { flex-direction: row; justify-content: space-between; }
    .split-left { width: 40%; }
    .split-right { width: 55%; }
}

#main-content { padding-top: 180px; }

/* ==========================================================================
   TOP BAR & LOGO
   ========================================================================== */
.top-bar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 5%; 
    z-index: 2000;
    transition: padding 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.7s ease, border-bottom 0.7s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.brand-logo {
    height: 220px; 
    width: auto;
    opacity: 1;
    transition: height 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: top left;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); 
}

.header-right {
    display: flex;
    align-items: flex-start;
    gap: 40px; 
    margin-top: 10px;
    transition: margin-top 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
                align-items 0.7s ease, gap 0.7s ease;
}

.header-creator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    transition: var(--transition-slow);
}

.creator-text {
    font-family: var(--font-tech);
    font-size: 0.65rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2px;
    transition: opacity 0.4s ease, height 0.4s ease, margin 0.4s ease;
    opacity: 1;
    height: 15px; 
    display: block;
}

.creator-link {
    font-family: var(--font-art); 
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    font-style: italic;
    transition: var(--transition-fast);
}

.creator-link:hover { color: var(--grey); }

.lang-switch {
    display: flex; 
    gap: 10px;
    margin-top: 5px; 
    transition: margin-top 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.lang-switch a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}
.lang-switch a.active, .lang-switch a:hover { color: var(--white); }

.top-bar.scrolled {
    padding: 8px 5%; 
    background: rgba(8, 8, 8, 0.75); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    align-items: center; 
}

.top-bar.scrolled .brand-logo { height: 38px; transform: translateY(2px); filter: none; }
.top-bar.scrolled .header-right { margin-top: 0; align-items: center; gap: 25px; }
.top-bar.scrolled .header-creator { flex-direction: row; align-items: center; gap: 8px; }
.top-bar.scrolled .creator-text { opacity: 0; height: 0; margin: 0; pointer-events: none; overflow: hidden; }
.top-bar.scrolled .creator-link { font-size: 1.05rem; color: #aaaaaa; }
.top-bar.scrolled .creator-link:hover { color: var(--white); }
.top-bar.scrolled .lang-switch { margin-top: 0; }

/* ==========================================================================
   HERO / EDITORIAL LAYOUT & SUBPAGES
   ========================================================================== */
.mobile-only {
    @media (min-width: 768px) { display: none; }
}

.section-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
}

/* Neuer Puffer für Unterseiten, damit das Logo nie den Text überlappt! */
.subpage-hero {
    min-height: 60vh;
    padding-top: 150px; 
    padding-bottom: 50px;
}

.legal-hero {
    min-height: 45vh;
    padding-top: 150px;
    padding-bottom: 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-top: 0; /* Verhindert das Hochrutschen! */
}

/* Home Page Editorial Hero */
.hero-editorial-layout {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-editorial-text {
    width: 100%;
    max-width: 680px;
    position: relative;
    z-index: 10;
}

.hero-editorial-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    max-width: 800px;
    height: 80vh;
    z-index: 1;
}

.hero-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    border-radius: 8px 0 0 8px;
    filter: grayscale(100%) contrast(1.1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.8);
}

.hero-image-overlay {
    position: absolute;
    top: 0; left: -2px; width: 30%; height: 100%;
    background: linear-gradient(to right, var(--black) 0%, transparent 100%);
    border-radius: 8px 0 0 8px;
}

.hero-circle-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

@media (max-width: 1100px) {
    .hero-editorial-image { width: 55vw; opacity: 0.5; }
    .hero-editorial-text { text-shadow: 0 4px 20px rgba(0,0,0,0.9); }
}

/* ==========================================================================
   UI ELEMENTS (Buttons)
   ========================================================================== */
.art-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    cursor: pointer;
    margin-top: 1em;
}
.art-btn:hover { background: var(--black); color: var(--white); }
.art-btn.invert { color: var(--white); border-color: var(--white); }
.art-btn.invert:hover { background: var(--white); color: var(--black); }

/* ==========================================================================
   NAVIGATION DESKTOP
   ========================================================================== */
.bottom-nav {
    position: fixed;
    bottom: 45px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 769px) {
    .bottom-nav {
        opacity: 0;
        animation: navFlyIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 0.8s;
    }
}

@keyframes navFlyIn {
    0% { opacity: 0; transform: translate(-50%, 60px) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.bottom-nav ul { display: flex; list-style: none; gap: 5px; }

.bottom-nav a {
    display: block;
    padding: 10px 25px;
    color: var(--grey);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 40px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.bottom-nav a:hover { color: var(--light-grey); }
.bottom-nav a.active { 
    background: var(--accent); 
    color: var(--white); 
    font-weight: 600; 
    box-shadow: 0 0 15px rgba(217, 119, 54, 0.4);
    border: 1px solid var(--accent);
}

.bottom-nav a.nav-cta-btn.active {
    box-shadow: 0 0 20px rgba(217, 119, 54, 0.6);
}

.bottom-nav a.nav-cta-btn {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    margin-left: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.bottom-nav a.nav-cta-btn:hover {
    background: var(--grey);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.mobile-nav-toggle { display: none; } 
.mobile-legal-dropdown { display: none; }

/* ==========================================================================
   LEGAL LINKS & SOCIALS
   ========================================================================== */
.fixed-legal-links {
    position: fixed;
    bottom: 15px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 12px;
    align-items: center;
}

.fixed-legal-links a {
    color: #666; 
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.fixed-legal-links a:hover { color: var(--white); }
.fixed-legal-links .separator { color: #333; font-size: 0.7rem; }

.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ==========================================================================
   VALUE BREAKDOWN GRID & FACTS
   ========================================================================== */
.value-breakdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}
@media (min-width: 768px) { .value-breakdown-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-breakdown-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-slow);
    text-align: center;
}
.value-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.value-amount {
    font-family: var(--font-art);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.value-desc {
    font-family: var(--font-tech);
    font-size: 0.95rem;
    color: var(--light-grey);
    line-height: 1.5;
}

.philosophy-box {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    border-left: 4px solid var(--white);
}

.inclusive-box { border-left-color: var(--accent) !important; }
.inclusive-box .quote-icon { background: var(--accent) !important; }

.facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) { .facts-grid { grid-template-columns: repeat(3, 1fr); } }

.fact-item {
    padding: 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}
.fact-number {
    font-family: var(--font-art);
    font-size: 4rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}
.fact-text {
    font-family: var(--font-tech);
    font-size: 0.9rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* ==========================================================================
   EXIT CLAUSE BOX
   ========================================================================== */
.exit-clause-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
}
.exit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ==========================================================================
   ART GALLERY FORMULAR (TACTILE & PREMIUM)
   ========================================================================== */
.art-form .form-group { 
    position: relative; 
    margin-bottom: 2rem; 
}

.art-form input, .art-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-family: var(--font-tech);
    font-size: 1.1rem;
    padding: 26px 20px 10px 20px; 
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px; 
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3); 
}

.art-form textarea {
    min-height: 150px;
    resize: vertical;
}

.art-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.art-form input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

.art-form input:hover, .art-form textarea:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.25);
}

.art-form input:focus, .art-form textarea:focus {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--accent); 
    box-shadow: 0 0 0 4px rgba(217, 119, 54, 0.15), inset 0 2px 5px rgba(0,0,0,0.3);
}

.art-form label {
    position: absolute;
    top: 20px; 
    left: 20px;
    color: var(--grey);
    font-family: var(--font-tech);
    font-size: 1.1rem;
    pointer-events: none; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left top;
}

.art-form input:focus ~ label,
.art-form input:not(:placeholder-shown) ~ label,
.art-form textarea:focus ~ label,
.art-form textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.art-form input:focus ~ label,
.art-form textarea:focus ~ label {
    color: var(--accent);
}
.art-form input:not(:focus):not(:placeholder-shown) ~ label,
.art-form textarea:not(:focus):not(:placeholder-shown) ~ label {
    color: var(--grey);
}

.art-form input.flatpickr-input[type="text"]:focus ~ label,
.art-form input.flatpickr-input[type="text"]:not(:placeholder-shown) ~ label,
.art-form input.flatpickr-input[type="hidden"] ~ label {
    top: 8px !important; 
    font-size: 0.75rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    font-weight: 600;
}
.art-form input.flatpickr-input[type="text"]:focus ~ label {
    color: var(--accent) !important;
}
.art-form input.flatpickr-input[type="text"]:not(:focus):not(:placeholder-shown) ~ label {
    color: var(--grey) !important;
}

.form-checkbox { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 2rem; }
.form-checkbox input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    background-color: rgba(255,255,255,0.04); margin: 0; margin-top: 4px;
    width: 22px; height: 22px; border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid; place-content: center; cursor: pointer; 
    transition: var(--transition-fast); flex-shrink: 0; border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.form-checkbox input[type="checkbox"]::before {
    content: ""; width: 12px; height: 12px;
    transform: scale(0); transition: 120ms transform cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--black); transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.form-checkbox input[type="checkbox"]:hover { border-color: rgba(255,255,255,0.5); }
.form-checkbox input[type="checkbox"]:checked { background-color: var(--white); border-color: var(--white); }
.form-checkbox input[type="checkbox"]:checked::before { transform: scale(1); }

.checkbox-label {
    position: static !important;
    color: var(--grey) !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.5;
    cursor: pointer; pointer-events: auto !important;
}
.checkbox-label a { color: var(--white); text-decoration: underline; transition: var(--transition-fast); }
.checkbox-label a:hover { color: var(--accent); }

.faq-question:hover { color: var(--accent); }

/* ==========================================================================
   REVIEW BILDER & LIGHTBOX CSS
   ========================================================================== */
.review-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 2rem 0;
}

.review-images a {
    display: block;
    overflow: hidden;
    border-radius: 15px; 
    border: 1px solid rgba(0,0,0,0.1);
    cursor: zoom-in;
}

.review-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    filter: grayscale(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    display: block;
}

.review-images a:hover img {
    transform: scale(1.05);
    filter: grayscale(0%); 
}

.custom-lightbox {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(5,5,5,0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}

.custom-lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: contain;
}

.custom-lightbox.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: var(--white);
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover { color: var(--grey); }

/* ==========================================================================
   ANIMATIONS & EFFECTS (PREMIUM BLUR)
   ========================================================================== */
.reveal {
    opacity: 0; 
    transform: translateY(35px);
    filter: blur(8px);
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { 
    opacity: 1; 
    transform: translateY(0); 
    filter: blur(0);
}

.delay-1 { transition-delay: 0.25s; }
.delay-2 { transition-delay: 0.5s; }
.delay-3 { transition-delay: 0.75s; }
.delay-4 { transition-delay: 1.0s; }
.delay-5 { transition-delay: 1.25s; }

.bg-lines-diagonal {
    position: fixed;
    top: -50%; left: -50%; width: 200%; height: 200%;
    pointer-events: none; z-index: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 150px, 
        rgba(255,255,255,0.015) 150px, rgba(255,255,255,0.015) 151px
    );
    animation: driftDiagonal 90s linear infinite;
}
@keyframes driftDiagonal {
    0% { transform: translate(0, 0); }
    100% { transform: translate(150px, -150px); }
}

.breathing-circle-wrapper { display: flex; justify-content: center; align-items: center; height: 100px; }
.breathing-circle {
    width: 20px; height: 20px; background-color: var(--white); border-radius: 50%;
    position: relative; animation: breatheCore 8s ease-in-out infinite; 
}
.breathing-circle::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 100%; height: 100%; background-color: rgba(255,255,255,0.5);
    border-radius: 50%; transform: translate(-50%, -50%);
    animation: breatheAura 8s ease-in-out infinite; z-index: -1;
}
@keyframes breatheCore { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.3); opacity: 1; } }
@keyframes breatheAura { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; } 50% { transform: translate(-50%, -50%) scale(8); opacity: 0; } }

/* ==========================================================================
   MISC (Quotes, Legal, Flatpickr Dark Mode)
   ========================================================================== */
.art-quote {
    position: relative; padding: 30px 40px; margin: 0; background-color: #f8f8f8;
    border-left: 4px solid var(--black); font-family: var(--font-tech);
    font-size: 1.05rem; color: #333; line-height: 1.6;
}
.art-quote p { margin-bottom: 0; font-style: italic; }
.quote-icon {
    position: absolute; top: 20px; left: -20px; font-size: 1.5rem; color: var(--white);
    background: var(--black); width: 36px; height: 36px; display: flex; 
    align-items: center; justify-content: center; border-radius: 50%;
}
.review-case { transition: var(--transition-fast); }
.review-case:hover { transform: translateX(5px); }

.legal-content h3 { font-family: var(--font-art); font-size: 2rem; color: var(--black); margin-top: 3rem; margin-bottom: 1rem; font-weight: 400; }
.legal-content p { font-family: var(--font-tech); font-size: 1.05rem; color: var(--dark-grey); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
.legal-content strong { font-weight: 600; color: var(--black); }

.footer-minimal { text-align: center; padding: 2rem 0 6rem 0; }
.footer-minimal a { color: var(--grey); text-decoration: none; margin: 0 15px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-minimal a:hover { color: var(--black); }

.flatpickr-calendar.dark { background: var(--black) !important; border: 1px solid #333 !important; box-shadow: 0 20px 50px rgba(0,0,0,0.9) !important; font-family: var(--font-tech) !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay { background: var(--white) !important; color: var(--black) !important; border-color: var(--white) !important; font-weight: 600; }
.flatpickr-day:hover { background: #333 !important; border-color: #333 !important; }
.flatpickr-months .flatpickr-month, .flatpickr-current-month .flatpickr-monthDropdown-months, .flatpickr-current-month input.cur-year { color: var(--white) !important; }

/* ==========================================================================
   MOBILE RESPONSIVE PATCHES (Für Handys & Tablets)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. Header & Logo anpassen */
    .top-bar { padding: 20px 5%; }
    .brand-logo { height: 70px; } 
    .top-bar.scrolled { padding: 10px 5%; }
    .top-bar.scrolled .brand-logo { height: 32px; }
    
    .header-right { gap: 15px; }
    .creator-text { display: none; } 
    .creator-link { font-size: 1rem; }
    .top-bar.scrolled .creator-link { font-size: 0.9rem; }
    
    #main-content { padding-top: 100px; }
    
    /* Desktop-Hero auf Mobile restlos ausblenden */
    .desktop-hero { 
        display: none !important; 
    }

    /* Neu: Mobile-Anpassung für die Unterseiten-Heros, damit sie nicht überlappen */
    .subpage-hero, .legal-hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    /* 2. Typografie & Abstände */
    .section-text-block { padding: 10vh 0; }
    .pb-padding { padding-bottom: 15vh; }
    .art-heading.medium { font-size: 2.2rem; }
    .price-big { font-size: 3.5rem; }
    .value-amount { font-size: 2.5rem; }
    
    /* 3. Der Mobile-Nav-Toggle Button (Hamburger) */
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        position: fixed;
        bottom: 20px;
        right: 20px; 
        width: 60px; 
        height: 60px;
        background: #111111;
        border-radius: 50%;
        border: 1px solid #333;
        z-index: 2000;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.8);
        transition: var(--transition-fast);
    }

    .hamburger-line {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        transform-origin: center;
        border-radius: 2px;
    }

    .mobile-nav-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
    .mobile-nav-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* 4. Das Pop-Up Navigation Menü */
    .bottom-nav { 
        position: fixed;
        bottom: 90px; 
        right: 20px;
        left: auto;
        transform: translateY(20px);
        width: auto;
        background: rgba(17, 17, 17, 0.95);
        padding: 15px 10px;
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.9);
        border: 1px solid #333;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        animation: none;
    }
    
    .bottom-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .bottom-nav ul { 
        flex-direction: column;
        gap: 10px;
        align-items: flex-end; 
    }

    .bottom-nav a { 
        text-align: right;
        padding: 10px 20px; 
        font-size: 0.8rem; 
        width: 100%;
        letter-spacing: 0;
    }

    .bottom-nav a.nav-cta-btn { 
        margin-left: 0; 
        margin-top: 5px; 
        text-align: center; 
    }

    /* 5. Platz für den linken CG-Button machen */
    .floating-socials {
        bottom: 95px; 
        right: auto;
        left: 20px;
        gap: 10px;
    }
    .social-icon { width: 40px; height: 40px; }
    .social-icon svg { width: 18px; height: 18px; }

    /* 6. Facts Grid & Split Layout */
    .fact-item { 
        text-align: center; 
        border-left: none; 
        border-bottom: 1px solid rgba(255,255,255,0.1); 
        padding-bottom: 20px; 
    }
    .fact-item:last-child { border-bottom: none; }
    .split-layout { gap: 2rem; }
    
    /* 7. UI Elements & Modals */
    .exit-clause-box { flex-direction: column; gap: 15px; padding: 25px 20px; }
    
    /* 8. Legal Links Footer (Ausgeblendet, da jetzt im Burger-Menü) */
    .fixed-legal-links { 
        display: none !important; 
    }

    /* --- MOBILE LEGAL DROPDOWN --- */
    .mobile-legal-dropdown {
        display: block;
        width: 100%;
        margin-top: 5px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 5px;
    }
    
    #legal-toggle-btn {
        background: transparent;
        border: none;
        color: var(--grey);
        font-family: var(--font-tech);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        padding: 10px 20px;
        gap: 8px;
        transition: var(--transition-fast);
    }
    
    #legal-toggle-btn.open { color: var(--white); }
    #legal-toggle-btn svg { transition: transform 0.3s ease; }
    #legal-toggle-btn.open svg { transform: rotate(180deg); color: var(--accent); }
    
    #legal-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        display: flex;
        flex-direction: column;
    }
    
    #legal-dropdown-menu.open {
        max-height: 200px;
        opacity: 1;
    }
    
    #legal-dropdown-menu a {
        font-size: 0.75rem;
        color: #777;
        padding: 8px 20px;
    }
    #legal-dropdown-menu a:hover { color: var(--accent); }

    /* 9. Lightbox Images Stacken */
    .review-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }

    /* --- DER NEUE MOBILE SPLASH SCREEN --- */
    .mobile-fullscreen-hero {
        display: flex;
        position: relative;
        width: 100%;
        height: 100dvh; 
        margin-top: -100px; 
        padding: 100px 5% 0 5%; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: hidden;
        z-index: 10;
        box-sizing: border-box; 
    }

    .mobile-hero-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: -1;
    }
    
    .mobile-hero-bg img {
        width: 100%; height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.15; 
        filter: grayscale(100%);
    }
    
    .mobile-hero-gradient {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to bottom, var(--black) 0%, transparent 30%, var(--black) 90%);
    }

    .mobile-hero-content {
        position: relative;
        z-index: 2;
        margin-top: -5vh; 
        width: 100%; 
        max-width: 600px;
    }

    .massive-mobile-title {
        font-size: clamp(2.2rem, 10vw, 3.8rem); 
        line-height: 1.1;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        text-shadow: 0 10px 30px rgba(0,0,0,0.8);
        word-wrap: break-word; 
        hyphens: auto; 
    }

    .mobile-hero-divider {
        width: 50px;
        height: 2px;
        background-color: var(--white);
        margin: 0 auto 20px auto;
        box-shadow: 0 0 15px rgba(255,255,255,0.5);
    }

    .mobile-hero-core-msg {
        font-family: var(--font-tech);
        font-size: 1rem; 
        color: var(--light-grey);
        font-weight: 300;
        line-height: 1.5;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        padding: 0 10px; 
    }

    /* Wippender Pfeil unten am Rand */
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: var(--grey);
        opacity: 0.7;
        animation: bounce 2s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
    }
    
    .scroll-indicator span {
        font-family: var(--font-tech);
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
    }
    
    .scroll-indicator svg { width: 20px; height: 20px; stroke-width: 1.5; }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
        40% { transform: translate(-50%, -10px); }
        60% { transform: translate(-50%, -5px); }
    }
}

/* ==========================================================================
   EXTRA: TINY SCREENS (z.B. iPhone SE)
   ========================================================================== */
@media (max-width: 380px) {
    .art-heading.medium { font-size: 1.8rem; }
    .price-big { font-size: 2.8rem; }
    .massive-mobile-title { font-size: 2rem; }
}

/* ==========================================================================
   SCROLL DOT NAVIGATION (Premium Apple-Style)
   ========================================================================== */
.scroll-dot-nav {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none; 
}

@media (max-width: 768px) {
    .scroll-dot-nav { right: 15px; }
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #444;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.scroll-dot:hover, .scroll-dot.active {
    background-color: var(--accent); 
    box-shadow: 0 0 12px rgba(176, 112, 74, 0.8); 
    transform: scale(1.2);
}

.scroll-dot::after {
    content: attr(data-title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.95);
    color: var(--light-grey);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.scroll-dot:hover::after {
    opacity: 1;
    visibility: visible;
    right: 20px;
}