:root{
  --bg:#ffffff;
  --bg2:#f6f6f7;
  --card:#ffffff;
  --text:#0f0f10;
  --muted:#5f646c;
  --line:#e6e7ea;
  --black:#0f0f10;

  --radius:16px;
  --shadow: 0 10px 30px rgba(15,15,18,.08);
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height:1.55;
}
img{ max-width:100%; display:block; }
a{ color: inherit; }
.container{ width:min(var(--max), calc(100% - 32px)); margin:0 auto; }

.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 0;
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand img{ height:34px; width:auto; }
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__text strong{ font-size:14px; letter-spacing:.02em; }
.brand__text span{ font-size:12px; color: var(--muted); margin-top:2px; }

.nav{
  display:flex; align-items:center; gap: 14px;
}
.nav a{
  text-decoration:none;
  font-weight:800;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{ background: var(--bg2); color: var(--text); }

.btn{
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--primary{
  background: var(--black);
  color: #fff;
  border: 1px solid var(--black);
}
.btn--primary:hover{ background: #000; }

.burger{
  display:none;
  width:42px; height:42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  cursor:pointer;
}
.burger span{ display:block; height:2px; background: var(--text); margin: 6px 10px; opacity:.8; }

.mobileNav{
  display:none;
  border-top:1px solid var(--line);
  padding: 10px 0 14px;
}
.mobileNav a{
  display:block;
  padding: 10px 12px;
  text-decoration:none;
  color: var(--muted);
  font-weight: 900;
  border-radius: 12px;
}
.mobileNav a:hover{ background: var(--bg2); color: var(--text); }
.mobileNav .btn{ width:100%; margin-top:10px; }

.hero{
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 34px 0;
  align-items:stretch;
}
.heroCard{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroMedia img{
  width:100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.heroBody{ padding: 18px; }
.eyebrow{
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 950;
  font-size: 12px;
  color: #000;
}
.heroBody h1{
  margin: 10px 0 8px;
  font-size: clamp(30px, 3.6vw, 48px);
}
.lead{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.section{ padding: 56px 0; }
.section--alt{
  background: var(--bg2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.sectionHead h2{ margin:0 0 8px; font-size: 30px; }
.sectionHead p{ margin:0; color: var(--muted); max-width: 80ch; }

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h3{ margin: 0 0 10px; }
.muted{ color: var(--muted); }

.priceList{ list-style:none; padding:0; margin:0; }
.priceList li{
  display:flex; justify-content:space-between; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.priceList li:last-child{ border-bottom:none; }
.priceList strong{ color: #000; }

.hours{ list-style:none; padding:0; margin: 0; }
.hours li{
  display:flex; justify-content:space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.hours li:last-child{ border-bottom:none; }
.hours span{ color: var(--muted); }
.hours strong{ font-weight: 950; }

.teamGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.teamCard{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.teamCard img{
  width:100%;
  height: 240px;
  object-fit: cover;
}
.teamBody{ padding: 14px 14px 16px; }
.teamTop{
  display:flex; align-items:flex-start; justify-content:space-between; gap: 10px;
}
.iconBtn{
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg2);
  display:grid; place-items:center;
  text-decoration:none;
}
.iconBtn:hover{ background:#efeff1; }
.iconBtn svg{ width: 20px; height: 20px; fill: #000; }

.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
}
.map iframe{ width:100%; height: 320px; border:0; background: var(--bg2); }

.footer{
  padding: 20px 0 34px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:block; }
  .hero__grid{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .teamGrid{ grid-template-columns: 1fr; }
}
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.galleryItem{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--bg2);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.galleryItem img{
  width:100%;
  height: 220px;
  object-fit: cover;
  transition: transform .2s ease;
}
.galleryItem:hover img{ transform: scale(1.03); }

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 1000;
}
.lightbox.open{ display:flex; }
.lightbox img{
  max-width: min(1100px, 95vw);
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.lightboxClose{
  position:absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color:#fff;
  font-size: 20px;
  cursor:pointer;
}
.lightboxClose:hover{ background: rgba(255,255,255,.16); }

@media (max-width: 980px){
  .galleryGrid{ grid-template-columns: 1fr; }
  .galleryItem img{ height: 240px; }
}
.btn-primary {
  display: inline-block;
  margin-top: 32px;       /* Abstand nach oben */
  margin-bottom: 48px;    /* Mehr Luft nach unten → wirkt höher platziert */
  padding: 18px 42px;
  background: linear-gradient(145deg, #000000, #1c1c1c);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.6px;
  border-radius: 14px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.25),
    0 4px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #111111, #000000);
}
.reviewRotator{
  margin-top: 8px;      /* näher an den Button */
  margin-bottom: 38px;  /* deutlich mehr Luft nach unten */
  max-width: 520px;
}

.reviewRotator .stars{
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.reviewRotator .reviewText{
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.reviewRotator .reviewMeta{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(0,0,0,.55);
}
footer.footer{
  margin-top: 80px;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
}
