:root{--light-grey:#f4f4f4;}

/* SPLIT SCREEN LAYOUT */
/* -------------------------------------------------------------------------- */
.split-layout {
    display: flex; width: 100%; min-height: 100vh;
}

.split-visual {
    width: 50%; height: 100vh; position: fixed; top: 0; left: 0; z-index: 1;
    background-color: #f0f0f0; overflow: hidden;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.split-content {
    width: 50%; margin-left: 50%; background-color: var(--surface);
    padding: 140px 4rem 4rem 4rem; min-height: 100vh; position: relative; z-index: 2;
}
.content-constraint { width: 100%; max-width: 680px; margin-right: auto; }
.content-block { margin-bottom: 4rem; }

/* Typography */
h1.page-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 2rem;
    line-height: 1.1; letter-spacing: -0.02em;
}
.lead-text {
    font-size: 1.25rem; line-height: 1.5; color: var(--muted); margin-bottom: 2rem;
}
h3.section-title {	
    margin-bottom: 1rem; border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}
h4 {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}

.legal-item p.role {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.2rem 0 0 0;
}


p { margin-bottom: 1.5rem; color: var(--muted);  }

/* --- SPECIFIC CONTACT STYLES --- */

/* 1. Hauptkontakt - Groß & Clean */
.contact-hero { margin-bottom: 4rem; }
.contact-primary a {
    display: block; font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 0.25rem;
}
.contact-address {
    font-size: 1.1rem; color: var(--mute); margin-top: 1.5rem; line-height: 1.6;
}

/* 2. Impressum Grid - Kompakt & Strukturiert */
.legal-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
    font-size: 0.9rem; margin-bottom: 3rem;
}
.legal-item h3 {
    font-size: 0.8rem; font-weight: 600; color: var(--ink); margin: 0 0 0.25rem 0;
}
.legal-item p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

/* 3. Credits Grid - Kleiner */
.credits-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
    background: var(--light-grey); padding: 1.5rem; border-radius: 8px;
}
.credit-group { margin-bottom: 1rem; }
.credit-title { 
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; 
    color: var(--muted); margin-bottom: 0.25rem; display: block;
}
.credit-names { font-size: 0.85rem; color: var(--ink); }

/* Disclaimer */
.disclaimer-text { font-size: 0.8rem; color: var(--muted); margin-top: 2rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .split-content { padding-left: 3rem; padding-right: 3rem; }
}
@media (max-width: 900px) {
    .split-layout { flex-direction: column; }
    .split-visual { position: relative; width: 100%; height: 40vh; z-index: 1; }
    .split-content { width: 100%; margin-left: 0; padding: 3rem 2rem 4rem 2rem; }
    .legal-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Kontakt / Menu-only: keine Intro-Animation */
.content-constraint > * {
  opacity: 1 !important;
  transform: none !important;
}