/* main.css – Startseite */
:root{
  --ink:#0b0c0f;
  --muted:#61656b;
  --line:rgba(11,12,15,.12);
  --header:#5f6368;
  --headerLine:rgba(255,255,255,.10);
  --headerText:rgba(255,255,255,.92);
  --headerMuted:rgba(255,255,255,.70);
  --radius:18px;
  --radius2:26px;
  --shadow:0 18px 60px rgba(11,12,15,.10);
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden;overflow-x:hidden}
body{overflow-x:hidden;
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--ink);
  background:linear-gradient(180deg, #ffffff, #fafafa);
  line-height:1.6;
;overflow-x:hidden}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 22px}
/* Header bekommt etwas weniger Seiten-Padding und Logo minimal weiter links */
.headerWrap{padding:0 14px}
.brand{margin-left:-6px}


/* HEADER (einzeilig) */
header{position:sticky;top:0;z-index:10000;background:var(--header);border-bottom:1px solid var(--headerLine)}
.headerTop{display:flex;align-items:center;gap:18px;padding:14px 0}
.brand{display:flex;align-items:center;min-width:200px}
.brandLogo{height:64px;width:auto;display:block;object-fit:contain}
@media (max-width:520px){.brandLogo{height:56px}}

nav#desktopNav{display:flex;flex:1;min-width:0;justify-content:center;align-items:center;gap:clamp(14px,2.0vw,22px);flex-wrap:nowrap}
nav#desktopNav a{color:var(--headerText);font-weight:600;font-size:clamp(11px,1.05vw,13px);letter-spacing:.12em;text-transform:uppercase;padding:6px 6px;position:relative;opacity:.92;white-space:nowrap}
nav#desktopNav a:hover{opacity:1}
nav#desktopNav a::after{content:"";position:absolute;left:6px;right:6px;bottom:-2px;height:2px;background:rgba(255,255,255,0);border-radius:999px;transition:background .15s ease}
nav#desktopNav a:hover::after{background:rgba(255,255,255,.28)}
nav#desktopNav a.active::after{background:rgba(255,255,255,.55)}

.navRight{display:flex;align-items:center;gap:10px;flex-wrap:nowrap;justify-content:flex-end}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:11px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);color:var(--headerText);
  font-weight:600;font-size:13px;transition:transform .12s ease, background .12s ease;
  white-space:nowrap;cursor:pointer
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.10)}
.btn.primary{background:#fff;color:#0b0c0f;border-color:transparent}
.iconBtn{width:40px;height:40px;border-radius:999px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);display:inline-flex;align-items:center;justify-content:center}
.iconBtn:hover{background:rgba(255,255,255,.10)}
.iconBtn svg{width:18px;height:18px;fill:rgba(255,255,255,.88)}

.menuBtn{display:none}

@media (max-width:980px){
  nav#desktopNav{display:none}
  .menuBtn{display:inline-flex}
  /* Mobile Header: nur Burger rechts, kein Überlauf */
  .headerTop{justify-content:space-between;gap:12px}
  .brand{min-width:0}
  .navRight{margin-left:auto}
  .navRight .iconBtn,
  .navRight .btn.primary{display:none !important}
  .menuBtn{margin-left:auto}
}



/* Sections */
section{padding:54px 0}
.sectionHead{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:18px}
.sectionHead h2{margin:0;font-size:16px;letter-spacing:.08em;text-transform:uppercase}
.sectionHead p{margin:0;color:var(--muted);font-size:13px;max-width:78ch}

.card{
  background:#fff;border:1px solid var(--line);
  border-radius:var(--radius2);box-shadow:var(--shadow);overflow:hidden;
}

.reviewToggleBar{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* Buttons light/dark (content) */
.btnLight{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:999px;border:1px solid var(--line);
  background:#fff;color:var(--ink);font-weight:600;font-size:13px;
  transition:transform .12s ease, background .12s ease;
}
.btnLight:hover{transform:translateY(-1px);background:#f7f7f7}
.btnDark{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:999px;border:1px solid transparent;
  background:var(--ink);color:#fff;font-weight:600;font-size:13px;
  transition:transform .12s ease, filter .12s ease;
}

.btnGrey{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:14px 22px;border-radius:999px;text-decoration:none;font-weight:700;border:1px solid rgba(0,0,0,.1);background:#ececec;color:var(--ink);box-shadow:0 10px 24px rgba(0,0,0,.08);transition:transform .15s ease, box-shadow .15s ease, background .15s ease}
.btnGrey:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(0,0,0,.12);background:#e4e4e4}
.btnDark:hover{transform:translateY(-1px);filter:brightness(.95)}

/* Grids */
.grid5{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
@media (max-width:1200px){.grid5{grid-template-columns:repeat(3,1fr)}}
@media (max-width:600px){.grid5{grid-template-columns:repeat(2,1fr)}}
@media (max-width:380px){.grid5{grid-template-columns:1fr}}
@media (max-width:980px){
  #desktopNav{display:none}
  .menuBtn{display:inline-flex}
}
@media (min-width:981px){
  .menuBtn{display:none}
}
@media (max-width:520px){.brandLogo{height:54px}}
.split{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:980px){
  #desktopNav{display:none}
  .menuBtn{display:inline-flex}
}
@media (min-width:981px){
  .menuBtn{display:none}
}
@media (max-width:520px){.brandLogo{height:54px}}

.tile{border:1px solid var(--line);background:rgba(11,12,15,.02);border-radius:var(--radius);padding:16px;min-width:0}
.tile h3{margin:0 0 6px;font-size:15px}
.tile p{margin:0;color:var(--muted);font-size:13px}

/* Price table */
.priceTable{
  width:100%;border-collapse:separate;border-spacing:0;overflow:hidden;
  border:1px solid var(--line);border-radius:var(--radius2);
  background:#fff;box-shadow:var(--shadow);
}
.priceTable th,.priceTable td{padding:14px 16px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
.priceTable th{
  font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);
  background:rgba(11,12,15,.02);
}
.priceTable tr:last-child td{border-bottom:none}
.priceName{font-weight:600}
.priceMeta{color:var(--muted);font-size:13px}
.priceEuro{font-weight:700}

/* CTA band */
.ctaBand{
  border-radius:var(--radius2);
  background:rgba(0,0,0,.035);
  border:1px solid rgba(0,0,0,.06);
  color:var(--ink);
  padding:20px;
  display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;
}
.ctaBand p{color:var(--muted);margin:6px 0 0}
.ctaBand p{margin:0;color:rgba(255,255,255,.75);font-size:13px}
.ctaBand .btnDark{background:#fff;color:var(--ink)}
.ctaBand .btnLight{border-color:rgba(255,255,255,.18);color:#fff;background:rgba(255,255,255,.08)}
.ctaBand .btnLight:hover{background:rgba(255,255,255,.12)}

/* Footer */
footer{
  background:var(--header);color:rgba(255,255,255,.72);
  padding:28px 0 34px;border-top:1px solid var(--headerLine);
}
.foot{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;align-items:center}
.foot a{color:rgba(255,255,255,.72);padding:6px 8px;border-radius:12px}
.foot a:hover{color:#fff;background:rgba(255,255,255,.08)}

/* FAQ accordion */
.faqStack{display:block}
.faqCategory{margin:0 0 18px}
.faqCat{margin:0 0 10px;font-size:14px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.faqWrap details{
  border:1px solid var(--line);
  background:rgba(11,12,15,.02);
  border-radius:var(--radius);
  padding:12px 14px;
}
.faqWrap details + details{margin-top:10px}
.faqWrap summary{
  cursor:pointer;
  font-weight:600;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.faqWrap summary::-webkit-details-marker{display:none}
.faqWrap summary::after{
  content:"+";
  font-weight:700;
  opacity:.55;
}
.faqWrap details[open] summary::after{content:"–"}
.faqWrap details p{margin:10px 0 0;color:var(--muted);font-size:13px}
.faqWrap details ul{margin:10px 0 0;color:var(--muted);font-size:13px}
.faqMoreToggle{display:flex;justify-content:center;margin:10px 0 18px}
.faqToggleBtn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:#ececec;color:var(--ink);
  font-weight:700;font-size:13px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  cursor:pointer;
}
.faqToggleBtn:hover{background:#e4e4e4}


/* HERO: Premium Bild + Panel (ruhig, scanbar) */
.hero{padding:56px 0 26px}
.heroShell{position:relative;padding-right:22px}

/* Desktop: Bild links, Panel rechts überlappend */
.heroMedia{
  position:relative;
  border-radius:var(--radius2);
  border:1px solid var(--line);
  overflow:hidden;
  background:#f3f3f3;
  box-shadow:var(--shadow);
  height:520px;
  width:70%;
}
.heroMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:45% center;
  display:block;
}
.heroPanel{
  position:absolute;
  right:-60px; /* etwas weiter rechts */
  top:50%;
  transform:translateY(-50%);
  width:min(520px, 46%);
  background:#e7e7e7; /* hellgrau */
  border:1px solid rgba(11,12,15,.10);
  border-radius:var(--radius2);
  box-shadow:0 14px 44px rgba(11,12,15,.16);
  padding:26px 28px 22px;
}

.heroTitle{
  margin:0 0 10px;
  font-size:38px;
  line-height:1.02;
  letter-spacing:-.6px;
  text-transform:uppercase;
}
.heroTitle span{display:block}

.heroIntro{
  margin:0 0 16px;
  color:rgba(11,12,15,.78);
  font-size:14px;
  max-width:52ch;
}

/* Bulletpoints (aus KOMBI-Text abgeleitet) */
.heroBullets{
  margin:0 0 16px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.heroBullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(11,12,15,.78);
  font-size:13px;
  line-height:1.45;
}
.heroBullets .dot{
  width:20px;height:20px;border-radius:999px;
  border:1px solid rgba(11,12,15,.12);
  background:rgba(255,255,255,.55);
  display:inline-flex;align-items:center;justify-content:center;
  flex:0 0 20px;margin-top:1px;
}
.heroBullets svg{width:12px;height:12px;fill:rgba(11,12,15,.78)}

.heroServices{
  margin:16px 0 0;
  color:rgba(11,12,15,.82);
  font-size:13px;
  border-top:1px solid rgba(11,12,15,.10);
  padding-top:14px;
}
.heroServices b{display:block;margin-bottom:8px}
.heroServices .svcLine{
  font-weight:700;
  letter-spacing:.2px;
}
.heroServices .svcLine span{white-space:nowrap}

/* Reviews section (später) */
.reviewGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
@media (max-width:980px){
  #desktopNav{display:none}
  .menuBtn{display:inline-flex}
}
@media (min-width:981px){
  .menuBtn{display:none}
}
@media (max-width:520px){.brandLogo{height:54px}}
@media (max-width:520px){.reviewGrid{grid-template-columns:1fr;}}

.reviewCard{
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  padding:14px 14px;
  box-shadow:0 10px 30px rgba(11,12,15,.08);
  color:rgba(11,12,15,.78);
  font-size:13px;
  line-height:1.5;
}
.reviewCard b{display:block;margin-bottom:6px;color:rgba(11,12,15,.88);font-size:13px}

@media (max-width:980px){
  #desktopNav{display:none}
  .menuBtn{display:inline-flex}
}
@media (min-width:981px){
  .menuBtn{display:none}
}
@media (max-width:520px){.brandLogo{height:54px}}
  .heroMedia{height:500px;width:100%}
  .heroPanel{
    position:relative;
    top:auto;right:auto;transform:none;
    width:100%;
    margin:-22px 0 0;
    border-top-left-radius:26px;
    border-top-right-radius:26px;
  }
  .heroTitle{font-size:34px}
}
@media (max-width:520px){
  .heroMedia{height:480px}
  .heroTitle{font-size:30px}
}
.heroTitle{font-size:30px}
}
.heroTitle{font-size:30px}
}
.heroTitle{font-size:30px}
}

  
/* --- OVERRIDES: Logo + Header (Wordmark) --- */
.logoWrap{background:transparent;border:none;padding:0;box-shadow:none}
.brand{display:flex;align-items:center;gap:0}
.brandLogo{height:44px;width:auto;display:block;filter:none;}
.topbar{background:var(--header);}

/* --- Hero Logo Banner --- */
.heroLogoBanner{padding:42px 0 18px}
.heroLogoBanner img{width:100%;max-width:980px;height:auto;display:block;margin:0 auto}

/* --- Kombi Box under About --- */
.kombiStrip{padding:24px 0 10px}
.kombiCard{background:rgba(0,0,0,.035);border:1px solid rgba(0,0,0,.06);border-radius:18px;box-shadow:0 18px 45px rgba(0,0,0,.08);padding:26px 26px}
.kombiCard h2{margin:0 0 10px;font-size:28px;letter-spacing:.02em}
.kombiCard p{margin:0 0 16px;color:var(--muted);font-size:16px;line-height:1.6}
.kombiCard ul{margin:0 0 18px;padding:0;list-style:none;display:grid;gap:10px}
.kombiCard li{display:flex;gap:12px;align-items:flex-start}
.kombiCard li .check{width:22px;height:22px;border-radius:999px;background:#fff;border:1px solid rgba(0,0,0,.12);display:inline-flex;align-items:center;justify-content:center;flex:0 0 22px;margin-top:1px}
.kombiCard .services{margin-top:14px;border-top:1px solid rgba(0,0,0,.08);padding-top:14px;color:var(--text)}

/* --- Reviews 2-column masonry --- */
.reviewsGrid{column-count:2;column-gap:24px}
.reviewItem.hidden{display:none}
.reviewsActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
@media (max-width: 900px){.reviewsGrid{column-count:1}}
.reviewItem{break-inside:avoid;margin:0 0 18px}
.reviewCard2{background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:16px;box-shadow:0 10px 26px rgba(0,0,0,.06);padding:18px 18px}
.reviewHead{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.avatar{width:38px;height:38px;border-radius:999px;background:rgba(0,0,0,.06);display:flex;align-items:center;justify-content:center;font-weight:700}
.rName{font-weight:800}
.rStars{color:#c28b5b;font-weight:700;font-size:13px}
.reviewBody{color:var(--text);line-height:1.6;white-space:pre-wrap}



/* Kombi-Box unter "Über mich" */
.kombiUnderAbout{padding:54px 0}
.kombiCard{
  width:100%;
  max-width:none;
  margin:0;
  background:#e7e7e7;
  border:1px solid rgba(11,12,15,.10);
  border-radius:var(--radius2);
  box-shadow:0 14px 44px rgba(11,12,15,.12);
  padding:26px 28px 22px;
}
.kombiTitle{margin:0 0 10px;font-size:22px;line-height:1.12;letter-spacing:-.2px}
.kombiSubtitle{margin:0 0 16px;color:rgba(11,12,15,.78);font-size:14px;max-width:72ch}
.kombiBullets{margin:0 0 16px;padding:0;list-style:none}
.kombiBullets li{display:flex;gap:12px;align-items:flex-start;color:rgba(11,12,15,.78);font-size:14px;line-height:1.45}
.kombiBullets li::before{content:'✓';display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:999px;border:1px solid rgba(11,12,15,.14);background:rgba(255,255,255,.45);color:rgba(11,12,15,.85);font-size:12px;flex:0 0 22px;margin-top:2px}
.kombiServices{border-top:1px solid rgba(11,12,15,.10);padding-top:14px;color:rgba(11,12,15,.82);font-size:14px}
.kombiServices span{display:block;font-weight:700;margin-bottom:6px}

/* Logo oben links etwas groesser */
.brandLogo{height:64px;width:auto;display:block;object-fit:contain}

@media (max-width: 900px){
  .kombiCard{padding:20px 18px}
  .kombiTitle{font-size:20px}
}


/* CONTACT (WhatsApp + Telefon) */
.contactGrid{display:grid;grid-template-columns:1fr;gap:18px}
.contactCard{background:#f1f1f1;border:1px solid #e3e3e3;border-radius:22px;padding:26px;box-shadow:0 18px 40px rgba(0,0,0,.10)}
.contactRow{display:flex;gap:14px;align-items:flex-start;padding:14px 0}
.iconBubble{width:44px;height:44px;border-radius:999px;display:flex;align-items:center;justify-content:center;flex:0 0 44px;background:#e9e9e9;color:#111}
.phoneBubble{background:#f0e7ea;color:#c84b6d}
.waBubble{background:#25D366;color:#fff}
.mapBubble{background:#efe9f4;color:#6b4b8c}
.rowText{min-width:0}
.rowLabel{font-size:12px;letter-spacing:.16em;color:#6b6b6b;font-weight:700}
.rowValue{display:inline-block;margin-top:4px;font-size:18px;font-weight:700;color:#111;text-decoration:none}
.rowValue:hover{text-decoration:underline}
.hint{font-weight:600;color:#6b6b6b;font-size:14px}
.divider{height:1px;background:#dedede;opacity:.85}
.socialRow{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-top:16px}
.socialLabel{font-size:12px;letter-spacing:.16em;color:#6b6b6b;font-weight:700}
.socialIcons{display:flex;gap:10px}
.circleIcon{width:40px;height:40px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.25);border:1px solid rgba(0,0,0,.08);text-decoration:none;color:#222;font-weight:800}

/* Contact image pane */
.contactGrid{display:grid; gap:28px; grid-template-columns: 1fr;}
.contactPane{
  background:#f1f1f1;
  border:1px solid #d9d9d9;
  border-radius:22px;
  min-height:320px;
  position:relative;
  overflow:hidden;
}

.contactImage{
  position:absolute;
  inset:18px;
  width:calc(100% - 36px);
  height:calc(100% - 36px);
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  display:block;
}
.contactImagePlaceholder{
  position:absolute;
  inset:18px;
  border-radius:18px;
  background:#e7e7e7;
  border:1px solid #d0d0d0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#9a9a9a;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
@media (min-width: 900px){
  .contactGrid{grid-template-columns: 1.1fr .9fr; align-items:stretch;}
}

/* WhatsApp icon (Kontaktliste) */
.contactIcon--wa{ background:#25D366; border-color: rgba(37,211,102,.25); }
.contactIcon--wa svg{ width:16px; height: 16px; fill:#fff; }

/* Kontaktbereich (Backup-Layout) */
.contactList{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.contactLabel{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(11,12,15,.55);
  margin-bottom:2px;
}

.contactLink{
  color:rgba(11,12,15,.85);
  text-decoration:none;
  font-weight:600;
}

.contactSocial{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(11,12,15,.10);
}

.contactSocialIcons{
  display:flex;
  gap:10px;
  align-items:center;
}

.contactSocialLabel{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(11,12,15,.55);
  margin-bottom:10px;
}

.contactSub{
  margin:0 0 14px;
  color:rgba(11,12,15,.70);
  font-size:13px;
}

.contactTitle{
  margin:0 0 6px;
  font-size:18px;
  letter-spacing:.02em;
}


/* Icons wie im Header, aber für hellen Hintergrund */
.iconBtnLight{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid rgba(11,12,15,.14);
  background:rgba(255,255,255,.35);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.iconBtnLight:hover{ background:rgba(255,255,255,.55); }
.iconBtnLight svg{ width:18px;height:18px; fill:rgba(11,12,15,.78); }


/* --- Kontakt: Icon + Text nebeneinander (wie Backup) --- */
.contactList li{display:flex;align-items:flex-start;gap:14px;}
.contactIcon{width:44px;height:44px;border-radius:999px;background:#f0f0f0;display:flex;align-items:center;justify-content:center;font-size:18px;flex:0 0 44px;}
.contactText{min-width:0;}
.contactLabel{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:#8b8b8b;font-weight:700;}
.contactValue{font-size:18px;color:#1f1f1f;font-weight:650;}
.contactLink{text-decoration:none;}
.contactLink:hover{text-decoration:underline;}
.contactIcon--wa{background:#25D366;}
.contactIcon--wa svg{width:18px;height:18px;fill:#fff;display:block;}

.reviewsCarousel{margin-top:10px;}
.reviewsViewport{position:relative;}
.reviewsTrack{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
  padding:2px 2px 14px;
}
.reviewsTrack::-webkit-scrollbar{height:8px}
.reviewsTrack::-webkit-scrollbar-thumb{background:rgba(11,12,15,.12);border-radius:999px}
@media (max-width:900px){
  .reviewsTrack::-webkit-scrollbar{display:none}
}

#reviews .reviewItem{
  flex:0 0 86%;
  scroll-snap-align:start;
}
@media (min-width:700px){
  #reviews .reviewItem{flex-basis:48%}
}
@media (min-width:1100px){
  #reviews .reviewItem{flex-basis:32%}
}

#reviews .reviewCard2{
  background:#fff;
  height:100%;
  display:flex;
  flex-direction:column;
}
#reviews .avatar{
  background:rgba(11,12,15,.06);
  border:1px solid rgba(11,12,15,.10);
  color:rgba(11,12,15,.70);
}

#reviews .reviewBody{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
}
#reviews .reviewCard2.expanded .reviewBody{
  display:block;
  -webkit-line-clamp:unset;
  overflow:visible;
}

#reviews .readMore{
  margin-top:10px;
  align-self:flex-start;
  padding:0;
  border:0;
  background:transparent;
  color:rgba(11,12,15,.70);
  font-weight:700;
  cursor:pointer;
}
#reviews .readMore:hover{text-decoration:underline}

.rcArrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid rgba(11,12,15,.14);
  background:rgba(255,255,255,.78);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(11,12,15,.12);
}
.rcArrow svg{width:18px;height:18px;fill:rgba(11,12,15,.82)}
.rcArrow.prev{left:-10px}
.rcArrow.next{right:-10px}
@media (min-width:980px){
  .rcArrow{display:inline-flex}
}

.rcDots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding:10px 0 2px;
}
.rcDots button{
  width:8px;height:8px;
  border-radius:999px;
  border:0;
  background:rgba(11,12,15,.20);
  cursor:pointer;
}
.rcDots button[aria-current="true"]{background:rgba(11,12,15,.60)}

/* ===== Galerie Preview (Startseite) ===== */
.galleryCard{
  position:relative;
  padding:22px;
  background:#e7e7e7;
  border:1px solid rgba(11,12,15,.10);
  border-radius:var(--radius2);
  box-shadow:0 14px 44px rgba(11,12,15,.12);
  overflow:hidden;
}

/* Ganze Card klickbar (inkl. Elfsight) */
.galleryCardOverlay{
  position:absolute;
  inset:0;
  z-index:1;
  border-radius:inherit;
}
.galleryCardOverlay:focus-visible{
  outline:2px solid rgba(0,0,0,.35);
  outline-offset:4px;
}

/* Layout */
.galleryInner{
  display:flex;
  gap:22px;
  align-items:stretch;
}
.galleryMedia{
  flex:0 0 520px;
  max-width:520px;
  min-width:260px;
}
.galleryCopy{
  flex:1 1 auto;
  min-width:0;
}

/* Teaser (Appetit-Anreger) */
.galleryTeaser{
  border-radius:18px;
  overflow:hidden;
  background:transparent;
  border:1px solid rgba(0,0,0,.10);
  padding:0;
  height:auto;
}

/* Elfsight im Teaser: keine Zusatz-Padding/Leerfläche */
.galleryTeaser .eapps-instagram-feed,
.galleryTeaser .eapps-instagram-feed-content,
.galleryTeaser .eapps-instagram-feed-posts-view,
.galleryTeaser .eapps-instagram-feed-posts,
.galleryTeaser .eapps-instagram-feed-posts-container{
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
}
.galleryTeaser .eapps-instagram-feed-posts-view{height:auto !important;}

/* Elfsight im Teaser: "Load more" / Footer ausblenden (Appetizer: exakt 1 Reihe) */
.galleryTeaser .eapps-instagram-feed-load-more,
.galleryTeaser .eapps-instagram-feed-posts-load-more,
.galleryTeaser .eapps-instagram-feed-posts-load-more-container,
.galleryTeaser .eapps-instagram-feed-posts-load-more-button,
.galleryTeaser .eapps-instagram-feed-footer,
.galleryTeaser .eapps-instagram-feed-header,
.galleryTeaser .eapps-instagram-feed-title,
.galleryTeaser .eapps-instagram-feed-subtitle{
  display:none !important;
}


/* Elfsight im Teaser: Instagram-Overlay-Icons auf den Bildern ausblenden */
.galleryTeaser .eapps-instagram-feed-posts-item-icon,
.galleryTeaser .eapps-instagram-feed-posts-item-icon-wrapper,
.galleryTeaser .eapps-instagram-feed-posts-item-icon-container,
.galleryTeaser .eapps-instagram-feed-posts-item-link-icon,
.galleryTeaser .eapps-instagram-feed-posts-item-link-icon-container,
.galleryTeaser [class*="post-icon"],
.galleryTeaser [class*="postIcon"],
.galleryTeaser [class*="instagram-icon"],
.galleryTeaser [class*="instagramIcon"],
.galleryTeaser [class*="ig-icon"],
.galleryTeaser [class*="igIcon"]{
  display:none !important;
}
/* Fallback: falls Elfsight Klassen abweichen (Load-more komplett entfernen + Platz kollabieren) */
.galleryTeaser [class*="load-more"],
.galleryTeaser [class*="loadMore"],
.galleryTeaser [data-elm*="load"],
.galleryTeaser button[aria-label*="Load"],
.galleryTeaser button[aria-label*="Mehr"],
.galleryTeaser a[aria-label*="Load"],
.galleryTeaser a[aria-label*="Mehr"]{
  display:none !important;
  height:0 !important;
  margin:0 !important;
  padding:0 !important;
}

/* Teaser auf eine sichtbare Reihe begrenzen (keine innere Scrollbar) */
.galleryTeaser .eapps-instagram-feed-posts-view{
  max-height:190px !important;
  overflow:hidden !important;
}

@media (max-width: 520px){
  .galleryTeaser .eapps-instagram-feed-posts-view{max-height:160px !important;}
}
.galleryHint{
  margin-top:10px;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(11,12,15,.55);
}

/* Text */
.galleryTitle{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:.02em;
}
.gallerySub{
  margin:0 0 14px;
  color:rgba(11,12,15,.72);
  font-size:14px;
  max-width:72ch;
}
.galleryBullets{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.galleryBullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(11,12,15,.78);
  font-size:14px;
  line-height:1.45;
}
.galleryBullets .gCheck{
  width:22px;height:22px;
  border-radius:999px;
  border:1px solid rgba(11,12,15,.14);
  background:rgba(255,255,255,.45);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 22px;
  margin-top:2px;
  font-size:12px;
  color:rgba(11,12,15,.85);
}

/* CTA-Zeile */
.galleryActions{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(11,12,15,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.galleryActionText{
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(11,12,15,.70);
}
.galleryBtn{
  position:relative;
  z-index:2; /* über dem Overlay */
}

/* Mobile / Tablet */
@media (max-width:980px){
  .galleryInner{flex-direction:column}
  .galleryMedia{max-width:none; min-width:0}
  .galleryTeaser{height:auto}
}
@media (max-width:520px){
  .galleryCard{padding:18px}
  .galleryTeaser{height:auto}
  .galleryInner{gap:16px}
}

/* Elfsight: clean preview (nur Content) */
.galleryTeaser .eapps-instagram-feed,
.galleryTeaser .eapps-instagram-feed-content,
.galleryTeaser .eapps-instagram-feed-posts-view{
  background: transparent !important;
}
.galleryTeaser .eapps-instagram-feed-header,
.galleryTeaser .eapps-instagram-feed-footer,
.galleryTeaser .eapps-instagram-feed-title,
.galleryTeaser .eapps-instagram-feed-subtitle,
.galleryTeaser .eapps-instagram-feed-load-more{
  display: none !important;
}


/* === Mobile fixes === */
[hidden]{display:none !important;}
.hamburger{font-size:18px;line-height:1;display:block}

/* Fullscreen Burger Menu */
.mobileMenu{
  position:fixed;
  inset:0;
  background:var(--header);
  padding:84px 22px 22px;
  z-index:10002;
  overflow:auto;
}
.mobileMenu a{
  padding:14px 0;
  font-size:15px;
  letter-spacing:.14em;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.mobileMenu a:last-child{border-bottom:0}
.mobileMenu .mobileCta{
  margin-top:auto;
  width:fit-content;
  max-width:85%;
  min-width:0;
  align-self:center;
  margin-left:auto;
  margin-right:auto;
  justify-content:center;
  text-align:center;
  padding:10px 20px;
  font-size:14px;
}

/* When menu open, lock background scroll */
body.menuOpen{overflow:hidden;}

/* Header mobile simplification */
@media (max-width:980px){
  .navRight .iconBtn{display:none}
  .navRight .btn.primary{display:none}
  .btn.menuBtn{width:44px;height:44px;padding:0;justify-content:center}
}


/* Elfsight: Instagram Badge/Icon auf Bildern ausblenden */
.galleryTeaser [class*="post-icon"],
.galleryTeaser [class*="posts-item-icon"],
.galleryTeaser .eapps-instagram-feed-posts-item-icon,
.galleryTeaser .eapps-instagram-feed-posts-item-link-icon,
.galleryTeaser .eapps-instagram-feed-posts-item-overlay,
.galleryTeaser .eapps-instagram-feed-posts-item-link-overlay{
  display:none !important;
}



/* ===== Mobile Drawer Menu (right side, half screen) ===== */
.noScroll{overflow:hidden !important;}
.menuOverlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.35);
  z-index:10001;
}
.mobileMenu{
  position:fixed;
  top:0; right:0;
  height:100vh;
  width:min(72vw, 360px);
  background:var(--header);
  color:var(--headerText);
  z-index:10002;
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  gap:18px;
  transform:translateX(100%);
  transition:transform .22s ease;
  box-shadow:-14px 0 44px rgba(11,12,15,.22);
}
.mobileMenu.open{transform:translateX(0);}
.menuOverlay.open{display:block;}
.menuClose{
  align-self:flex-end;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:var(--headerText);
  font-size:28px;
  line-height:1;
}
.mobileMenuLinks{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:2px;
}
.mobileMenuLinks a{
  color:var(--headerText);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:600;
  font-size:14px;
  padding:12px 8px;
  border-top:1px solid rgba(255,255,255,.10);
  text-align:right;
}
.mobileMenuLinks a:first-child{border-top:none;}
.mobileCta{
  margin-top:auto;
  width:fit-content;
  max-width:85%;
  min-width:0;
  align-self:center;
  margin-left:auto;
  margin-right:auto;
  justify-content:center;
  text-align:center;
  padding:10px 20px;
  font-size:14px;
}
@media (max-width:420px){
  .mobileCta{
  margin-top:auto;
  width:fit-content;
  max-width:85%;
  min-width:0;
  align-self:center;
  margin-left:auto;
  margin-right:auto;
  justify-content:center;
  text-align:center;
  padding:10px 20px;
  font-size:14px;
}
}

/* Header: on mobile show only burger (right) */
@media (max-width:820px){
  nav#desktopNav{display:none !important;}
  .navRight .iconBtn{display:none !important;}
  .navRight .btn.primary{display:none !important;}
  .navRight{margin-left:auto; justify-content:flex-end;}
  .menuBtn{display:inline-flex;}
  .menuBtn{
    width:44px;height:44px;
    border-radius:999px;
    padding:0;
  }
  .hamburger{font-size:22px; line-height:1;}
}

/* Section headers: stack on mobile so titles don't break because of subtext */
@media (max-width:820px){
  .sectionHead{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .sectionHead p{max-width:100%;}
}

/* Gallery mobile: remove reserved height from desktop flex-basis */
@media (max-width:980px){
  .galleryMedia{flex:0 0 auto !important; width:100%;}
}

/* Elfsight: hide any overlay icons/badges inside teaser items (fallback) */
.galleryTeaser .eapps-instagram-feed-posts-item [class*="icon"],
.galleryTeaser .eapps-instagram-feed-posts-item [class*="Icon"],
.galleryTeaser .eapps-instagram-feed-posts-item svg{
  display:none !important;
}


.mobileMenu .mobileCta{display:inline-flex !important;}

@media (max-width:820px){.navRight .iconBtn{display:inline-flex !important;} .navRight .btn.primary{display:none !important;} }

@media (max-width:420px){.iconBtn{width:40px;height:40px;} .btn.menuBtn{width:40px;height:40px;}}


/* About split layout (matches Gallery look) */
.aboutCard{
  background:#e7e7e7;
  border:1px solid rgba(0,0,0,.08);
  border-radius:26px;
  box-shadow:0 16px 40px rgba(0,0,0,.10);
  padding:22px;
}
.aboutInner{
  display:flex;
  gap:22px;
  align-items:stretch;
}
.aboutMedia{
  flex:0 0 360px;
  max-width:360px;
}
.aboutPhoto{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.10);
  display:block;
}
.aboutCopy{
  flex:1;
  padding:6px 6px 6px 0;
}
.aboutCopy p{
  line-height:1.6;
  color:#3b3b3b;
}
@media (max-width: 980px){
  .aboutInner{flex-direction:column;}
  .aboutMedia{max-width:100%; flex-basis:auto;}
  .aboutPhoto{min-height:320px;}
  .aboutCopy{padding:0;}
}


/* Kontakt: mehr Luft nach Termin-Button */
.contactPrimary{margin:16px 0 24px}
@media (max-width: 820px){.contactPrimary{margin:14px 0 20px}}


/* FAQ: only show Lashlifting by default; other topics behind "Weitere Themen" */
.faqMore > summary { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.faqMore > summary::-webkit-details-marker { display:none; }
.faqMore > summary::after { content:"+"; font-size:18px; opacity:.7; }
.faqMore[open] > summary::after { content:"–"; }


/* --- Mobile menu visibility --- */
.menuBtn{display:none;}
@media (max-width:980px){
  .menuBtn{display:inline-flex;}
}


/* === Mobile Floating Button: round "Termin buchen" (two lines) light grey (v22) === */
@media (max-width: 820px){
  .floatingBookBtn{
    position: fixed !important;
    right: 16px !important;
    bottom: 16px !important;
    z-index: 3000 !important;

    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #dedede !important; /* hellgrau, immer sichtbar */
    color: #0b0c0f !important;
    text-decoration: none !important;

    font-weight: 800 !important;
    font-size: 11px !important;
    line-height: 1.05 !important;
    text-align: center !important;
    letter-spacing: .2px !important;

    box-shadow: 0 18px 50px rgba(11,12,15,.18) !important;
    border: 1px solid rgba(11,12,15,.14) !important;
  }

  /* leave room so it never covers important content */
  body{ padding-bottom: 108px !important; }
}


/* === Floating Button: premium tap + shadow (v24) === */
@media (max-width: 820px){
  .floatingBookBtn{
    /* slightly refined shadow */
    box-shadow: 0 16px 44px rgba(11,12,15,.22) !important;
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  /* tap/press feedback (mobile) */
  .floatingBookBtn:active{
    transform: scale(.96);
    box-shadow: 0 10px 28px rgba(11,12,15,.18) !important;
    filter: brightness(.98);
  }
  /* hover for browsers that support it */
  @media (hover: hover){
    .floatingBookBtn:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 54px rgba(11,12,15,.26) !important;
    }
  }
}


/* === Floating Button: FINAL sizing/weight/border (v25) === */
@media (max-width: 820px){
  .floatingBookBtn{
    font-size: 13px !important;
    font-weight: 900 !important;
    border: 2px solid rgba(11,12,15,.22) !important;
  }
}


/* === Floating Button refinements: darker border + refined shadow + active bg (v26) === */
@media (max-width: 820px){
  .floatingBookBtn{
    /* slightly darker border to match text */
    border: 2px solid rgba(11,12,15,.35) !important;
    /* refined, lighter premium shadow */
    box-shadow: 0 6px 18px rgba(0,0,0,.10) !important;
  }
  .floatingBookBtn:active{
    background: #d5d5d5 !important;
  }
}


/* === Floating Button premium shadow refinement (v27) === */
@media (max-width: 820px){
  .floatingBookBtn{
    box-shadow: 0 8px 22px rgba(0,0,0,.12) !important;
  }
}

