/* ==========================
   RESET & BASICS
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================
   LAYOUT
========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section.light {
  background: #f6f7f8;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 32px;
}

p {
  color: #444;
}

/* ==========================
   HEADER
========================== */
.header {
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}


.nav a {
  margin-left: 28px;
  font-size: 0.95rem;
}

/* Burger (mobile) */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle div {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  margin: 3px 0;
}

/* Header brand logos (global) */
.header-inner { gap: 16px; }
.brand-logo {
  height: 60px;
  width: auto;
}

@media (max-width: 900px) {
  .brand-logo {
    height: 36px;
  }
}
.brand-left, .brand-right { display: inline-flex; align-items: center; }
.brand-right { justify-content: flex-end; }
.logo-text { font-weight: 700; font-size: 1.05rem; margin-left: 10px; }

/* ==========================
   TOP INFO BAR (ZENTRALE)
========================== */
.topbar {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 18px;
  padding: 10px 24px;
}

.topbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #444;
  font-size: 0.95rem;
  justify-content: center;
  width: 100%;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar-item strong {
  color: #111;
  font-weight: 600;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #f6f7f8;
  border: 1px solid #e6e6e6;
  font-size: 0.9rem;
  color: #111;
  transition: transform .15s ease, box-shadow .15s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* Desktop: show full info */
.topbar-actions {
  display: none;
}

/* Mobile: show compact chips, hide the long info line */
@media (max-width: 900px) {
  .topbar-inner {
    padding: 10px 0;
    justify-content: center;
  }

  .topbar-left {
    display: none;
  }

  .topbar-actions {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
  }

  .chip {
    flex: 1;
    min-width: 0;
  }

  .chip span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ==========================
   BUTTONS
========================== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn.secondary {
  background: #e6e6e6;
  color: #111;
}

/* ==========================
   HERO
========================== */
.hero {
  padding: 120px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #777;
}

.hero-text p {
  margin: 24px 0 36px;
  max-width: 520px;
}

.hero-actions .btn {
  margin-right: 12px;
}

/* ==========================
   CARDS
========================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  padding: 32px;
  border-radius: 16px;
  background: #f6f7f8;
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 12px;
}

/* ==========================
   STEPS
========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ==========================
   FOOTER
========================== */
.footer {
  border-top: 1px solid #e6e6e6;
  padding: 48px 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  margin-right: 12px;
  color: #444;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  /* show burger */
  .menu-toggle {
    display: inline-flex;
  }

  /* mobile nav dropdown */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-inner {
    position: relative;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 12px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  }

  /* support multiple possible JS class names */
  .nav.open,
  .nav.show,
  .nav.is-open {
    display: block;
  }

  .nav a {
    display: block;
    margin: 0;
    padding: 12px 12px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: #f6f7f8;
  }

  .nav .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

.hero-video {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

/* ==========================
   CARDS (MEDIA)
========================== */
.card.card-media {
  padding: 0;
  overflow: hidden;
}

.card-media .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-media .card-body {
  padding: 24px 26px;
}

.card-media h3 {
  margin-bottom: 10px;
}
/* TEAM – sichtbar & sauber */
.team {
    padding: 80px 0;
    background-color: #ffffff; /* heller Hintergrund, Content sichtbar */
    text-align: center;
}

.team h2 {
    color: #111111; /* dunkel statt rot */
    margin-bottom: 48px;
}

/* Grid sauber sichtbar */
.team-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* Kacheln sichtbar */
.team-member {
    background-color: #ffffff; /* Kontrast zum Section-Hintergrund */
    padding: 32px 24px;
    border-radius: 16px;
    width: 46%; /* 2 nebeneinander */
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    opacity: 1; /* WICHTIG: sichtbar */
    transform: none; /* kein Offset */
    color: #111111;
}

/* Bild sichtbar */
.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid #000000;
}

/* Text sichtbar */
.team-member h3 {
    margin: 12px 0 6px;
    font-size: 1.05rem;
    color: #111111;
}

.team-member p {
    font-size: 0.95rem;
    color: #555555;
}

/* Mobile */
@media (max-width: 900px) {
    .team-member {
        width: 100%;
    }
}
.team-member img[alt="Ernst Künstler"],
.team-member img[alt="Aron Künstler"] {
    object-position: center -5%;
}

/* ===============================
   PREISRECHNER – APPLE STYLE
=============================== */

.price-configurator {
    padding: 80px 0;
  }
  
  .price-head {
    margin-bottom: 28px;
  }
  
  .price-head h2 {
    font-size: 44px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  
  .price-head .subline {
    color: #555;
    max-width: 720px;
  }
  
  /* Layout */
  .pc-shell {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
    align-items: start;
  }
  
  /* Karten */
  .pc-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.06);
    overflow: hidden;
  }
  
  .pc-card-inner {
    padding: 22px;
  }
  
  /* Section Header */
  .pc-section-title {
    padding: 18px 22px;
    border-bottom: 1px solid #ededed;
    background: linear-gradient(180deg, #ffffff, #fafafa);
  }
  
  .pc-section-title h3 {
    margin: 0;
    font-size: 18px;
  }
  
  .pc-section-title .hint {
    font-size: 13px;
    color: #666;
  }
  
  /* Tiles */
  .pc-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .pc-tile {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    transition: all 0.15s ease;
    background: #fff;
  }
  
  .pc-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.08);
  }
  
  .pc-tile.active {
    border-color: #111;
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  }
  
  .pc-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  
  .pc-name {
    font-weight: 600;
    color: #111;
  }
  
  .pc-sub {
    font-size: 13px;
    color: #666;
  }
  
  /* Felder */
  .pc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
  }
  
  .pc-field label {
    font-size: 13px;
    color: #333;
    margin-bottom: 6px;
    display: block;
  }
  
  .pc-field input,
  .pc-field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
  }
  
  .pc-field input:focus,
  .pc-field select:focus {
    outline: none;
    border-color: #bbb;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
  }
  
  /* Divider */
  .pc-divider {
    height: 1px;
    background: #ededed;
    margin: 22px 0;
  }
  
  /* Sticky Preis */
  .pc-sticky {
    position: sticky;
    top: 100px;
  }
  
  .pc-breakdown {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .pc-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 14px;
  }
  
  .pc-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 22px;
    border-top: 1px solid #ededed;
  }
  
  .pc-total strong {
    font-size: 28px;
    letter-spacing: -0.02em;
  }
  
  /* CTA */
  .pc-cta {
    padding: 0 22px 22px;
  }
  
  .pc-btn {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: #111;
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.15s ease;
  }
  
  .pc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.14);
  }
  
  .pc-fine {
    margin-top: 12px;
    font-size: 12px;
    color: #777;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 980px) {
    .pc-shell {
      grid-template-columns: 1fr;
    }
  
    .pc-sticky {
      position: relative;
      top: 0;
    }
  
    .pc-row {
      grid-template-columns: 1fr;
    }
  
    .pc-tiles {
      grid-template-columns: 1fr;
    }
  }

/* ==========================
   SERVICES – 3 OBEN, 2 UNTEN (mittig)
========================== */

.cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  /* 4 und 5 sollen die unteren beiden Slots bilden: Spalte 1&2 */
  .cards > .card:nth-child(4){
    grid-column: 1;
    justify-self: end;   /* schiebt Karte 4 nach rechts */
  }
  
  .cards > .card:nth-child(5){
    grid-column: 2;
    justify-self: start; /* bleibt links in Spalte 2 */
  }
  
  /* Tablet */
  @media (max-width: 1024px){
    .cards{
      grid-template-columns: repeat(2, 1fr);
    }
  
    .cards > .card:nth-child(4),
    .cards > .card:nth-child(5){
      grid-column: auto;
      justify-self: stretch;
    }
  }
  
  /* Mobile */
  @media (max-width: 640px){
    .cards{
      grid-template-columns: 1fr;
    }
  }

  /* ==========================
   BURGER MENU ICON
========================== */

.menu-toggle {
    display: none; /* Desktop: versteckt */
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  .menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;              /* DAS hat gefehlt */
    background-color: #111;  /* anpassen falls nötig */
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  
  /* Burger nur auf Mobile anzeigen */
  @media (max-width: 900px) {
    .menu-toggle {
      display: flex;
    }
  
    .nav {
      display: none;
    }
  
    .nav.open {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      padding: 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      z-index: 1000;
    }
  }