
:root {
  --bg: #080808;
  --bg2: #111111;
  --card: #171717;
  --line: rgba(255,255,255,.10);
  --text: #f4f4f4;
  --muted: #b7b7b7;
  --orange: #ff7a00;
  --orange2: #ffad42;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1320px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img {
  width: 220px;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,122,0,.18));
}
.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
}
.nav-links a:hover { color: var(--orange); }
.nav-call {
  padding: 11px 18px;
  border: 1px solid rgba(255,122,0,.5);
  border-radius: 999px;
  color: var(--orange2);
  font-weight: 800;
}
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 150px 24px 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,122,0,.28), transparent 32%),
    linear-gradient(110deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.78) 48%, rgba(0,0,0,.84) 100%),
    url('assets/images/arbeit-01.jpg') center/cover;
  opacity: .98;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--bg));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
}
.eyebrow {
  color: var(--orange2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 14px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 {
  font-size: clamp(44px, 8vw, 98px);
  text-transform: uppercase;
  max-width: 980px;
}
h1 span, h2 span { color: var(--orange); }
.hero-text {
  max-width: 720px;
  color: #dfdfdf;
  font-size: clamp(18px, 2vw, 23px);
  margin: 26px 0 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #111;
  box-shadow: 0 12px 36px rgba(255,122,0,.25);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.05);
}
.trust-row {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  max-width: 900px;
}
.trust-row div {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px;
}
.trust-row strong {
  color: var(--orange);
  display: block;
  font-size: 28px;
}
.trust-row span { color: #ddd; font-weight: 700; }
.section {
  max-width: 1320px;
  margin: auto;
  padding: 95px 24px;
}
.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 34px;
}
.intro p:last-child {
  color: var(--muted);
  font-size: 20px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-grid article {
  background: linear-gradient(180deg, #191919, #121212);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  min-height: 220px;
  transition: .25s ease;
}
.service-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,0,.65);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
}
.service-grid span {
  color: var(--orange);
  font-weight: 900;
  font-size: 28px;
}
.service-grid h3 {
  font-size: 24px;
  margin: 18px 0 10px;
}
.service-grid p { color: var(--muted); margin: 0; }
.dark-band {
  max-width: none;
  background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)),
    url('assets/images/arbeit-02.jpg') center/cover;
  padding: 110px 24px;
}
.band-card {
  max-width: 1180px;
  margin: auto;
  background: rgba(12,12,12,.80);
  border: 1px solid rgba(255,122,0,.25);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
}
.band-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.work-card {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}
.work-card:hover img { transform: scale(1.06); }
.work-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
}
.work-overlay strong {
  display: block;
  font-size: 22px;
  color: #fff;
}
.work-overlay span {
  display: block;
  color: #ddd;
  font-size: 14px;
  margin-top: 5px;
}
.placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
}
.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.contact-info, .contact-form {
  background: linear-gradient(180deg, #191919, #111);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(26px, 4vw, 44px);
}
.contact-info p { color: var(--muted); }
.contact-list p {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.contact-list a { color: var(--orange2); font-weight: 800; }
.contact-form {
  display: grid;
  gap: 18px;
}
label {
  display: grid;
  gap: 8px;
  color: #eee;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: #090909;
  color: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
}
small { color: #999; }
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: auto;
  color: #999;
}
.footer a { color: #ccc; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #111;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(255,122,0,.35);
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .brand img { width: 175px; }
  .nav-call { font-size: 14px; padding: 9px 12px; }
  .intro, .contact-section { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero { padding-top: 130px; }
  .service-grid, .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 270px; }
  .footer { display: block; }
}


/* === LB Referenzen final sauber === */
.references .reference-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  align-items:stretch;
}
.references .reference-card{
  overflow:hidden;
  border-radius:22px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 45px rgba(0,0,0,.22);
}
.references .reference-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
.references .reference-card-body{
  padding:18px;
}
.references .reference-card h3{
  margin:0 0 8px;
}
.references .reference-card p{
  margin:0;
  opacity:.9;
}
@media(max-width:700px){
  .references .reference-card img{height:220px;}
}
