.elementor-85 .elementor-element.elementor-element-79117f6{--display:flex;}.elementor-85 .elementor-element.elementor-element-79117f6.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-85 .elementor-element.elementor-element-79117f6{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-c4b9276 *//* =============================================
   style.css - Dark Cinematic Design
   Marion Karpf Portfolio
   ============================================= */

:root {
  --bg: #0b0b0f;
  --text: #e8e6e1;
  --accent: #e8456b;
  --accent2: #f0c040;
  --muted: #999;
  --card: #141418;
  --border: #222;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* Film Grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: 0.5;
}

/* Custom Cursor */
.cursor {
  width: 20px; height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 999999;
  transition: transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.hover {
  width: 60px; height: 60px;
  border-color: var(--accent2);
  background: rgba(240, 192, 64, 0.08);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 1000000;
  transform: translate(-50%, -50%);
}

/* Navigation */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(11,11,15,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,69,107,0.15);
}
nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text); text-decoration: none;
}
nav .logo em { color: var(--accent); font-style: italic; }
nav .links { display: flex; gap: 2rem; }
nav .links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 2px;
  transition: color 0.3s;
}
nav .links a:hover { color: var(--text); }
nav .links a.aktiv { color: var(--accent); }

/* Hero */
.hero {
  height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,69,107,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(240,192,64,0.05) 0%, transparent 50%),
    var(--bg);
}
.hero-line { position: absolute; background: var(--accent); opacity: 0.1; }
.hero-line.h1 { top: 25%; left: 0; right: 0; height: 1px; }
.hero-line.h2 { top: 75%; left: 0; right: 0; height: 1px; }
.hero-line.v1 { left: 25%; top: 0; bottom: 0; width: 1px; }
.hero-line.v2 { right: 25%; top: 0; bottom: 0; width: 1px; }

.hero-content { position: relative; z-index: 2; }

/* Animiertes Maskottchen im Hero */
.hero-mascot {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0;
  filter: drop-shadow(0 0 30px rgba(232,69,107,0.4));
  animation:
    mascotEinblenden 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    mascotSchweben 4s 1.2s ease-in-out infinite,
    mascotGlow 3s 1.2s ease-in-out infinite alternate;
  transition: transform 0.3s;
  cursor: pointer;
}
.hero-mascot:hover {
  transform: rotate(8deg) scale(1.1);
}

@keyframes mascotEinblenden {
  0% { opacity: 0; transform: scale(0.3) rotate(-15deg) translateY(60px); }
  60% { opacity: 1; transform: scale(1.08) rotate(3deg) translateY(-10px); }
  80% { transform: scale(0.97) rotate(-1deg) translateY(5px); }
  100% { opacity: 1; transform: scale(1) rotate(0deg) translateY(0); }
}
@keyframes mascotSchweben {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1.5deg); }
  75% { transform: translateY(5px) rotate(-1deg); }
}
@keyframes mascotGlow {
  from { filter: drop-shadow(0 0 20px rgba(232,69,107,0.3)); }
  to { filter: drop-shadow(0 0 40px rgba(232,69,107,0.6)) drop-shadow(0 0 80px rgba(240,192,64,0.15)); }
}

/* Typografie Hero */
.hero-typo {
  text-align: center;
}
.hero-gradient {
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: -3px;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-gradient em {
  font-style: italic;
  color: var(--accent);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Gradient auf jeden einzelnen Buchstaben */
.hero-gradient .buchstabe {
  color: inherit;
}

.hero-btn {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.9rem 2.5rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 40px rgba(232,69,107,0.3);
  transform: translateY(-2px);
}
.hero-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 6px; color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.95;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero h1 em {
  font-style: italic; color: var(--accent);
  display: inline-block;
}
.hero-sub {
  font-size: 1rem; color: var(--muted);
  margin-top: 1.5rem; font-weight: 200;
  letter-spacing: 1px;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-content img {
  width: 180px; height: auto;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: imgEinblenden 1s 0.4s forwards, heroFloat 4s 1.5s ease-in-out infinite, glowPulse 3s 1.5s ease-in-out infinite alternate;
}
@keyframes imgEinblenden {
  from { opacity: 0; transform: translateY(40px) scale(0.9); filter: drop-shadow(0 0 10px rgba(232,69,107,0.1)); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 0 30px rgba(232,69,107,0.4)); }
}
@keyframes glowPulse {
  from { filter: drop-shadow(0 0 20px rgba(232,69,107,0.3)); }
  to { filter: drop-shadow(0 0 40px rgba(232,69,107,0.6)) drop-shadow(0 0 80px rgba(240,192,64,0.15)); }
}

.scroll-indicator {
  position: absolute; bottom: 3rem;
  left: 0; right: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeUp 1s 1.2s forwards;
}
.scroll-indicator span {
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 3px; color: var(--muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}

/* Animationen */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.3); } }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Letter animation */
.hero h1 .buchstabe {
  display: inline-block;
  opacity: 0; transform: translateY(60px) rotateX(-90deg);
  animation: buchstabeRein 0.6s forwards;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes buchstabeRein { to { opacity: 1; transform: translateY(0) rotateX(0); } }

/* Clip-path reveal */
.projekt-bild { clip-path: inset(0 100% 0 0); transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1); }
.projekt.sichtbar .projekt-bild { clip-path: inset(0 0% 0 0); }
.projekt:nth-child(even) .projekt-bild { clip-path: inset(0 0 0 100%); }
.projekt:nth-child(even).sichtbar .projekt-bild { clip-path: inset(0 0% 0 0); }

.projekt-info {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s 0.3s, transform 0.8s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.projekt:nth-child(even) .projekt-info { transform: translateX(-40px); }
.projekt.sichtbar .projekt-info { opacity: 1; transform: translateX(0); }

.charakter-reihe > div { opacity: 0; transform: translateY(50px) scale(0.9); transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
.charakter-reihe > div.sichtbar { opacity: 1; transform: translateY(0) scale(1); }

.tags { opacity: 0; transform: translateY(15px); transition: opacity 0.5s 0.6s, transform 0.5s 0.6s; }
.projekt.sichtbar .tags { opacity: 1; transform: translateY(0); }

.leistung-item { opacity: 0; transform: scale(0.8); transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.leistung-item.sichtbar { opacity: 1; transform: scale(1); }

.trenner { transform: scaleX(0); transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1); }
.trenner.sichtbar { transform: scaleX(1); }

.cta h2 { opacity: 0; transform: translateY(30px); transition: opacity 1s, transform 1s; }
.cta.sichtbar h2 { opacity: 1; transform: translateY(0); }
.cta .btn { opacity: 0; transform: translateY(20px); transition: opacity 0.8s 0.3s, transform 0.8s 0.3s, background 0.4s, color 0.4s, box-shadow 0.4s; }
.cta.sichtbar .btn { opacity: 1; transform: translateY(0); }

/* Floating particles */
.partikel-container { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.partikel { position: absolute; border-radius: 50%; pointer-events: none; opacity: 0; animation: partikelSchweben linear infinite; }
@keyframes partikelSchweben {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* Sektionen */
.sektion { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.sektion-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 5px; color: var(--accent); margin-bottom: 0.5rem; }
.sektion h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.sektion-desc { color: var(--muted); font-weight: 200; max-width: 600px; font-size: 0.95rem; margin-bottom: 3rem; line-height: 1.8; }

.trenner { border: none; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 0 3rem; }

/* Projekt-Layout */
.projekte { display: flex; flex-direction: column; gap: 4rem; }
.projekt { display: flex; gap: 2.5rem; align-items: center; opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s cubic-bezier(0.23,1,0.32,1); }
.projekt.sichtbar { opacity: 1; transform: translateY(0); }
.projekt:nth-child(even) { flex-direction: row-reverse; }

.projekt-bild {
  width: 50%; flex-shrink: 0; border-radius: 12px; overflow: hidden;
  position: relative; background: var(--card); border: 1px solid var(--border);
}
.projekt-bild img { width: 100%; height: auto; max-height: 400px; object-fit: cover; transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.5s; filter: saturate(0.8); }
.projekt-bild > a:first-child:hover img { transform: scale(1.05); filter: saturate(1.2); }
.projekt-bild > a:first-child { display: block; cursor: zoom-in; }
.projekt-tag { position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: #fff; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 0.3rem 0.8rem; border-radius: 4px; }

/* Thumbnail-Galerie unter dem Hauptbild */
.projekt-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 1.2rem;
}
.projekt-thumbs a {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  cursor: zoom-in;
}
.projekt-thumbs a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.projekt-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.projekt-info { flex: 1; }
.projekt-nr { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: rgba(232,69,107,0.45); line-height: 1; margin-bottom: 0.5rem; }
.projekt-kat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 0.5rem; }
.projekt-info h3 { font-size: 1.6rem; text-transform: uppercase; margin-bottom: 1rem; }
.projekt-info p { color: var(--muted); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1rem; font-weight: 200; }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags span { background: #1a1a1a; border: 1px solid var(--border); color: var(--accent2); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1.5px; padding: 0.3rem 0.7rem; border-radius: 4px; }

/* Bilder-Reihe */
.bild-reihe { display: flex; flex-direction: row; gap: 10px; margin-bottom: 20px; max-width: 100%; }
.bild-reihe > div { flex: 1; min-width: 0; border-radius: 8px; overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.bild-reihe img { width: 100%; height: 300px; object-fit: cover; display: block; cursor: zoom-in; transition: transform 0.7s cubic-bezier(0.23,1,0.32,1); }
.bild-reihe img:hover { transform: scale(1.05); }
.bild-stapel { display: flex; flex-direction: row; gap: 10px; margin-bottom: 20px; }
.bild-stapel > div { flex: 1; min-width: 0; border-radius: 8px; overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.bild-stapel img { width: 100%; height: 300px; object-fit: cover; object-position: top; display: block; cursor: zoom-in; }

/* Charakter Grid */
.charakter-reihe { display: flex; flex-direction: row; gap: 1.5rem; margin-top: 2rem; }
.charakter-reihe > div { flex: 1; min-width: 0; border-radius: 12px; overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: all 0.4s; }
.charakter-reihe > div:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(232,69,107,0.1); }
.charakter-reihe img { width: 100%; height: 320px; object-fit: contain; display: block; cursor: zoom-in; }
.charakter-info { padding: 1rem 1.2rem; }
.charakter-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent2); }
.charakter-info h3 { font-size: 1rem; margin-top: 0.2rem; }

/* Video Grid */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.video-karte { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.4s; }
.video-karte.versteckt { clip-path: inset(100% 0 0 0); }
.video-karte.sichtbar { clip-path: inset(0 0 0 0); transition: clip-path 0.7s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s, box-shadow 0.3s; }
.video-karte:hover { border-color: var(--accent); box-shadow: 0 20px 60px rgba(232,69,107,0.1); }
.video-karte .video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }

.video-karte .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-karte .video-info { padding: 1.2rem 1.5rem; }
.video-karte .video-info h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.video-karte .video-info p { font-size: 0.8rem; color: var(--muted); font-weight: 200; }

/* Leistungen Box */
.leistungen-box { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; margin-top: 2rem; position: relative; overflow: hidden; }
.leistungen-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.leistungen-box h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.leistungen-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.leistung-item { padding: 0.5rem 1.2rem; background: rgba(232,69,107,0.08); border: 1px solid rgba(232,69,107,0.15); border-radius: 50px; font-size: 0.8rem; color: var(--text); transition: all 0.3s; }
.leistung-item:hover { border-color: var(--accent); background: rgba(232,69,107,0.15); }

/* Leistungen Cards */
.leistungen-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.leistung-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem 1.5rem; transition: all 0.4s; position: relative; overflow: hidden; }
.leistung-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); transform: scaleX(0); transition: transform 0.4s; transform-origin: left; }
.leistung-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(232,69,107,0.1); }
.leistung-card:hover::before { transform: scaleX(1); }
.leistung-card .icon { font-size: 1.8rem; margin-bottom: 1rem; }
.leistung-card h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.leistung-card p { font-size: 0.75rem; color: var(--muted); font-weight: 200; line-height: 1.6; }

/* Horizontal Gallery */
.gallery-section { padding: 6rem 0 4rem; overflow: hidden; }
.gallery-header { padding: 0 3rem; margin-bottom: 3rem; }
.gallery-track { display: flex; gap: 1.5rem; padding: 0 3rem; animation: marquee 40s linear infinite; width: max-content; }
.gallery-track:hover { animation-play-state: paused; }
.gallery-item { flex-shrink: 0; width: 400px; height: 300px; border-radius: 12px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.23,1,0.32,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,11,15,0.85) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.5s; pointer-events: none; }
.gallery-item:hover .overlay { opacity: 1; }
.overlay .tag { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent2); margin-bottom: 0.3rem; }
.overlay .title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Masonry */
.masonry { columns: 3; column-gap: 1.5rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1.5rem; border-radius: 12px; overflow: hidden; position: relative; cursor: zoom-in; }
.masonry-item a { display: block; }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.5s; filter: saturate(0.8); }
.masonry-item:hover img { transform: scale(1.05); filter: saturate(1.2); }
.masonry-item .info { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,11,15,0.9) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.masonry-item:hover .info { opacity: 1; }
.info .nr { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: rgba(232,69,107,0.3); line-height: 1; position: absolute; top: 1rem; left: 1.5rem; }
.info .kat { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent2); margin-bottom: 0.3rem; }
.info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.info p { font-size: 0.75rem; color: var(--muted); margin-top: 0.4rem; font-weight: 200; }

/* Ueber Mich */
.ueber-box { display: flex; gap: 3rem; align-items: center; }
.ueber-bild { width: 250px; flex-shrink: 0; }
.ueber-bild img { width: 100%; filter: drop-shadow(0 0 20px rgba(232,69,107,0.2)); }
.ueber-text { flex: 1; }
.ueber-text p { color: var(--muted); font-weight: 200; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.stats { display: flex; gap: 2.5rem; margin-top: 1.5rem; }
.stat-zahl { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.stat-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }

/* === Kundenstimmen === */
.testimonials {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.testimonial:nth-child(1) { grid-column: 1 / 3; }
.testimonial:nth-child(2) { grid-column: 3 / 5; }
.testimonial:nth-child(3) { grid-column: 5 / 7; }
.testimonial:nth-child(4) { grid-column: 2 / 4; }
.testimonial:nth-child(5) { grid-column: 4 / 6; }
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  line-height: 1;
}
.testimonial:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(232,69,107,0.08);
}
.testimonial-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text);
  font-weight: 200;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}
.testimonial-autor {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-rolle {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
  .testimonial:nth-child(n) { grid-column: auto; }
}

/* CTA */
.cta { padding: 8rem 3rem; text-align: center; position: relative; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(232,69,107,0.06) 0%, transparent 60%); }
.cta h2 { font-size: clamp(2rem, 5vw, 4rem); position: relative; }
.cta h2 em { color: var(--accent); font-style: italic; }
.cta .btn { display: inline-block; margin-top: 2rem; padding: 1rem 3rem; border: 2px solid var(--accent); color: var(--accent); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; border-radius: 50px; transition: all 0.4s; position: relative; }
.cta .btn:hover { background: var(--accent); color: #fff; box-shadow: 0 0 40px rgba(232,69,107,0.3); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,11,15,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox:target { display: flex; }

.lightbox-inhalt {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  gap: 3rem;
}

.lightbox-inhalt img {
  width: 60%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-text {
  flex: 1;
}

.lightbox-text .lightbox-kat {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lightbox-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text);
  line-height: 1.2;
}

.lightbox-text p {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 200;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 48px;
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  transition: color 0.3s;
  z-index: 1001;
}
.lightbox-close:hover { color: var(--accent); }

/* Einfache Lightbox (Print, Illustration etc.) */
.lightbox > img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .lightbox-inhalt {
    flex-direction: column;
    gap: 1.5rem;
  }
  .lightbox-inhalt img {
    width: 100%;
    max-height: 55vh;
  }
  .lightbox-text { text-align: center; }
}

/* === Kontaktformular === */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.kontakt-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.kontakt-feld label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.kontakt-feld input,
.kontakt-feld textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 200;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.kontakt-feld input:focus,
.kontakt-feld textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(232,69,107,0.1);
}
.kontakt-feld input::placeholder,
.kontakt-feld textarea::placeholder {
  color: #555;
}
.kontakt-feld textarea {
  resize: vertical;
  min-height: 120px;
}
.kontakt-btn {
  align-self: flex-start;
  cursor: pointer;
  background: none;
  font-family: 'Outfit', sans-serif;
  padding: 1rem 3rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 50px;
  transition: all 0.4s;
}
.kontakt-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 40px rgba(232,69,107,0.3);
}
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1.5rem;
}
.kontakt-info-item .kontakt-info-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.kontakt-info-item a {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}
.kontakt-info-item a:hover { color: var(--accent); }
.kontakt-info-item p {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 200;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; }
}

/* Footer */
footer { text-align: center; padding: 2rem; border-top: 1px solid #1a1a1a; font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-links { padding-left: 2rem; }
  nav { padding: 1rem 1.5rem; }
  nav .links { gap: 1rem; }
  nav .links a { font-size: 0.65rem; letter-spacing: 1px; }
  .sektion { padding: 4rem 1.5rem; }
  .projekt { flex-direction: column; }
  .projekt:nth-child(even) { flex-direction: column; }
  .projekt-bild { width: 100%; }
  .video-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .leistungen-cards { grid-template-columns: repeat(2, 1fr); }
  .ueber-box { flex-direction: column; text-align: center; }
  .stats { justify-content: center; }
  .gallery-item { width: 300px; height: 220px; }
  .charakter-reihe { flex-wrap: wrap; }
  .charakter-reihe > div { flex: 1 1 45%; }
  .bild-reihe { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-links { padding-left: 1.5rem; text-align: center; }
  .masonry { columns: 1; }
  .leistungen-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3rem; }
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
  .gallery-item { width: 280px; height: 200px; }
  nav .links { gap: 0.6rem; }
  nav .links a { font-size: 0.55rem; }
  .charakter-reihe > div { flex: 1 1 100%; }
  .charakter-reihe img { height: 250px; }
}/* End custom CSS */