:root{
  /* leicht heller als deine aktuelle Version */
  --bg: #161a23;              /* war #0f1218 */
  --surface: #222a3a;         /* war #1a2030 */
  --surface-2: #1d2434;       /* war #161c2a */

  --text: #f6f3ea;
  --muted: rgba(246,243,234,.78);   /* minimal heller */
  --border: rgba(246,243,234,.16);  /* minimal sichtbarer */

  --accent: #d4af37;
  --accent-2: #b88a1d;

  --shadow: 0 14px 46px rgba(0,0,0,.24); /* etwas “weicher” */
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /* Glow bleibt, aber BG wirkt weniger “hart schwarz” */
  background:
    radial-gradient(1100px 620px at 70% -10%, rgba(212,175,55,.18), transparent 55%),
    radial-gradient(900px 520px at 10% 10%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 35%),
    var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  /* minimal heller als vorher */
  background: rgba(22,26,35,.80);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 200px;
}

.brand-logo{
  width: clamp(40px, 4vw, 56px);
  height:auto;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.30));
}

.brand-text{ display:block; }

.brand-name{
  font-weight: 900;
  letter-spacing: .10em;
  font-size: 18px;
}

.accent{ color: var(--accent); }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav a{
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover{ color: var(--text); }

.nav-cta{
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.38);
  color: var(--text) !important;
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  height:2px;
  width:18px;
  background: var(--text);
  margin:5px auto;
  border-radius: 99px;
  opacity:.9;
}

/* Hero */
.hero{
  padding: 64px 0 28px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: start;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);  /* war .04 */
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  letter-spacing:.10em;
  text-transform: uppercase;
}

.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.sub{
  margin:0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15.5px;
  max-width: 60ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 900;
  letter-spacing: .02em;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: linear-gradient(180deg, rgba(212,175,55,.95), rgba(184,138,29,.78));
  border-color: rgba(212,175,55,.55);
  color: #120f08;
}

.btn.ghost{
  background: rgba(255,255,255,.05); /* war .03 */
  color: var(--text);
}

/* Angebot / Preisdarstellung */
.offer{ margin-top:10px; font-size:15px; }
.price-old{ text-decoration: line-through; color: var(--muted); margin-right:8px; font-weight:800; }
.price-new{ color: var(--accent); font-weight:900; background: rgba(212,175,55,.08); padding:4px 8px; border-radius:8px; border:1px solid rgba(212,175,55,.14); }

/* Stats */
.hero-stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}

.stat{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05); /* war .03 */
}

.stat-num{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.25);
}

.stat-text{
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}

/* Cards */
.card{
  border-radius: var(--radius);
  /* Cards heller, aber gleiche Größe */
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card-head{
  display:flex;
  gap:8px;
  padding:12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.14); /* etwas weniger dunkel */
}

.dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(244,241,232,.22);
}

.card-body{ padding:16px 16px 18px; }
.card-body h3{ margin:0 0 10px; }

.checklist{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.note{
  margin-top: 14px;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.25);
  background: rgba(212,175,55,.12); /* minimal heller */
  color: var(--muted);
}

/* Sections */
.section{ padding: 56px 0; }

.section.alt{
  background: rgba(255,255,255,.05); /* war .04 */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head h2{
  margin:0 0 8px;
  font-size: 26px;
}

.section-head p{
  margin:0 0 18px;
  color: var(--muted);
}

/* Grid */
.grid{ display:grid; gap: 14px; }
.cards{ grid-template-columns: repeat(4, 1fr); }

/* Services */
.service{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06); /* war .05 */
  padding: 16px;
}

.service .icon{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.25);
  margin-bottom: 10px;
  font-size: 18px;
}

.service h3{ margin:0 0 8px; font-size: 16px; }
.service p{ margin:0 0 10px; color: var(--muted); line-height:1.6; }

.mini{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13.5px;
}

/* Portfolio (Größen bleiben wie bei dir!) */
.portfolio{ grid-template-columns: repeat(3, 1fr); }

.project{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05); /* war .03 -> etwas heller */
  overflow:hidden;
}

.project-thumb{
  height: 130px;
  display:grid;
  place-items:center;
  color: rgba(244,241,232,.60);
  background: rgba(0,0,0,.16); /* war .20 -> heller */
}

.project-meta{ padding: 14px; }
.project-title{ font-weight: 900; }
.project-sub{ color: var(--muted); font-size: 13px; margin-top:4px; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  align-items:start;
}

.contact-card, .form-card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05); /* war .03 -> heller */
  box-shadow: var(--shadow);
  padding: 18px;
}

.contact-card h3, .form-card h3{ margin: 0 0 14px; }

.contact-item{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 12px 0;
}

.contact-ico{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.25);
  flex: 0 0 auto;
}

.label{
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.value{
  font-weight: 900;
  letter-spacing: .01em;
}

.divider{
  height:1px;
  background: var(--border);
  margin: 14px 0 12px;
}

.form{ display:grid; gap: 12px; }

.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field label{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 800;
}

/* Inputs: heller, aber weiterhin "dark-ish" */
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06); /* war rgba(6,6,7,.55) -> deutlich heller */
  color: var(--text);
  outline:none;
}

textarea{ resize: vertical; }

.small{ font-size: 13px; color: var(--muted); line-height:1.6; }
.muted{ opacity:.88; }

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.04); /* war rgba(0,0,0,.20) -> heller */
  padding: 22px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

.footer-brand{
  font-weight: 900;
  letter-spacing: .10em;
}

.footer-links{
  display:flex;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

/* Scroll-to-top */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.45);
  background: rgba(212,175,55,.18);
  color: #120f08;
  font-size: 18px;
  font-weight: 900;
  cursor:pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.to-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .hero-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .nav{ display:none; }
  .nav-toggle{ display:block; }
  .cards{ grid-template-columns: 1fr; }
  .portfolio{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  
  /* Mobile Menu: Dropdown unter Header */
  .nav.mobile-open{
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    flex-direction: column;
    background: rgba(22,26,35,.95);
    backdrop-filter: blur(12px);
    padding: 14px 16px;
    gap: 8px;
    border-radius: 0;
    border-top: 1px solid rgba(212,175,55,.25);
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav.mobile-open a{
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(212,175,55,.15);
    font-size: 15px;
    text-align: left;
    transition: all .2s ease;
    display: block;
  }
  
  .nav.mobile-open a:hover{
    background: rgba(212,175,55,.14);
    color: var(--accent);
  }
  
  .nav.mobile-open .nav-cta{
    background: linear-gradient(180deg, rgba(212,175,55,.16), rgba(184,138,29,.10));
    border: 1px solid rgba(212,175,55,.35);
    font-size: 15px;
    font-weight: 900;
    padding: 14px 16px;
    margin-top: 4px;
  }
}

.projekt1 {
  width: 110%;
  height: auto;
  object-fit: cover;
}

/* Page helper: footer unten bei kurzen Seiten */
.page-full-height{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-full-height main{
  flex: 1 0 auto;
}
.page-full-height .site-footer{
  margin-top: 0;
}
