/* KernMedia – Eventfotografie & Videoproduktion
   Design v2: Konzertposter trifft Editorial */

/* ---------- Fonts (self-hosted, kein CDN) ---------- */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-var.woff2') format('woff2');
}

:root {
  --bg: #07070b;
  --bg-soft: #0d0d14;
  --card: #12121b;
  --line: rgba(255,255,255,0.07);
  --text: #f4f2ef;
  --muted: #a9a7b3;
  --accent: #ff4b3e;
  --accent-2: #ffa14b;
  --accent-soft: rgba(255, 75, 62, 0.13);
  --grad: linear-gradient(100deg, var(--accent), var(--accent-2));
  --radius: 18px;
  --maxw: 1240px;
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; } /* height-Attribut liefert nur die Ratio */
picture { display: contents; } /* <picture>-Huellen verhalten sich wie das img selbst */

/* Tastatur-Fokus in der Akzentfarbe */
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 2px; }

/* Skip-Link: unsichtbar bis fokussiert */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; text-decoration: none; }
a { color: var(--accent); text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Filmkorn über allem ---------- */
body::after {
  content: ""; position: fixed; inset: -100px; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 25% { transform: translate(-30px,20px); }
  50% { transform: translate(20px,-25px); } 75% { transform: translate(-15px,-10px); }
  100% { transform: translate(0,0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 7, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 24px; max-width: 1380px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--text); }
.logo img {
  width: 38px; height: 38px; flex-shrink: 0;
  filter: drop-shadow(0 0 9px rgba(255, 75, 62, 0.45));
  animation: kopf-rein 0.9s cubic-bezier(0.2, 0.8, 0.25, 1);
  transition: transform 0.3s ease;
}
.logo:hover img { transform: translateX(-2px) scale(1.06); }
@keyframes kopf-rein { from { transform: translateX(-10px); opacity: 0; } to { transform: none; opacity: 1; } }
.logo .wort { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.logo .wort b {
  font-family: var(--display); font-weight: 400;
  font-size: 1.55rem; letter-spacing: 0.05em;
}
.logo .wort b em { font-style: normal; color: var(--accent); }
.logo .wort small {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.nav ul { display: flex; gap: 20px; list-style: none; }
.nav ul a {
  color: var(--muted); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  transition: color 0.2s;
}
.nav ul a:hover { color: var(--text); }
.nav .cta {
  font-family: var(--display); font-size: 1.05rem; letter-spacing: 0.06em;
  background: var(--grad); color: #fff; padding: 9px 22px 7px;
  border-radius: 999px; line-height: 1.2; white-space: nowrap;
  box-shadow: 0 4px 22px rgba(255, 75, 62, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav .cta:hover { transform: translateY(-1px); box-shadow: 0 6px 30px rgba(255, 75, 62, 0.6); }
@media (max-width: 860px) { .nav ul.menu { display: none; } }

/* ---------- Telefon: Header ---------- */
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-tel {
  display: flex; align-items: center; gap: 10px; color: var(--text);
  padding: 6px 4px; transition: color 0.2s;
}
.nav-tel svg {
  width: 34px; height: 34px; padding: 8px; flex-shrink: 0;
  border-radius: 50%; fill: var(--accent-2);
  background: var(--accent-soft); border: 1px solid rgba(255, 75, 62, 0.35);
  transition: transform 0.25s, background 0.25s;
}
.nav-tel:hover { text-decoration: none; }
.nav-tel:hover svg { transform: rotate(-12deg) scale(1.08); background: rgba(255, 75, 62, 0.22); }
.nav-tel span { display: flex; flex-direction: column; line-height: 1.1; gap: 3px; }
.nav-tel small {
  font-size: 0.56rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.nav-tel b {
  font-family: var(--display); font-weight: 400;
  font-size: 1.15rem; letter-spacing: 0.04em; color: var(--text); white-space: nowrap;
}
.nav-tel small { white-space: nowrap; }
.nav-tel:hover b { color: var(--accent-2); }
@media (max-width: 1280px) { .logo .wort small { display: none; } }
@media (max-width: 1180px) { .nav-tel span { display: none; } }
@media (max-width: 560px) { .nav-tel { display: none; } }

/* Puls-Punkt */
.puls {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #35d07f; position: relative; flex-shrink: 0;
}
.puls::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid #35d07f; animation: pulsring 2s ease-out infinite;
}
@keyframes pulsring {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Telefon: Hero ---------- */
.hero-tel {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px; color: #d8d5da; font-size: 1rem; font-weight: 600;
  transition: color 0.2s;
}
.hero-tel strong {
  font-family: var(--display); font-weight: 400; font-size: 1.5rem;
  letter-spacing: 0.06em; color: #fff;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px; transition: color 0.2s, border-color 0.2s;
}
.hero-tel:hover { text-decoration: none; color: #fff; }
.hero-tel:hover strong { color: var(--accent-2); border-color: var(--accent-2); }

/* ---------- Telefon: Kontaktbox ---------- */
.tel-gross {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  margin: 6px 0 26px; padding: 22px 44px;
  border: 1px solid rgba(255, 75, 62, 0.4); border-radius: 20px;
  background: rgba(255, 75, 62, 0.07);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.tel-gross:hover {
  text-decoration: none; transform: translateY(-3px);
  border-color: var(--accent-2); background: rgba(255, 75, 62, 0.13);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255, 75, 62, 0.2);
}
.tel-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted);
}
.tel-nr {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 4.2rem); line-height: 1; letter-spacing: 0.035em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 75, 62, 0.35));
}
.tel-sub { font-size: 0.88rem; margin-bottom: 14px !important; }

/* ---------- Telefon: Mobile Anruf-Leiste ---------- */
.tel-bar { display: none; }
@media (max-width: 760px) {
  .tel-bar {
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 200;
    display: flex; align-items: center; justify-content: center; gap: 11px;
    padding: 15px 20px 13px; border-radius: 999px;
    background: var(--grad); color: #fff;
    font-family: var(--display); font-size: 1.28rem; letter-spacing: 0.06em;
    box-shadow: 0 10px 34px rgba(0,0,0,0.5), 0 0 26px rgba(255, 75, 62, 0.45);
  }
  .tel-bar svg { width: 20px; height: 20px; fill: #fff; }
  .tel-bar:hover { text-decoration: none; }
  footer { padding-bottom: 96px; }
  .hero-tel { display: none; }   /* auf dem Handy übernimmt die Anruf-Leiste */
}

/* ---------- Hero mit Licht-Ebenen ---------- */
.hero {
  position: relative; min-height: 96vh;
  display: flex; align-items: flex-end;
  isolation: isolate; overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -6;
  animation: kenburns 26s ease-in-out infinite alternate;
  filter: saturate(1.12) contrast(1.06);
}
@keyframes kenburns {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.13) translateY(-2.2%); }
}

/* Farb-Grade + Vignette */
.hero .grade {
  position: absolute; inset: 0; z-index: -5; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(7,7,11,0.96) 8%, rgba(7,7,11,0.35) 45%, transparent 70%),
    radial-gradient(90% 70% at 85% 0%, rgba(255, 90, 40, 0.22), transparent 55%),
    radial-gradient(80% 60% at 8% 8%, rgba(64, 120, 255, 0.18), transparent 55%),
    radial-gradient(140% 110% at 50% 50%, transparent 55%, rgba(7,7,11,0.55) 100%);
}

/* Lichtstrahlen von oben */
.hero .beams {
  position: absolute; inset: -20% -10%; z-index: -4; pointer-events: none;
  background:
    conic-gradient(from 195deg at 78% -8%, transparent 0 8deg, rgba(255,170,110,0.12) 11deg, transparent 16deg, transparent 22deg, rgba(255,120,80,0.09) 26deg, transparent 31deg),
    conic-gradient(from 160deg at 15% -8%, transparent 0 6deg, rgba(160,190,255,0.10) 9deg, transparent 14deg);
  filter: blur(6px);
  animation: beamsway 11s ease-in-out infinite alternate;
  transform-origin: 60% -10%;
}
@keyframes beamsway {
  from { transform: rotate(-1.6deg); opacity: 0.75; }
  to   { transform: rotate(1.6deg); opacity: 1; }
}

/* Anamorpher Streifen-Flare */
.hero .streak {
  position: absolute; left: -12%; right: -12%; top: 34%; height: 3px; z-index: -3;
  background: linear-gradient(90deg, transparent, rgba(255,140,90,0.75) 30%, rgba(255,220,190,0.95) 50%, rgba(255,140,90,0.75) 70%, transparent);
  filter: blur(2.5px);
  mix-blend-mode: screen;
  animation: streakpulse 7s ease-in-out infinite;
}
.hero .streak::after {
  content: ""; position: absolute; inset: -22px 15%;
  background: linear-gradient(90deg, transparent, rgba(255,120,70,0.30), transparent);
  filter: blur(18px);
}
@keyframes streakpulse {
  0%, 100% { opacity: 0.5; transform: scaleX(0.94); }
  50% { opacity: 1; transform: scaleX(1.03); }
}

/* Flare-Orbs */
.hero .flare { position: absolute; border-radius: 50%; z-index: -3; mix-blend-mode: screen; pointer-events: none; }
.hero .flare.f1 {
  width: 380px; height: 380px; top: 6%; right: 8%;
  background: radial-gradient(circle, rgba(255,160,100,0.55), rgba(255,90,50,0.18) 45%, transparent 70%);
  animation: flaredrift 13s ease-in-out infinite alternate;
}
.hero .flare.f2 {
  width: 160px; height: 160px; top: 30%; right: 28%;
  background: radial-gradient(circle, rgba(255,220,180,0.5), transparent 65%);
  filter: blur(3px);
  animation: flaredrift 17s ease-in-out infinite alternate-reverse;
}
.hero .flare.f3 {
  width: 260px; height: 260px; top: 14%; left: 6%;
  background: radial-gradient(circle, rgba(120,160,255,0.35), transparent 65%);
  filter: blur(5px);
  animation: flaredrift 15s ease-in-out infinite alternate;
}
@keyframes flaredrift {
  from { transform: translate(0, 0) scale(1); opacity: 0.75; }
  to   { transform: translate(-34px, 26px) scale(1.14); opacity: 1; }
}

/* Bokeh-Partikel, aufsteigend */
.hero .bokeh { position: absolute; inset: 0; z-index: -3; pointer-events: none; overflow: hidden; }
.hero .bokeh i {
  position: absolute; bottom: -6%; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,210,170,0.9), rgba(255,120,70,0.35) 60%, transparent 75%);
  mix-blend-mode: screen; filter: blur(1px);
  animation: rise linear infinite;
}
.hero .bokeh i:nth-child(1) { left: 8%;  width: 10px; height: 10px; animation-duration: 16s; }
.hero .bokeh i:nth-child(2) { left: 22%; width: 6px;  height: 6px;  animation-duration: 21s; animation-delay: -7s; }
.hero .bokeh i:nth-child(3) { left: 37%; width: 13px; height: 13px; animation-duration: 14s; animation-delay: -3s; filter: blur(2.5px); }
.hero .bokeh i:nth-child(4) { left: 52%; width: 7px;  height: 7px;  animation-duration: 24s; animation-delay: -12s; }
.hero .bokeh i:nth-child(5) { left: 64%; width: 11px; height: 11px; animation-duration: 18s; animation-delay: -5s; filter: blur(2px); }
.hero .bokeh i:nth-child(6) { left: 76%; width: 5px;  height: 5px;  animation-duration: 26s; animation-delay: -16s; }
.hero .bokeh i:nth-child(7) { left: 87%; width: 9px;  height: 9px;  animation-duration: 15s; animation-delay: -9s; }
.hero .bokeh i:nth-child(8) { left: 45%; width: 4px;  height: 4px;  animation-duration: 28s; animation-delay: -20s; }
@keyframes rise {
  from { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.9; }
  60%  { opacity: 0.7; }
  to   { transform: translateY(-108vh) translateX(30px); opacity: 0; }
}

.hero-inner { padding: 120px 24px 90px; max-width: var(--maxw); margin: 0 auto; width: 100%; position: relative; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--accent-2); font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; font-size: 0.78rem;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--grad); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 9.5vw, 7.6rem);
  line-height: 0.96; font-weight: 400; letter-spacing: 0.012em;
  text-transform: uppercase;
  margin-top: 22px; max-width: 14ch;
  text-shadow: 0 10px 60px rgba(0,0,0,0.65);
}
.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(255, 75, 62, 0.45));
}
.hero p.sub {
  margin-top: 26px; max-width: 58ch; color: #d8d5da; font-size: 1.12rem; font-weight: 500;
}
.hero p.sub strong { color: #fff; }
.hero .actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 15px 34px 13px; border-radius: 999px;
  font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.09em; line-height: 1.15;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 6px 30px rgba(255, 75, 62, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 44px rgba(255, 75, 62, 0.65); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.3); color: var(--text); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); transform: translateY(-2px); }

/* Scroll-Hinweis */
.hero .scrollhint {
  position: absolute; right: 34px; bottom: 34px;
  writing-mode: vertical-rl; font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.hero .scrollhint::after {
  content: ""; width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: hintpulse 2s ease-in-out infinite;
}
@keyframes hintpulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@media (max-width: 700px) { .hero .scrollhint { display: none; } }

/* ---------- Städte-Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden; padding: 18px 0; position: relative;
}
.marquee .track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .track { animation-play-state: paused; }
.marquee span {
  font-family: var(--display); font-size: 1.9rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text); white-space: nowrap; padding-right: 28px;
}
.marquee span i {
  font-style: normal; color: var(--accent); padding-right: 28px;
  text-shadow: 0 0 18px rgba(255, 75, 62, 0.6);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: 110px 0; position: relative; }
section.alt { background: var(--bg-soft); }

.section-head { max-width: 780px; margin-bottom: 56px; position: relative; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1;
  font-weight: 400; text-transform: uppercase; letter-spacing: 0.015em;
  margin-top: 12px;
}
.section-head h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.04rem; }

/* Geister-Wort im Hintergrund */
.ghost {
  position: absolute; top: 30px; left: 0; right: 0;
  font-family: var(--display); font-size: clamp(5rem, 17vw, 15rem);
  line-height: 1; text-transform: uppercase; text-align: left;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  pointer-events: none; user-select: none; white-space: nowrap; overflow: hidden;
  z-index: 0;
}
section > .container { position: relative; z-index: 1; }

/* ---------- Leistungs-Karten mit Bildkopf ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1020px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 75, 62, 0.45);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55), 0 0 40px rgba(255, 75, 62, 0.12);
}
.card figure { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.card figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.card:hover figure img { transform: scale(1.06); }
.card figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18,18,27,0.92) 100%);
}
.card .ki-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); background: rgba(7,7,11,0.55);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(6px);
}
.card .body { padding: 26px 28px 30px; margin-top: -34px; position: relative; z-index: 2; }
.card h3 {
  font-family: var(--display); font-size: 1.75rem; letter-spacing: 0.04em;
  font-weight: 400; text-transform: uppercase; margin-bottom: 10px;
}
.card h3::after {
  content: ""; display: block; width: 38px; height: 3px;
  background: var(--grad); margin-top: 8px; border-radius: 2px;
}
.card p { color: var(--muted); font-size: 0.95rem; }

/* Feature-Karte (Hochzeiten) */
.card-feature {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1.15fr 1fr; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-feature:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 75, 62, 0.45);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55), 0 0 40px rgba(255, 75, 62, 0.12);
}
.card-feature figure { position: relative; overflow: hidden; min-height: 320px; }
.card-feature figure img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.card-feature:hover figure img { transform: scale(1.05); }
.card-feature figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(18,18,27,0.9) 100%);
}
.card-feature .ki-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); background: rgba(7,7,11,0.55);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(6px);
}
.card-feature .body { padding: 42px 44px; display: flex; flex-direction: column; justify-content: center; }
.card-feature .tag {
  display: inline-block; align-self: flex-start;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2); border: 1px solid rgba(255, 161, 75, 0.4);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.card-feature h3 {
  font-family: var(--display); font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 400; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1;
  margin-bottom: 14px;
}
.card-feature p { color: var(--muted); font-size: 0.98rem; }
@media (max-width: 900px) {
  .card-feature { grid-template-columns: 1fr; }
  .card-feature figure { min-height: 230px; }
  .card-feature figure::after { background: linear-gradient(180deg, transparent 55%, rgba(18,18,27,0.9) 100%); }
}

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
.gallery a {
  display: block; border-radius: 12px; overflow: hidden; position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease;
}
.gallery a:hover {
  transform: scale(1.16) rotate(-2.2deg);
  z-index: 10;
  box-shadow: 0 26px 70px rgba(0,0,0,0.75), 0 0 34px rgba(255, 75, 62, 0.16);
}
.gallery a:nth-child(even):hover { transform: scale(1.16) rotate(2.2deg); }
.gallery a.tall { grid-row: span 2; }
.gallery a.wide { grid-column: span 2; }
@media (max-width: 980px) {
  .gallery a.wide { grid-column: span 1; }
  .gallery a.tall { grid-row: span 1; }
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(7,7,11,0.72));
  opacity: 0; transition: opacity 0.35s;
}
.gallery a:hover img { transform: scale(1.05); filter: brightness(1.08); }
.gallery a:hover::after { opacity: 1; }

/* ---------- Kundenportal / Studio (USP) ---------- */
.studio-section {
  background:
    radial-gradient(70% 60% at 85% 20%, rgba(255, 75, 62, 0.09), transparent 65%),
    radial-gradient(60% 50% at 10% 90%, rgba(255, 161, 75, 0.06), transparent 60%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 1000px) { .studio-grid { grid-template-columns: 1fr; } }
.studio-h2 {
  font-family: var(--display); font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1; font-weight: 400; text-transform: uppercase; letter-spacing: 0.015em;
  margin-top: 12px;
}
.studio-h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.studio-intro { color: var(--muted); margin-top: 16px; font-size: 1.04rem; }
.studio-steps { list-style: none; counter-reset: schritt; margin-top: 34px; }
.studio-steps li {
  counter-increment: schritt; position: relative;
  padding: 0 0 26px 66px;
}
.studio-steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 23px; top: 52px; bottom: 4px; width: 1px;
  background: linear-gradient(180deg, rgba(255, 75, 62, 0.5), rgba(255,255,255,0.08));
}
.studio-steps li::before {
  content: "0" counter(schritt);
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.25rem; padding-top: 3px;
  color: var(--accent-2); background: var(--accent-soft);
  border: 1px solid rgba(255, 75, 62, 0.35);
}
.studio-steps h3 { font-family: var(--display); font-weight: 400; font-size: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase; }
.studio-steps p { color: var(--muted); font-size: 0.96rem; margin-top: 6px; }

.studio-visual { position: relative; padding: 30px 0 100px; }
.shot-back {
  position: absolute; top: 0; left: -4%; width: 78%;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.12);
  transform: rotate(-2.2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0.85;
}
.shot-main {
  position: relative; z-index: 2; width: 94%; margin: 56px 0 0 6%;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 90px rgba(0,0,0,0.65);
}
.shot-ki {
  position: absolute; z-index: 4; bottom: 56px; left: -18px; width: min(40%, 240px);
  border-radius: 12px; border: 1px solid rgba(255, 161, 75, 0.45);
  transform: rotate(-2.5deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 28px rgba(255, 161, 75, 0.14);
}
.mock-post {
  position: absolute; z-index: 4; right: -6px; bottom: 0; width: min(46%, 250px);
  background: #16161f; border: 1px solid rgba(255, 75, 62, 0.45);
  border-radius: 14px; overflow: hidden; transform: rotate(2.5deg);
  box-shadow: 0 26px 60px rgba(0,0,0,0.6), 0 0 34px rgba(255, 75, 62, 0.15);
}
.mock-post img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.mock-post-body { padding: 14px 16px 16px; }
.mock-chip {
  display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-2);
  border: 1px solid rgba(255, 161, 75, 0.4); border-radius: 999px;
  padding: 3px 9px; margin-bottom: 8px;
}
.mock-post-body strong { display: block; font-family: var(--display); font-weight: 400; font-size: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.mock-post-body p { color: var(--muted); font-size: 0.76rem; margin-top: 4px; }

/* ---------- Über mich ---------- */
.about { display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about .portrait { position: relative; }
.about .portrait > img,
.about .portrait > picture > img { border-radius: var(--radius); position: relative; z-index: 1; }
.about .portrait .reihe {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 12px; position: relative; z-index: 1;
}
.about .portrait .reihe img {
  aspect-ratio: 1 / 1; width: 100%; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.about .portrait .reihe img:hover { transform: translateY(-4px) scale(1.03); border-color: rgba(255, 75, 62, 0.5); }
.about .portrait::before {
  content: ""; position: absolute; inset: -18px -18px auto auto;
  width: 60%; height: 60%; border-radius: var(--radius);
  border: 2px solid rgba(255, 75, 62, 0.5); z-index: 0;
}
.about .portrait::after {
  content: ""; position: absolute; left: -30px; bottom: -30px;
  width: 190px; height: 190px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 75, 62, 0.35), transparent 70%);
  filter: blur(8px); z-index: 0;
}
.about h2 {
  font-family: var(--display); font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400; text-transform: uppercase; line-height: 1;
  margin: 12px 0 20px;
}
.about p { color: var(--muted); margin-bottom: 14px; }
.about ul { list-style: none; margin-top: 18px; }
.about li { padding-left: 30px; position: relative; margin-bottom: 10px; font-weight: 600; font-size: 0.97rem; }
.about li::before {
  content: "◆"; color: var(--accent); position: absolute; left: 0; top: 1px;
  font-size: 0.8rem; text-shadow: 0 0 10px rgba(255, 75, 62, 0.7);
}

/* ---------- Regionen ---------- */
.regions { display: flex; flex-direction: column; }
.region {
  display: grid; grid-template-columns: 90px 260px 1fr; gap: 28px; align-items: baseline;
  padding: 30px 10px; border-bottom: 1px solid var(--line);
  transition: background 0.25s, padding-left 0.25s;
}
.region:first-child { border-top: 1px solid var(--line); }
.region:hover { background: rgba(255, 75, 62, 0.05); padding-left: 22px; }
.region .idx {
  font-family: var(--display); font-size: 1.5rem; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
.region h3 {
  font-family: var(--display); font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 400; letter-spacing: 0.03em; text-transform: uppercase; line-height: 1;
  color: var(--text); transition: color 0.25s;
}
.region:hover h3 {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.region p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 860px) {
  .region { grid-template-columns: 1fr; gap: 6px; }
  .region .idx { display: none; }
}

/* ---------- FAQ ---------- */
.faq details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 14px;
  transition: border-color 0.25s;
}
.faq details[open] { border-color: rgba(255, 75, 62, 0.4); }
.faq summary {
  font-weight: 800; cursor: pointer; font-size: 1.02rem;
  padding: 22px 56px 22px 26px; position: relative; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display); font-size: 1.6rem; color: var(--accent);
  transition: transform 0.25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 26px 24px; }

/* ---------- Kontakt ---------- */
.contact-box {
  position: relative; overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255, 75, 62, 0.35);
  border-radius: 26px; padding: 80px 44px; text-align: center;
}
.contact-box::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 340px;
  background: radial-gradient(ellipse, rgba(255, 75, 62, 0.3), transparent 68%);
  pointer-events: none;
}
.contact-box::after {
  content: ""; position: absolute; left: 10%; right: 10%; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}
.contact-box h2 {
  font-family: var(--display); font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400; text-transform: uppercase; line-height: 1;
}
.contact-box p { color: var(--muted); margin: 18px auto 34px; max-width: 56ch; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0; color: var(--muted); font-size: 0.88rem;
}
footer .foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer a { color: var(--muted); margin-left: 20px; }
footer a:hover { color: var(--text); }
footer .ki-hinweis { margin-top: 14px; font-size: 0.78rem; color: rgba(169,167,179,0.65); }

/* Zugehörigkeit zur Markenfamilie */
footer .km-marken-zeile {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem; color: var(--muted);
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
footer .km-marken-zeile a { margin: 0; color: var(--text); border-bottom: 1px solid rgba(255, 75, 62, 0.5); }
footer .km-marken-zeile a:hover { color: var(--accent-2); border-color: var(--accent-2); }
footer .km-marken-zeile .km-punkt {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad);
}
footer .km-marken-zeile .km-trenner { color: rgba(169,167,179,0.45); }

/* Platz für die feste Anruf-Leiste (muss am Dateiende stehen, damit es die
   Hero-Regeln überschreibt) */
@media (max-width: 760px) {
  .hero-inner { padding-bottom: 130px; }
}


/* =========================================================
   Feinschliff 2026-08-13: Mobile-Performance, Mobile-Nav,
   CTA-Wiederholung, Terminal-Statuszeile, Galerie-Lightbox
   ========================================================= */

/* Dauer-Animationen kosten auf Mobilgeräten Akku und Frames:
   unterhalb 760px (bzw. Touch) stehen die Effekt-Ebenen still.
   Der Desktop-Look bleibt unverändert. */
@media (max-width: 760px), (pointer: coarse) {
  body::after { animation: none; }
  .hero img.bg { animation: none; }
  .beams, .streak, .flare, .bokeh { display: none; }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(7,7,11,0.96); }
}

/* Mobile Navigation im Poster-Look (JS-frei, details/summary) */
.mnav { display: none; }
.mnav summary {
  list-style: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 10px;
  border: 1px solid rgba(255,75,62,0.4); border-radius: 10px;
}
.mnav summary::-webkit-details-marker { display: none; }
.mnav summary span { display: block; height: 2px; background: var(--accent); border-radius: 1px; transition: transform .2s, opacity .2s; }
.mnav[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mnav[open] summary span:nth-child(2) { opacity: 0; }
.mnav[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mnav-liste {
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(7,7,11,0.97); border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; padding: 14px 24px 24px;
}
.mnav-liste a {
  font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.06em;
  color: var(--text); padding: 11px 2px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mnav-liste a:hover { color: var(--accent-2); text-decoration: none; }
.mnav-liste .mnav-cta {
  margin-top: 16px; text-align: center; border: 0; border-radius: 999px;
  background: var(--grad); color: #fff; padding: 12px; font-size: 1.3rem;
}
@media (max-width: 860px) { .mnav { display: block; } }
@media (max-width: 560px) { .nav-tel { display: none; } }

/* CTA-Wiederholung nach inhaltlichen Abschnitten */
.cta-zeile { text-align: center; margin-top: 46px; }

/* Terminal-Statuszeile (Familienzeichen, hier im Poster-Grau) */
footer .statuszeile {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  color: var(--muted);
}

/* Galerie-Lightbox */
dialog.lightbox {
  border: 0; padding: 0; background: transparent; max-width: 92vw; max-height: 92vh;
}
dialog.lightbox::backdrop { background: rgba(7,7,11,0.93); }
dialog.lightbox img { max-width: 92vw; max-height: 88vh; display: block; border-radius: 6px; }
dialog.lightbox .schliessen {
  position: fixed; top: 14px; right: 16px;
  font-size: 2rem; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer;
}

/* Tap-to-Call-Leiste respektiert die Home-Geste (Safe Area) */
.tel-bar { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
