*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a0a0a;
    --dark: #111214;
    --card: #16181c;
    --border: #252830;
    --accent: #e8a020;
    --accent2: #ff6b35;
    --text: #e8eaf0;
    --muted: #7a7f8e;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
  }

  /* HEADER */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 72px;
  }

  .logo-wrap img {
    height: 48px;
  }

  nav a {
    color: var(--muted);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: 2.2rem;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--accent);
    color: var(--black) !important;
    padding: 0.45rem 1.2rem;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { background: #ffb840 !important; transform: translateY(-1px); }

  .header-row {
    display: flex;
    align-items: center;
  }
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
  }
  header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 768px) {
    header { flex-wrap: wrap; height: auto; padding: 0 1.2rem; align-items: stretch; }
    .header-row { width: 100%; height: 64px; display: flex; align-items: center; justify-content: space-between; }
    .nav-toggle { display: flex; }
    nav { display: none; flex-direction: column; width: 100%; padding: 0.5rem 0 1rem; border-top: 1px solid var(--border); }
    nav a { margin-left: 0; padding: 0.75rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
    nav a:last-child { border-bottom: none; }
    .nav-cta { margin-top: 0.5rem; text-align: center; padding: 0.65rem 1.2rem !important; border-radius: 6px; border-bottom: none !important; }
    header.nav-open nav { display: flex; }
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 2.5rem 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 50%, rgba(232,160,32,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 100% 0%, rgba(255,107,53,0.06) 0%, transparent 60%);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }
  .hero-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent);
  }

  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 0.93;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }

  .hero p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 2.5rem;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #ffb840; transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--text);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

  /* HERO IMAGE GRID */
  .hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    position: relative;
  }

  .hero-img-main {
    grid-column: 1 / -1;
    height: 220px;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
  }

  .hero-img-sm {
    height: 140px;
    overflow: hidden;
    border-radius: 6px;
  }

  .hero-img-main img,
  .hero-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.85);
    transition: transform 0.5s ease, filter 0.3s;
  }
  .hero-img-main:hover img,
  .hero-img-sm:hover img {
    transform: scale(1.04);
    filter: saturate(0.9) brightness(0.95);
  }

  .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,160,32,0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  /* STATS STRIP */
  .stats-strip {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 2.5rem;
  }

  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-top: 0.3rem;
    display: block;
  }

  /* SECTIONS */
  section {
    padding: 90px 2.5rem;
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
  }

  h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  /* SERVICES */
  #leistungen { background: var(--dark); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }

  .service-card {
    background: var(--card);
    padding: 2.2rem 2rem;
    border-right: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }
  .service-card:nth-child(3n) { border-right: none; }
  .service-card:nth-child(n+4) { border-bottom: none; }
  .service-card:hover { background: #1c1f25; }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover::after { transform: scaleX(1); }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.7rem;
    color: var(--white);
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
  }

  /* INVENTORY */
  #inventar { background: var(--black); }

  .inventory-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3.5rem;
  }

  .inventory-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-top: 1.5rem;
  }

  .inventory-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }

  .inv-cat {
    border-left: 2px solid var(--border);
    padding-left: 1.2rem;
    transition: border-color 0.2s;
  }
  .inv-cat:hover { border-color: var(--accent); }

  .inv-cat-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.7rem;
  }

  .inv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .inv-list li {
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .inv-list li::before {
    content: '—';
    color: var(--muted);
    font-size: 0.75rem;
  }

  /* GALLERY */
  #referenzen { background: var(--dark); }

  .gallery-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 3rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  .gal-item {
    overflow: hidden;
    position: relative;
    background: var(--card);
  }

  .gal-item:first-child {
    grid-row: 1 / 3;
  }

  .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.75);
    transition: transform 0.5s ease, filter 0.3s;
  }
  .gal-item:hover img { transform: scale(1.06); filter: saturate(0.9) brightness(0.95); }

  .gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gal-item:hover .gal-overlay { opacity: 1; }

  .gal-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
  }

  /* CONTACT */
  #kontakt { background: var(--black); }

  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-info h2 { margin-bottom: 1rem; }

  .contact-tagline {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 400px;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.6rem;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .contact-detail-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.2rem;
  }

  .contact-detail-text a,
  .contact-detail-text span {
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
  }
  .contact-detail-text a:hover { color: var(--accent); }

  /* FORM */
  .contact-form {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
  }

  .form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    color: var(--white);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  input, select, textarea {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    background: rgba(232,160,32,0.04);
  }
  select option { background: var(--card); }
  textarea { resize: vertical; min-height: 110px; }

  .form-submit {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 2.5rem 2.5rem;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-logo img {
    height: 36px;
    opacity: 0.75;
  }

  .footer-copy {
    font-size: 0.82rem;
    color: var(--muted);
  }

  .footer-links {
    display: flex;
    gap: 1.8rem;
  }
  .footer-links a {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }
  .footer-credit { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-credit:hover { color: var(--accent); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.32s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.45s; }

  .hero-images {
    animation: fadeUp 0.8s 0.3s ease both;
  }

  /* PLACEHOLDER images using CSS art */
  .img-concert {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    position: relative;
    overflow: hidden;
  }
  .img-concert::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 40% 60% at 30% 70%, rgba(232,160,32,0.4) 0%, transparent 60%),
      radial-gradient(ellipse 30% 40% at 70% 30%, rgba(255,107,53,0.3) 0%, transparent 50%),
      radial-gradient(ellipse 60% 30% at 50% 100%, rgba(100,149,237,0.2) 0%, transparent 50%);
  }

  .img-stage {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 50%, #2d1a00 100%);
    position: relative;
  }
  .img-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 90%, rgba(232,160,32,0.5) 0%, transparent 60%),
      radial-gradient(ellipse 40% 80% at 20% 50%, rgba(255,107,53,0.2) 0%, transparent 50%);
  }

  .img-screen {
    background: linear-gradient(135deg, #080818 0%, #0a0a28 100%);
    position: relative;
  }
  .img-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(64,196,255,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 20% 20%, rgba(100,100,255,0.2) 0%, transparent 50%);
  }

  .img-outdoor {
    background: linear-gradient(135deg, #0a0a14 0%, #14142a 100%);
    position: relative;
  }
  .img-outdoor::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 50% 80%, rgba(232,160,32,0.35) 0%, transparent 60%),
      radial-gradient(ellipse 80% 30% at 50% 100%, rgba(255,80,30,0.2) 0%, transparent 50%),
      repeating-linear-gradient(90deg, transparent 0px, transparent 18px, rgba(255,255,255,0.015) 18px, rgba(255,255,255,0.015) 19px);
  }

  .img-led {
    background: linear-gradient(135deg, #050510 0%, #0a0a2a 100%);
    position: relative;
  }
  .img-led::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,200,255,0.15) 0%, transparent 60%),
      repeating-linear-gradient(0deg, transparent 0px, transparent 30px, rgba(0,200,255,0.04) 30px, rgba(0,200,255,0.04) 31px),
      repeating-linear-gradient(90deg, transparent 0px, transparent 30px, rgba(0,200,255,0.04) 30px, rgba(0,200,255,0.04) 31px);
  }

  /* scene decorators */
  .scene-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.06;
  }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-images { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
    .inventory-header { grid-template-columns: 1fr; gap: 1rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gal-item:first-child { grid-row: auto; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    section { padding: 60px 1.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .inventory-categories { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gal-item { height: 180px; }
  }

  /* INSTAGRAM */
  #instagram { background: var(--black); }
  .ig-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; padding: 1rem 0; }
  .ig-handle { font-size: 2.4rem; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
  .ig-desc { color: var(--muted); font-size: 1.05rem; max-width: 520px; }
  .ig-cta-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; font-weight: 600; font-size: 1rem; padding: 0.9rem 2.2rem; border-radius: 50px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
  .ig-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }
  .footer-social { display: flex; gap: 1rem; justify-content: center; margin: 0.5rem 0; }
  .footer-social-link { color: var(--muted); transition: color 0.2s; }
  .footer-social-link:hover { color: var(--accent); }
