/* ==========================================================
   KiAvatars style.css
   Bereinigt: lokale Fonts, doppelte Header/Admin-Regeln reduziert
   Stand: 30.06.2026
========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: #0a0a0e;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  img, video { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; }

/* ==========================================
   HEADER
========================================== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#000;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.site-header-inner{
    width:100%;
    max-width:1920px;
    margin:0 auto;
    padding:18px 24px;
    display:flex;
    align-items:center;
}

.site-brand{
    display:flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
}

.site-logo-mark{
    width:28px;
    height:auto;
    flex-shrink:0;
}

.site-logo-text{
    color:#ffffff;
    font-size:22px;
    font-weight:800;
    letter-spacing:-0.02em;
    line-height:1;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:36px;
    margin-left:48px;
    margin-right:auto;
}

.site-nav a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    line-height:1;
}

.site-nav a:hover{
    color:#ffffff;
}

.site-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

  /* ===== HERO ===== */
  .hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #000;
  }
  .hero video {
    width: 100%; height: 100%;
    object-fit: cover; object-position: right center;
  }
  .hero-overlay {
    position: absolute; left: 0; right: 0; bottom: 0; top: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
  }
  .hero-content {
    position: absolute; left: 48px; bottom: 48px; right: 48px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .hero-headline {
    font-weight: 900; font-size: clamp(40px, 6vw, 88px);
    line-height: 0.95; letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 80%;
  }
  .hero-subhead {
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.45;
    max-width: 64ch;
  }
  .hero-meta {
    position: absolute; right: 48px; bottom: 48px;
    display: flex; flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 2;
  }
  .hero-meta-text {
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
  }

  /* ===== SECTIONS ===== */
  section {
    padding: 120px 48px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .section-header {
    margin-bottom: 64px;
  }
  .section-tag {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #FF6B35; margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(36px, 4.5vw, 64px); font-weight: 900;
    line-height: 1.05; letter-spacing: -0.02em;
    max-width: 800px;
  }
  .section-subtitle {
    font-size: 18px; color: #9a9aa6;
    margin-top: 16px; max-width: 640px;
  }
  .section-alt-bg {
    background: #14141c;
  }
  .section-alt-bg-wrapper {
    background: #14141c;
  }

  /* ===== WORK SECTION ===== */
  .section-meta {
    margin-top: 20px;
    display: flex; gap: 28px; flex-wrap: wrap;
    font-size: 12px; font-weight: 600;
    color: #7a7a86;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .section-meta span strong { color: #c6c6cc; font-weight: 700; }

  .work-video {
    position: relative;
    width: 100%; aspect-ratio: 16/9;
    background: #000; border-radius: 4px;
    overflow: hidden;
  }
  .work-video video { width: 100%; height: 100%; object-fit: cover; }

  /* Ki-Kennzeichnungs-Badge (design.html Spec: Cinnamon #7A2E14 auf Weiß, Art. 50 EU AI Act) */
  /* Hinweis: text-transform absichtlich KEIN uppercase — Brand-Regel „Ki klein" überschreibt die Komponenten-CSS aus design.html */
  .ki-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px; border-radius: 14px;
    background: #FFFFFF;
    border: 2px solid #7A2E14;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    margin-left: auto;
    flex-shrink: 0;
  }
  .ki-badge-icon {
    width: 26px; height: 26px;
    border: 2px solid #7A2E14; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800;
    color: #7A2E14;
    line-height: 1;
    flex-shrink: 0;
  }
  .ki-badge-text {
    color: #7A2E14;
    font-size: 11px; font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  /* Compact Ki-Badge-Variante (nur A-Icon) für Galerie-Frames */
  .ki-badge-mini {
    position: absolute; bottom: 12px; right: 12px;
    width: 26px; height: 26px;
    border: 2px solid #7A2E14; border-radius: 4px;
    background: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
    color: #7A2E14;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    z-index: 3;
  }

  /* Meta-Strip below showcase video */
  .work-meta {
    margin-top: 18px;
    display: flex; gap: 0; flex-wrap: wrap;
    align-items: center;
    font-size: 12.5px; color: #9a9aa6;
    letter-spacing: 0.04em;
  }
  .work-meta-item {
    display: inline-flex; align-items: baseline; gap: 8px;
    padding: 0 20px 0 0;
    margin-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .work-meta-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
  .work-meta-label {
    font-size: 10.5px; font-weight: 700;
    color: #6a6a76;
    letter-spacing: 0.14em; text-transform: uppercase;
  }
  .work-meta-value {
    font-size: 13.5px; font-weight: 600;
    color: #e6e6ec;
  }

  /* Galerie-Intro: leitet zur Storyboard-Galerie über */
  .gallery-intro {
    margin-top: 72px;
    margin-bottom: 28px;
    max-width: 640px;
  }
  .gallery-intro-title {
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: #fff;
  }
  .gallery-intro-sub {
    font-size: 16px;
    color: #9a9aa6;
    line-height: 1.65;
  }

  /* CTA-Block am Ende von Sektion 2 (Storyboard + Erstfilm Pricing) */
  .work-cta {
    margin-top: 88px;
    padding-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 760px;
  }
  .work-cta-headline {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
    color: #fff;
  }
  .work-cta-body {
    font-size: 16.5px;
    color: #c6c6cc;
    line-height: 1.7;
  }
  .work-cta-body p { margin-bottom: 16px; }
  .work-cta-body p:last-of-type { margin-bottom: 32px; }
  .work-cta-price {
    color: #FF6B35;
    font-weight: 800;
    white-space: nowrap;
  }
  .work-cta-disclaimer {
    font-size: 12.5px;
    color: #7a7a86;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-top: -20px;
    margin-bottom: 32px;
  }
  .work-cta-button {
    display: inline-block;
    background: #FF6B35; color: white;
    padding: 16px 32px; border-radius: 999px;
    font-weight: 700; font-size: 15px;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
  }
  .work-cta-button:hover { background: #CC4A1F; transform: translateY(-2px); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .gallery-item {
    aspect-ratio: 16 / 9;
    background: #1a1a22;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
  }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
  }
  .gallery-item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0.85;
  }
  .gallery-item:hover { transform: translateY(-4px); }
  .gallery-item:hover img { transform: scale(1.04); filter: brightness(1.05); }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-caption {
    position: absolute; left: 16px; bottom: 14px; right: 16px;
    z-index: 2;
  }
  .gallery-caption-title {
    font-size: 14px; font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    line-height: 1.2;
  }
  .gallery-caption-sub {
    margin-top: 4px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  }
  .gallery-caption-sub .dot {
    display: inline-block; width: 4px; height: 4px;
    background: #FF6B35; border-radius: 50%;
    margin: 0 8px 2px;
    vertical-align: middle;
  }

  /* ===== PROCESS SECTION ===== */
  .process-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-card {
    padding: 40px 32px;
    background: #1a1a22; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
  }
  .process-card:hover {
    border-color: rgba(255,107,53,0.3);
    background: #1f1f2a;
    transform: translateY(-2px);
  }
  .process-step {
    font-size: 13px; font-weight: 700;
    color: #FF6B35;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
  }
  .process-title {
    font-size: 28px; font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: #fff;
  }
  .process-subtitle {
    font-size: 14.5px; font-weight: 400;
    font-style: italic;
    color: #9a9aa6;
    margin-bottom: 22px;
  }
  .process-text {
    color: #c6c6cc; font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
  }
  .process-tags {
    font-size: 12.5px;
    font-weight: 500;
    color: #9a9aa6;
    letter-spacing: 0.01em;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    line-height: 1.7;
    min-height: 64px;
  }
  .process-tags .sep {
    color: #FF6B35;
    font-weight: 700;
    margin: 0 8px;
  }

  /* Pricing-Pill in Prozess-Karten (P1: Customer-Journey mit Preisanker) */
  .process-price {
    display: inline-flex; align-items: baseline;
    align-self: flex-start;
    margin-bottom: 24px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.3);
    color: #FF6B35;
    font-size: 12.5px; font-weight: 800;
    letter-spacing: 0.02em;
  }
  .process-price.is-included {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.14);
    color: #c6c6cc;
    font-weight: 700;
    font-style: italic;
  }

  /* Footer-Pills (Trust-Signale am Ende von Prozess) */
 .process-pills {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 42px;
}
  .process-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 11px 20px; border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px; font-weight: 600;
    color: #c6c6cc;
    letter-spacing: 0.02em;
  }
  .process-pill::before {
    content: ""; width: 7px; height: 7px;
    background: #FF6B35; border-radius: 50%;
    flex-shrink: 0;
  }
  .process-pill strong {
    color: #fff; font-weight: 700;
  }

  /* ===== CAPABILITIES SECTION (Sektion 4: Möglichkeiten — 6 Karten, 3×2 Grid) ===== */
  .cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .cap-card {
    padding: 36px 32px;
    background: #1a1a22;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
  }
  .cap-card:hover {
    border-color: rgba(255,107,53,0.3);
    background: #1f1f2a;
    transform: translateY(-2px);
  }
  .cap-number {
    font-size: 13px; font-weight: 700;
    color: #FF6B35;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }
  .cap-title {
    font-size: 22px; font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: #fff;
  }
  .cap-text {
    color: #c6c6cc; font-size: 15px;
    line-height: 1.6;
  }

  /* Optional-CTA unter den Karten */
  .cap-cta {
    margin-top: 64px;
    text-align: center;
    font-size: 15.5px;
    color: #9a9aa6;
  }
  .cap-cta a {
    display: inline-block;
    margin-left: 12px;
    color: #FF6B35;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,107,53,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
  }
  .cap-cta a:hover {
    color: #fff;
    border-color: #fff;
  }

  /* ===== STORY SECTION (Sektion 5 — Holger-Story, zentrierter Magazin-Stil) ===== */
  .story-section {
    max-width: 760px;
    margin: 0 auto;
  }
  .story-portrait {
    width: 200px;
    height: 250px;
    margin: 0 auto 48px;
    border-radius: 4px;
    overflow: hidden;
    background: #1a1a22;
  }
  .story-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.12);
  }
  .story-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .story-header .section-tag {
    display: block;
    margin-bottom: 16px;
  }
  .story-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 auto 20px;
    max-width: 700px;
    color: #fff;
  }
  .story-sub {
    font-style: italic;
    color: #c6c6cc;
    font-size: clamp(17px, 1.5vw, 20px);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
  .story-body {
    font-size: 17px;
    line-height: 1.75;
    color: #c6c6cc;
  }
  .story-body p {
    margin-bottom: 22px;
  }
  .story-body strong {
    color: #fff;
    font-weight: 700;
  }
  .story-spine-marker {
    color: #FF6B35;
    font-weight: 800;
    font-style: italic;
  }
  .story-quote {
    margin: 72px auto;
    max-width: 680px;
    text-align: center;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #fff;
    padding: 48px 32px;
    border-top: 1px solid rgba(255,107,53,0.3);
    border-bottom: 1px solid rgba(255,107,53,0.3);
  }
  .story-closer {
    margin-top: 56px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #c6c6cc;
  }
  .story-closer p {
    margin-bottom: 12px;
  }
  .story-closer strong {
    color: #fff;
    font-weight: 700;
  }
  .story-closer em {
    color: #FF6B35;
    font-style: italic;
    font-weight: 600;
  }
  .story-cta {
    margin-top: 56px;
    text-align: center;
  }
  .story-cta-text {
    font-size: 18px;
    color: #c6c6cc;
    margin-bottom: 24px;
  }
  .story-cta-button {
    display: inline-block;
    background: #FF6B35; color: white;
    padding: 16px 32px; border-radius: 999px;
    font-weight: 700; font-size: 15px;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
  }
  .story-cta-button:hover { background: #CC4A1F; transform: translateY(-2px); }

  /* ===== TEAM SECTION ===== */
  .team-intro {
    max-width: 760px;
    font-size: 16.5px;
    line-height: 1.7;
    color: #c6c6cc;
    margin-bottom: 48px;
  }

  .cast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .cast-card {
    display: flex;
    background: #1a1a22;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
  }

  .cast-card:hover {
    border-color: rgba(255,107,53,0.3);
    background: #1f1f2a;
    transform: translateY(-3px);
  }

  .cast-photo {
    flex: 0 0 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f15;
    padding: 20px;
  }

  .cast-photo-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .cast-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }

  .cast-photo-inner .ki-badge-mini {
    bottom: 8px;
    right: 8px;
  }

  .cast-body {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .cast-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 6px;
  }

  .cast-name {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 14px;
  }

  .cast-quote {
    font-size: 14.5px;
    font-style: italic;
    color: #fff;
    line-height: 1.45;
    padding-left: 14px;
    border-left: 2px solid rgba(255,107,53,0.55);
    margin-bottom: 16px;
  }

  .cast-bio {
    font-size: 14px;
    color: #c6c6cc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .cast-specs {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cast-spec {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .cast-spec .spec-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6a6a76;
    margin-right: 8px;
  }

  .cast-spec .spec-val {
    color: #c6c6cc;
    font-weight: 500;
  }

  .cast-specs .sep {
    color: #FF6B35;
    font-weight: 700;
    margin: 0 7px;
  }

  .team-trust {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .team-trust-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 24px 26px;
  }

  .team-trust-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .team-trust-card h4::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #FF6B35;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .team-trust-card p {
    font-size: 13.5px;
    color: #9a9aa6;
    line-height: 1.6;
  }

  .team-cta {
    margin-top: 48px;
    text-align: center;
  }

  .team-cta-text {
    font-size: 18px;
    color: #c6c6cc;
    margin-bottom: 22px;
  }

  /* ===== CONTACT SECTION ===== */
  .contact {
    text-align: center;
    padding: 160px 48px;
  }
  .contact-headline {
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 900; line-height: 1; letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .contact-text {
    font-size: 18px; color: #9a9aa6;
    margin-bottom: 40px;
    max-width: 540px; margin-left: auto; margin-right: auto;
  }
  .contact-cta {
    background: #FF6B35; color: white;
    padding: 18px 36px; border-radius: 999px;
    font-weight: 700; font-size: 16px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .contact-cta:hover { background: #CC4A1F; transform: translateY(-2px); }

  /* ===== FOOTER ===== */
  footer {
    background: #060609;
    padding: 48px 48px 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer-brand h4 {
    font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .footer-brand p {
    color: #9a9aa6; font-size: 13px; line-height: 1.6;
    max-width: 32ch;
  }
  .footer-col h5 {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #9a9aa6;
    margin-bottom: 16px;
  }
  .footer-col a {
    display: block;
    font-size: 14px; color: #c6c6cc;
    line-height: 2;
  }
  .footer-bottom {
    max-width: 1400px; margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: #9a9aa6;
  }
  .ai-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
  }
  .ai-badge::before {
    content: ""; width: 7px; height: 7px;
    background: #FF6B35; border-radius: 50%;
  }

  /* ===== PROTOTYPE BADGE ===== */
  .prototype-badge {
    position: fixed; bottom: 20px; right: 20px; z-index: 1000;
    background: #FF6B35; color: white;
    padding: 8px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .site-header-inner { padding: 16px 24px; }
    .site-nav { display: none; }
    section { padding: 80px 24px; }
    .hero-headline { left: 24px; bottom: 32px; font-size: clamp(28px, 9vw, 56px); }
    .hero-meta { right: 24px; bottom: 24px; gap: 8px; }
    .hero-meta-text { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .cap-grid { grid-template-columns: 1fr 1fr; }
    .cast-grid { grid-template-columns: 1fr; }
    .team-trust { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
  }

  @media (max-width: 560px) {
    .cast-card { flex-direction: column; }
    .cast-photo { flex: 0 0 auto; width: 100%; }
    .cast-photo-inner { max-width: 240px; margin: 0 auto; }
  }
  
  .site-logo{
    height:30px;
    width:auto;
    display:block;
}

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.site-logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
}

/* ===============================
   HEADER ACTIONS
================================= */

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-sound{
    background:none;
    border:none;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    padding:0;
}

.lang-btn{
    background:none;
    border:none;
    cursor:pointer;
    font-size:24px;
    line-height:1;
    padding:0;
}

.book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    background:#ff7a3d;
    color:#ffffff;
    text-decoration:none;
    border-radius:999px;
    font-weight:700;
    transition:all .2s ease;
}

.book-btn:hover{
    opacity:.9;
}

/* ===============================
   FLAGGEN
================================= */

.flag-link{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.flag-link img{
    width:28px;
    height:auto;
    display:block;
    border-radius:3px;
    transition:transform .2s ease;
}

.flag-link:hover img{
    transform:scale(1.08);
}
.header-sound .icon-on{
    display:none;
}

.header-sound.is-on .icon-off{
    display:none;
}

.header-sound.is-on .icon-on{
    display:inline;
}

/* ===== COOKIE BANNER ===== */

.cookie-banner{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:99999;

    background:#111;
    color:#fff;

    border-radius:16px;
    padding:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    display:none;
}

.cookie-banner.show{
    display:block;
}

.cookie-banner h4{
    margin:0 0 10px;
}

.cookie-banner p{
    margin:0 0 15px;
    line-height:1.5;
}

.cookie-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.cookie-btn{
    border:none;
    cursor:pointer;

    padding:10px 16px;
    border-radius:8px;
    font-weight:600;
}

.cookie-accept{
    background:#ff7a00;
    color:#fff;
}

.cookie-essential{
    background:#333;
    color:#fff;
}

/* ===== CONTACT SPLIT SECTION ===== */

.contact-split-section {
    text-align: left;
    padding: 120px 48px;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-box {
    background: #1a1a22;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 44px;
}

.contact-box h2 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.contact-box > p {
    color: #b8b8c8;
    font-size: 18px;
    margin-bottom: 36px;
}

.booking-placeholder {
    min-height: 260px;
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #77798a;
    margin-bottom: 28px;
}

.booking-icon {
    color: #ff6b35;
    font-size: 38px;
    margin-bottom: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #0f0f15;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    padding: 15px 18px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 115px;
    resize: vertical;
}

.privacy-check {
    display: flex;
    gap: 12px;
    color: #c6c6cc;
    font-size: 15px;
    line-height: 1.5;
}

.privacy-check a {
    color: #ff6b35;
}

.contact-note {
    color: #8d8fa3;
    font-size: 14px;
    margin: 0;
}

.contact-submit {
    align-self: flex-start;
    background: #ff6b35;
    color: #fff;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
}

.contact-submit:hover {
    background: #cc4a1f;
}

@media (max-width: 900px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 32px 24px;
    }
}

.privacy-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 4px;
}


/* =========================================================
   KONTAKT-BEREICH VARIANTE A
   Reden wir. / 3 Schritte / Buchung + Mailformular / Manifest
========================================================= */

.contact {
    text-align: left;
    padding: 120px 48px;
}

.contact .section-header {
    margin-bottom: 56px;
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.contact-step {
    background: #1a1a22;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 42px 38px;
    min-height: 220px;
}

.contact-step-num {
    color: #ff6b35;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
}

.contact-step h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
}

.contact-step-time {
    color: #a7a8bb;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-step p {
    color: #d7d7df;
    font-size: 16px;
    line-height: 1.65;
}
.contact-ways {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-way {
    background: #1a1a22;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 44px;
}

.contact-way h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
}

.contact-way-lead {
    color: #b8b8c8;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.calendly-placeholder,
.booking-placeholder {
    min-height: 260px;
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    color: #77798a;
    margin: 24px 0 28px;
    padding: 32px 22px;
}

.calendly-icon,
.booking-icon {
    color: #ff6b35;
    font-size: 38px;
    line-height: 1;
}

.contact-form .form-row2,
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #0f0f15;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 9px;
    padding: 15px 18px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #77798a;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-row,
.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #c6c6cc;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 4px;
}

.checkbox-row input,
.privacy-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 3px;
}

.checkbox-row a,
.privacy-check a {
    color: #ff6b35;
}

.contact-form-note,
.contact-note {
    color: #8d8fa3;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.contact-form button,
.contact-submit {
    align-self: flex-start;
    background: #ff6b35;
    color: #fff;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    transition: background .2s ease, transform .15s ease;
}

.contact-form button:hover,
.contact-submit:hover {
    background: #cc4a1f;
    transform: translateY(-2px);
}


/* ===== TOOLS & VERTRAUEN / RECHTSSICHERHEIT ===== */
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 56px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 24px 22px;
    background: #1a1a22;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    transition: border-color .25s ease, background .25s ease, transform .2s ease;
}

.trust-item:hover {
    border-color: rgba(255,107,53,0.3);
    background: #1f1f2a;
    transform: translateY(-3px);
}

.trust-check {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(255,107,53,0.14);
    color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    margin-top: 1px;
}

.trust-item h4 {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.005em;
    margin-bottom: 7px;
}

.trust-item p {
    font-size: 13px;
    color: #9a9aa6;
    line-height: 1.5;
    margin: 0;
}

.trust-cta {
    margin-top: 48px;
    text-align: center;
}

.trust-cta .contact-cta,
.trust-cta a.contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trust-cta-mail {
    margin-top: 18px;
    font-size: 14px;
    color: #9a9aa6;
    line-height: 1.6;
}

.trust-cta-mail a {
    color: #ff6b35;
    font-weight: 700;
}

.manifest {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 48px;
    text-align: center;
    background: #060609;
}

.manifest blockquote {
    max-width: 980px;
    margin: 0 auto 28px;
    color: #fff;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.manifest cite {
    color: #ff6b35;
    font-style: normal;
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .contact {
        padding: 80px 24px;
    }

    .contact-steps,
    .contact-ways {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(320px, 1fr);
    gap: 32px;
    align-items: stretch;
}

    .trust-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-step,
    .contact-way {
        padding: 32px 24px;
    }

    .contact-form .form-row2,
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .manifest {
        padding: 80px 24px;
    }
}


@media (max-width: 560px) {
    .trust-row {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   ZITAT-BLOCK RILKE
   Abschnitt vor "Über mich" / index.php: <section class="quote-break">
========================================================= */

.quote-break {
    max-width: 1000px;
    margin: 0 auto;
    padding: 90px 48px;
    text-align: center;
    background: #0a0a0e;
}

.quote-break blockquote {
    max-width: 620px;
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.quote-break cite {
    display: block;
    color: #ff6b35;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .quote-break {
        padding: 64px 24px;
    }

    .quote-break blockquote {
        max-width: 100%;
        font-size: clamp(21px, 6vw, 30px);
    }
}

/* =========================================================
   SPRACHUMSCHALTUNG DE / EN
   Wird vom Header per body[data-lang] gesteuert
========================================================= */

body[data-lang="de"] .lang-en {
    display: none !important;
}

body[data-lang="en"] .lang-de {
    display: none !important;
}

.footer-brand img,
.footer-logo img,
.site-footer img {
    width: 48px !important;
    height: auto !important;
    display: block;
}

/* =========================================================
   FOOTER LOGO FINAL FIX
   Nur Footer-Logo, Header-Logo bleibt unverändert
========================================================= */

footer .footer-brand img,
footer .footer-logo img,
footer .footer-logo-mark,
footer img.footer-logo-mark,
footer img[src*="logo"],
footer img[src*="Logo"] {
    width: 48px !important;
    max-width: 48px !important;
    height: auto !important;
    max-height: 48px !important;
    display: block !important;
    object-fit: contain !important;
}

footer .footer-brand,
footer .footer-logo {
    max-width: 260px !important;
}

footer .footer-brand a,
footer .footer-logo a {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: none !important;
}

/* Falls das Logo-Bild durch alte Regeln als großer Block gerendert wird */
footer .footer-brand picture,
footer .footer-logo picture {
    width: 48px !important;
    max-width: 48px !important;
    display: block !important;
}

/* =========================================================
   GLOBALER TYPO-FEINSCHLIFF
   Seite näher an die Vorlage: Texte ca. 10–15 % ruhiger/kleiner
   Header-Logo und Footer-Logo bleiben unberührt
========================================================= */

body {
    font-size: 15px;
}

/* Hauptbereiche */
section {
    padding-top: 104px;
    padding-bottom: 104px;
}

.section-header {
    margin-bottom: 56px;
}

.section-tag {
    font-size: 12px !important;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(32px, 3.8vw, 56px) !important;
    line-height: 1.06 !important;
    max-width: 760px;
}

.section-subtitle {
    font-size: 16.5px !important;
    line-height: 1.6 !important;
    max-width: 610px;
}

/* Hero etwas näher an Vorlage */
.hero-headline {
    font-size: clamp(36px, 5.4vw, 78px) !important;
}

.hero-subhead {
    font-size: clamp(14px, 1.15vw, 17px) !important;
    line-height: 1.45 !important;
}

/* Work / Galerie */
.gallery-intro-title {
    font-size: clamp(25px, 2.8vw, 32px) !important;
}

.gallery-intro-sub {
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.work-cta-headline {
    font-size: clamp(25px, 3vw, 37px) !important;
}

.work-cta-body {
    font-size: 15.5px !important;
}

/* Prozess-Karten */
.process-card {
    padding: 34px 28px !important;
}

.process-step,
.cap-number,
.contact-step-num {
    font-size: 12px !important;
}

.process-title {
    font-size: 25px !important;
}

.process-subtitle {
    font-size: 13.5px !important;
}

.process-text {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
}

.process-tags {
    font-size: 11.8px !important;
}

/* Möglichkeiten-Karten */
.cap-card {
    padding: 32px 28px !important;
}

.cap-title {
    font-size: 20px !important;
}

.cap-text {
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.cap-cta {
    font-size: 14.5px !important;
}

/* Über mich */
.story-title {
    font-size: clamp(36px, 4.4vw, 56px) !important;
}

.story-sub {
    font-size: clamp(16px, 1.35vw, 18px) !important;
}

.story-body {
    font-size: 15.8px !important;
    line-height: 1.72 !important;
}

.story-quote {
    font-size: clamp(20px, 2.2vw, 27px) !important;
}

/* Team */
.team-intro {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
}

.cast-body {
    padding: 24px 26px !important;
}

.cast-name {
    font-size: 23px !important;
}

.cast-quote {
    font-size: 13.5px !important;
}

.cast-bio {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
}

.team-trust-card h4 {
    font-size: 14px !important;
}

.team-trust-card p {
    font-size: 12.8px !important;
}

/* Vertrauen & Rechtssicherheit */
.trust-item h4 {
    font-size: 14px !important;
}

.trust-item p {
    font-size: 12.5px !important;
}

.trust-cta-mail {
    font-size: 13px !important;
}

/* Kontakt */
.contact-step {
    padding: 34px 32px !important;
}

.contact-step h4 {
    font-size: 20px !important;
}

.contact-step-time {
    font-size: 14px !important;
}

.contact-step p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
}

.contact-way {
    padding: 38px 36px !important;
}

.contact-way h3 {
    font-size: 25px !important;
}

.contact-way-lead {
    font-size: 15.5px !important;
}

.contact-form input,
.contact-form textarea {
    font-size: 14.5px !important;
    padding: 13px 16px !important;
}

.contact-cta,
.story-cta-button,
.work-cta-button,
.contact-form button,
.contact-submit {
    font-size: 14px !important;
}

/* Rilke-Zitat bleibt kompakt */
.quote-break {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
}

.quote-break blockquote {
    max-width: 600px !important;
    font-size: clamp(21px, 2vw, 31px) !important;
    line-height: 1.28 !important;
}

/* Abschluss-Manifest etwas kleiner */
.manifest {
    padding-top: 104px !important;
    padding-bottom: 104px !important;
}

.manifest blockquote {
    max-width: 860px !important;
    font-size: clamp(26px, 3.2vw, 44px) !important;
    line-height: 1.22 !important;
}

.manifest cite {
    font-size: 14px !important;
}

/* Footer-Text ebenfalls ruhiger, aber Logo unverändert */
footer .footer-brand h4 {
    font-size: 16px !important;
}

footer .footer-brand p {
    font-size: 12.8px !important;
    line-height: 1.55 !important;
}

footer .footer-col h5 {
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
}

footer .footer-col a,
footer .footer-loc {
    font-size: 13.5px !important;
    line-height: 1.9 !important;
}

footer .footer-bottom {
    font-size: 11.5px !important;
}

/* Footer-Logo final klein halten */
footer .footer-brand img,
footer .footer-logo img,
footer .footer-logo-mark,
footer img.footer-logo-mark,
footer img[src*="logo"],
footer img[src*="Logo"] {
    width: 48px !important;
    max-width: 48px !important;
    height: auto !important;
    max-height: 48px !important;
    display: block !important;
    object-fit: contain !important;
}

/* Mobile nicht zu stark verkleinern */
@media (max-width: 900px) {
    section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .section-title {
        font-size: clamp(30px, 8vw, 44px) !important;
    }

    .section-subtitle {
        font-size: 15.5px !important;
    }

    .contact-step,
    .contact-way,
    .process-card,
    .cap-card {
        padding: 30px 24px !important;
    }

    .manifest blockquote {
        font-size: clamp(24px, 7vw, 34px) !important;
    }
}

/* ==========================================
   FOOTER TRUST-PILLS
========================================== */

.footer-pills{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:42px;
    margin:40px 0;
    flex-wrap:wrap;
}

.footer-pill{
    position:relative;
    color:#9a9aa6;
    font-size:13px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-pill::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff6b35;
    display:block;
}

/* ==========================================
   MEETERGO EINBETTUNG IM KONTAKTBEREICH
========================================== */

.meetergo-embed {
    width: 100%;
    min-height: 640px;
    margin: 24px 0 28px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.meetergo-frame {
    width: 100%;
    height: 640px;
    display: block;
    border: 0;
    background: #ffffff;
}

@media (max-width: 1100px) {
    .meetergo-embed,
    .meetergo-frame {
        min-height: 720px;
        height: 720px;
    }
}

@media (max-width: 700px) {
    .meetergo-embed {
        border-radius: 16px;
        margin-top: 20px;
    }

    .meetergo-embed,
    .meetergo-frame {
        min-height: 780px;
        height: 780px;
    }
}
.meetergo-embed{
    width:100%;
    max-width:none;
    min-height:auto;
    overflow:hidden;
    border-radius:18px;
    background:#ffffff;
    margin:30px 0;
}

.meetergo-iframe{
    width:100%;
    min-width:1000px;
   min-height:0;
}

@media (max-width:900px){
    .meetergo-embed{
        max-width:100%;
        min-height:720px;
        overflow:auto;
    }

    .meetergo-iframe{
        min-width:900px;
        min-height:720px;
    }
}
/* ===========================
   ADMIN FORMULARE
=========================== */

.admin-form{
    margin-top:40px;
}

.admin-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(280px,1fr));
    gap:24px;
}

.admin-form label{
    display:flex;
    flex-direction:column;
    gap:10px;
    color:#fff;
    font-weight:600;
    font-size:15px;
}

.admin-form input,
.admin-form select{
    background:#18181f;
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    color:#fff;
    padding:14px 16px;
    font-size:15px;
    width:100%;
}

.admin-form input:focus,
.admin-form select:focus{
    outline:none;
    border-color:#ff6b35;
}

.admin-form button{
    margin-top:35px;
}

/* ==========================================================
   ADMIN BENUTZERLISTE
========================================================== */

.admin-table-wrap{
    margin-top:40px;
    background:#14141c;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    overflow:hidden;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
    table-layout:auto;
}

.admin-table thead{
    background:#1c1c26;
}

.admin-table th,
.admin-table td{
    padding:18px 22px;
    text-align:left;
    vertical-align:middle;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.admin-table th{
    color:#fff;
    font-weight:700;
}

.admin-table td{
    color:#e7e7e7;
}

.admin-table-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

.admin-small-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:999px;
    background:#2d2d38;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
}

.admin-small-button:hover{
    background:#ff6633;
}

.admin-role-badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.admin-role-badge.is-admin{
    background:#ff6633;
    color:#fff;
}

.admin-role-badge.is-user{
    background:#2f3240;
    color:#fff;
}

/* ==========================================================
   ADMIN STATISTIK + SUCHE
========================================================== */

.admin-stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin:36px 0 28px;
}

.admin-stat-card{
    background:#14141c;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:18px 22px;
}

.admin-stat-card span{
    display:block;
    color:#9a9aa6;
    font-size:13px;
    font-weight:700;
    margin-bottom:8px;
}

.admin-stat-card strong{
    display:block;
    color:#ff6633;
    font-size:28px;
    font-weight:900;
}

.admin-search-form{
    display:flex;
    gap:14px;
    align-items:center;
    margin:0 0 32px;
}

.admin-search-form input{
    flex:1;
    min-width:300px;
    max-width:100%;
    background:#18181f;
    border:1px solid rgba(255,255,255,.12);
    border-radius:999px;
    color:#fff;
    padding:15px 20px;
    font-size:15px;
}

.admin-search-form input:focus{
    outline:none;
    border-color:#ff6633;
}

@media (max-width:900px){
    .admin-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .admin-search-form{
        flex-wrap:wrap;
    }

    .admin-search-form input{
        min-width:100%;
    }
}

@media (max-width:560px){
    .admin-stats-grid{
        grid-template-columns:1fr;
    }
}

/* ==========================================================
   ADMIN ZURÜCK BUTTON
========================================================== */

.admin-back-button{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    margin-bottom:24px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:999px;
    background:#1b1b24;
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:all .25s ease;
}

.admin-back-button:hover{
    background:#ff6633;
    border-color:#ff6633;
    color:#ffffff;
}

.admin-user-create-button {
    margin-top: 34px;
}

/* ==========================================================
   ADMIN BASIS-LAYOUT GLOBAL
   Einheitliches Layout für alle Admin-Seiten
========================================================== */

.admin-page{
    width:100%;
    max-width:1840px;
    margin:0 auto;
    padding:72px 92px 88px;
}

.admin-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    margin-bottom:42px;
}

.admin-header-text{
    min-width:0;
}

.admin-header h1{
    margin:0 0 18px;
    color:#ffffff;
    font-size:clamp(42px,3.2vw,54px);
    line-height:1.05;
    font-weight:900;
    letter-spacing:-1.5px;
}

.admin-header p{
    margin:0;
    color:rgba(255,255,255,.86);
    font-size:clamp(18px,1.25vw,22px);
    line-height:1.45;
}

.admin-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    flex-wrap:wrap;
    flex-shrink:0;
}

.admin-button,
.admin-form button,
.fm-dashboard-btn,
.fm-primary-btn,
.fm-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:0 28px;
    border-radius:999px;
    color:#ffffff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.10);
    cursor:pointer;
    font-weight:800;
    line-height:1.2;
    transition:background .2s ease,border-color .2s ease,transform .15s ease;
}

.admin-button,
.admin-form button,
.fm-primary-btn,
.fm-btn{
    background:#ff6633;
    border-color:#ff6633;
    font-size:16px;
}

.admin-button.secondary,
.fm-dashboard-btn,
.fm-btn.secondary{
    background:#171821;
    border-color:rgba(255,255,255,.10);
    color:#ffffff;
}

.fm-dashboard-btn{
    font-size:22px;
    min-height:70px;
    padding:0 34px;
}

.admin-button:hover,
.admin-form button:hover,
.fm-primary-btn:hover,
.fm-btn:hover{
    background:#ff7a4d;
    border-color:#ff7a4d;
    color:#ffffff;
    transform:translateY(-1px);
}

.admin-button.secondary:hover,
.fm-dashboard-btn:hover,
.fm-btn.secondary:hover{
    background:#ff6633;
    border-color:#ff6633;
    color:#ffffff;
}

.admin-card,
.filemanager-card{
    background:#14141c;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:28px;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.admin-card h2,
.filemanager-card h2{
    margin:0 0 18px;
    color:#ffffff;
    font-size:24px;
    line-height:1.2;
    font-weight:900;
}

.admin-message,
.admin-alert{
    margin:0 0 24px;
    padding:16px 20px;
    border-radius:16px;
    font-weight:800;
}

.admin-message.success,
.admin-alert-success{
    background:rgba(69,190,120,.16);
    border:1px solid rgba(69,190,120,.35);
    color:#9ff0bf;
}

.admin-message.error,
.admin-alert-error{
    background:rgba(220,70,70,.16);
    border:1px solid rgba(220,70,70,.35);
    color:#ffb1b1;
}

/* ==========================================================
   ADMIN FILE MANAGER
========================================================== */

.filemanager-layout{
    display:grid;
    grid-template-columns:320px minmax(0,1fr);
    gap:24px;
    margin-top:24px;
}

.filemanager-path{
    color:#ff6633;
    font-weight:800;
    margin-bottom:18px;
    word-break:break-all;
}

.fm-folder-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.fm-folder-link{
    display:block;
    padding:12px 16px;
    border-radius:999px;
    background:#22232d;
    color:#ffffff;
    text-decoration:none;
    font-weight:800;
}

.fm-folder-link:hover{
    background:#ff6633;
    color:#ffffff;
}

.filemanager-table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
}

.filemanager-table th,
.filemanager-table td{
    padding:16px 14px;
    border-bottom:1px solid rgba(255,255,255,.08);
    text-align:left;
    vertical-align:top;
    color:rgba(255,255,255,.86);
}

.filemanager-table th{
    color:#ffffff;
    background:rgba(255,255,255,.045);
    font-weight:800;
}

.filemanager-actions{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    align-items:center;
}

.fm-btn.danger{
    background:#b83232;
    border-color:#b83232;
}

.fm-btn.danger:hover{
    background:#d64242;
    border-color:#d64242;
}

.fm-btn.small{
    min-height:40px;
    padding:0 16px;
    font-size:13px;
}

.fm-form-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
    margin-bottom:28px;
}

.fm-form-row input[type="file"],
.fm-form-row input[type="text"],
.fm-rename-form input[type="text"]{
    background:#18181f;
    color:#ffffff;
    padding:13px 16px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    font-size:15px;
    font-family:inherit;
}

.fm-form-row input[type="file"]::file-selector-button{
    margin-right:14px;
    border:0;
    border-radius:999px;
    padding:9px 16px;
    background:#2d2d38;
    color:#ffffff;
    font-family:inherit;
    font-weight:800;
    cursor:pointer;
}

.fm-form-row input:focus,
.fm-rename-form input:focus{
    outline:none;
    border-color:#ff6633;
}

.fm-rename-form{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    align-items:center;
    margin-top:10px;
}

.fm-rename-form input[type="text"]{
    min-width:220px;
}

.fm-section{
    margin-bottom:38px;
}

.fm-muted{
    color:rgba(255,255,255,.68);
    font-size:14px;
}

@media (max-width:1100px){
    .admin-page{
        padding:48px 24px 64px;
    }

    .admin-header{
        align-items:flex-start;
        flex-direction:column;
    }

    .admin-actions{
        justify-content:flex-start;
    }

    .filemanager-layout{
        grid-template-columns:1fr;
    }
}

@media (max-width:700px){
    .admin-page{
        padding:36px 18px 54px;
    }

    .admin-header h1{
        font-size:40px;
    }

    .admin-header p{
        font-size:19px;
    }

    .fm-dashboard-btn,
    .fm-primary-btn,
    .fm-btn,
    .admin-actions .admin-button{
        width:100%;
    }

    .filemanager-card,
    .admin-card{
        padding:20px;
    }

    .filemanager-table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }
}



/* =========================================================
   AI GENERATED BADGE — VORLAGE HOLGER 20260708
   Kleines weißes Pill-Label wie in der gelieferten Vorlage.
========================================================= */
.ai-generated-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 4px 10px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #111111 !important;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 8.5px !important;
    font-weight: 900 !important;
    letter-spacing: 0.75px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.22) !important;
    pointer-events: none !important;
}

.work-video > .ai-generated-pill--video {
    position: absolute !important;
    top: 22px !important;
    right: 22px !important;
    z-index: 6 !important;
}

.work-meta > .ai-generated-pill--meta {
    margin-left: auto !important;
    align-self: center !important;
    flex: 0 0 auto !important;
}

.hero-meta .ai-generated-pill {
    margin-left: auto !important;
}

.gallery-item > .ai-generated-pill--mini,
.cast-photo-inner > .ai-generated-pill--mini {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 6 !important;
    padding: 3px 8px !important;
    font-size: 7.5px !important;
    letter-spacing: 0.65px !important;
}

@media (max-width: 640px) {
    .ai-generated-pill {
        padding: 3px 8px !important;
        font-size: 7.5px !important;
        letter-spacing: 0.65px !important;
    }

    .work-video > .ai-generated-pill--video {
        top: 14px !important;
        right: 14px !important;
    }
}

/* =========================================================
   STORYBOARD-GALERIE — VORLAGE 20260708
   3x2 Grid mit dunklem Verlauf, Caption unten links und
   rundem AI-Badge unten rechts wie in Holgers Vorlage.
========================================================= */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.gallery-item {
    position: relative !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    border-radius: 3px !important;
    border: 1px solid rgba(255,255,255,0.32) !important;
    background: #000000 !important;
    box-shadow: none !important;
}

.gallery-item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.gallery-item::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.00) 38%,
        rgba(0,0,0,0.18) 62%,
        rgba(0,0,0,0.82) 100%) !important;
}

.gallery-caption {
    position: absolute !important;
    left: 18px !important;
    right: 62px !important;
    bottom: 14px !important;
    z-index: 4 !important;
}

.gallery-caption-title {
    color: #ffffff !important;
    font-size: 15.5px !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.85) !important;
}

.gallery-caption-sub {
    margin-top: 5px !important;
    color: rgba(255,255,255,0.82) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.85) !important;
}

.gallery-caption-sub .dot {
    display: inline-block !important;
    width: 4px !important;
    height: 4px !important;
    margin: 0 8px 2px !important;
    border-radius: 50% !important;
    background: #FF6B35 !important;
    vertical-align: middle !important;
}

.gallery-item > .ai-generated-pill--mini,
.cast-photo-inner > .ai-generated-pill--mini {
    position: absolute !important;
    top: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    z-index: 6 !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #111111 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.42) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 9.5px !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}

.cast-photo-inner > .ai-generated-pill--mini {
    right: 10px !important;
    bottom: 10px !important;
}

.gallery-item:hover {
    transform: translateY(-3px) !important;
}

.gallery-item:hover img {
    transform: scale(1.035) !important;
    filter: brightness(1.05) !important;
}

@media (max-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .gallery-caption {
        left: 14px !important;
        right: 56px !important;
        bottom: 12px !important;
    }

    .gallery-caption-title {
        font-size: 14.5px !important;
    }

    .gallery-item > .ai-generated-pill--mini,
    .cast-photo-inner > .ai-generated-pill--mini {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        min-height: 26px !important;
        max-width: 26px !important;
        max-height: 26px !important;
        right: 12px !important;
        bottom: 12px !important;
        font-size: 9px !important;
    }
}

/* =========================================================
   PROFILBILD POLAROID — VORLAGE 20260708
   Weißer Foto-Rahmen, leichter Drehwinkel, Schwarz-Weiß-Bild
   und großer LinkedIn-Link darunter.
========================================================= */
.story-portrait.story-polaroid,
.story-polaroid {
    position: relative !important;
    width: min(380px, 86vw) !important;
    height: auto !important;
    max-width: none !important;
    margin: 0 auto 38px !important;
    padding: 18px 18px 86px !important;
    border: 0 !important;
    border-radius: 4px !important;
    overflow: visible !important;
    background: #ffffff !important;
    box-shadow: 0 34px 70px rgba(0,0,0,0.48), 0 8px 22px rgba(0,0,0,0.35) !important;
    transform: rotate(-3.2deg) !important;
    transform-origin: center center !important;
}

.story-portrait.story-polaroid::before,
.story-polaroid::before {
    content: "" !important;
    position: absolute !important;
    inset: 10px !important;
    border-radius: 2px !important;
    pointer-events: none !important;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04) !important;
    z-index: 2 !important;
}

.story-portrait.story-polaroid img,
.story-polaroid img {
    display: block !important;
    width: 100% !important;
    height: 330px !important;
    max-height: none !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
    filter: grayscale(1) contrast(1.06) brightness(1.03) !important;
    box-shadow: none !important;
}

.story-portrait.story-polaroid .portrait-cap,
.story-polaroid .portrait-cap {
    position: absolute !important;
    left: 22px !important;
    right: 22px !important;
    bottom: 38px !important;
    color: #111111 !important;
    font-family: 'Michroma', 'Inter', system-ui, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.03em !important;
    text-align: center !important;
    text-shadow: none !important;
    z-index: 3 !important;
}

.story-linkedin-row {
    position: relative !important;
    z-index: 3 !important;
    text-align: center !important;
    margin: 0 0 76px !important;
}

.story-linkedin-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    color: #FF6B35 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 21px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    letter-spacing: -0.02em !important;
    transition: color .2s ease, transform .15s ease !important;
}

.story-linkedin-link:hover {
    color: #ff8a5c !important;
    transform: translateY(-1px) !important;
}

.story-linkedin-icon {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    fill: currentColor !important;
    display: block !important;
}

.story-linkedin-row + .story-header {
    margin-top: 0 !important;
}

@media (max-width: 640px) {
    .story-portrait.story-polaroid,
    .story-polaroid {
        width: min(318px, 84vw) !important;
        padding: 14px 14px 72px !important;
        margin-bottom: 34px !important;
        transform: rotate(-2.4deg) !important;
    }

    .story-portrait.story-polaroid img,
    .story-polaroid img {
        height: clamp(235px, 70vw, 286px) !important;
    }

    .story-portrait.story-polaroid .portrait-cap,
    .story-polaroid .portrait-cap {
        bottom: 30px !important;
        font-size: 13px !important;
    }

    .story-linkedin-row {
        margin-bottom: 62px !important;
    }

    .story-linkedin-link {
        gap: 10px !important;
        font-size: 18px !important;
    }

    .story-linkedin-icon {
        width: 22px !important;
        height: 22px !important;
        flex-basis: 22px !important;
    }
}

/* =========================================================
   FAQ.PHP
   Vorlage faq_v1.html übernommen und an KiAvatars-PHP-Struktur angepasst.
   Styling liegt zentral in style.css.
========================================================= */

.faq-page {
    background: #0a0a0e;
}

.faq-header {
    max-width: 820px;
    margin: 0 auto;
    padding: 96px 32px 40px;
    text-align: center;
}

.faq-header .section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 16px;
}

.faq-title {
    color: #ffffff;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.faq-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: #9a9aa6;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}

.faq-list {
    max-width: 820px;
    margin: 32px auto 0;
    padding: 0 32px;
}

.faq-item {
    border-top: 1px solid rgba(255,255,255,0.10);
}

.faq-list .faq-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 4px;
    color: #ffffff;
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: #FF6B35;
}

.faq-item summary .marker {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    position: relative;
    margin-top: 2px;
}

.faq-item summary .marker::before,
.faq-item summary .marker::after {
    content: "";
    position: absolute;
    background: #FF6B35;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transition: transform 0.25s ease;
}

.faq-item summary .marker::before {
    width: 16px;
    height: 2.5px;
    transform: translate(-50%, -50%);
}

.faq-item summary .marker::after {
    width: 2.5px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq-item[open] summary {
    color: #FF6B35;
}

.faq-item[open] summary .marker::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
    padding: 0 50px 28px 4px;
}

.faq-answer p {
    color: #c6c6cc;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.faq-answer em {
    color: #ffffff;
    font-style: italic;
}

.faq-cta {
    max-width: 820px;
    margin: 72px auto 0;
    padding: 56px 32px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-cta h2 {
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin: 0 0 14px;
}

.faq-cta p {
    color: #9a9aa6;
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 28px;
}

.cta-button {
    display: inline-block;
    background: #FF6B35;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.cta-button:hover {
    background: #CC4A1F;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .faq-header {
        padding: 64px 20px 28px;
        text-align: left;
    }

    .faq-list,
    .faq-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-answer {
        padding-right: 20px;
    }
}

/* =========================================================
   IMPRESSUM.PHP / LEGAL PAGES
   Vorlage impressum_v8.html übernommen und an KiAvatars-PHP-Struktur angepasst.
   Styling liegt zentral in style.css.
========================================================= */

.legal-page {
    background: #0a0a0e;
}

.legal-header {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 32px 8px;
}

.legal-header .section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 14px;
}

.legal-title {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.legal-sub {
    color: #9a9aa6;
    font-size: 14px;
    line-height: 1.6;
}

.legal-wrap {
    max-width: 820px;
    margin: 8px auto 0;
    padding: 0 32px;
}

.legal-section {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 36px 0;
}

.legal-section h2 {
    color: #ffffff;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 18px;
}

.legal-section p {
    color: #c6c6cc;
    font-size: 16px;
    line-height: 1.72;
    margin: 0 0 14px;
    max-width: 680px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 700;
}

.addr-block {
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
}

.addr-block .label {
    color: #9a9aa6;
}

.legal-note {
    color: #7c7c86 !important;
    font-size: 13px !important;
    font-style: normal;
    line-height: 1.6 !important;
    margin-top: 16px !important;
}

.legal-section a.inline {
    color: #FF8C42;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-updated {
    text-align: center;
}

.legal-updated .legal-note {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.ph {
    display: inline-block;
    background: rgba(255,107,53,0.16);
    border: 1px dashed #FF6B35;
    color: #ffb38c;
    padding: 1px 8px;
    border-radius: 5px;
    font-style: normal;
    font-size: 0.92em;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .legal-header {
        padding: 40px 20px 8px;
    }

    .legal-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .legal-section {
        padding: 30px 0;
    }

    .legal-section p,
    .addr-block {
        font-size: 15px !important;
    }

    .ph {
        white-space: normal;
    }
}

/* =========================================================
   FOOTER FINAL DESIGN 20260708
   Zentral aus footer.php nach style.css verschoben.
   Schriftgrößen ruhiger und näher am Header.
========================================================= */

.site-footer {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 70px 48px 32px !important;
    background: #050508 !important;
    border-top: 1px solid rgba(255,255,255,0.055) !important;
}

.site-footer .footer-inner {
    width: 100% !important;
    max-width: 1650px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 1.35fr) minmax(160px, .75fr) minmax(190px, .75fr) minmax(220px, .75fr) !important;
    gap: clamp(48px, 7vw, 120px) !important;
    align-items: start !important;
}

.site-footer .footer-brand {
    max-width: 330px !important;
}

.site-footer .footer-logo-mark {
    width: 48px !important;
    max-width: 48px !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 0 20px !important;
}

.site-footer .footer-brand h4 {
    margin: 0 0 14px !important;
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
}

.site-footer .footer-brand p {
    max-width: 320px !important;
    margin: 0 !important;
    color: #9294ad !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    font-weight: 500 !important;
}

.site-footer .footer-col {
    min-width: 0 !important;
}

.site-footer .footer-col h5 {
    margin: 0 0 20px !important;
    color: #989bb8 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
}

.site-footer .footer-col a,
.site-footer .footer-loc {
    display: block !important;
    margin: 0 0 11px !important;
    padding: 0 !important;
    color: #e2e4ef !important;
    font-size: 14.5px !important;
    line-height: 1.38 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.site-footer .footer-loc {
    color: #9294ad !important;
}

.site-footer .footer-col a:hover {
    color: #ff6b35 !important;
}

.site-footer .footer-divider {
    width: 100% !important;
    max-width: 1650px !important;
    margin: 52px auto 0 !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
}

.site-footer .footer-pills {
    width: 100% !important;
    max-width: 1650px !important;
    margin: 34px auto 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
}

.site-footer .footer-pill {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 11px !important;
    padding: 0 !important;
    color: #9294ad !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    white-space: nowrap !important;
}

.site-footer .footer-pill::before {
    content: "" !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #ff6b35 !important;
    display: block !important;
    flex: 0 0 7px !important;
}

.site-footer .footer-bottom {
    width: 100% !important;
    max-width: 1650px !important;
    margin: 24px auto 0 !important;
    padding: 0 !important;
    border: 0 !important;
    display: block !important;
    text-align: center !important;
    color: rgba(146,148,173,0.72) !important;
    font-size: 11.5px !important;
    line-height: 1.5 !important;
}

@media (max-width: 1100px) {
    .site-footer {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .site-footer .footer-inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px 52px !important;
    }

    .site-footer .footer-brand {
        max-width: 520px !important;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 54px 22px 30px !important;
    }

    .site-footer .footer-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: left !important;
    }

    .site-footer .footer-logo-mark {
        width: 44px !important;
        max-width: 44px !important;
        margin-bottom: 16px !important;
    }

    .site-footer .footer-brand h4 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .site-footer .footer-brand p {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }

    .site-footer .footer-col h5 {
        font-size: 12px !important;
        margin-bottom: 14px !important;
    }

    .site-footer .footer-col a,
    .site-footer .footer-loc {
        font-size: 13.5px !important;
        line-height: 1.45 !important;
        margin-bottom: 9px !important;
    }

    .site-footer .footer-divider {
        margin-top: 38px !important;
    }

    .site-footer .footer-pills {
        justify-content: flex-start !important;
        gap: 12px !important;
        margin-top: 30px !important;
    }

    .site-footer .footer-pill {
        width: 100% !important;
        font-size: 12.5px !important;
        white-space: normal !important;
    }

    .site-footer .footer-bottom {
        text-align: left !important;
        font-size: 11.5px !important;
    }

    .cookie-banner {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        padding: 18px !important;
        border-radius: 18px !important;
    }

    .cookie-banner h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .cookie-banner p {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
    }

    .cookie-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .cookie-btn {
        width: 100% !important;
        min-height: 44px !important;
    }
}

@media (max-width: 380px) {
    .site-footer .footer-brand h4 {
        font-size: 17px !important;
    }

    .site-footer .footer-col a,
    .site-footer .footer-loc {
        font-size: 13px !important;
    }
}

/* =========================================================
   AI BADGES CLEAN WHITE FINAL 20260709
   Der alte schwarze AI-Icon-Block wurde entfernt.
   Ergebnis:
   - große AI GENERATED Labels: weißer Hintergrund, schwarze Schrift
   - kleine runde AI-Icons: weißer Kreis, schwarzes AI
========================================================= */

.ai-generated-pill:not(.ai-generated-pill--mini),
.hero-meta .ai-generated-pill,
.work-video > .ai-generated-pill--video,
.work-meta > .ai-generated-pill--meta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;
    padding: 4px 10px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #111111 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.22) !important;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 8.5px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0.75px !important;
    text-transform: uppercase !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}

.work-video > .ai-generated-pill--video {
    position: absolute !important;
    top: 22px !important;
    right: 22px !important;
    z-index: 6 !important;
}

.work-meta > .ai-generated-pill--meta {
    margin-left: auto !important;
    align-self: center !important;
    flex: 0 0 auto !important;
}

.hero-meta .ai-generated-pill {
    margin-left: auto !important;
}

.ai-generated-pill--mini,
.gallery-item .ai-generated-pill--mini,
.cast-photo-inner .ai-generated-pill--mini,
.ki-badge-mini {
    position: absolute !important;
    top: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    left: auto !important;
    z-index: 9 !important;

    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #111111 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.42) !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 9.5px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    text-indent: 0 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.ai-generated-pill--mini::before,
.gallery-item .ai-generated-pill--mini::before,
.cast-photo-inner .ai-generated-pill--mini::before {
    content: none !important;
    display: none !important;
}

.ai-generated-pill--mini::after,
.gallery-item .ai-generated-pill--mini::after,
.cast-photo-inner .ai-generated-pill--mini::after {
    content: none !important;
    display: none !important;
}

.cast-photo-inner .ai-generated-pill--mini,
.cast-photo-inner .ki-badge-mini {
    right: 10px !important;
    bottom: 10px !important;
}

.ki-badge-mini {
    border: 0 !important;
}

@media (max-width: 640px) {
    .ai-generated-pill:not(.ai-generated-pill--mini),
    .hero-meta .ai-generated-pill,
    .work-video > .ai-generated-pill--video,
    .work-meta > .ai-generated-pill--meta {
        padding: 3px 8px !important;
        font-size: 7.5px !important;
        letter-spacing: 0.65px !important;
    }

    .work-video > .ai-generated-pill--video {
        top: 14px !important;
        right: 14px !important;
    }

    .ai-generated-pill--mini,
    .gallery-item .ai-generated-pill--mini,
    .cast-photo-inner .ai-generated-pill--mini,
    .ki-badge-mini {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
        right: 11px !important;
        bottom: 11px !important;
        font-size: 8.5px !important;
    }
}

/* =========================================================
   TEST: Galerie AI Icons exakt kleiner
========================================================= */
.gallery-item > .ai-generated-pill--mini {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;

    right: 13px !important;
    bottom: 13px !important;

    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;

    background: #ffffff !important;
    color: #111111 !important;

    font-size: 7.5px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;

    box-shadow: 0 2px 7px rgba(0,0,0,0.35) !important;
}

/* =========================================================
   HANDY-ANPASSUNG HERO – SCHRITT 1
========================================================= */

@media (max-width: 600px) {

    .hero-content {
        left: 20px !important;
        right: auto !important;
        bottom: 70px !important;
        width: calc(100% - 40px) !important;
        max-width: none !important;
        gap: 14px !important;
    }

    .hero-headline {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(28px, 8.5vw, 34px) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.02em !important;
    }

    .hero-subhead {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        overflow-wrap: break-word !important;
    }

    .hero-meta {
        right: 20px !important;
        bottom: 18px !important;
    }
}