/* ============================================================
   HÖRSTUDIO MANGOLD – Global Styles v3
   Zielgruppe: 55–65 Jahre | Hell, warm, vertrauenswürdig
   CI: Brand #F79403 | Warm White #FFFDF9 | Soft Gray #F5F3EE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; } /* Größere Basis für Lesbarkeit */
body {
  font-family: 'Inter', sans-serif;
  color: #2C2C2C;
  background: #FFFDF9;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- CSS Variables --- */
:root {
  --brand:        #F79403;
  --brand-hover:  #e08500;
  --brand-light:  #FFF4E0;
  --brand-border: #FCDEA3;
  --dark:         #2C2C2C;
  --text:         #5A5A5A;
  --text-light:   #888888;
  --bg:           #FFFDF9;
  --bg-warm:      #F8F4EE;
  --bg-soft:      #FFF8EE;
  --white:        #FFFFFF;
  --border:       #EDE8DF;
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    32px;
  --radius-xl:    44px;
  --radius-pill:  9999px;
  --shadow-soft:  0 2px 20px rgba(180,140,60,0.08);
  --shadow-card:  0 4px 24px rgba(180,140,60,0.10);
  --shadow-hover: 0 8px 40px rgba(180,140,60,0.16);
  --max-w:        1240px;
  --px:           clamp(1.25rem, 5vw, 3rem);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text); font-size: 1rem; line-height: 1.8; }

.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.85rem;
  color: var(--brand); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.label-tag::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--brand); flex-shrink: 0;
}

/* --- Layout --- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section    { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section--warm  { background: var(--bg-warm); }
.section--soft  { background: var(--bg-soft); }
.section--white { background: var(--white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 .reverse-mobile { order: -1; }
}

/* --- HEADER --- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  background: rgba(255,253,249,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(180,140,60,0.10); }

.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 46px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.25rem; color: var(--brand); letter-spacing: -0.03em;
  line-height: 1;
}
.logo-text small {
  display: block; font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--text-light);
  margin-top: 3px; font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: var(--dark); letter-spacing: 0.02em;
  transition: color 0.2s; padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.desktop-nav a:hover { color: var(--brand); }
.desktop-nav a.active { color: var(--brand); border-bottom-color: var(--brand); }

@media (max-width: 900px) { .desktop-nav { display: none; } }

/* Mobile Hamburger */
.hamburger-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: var(--brand-light);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 10px; align-items: center;
}
.hamburger-btn span {
  display: block; width: 22px; height: 2.5px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s ease; transform-origin: center;
}
@media (max-width: 900px) { .hamburger-btn { display: flex; } }

/* Full-Screen Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: var(--bg);
  flex-direction: column;
  padding: 100px var(--px) 3rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-menu-links {
  display: flex; flex-direction: column; gap: 0.5rem;
  flex: 1;
}
.mobile-menu-links a {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  color: var(--dark); padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s;
}
.mobile-menu-links a::after { content: '→'; color: var(--brand); font-size: 1.2rem; }
.mobile-menu-links a:hover { color: var(--brand); }

.mobile-menu-cta {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.mobile-menu-info {
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.mobile-menu-info a {
  font-size: 1rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.mobile-menu-info a img { width: 20px; height: 20px; opacity: 0.5; }

/* Hamburger → X animation */
.hamburger-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1rem; cursor: pointer; transition: all 0.22s ease;
  border: none; text-decoration: none; white-space: nowrap; line-height: 1.2;
}
/* Primary */
.btn-primary {
  background: var(--brand); color: #1A1A1A;
  box-shadow: 0 4px 16px rgba(247,148,3,0.25);
}
.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247,148,3,0.35);
}
/* Secondary (outline style, hell) */
.btn-secondary {
  background: var(--white); color: var(--dark);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover {
  border-color: var(--brand); color: var(--brand);
  transform: translateY(-1px);
}
/* Ghost text link */
.btn-ghost {
  background: transparent; color: var(--dark); font-weight: 700; font-size: 1rem;
  padding: 12px 0; gap: 6px;
}
.btn-ghost:hover { color: var(--brand); }
.btn-ghost .arrow { display: inline-block; transition: transform 0.2s; }
.btn-ghost:hover .arrow { transform: translateX(5px); }

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-xl { padding: 20px 48px; font-size: 1.15rem; }
.btn-full { width: 100%; }

/* --- HERO --- */
.hero { padding-top: calc(76px + clamp(2.5rem, 5vw, 4rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.hero-eyebrow span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--brand); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content p { font-size: 1.1rem; max-width: 520px; margin-bottom: 2.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2.5rem; }

/* Trust row */
.trust-row { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.85rem; color: var(--dark);
  box-shadow: var(--shadow-soft);
}
.trust-pill::before { content: '✓'; color: var(--brand); font-size: 0.9rem; font-weight: 900; }

/* Stars */
.star-row { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.stars { color: var(--brand); font-size: 1.15rem; letter-spacing: 1px; }
.star-row span { font-weight: 700; font-size: 0.9rem; color: var(--text); }

/* Hero image */
.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  width: 100%; height: clamp(320px, 48vw, 560px);
  object-fit: cover; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
/* Floating badge on hero image */
.hero-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-icon { width: 44px; height: 44px; background: var(--brand-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge-icon img { width: 24px; height: 24px; }
.hero-badge-text strong { display: block; font-weight: 800; font-size: 0.9rem; color: var(--dark); line-height: 1.2; }
.hero-badge-text span { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }
@media (max-width: 600px) { .hero-badge { left: 16px; bottom: 16px; } }

/* --- TRUST BANNER (warm strip) --- */
.trust-banner {
  background: var(--brand-light); border-top: 1px solid var(--brand-border); border-bottom: 1px solid var(--brand-border);
  padding: 1.25rem var(--px);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
}
.trust-banner-item { display: flex; align-items: center; gap: 10px; }
.trust-banner-item img { width: 20px; height: 20px; }
.trust-banner-item span { font-weight: 700; font-size: 0.88rem; color: var(--dark); }

/* --- FEATURE CARDS --- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: var(--shadow-soft);
}
.card:hover { border-color: var(--brand-border); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-light); border: 1.5px solid var(--brand-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon img { width: 28px; height: 28px; }
.card h3 { font-size: 1.1rem; margin-bottom: 0.625rem; }
.card p { font-size: 0.9rem; line-height: 1.75; }

/* --- SECTION HEADER --- */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .label-tag { justify-content: center; }
.section-header h2 { margin-top: 0.5rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; max-width: 600px; }
.section-header.centered p { margin: 0 auto; }

/* --- STEPS / PROZESS --- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.step:not(:last-child)::before {
  content: ''; position: absolute; left: 19px; top: 44px; bottom: 0;
  width: 2px; background: var(--brand-border);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.85rem;
  color: var(--white); flex-shrink: 0;
}
.step-content h4 { font-size: 1rem; margin-bottom: 0.375rem; }
.step-content p { font-size: 0.9rem; }

/* --- PRICING --- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  position: relative; transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-soft);
}
.pricing-card:hover { border-color: var(--brand-border); box-shadow: var(--shadow-hover); }
.pricing-card.featured {
  background: var(--bg-soft); border-color: var(--brand);
  box-shadow: 0 8px 40px rgba(247,148,3,0.18);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #1A1A1A;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.78rem;
  padding: 5px 18px; border-radius: var(--radius-pill); white-space: nowrap;
  letter-spacing: 0.04em;
}
.price-amount {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 3rem; color: var(--brand); line-height: 1;
  margin: 1rem 0 0.25rem;
}
.price-amount sub { font-size: 1.1rem; font-weight: 700; vertical-align: bottom; margin-bottom: 5px; display: inline-block; }
.price-note { font-size: 0.85rem; color: var(--text-light); font-weight: 600; margin-bottom: 1.75rem; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; font-weight: 500; color: var(--dark); }
.pricing-item::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/12px no-repeat;
  margin-top: 1px;
}

/* --- SORGLOS BOX --- */
.sorglos-box {
  background: var(--brand-light); border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md); padding: 1.75rem 2rem;
}
.sorglos-box h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--dark); }
.sorglos-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.sorglos-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: var(--dark); }
.sorglos-item::before { content: '✓'; color: var(--brand); font-weight: 900; flex-shrink: 0; font-size: 1rem; }

/* --- INFO HIGHLIGHT BOX --- */
.info-box {
  background: var(--white); border: 1.5px solid var(--brand-border);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius-md); padding: 1.75rem 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.info-box-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--brand-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.info-box h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--dark); }
.info-box p { font-size: 0.92rem; }
@media (max-width: 560px) { .info-box { flex-direction: column; gap: 1rem; } }

/* --- BOOKING / CTA SECTION (HELL!) --- */
.booking-section {
  background: var(--bg-warm); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.booking-section h2 { color: var(--dark); margin-bottom: 0.875rem; }
.booking-section > p { color: var(--text); margin-bottom: 2rem; font-size: 1.05rem; }

/* Cal.com embed container */
.cal-embed-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: 600px; margin-top: 1.5rem;
}
.cal-embed-wrap iframe {
  width: 100%; min-height: 600px; border: none; display: block;
}

/* Location Selector Tabs */
.location-tabs {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 1.5rem;
}
.location-tab {
  padding: 12px 28px; border-radius: var(--radius-pill);
  border: 2px solid var(--border); background: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
  color: var(--text); cursor: pointer; transition: all 0.2s;
}
.location-tab.active, .location-tab:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.cal-panel { display: none; }
.cal-panel.active { display: block; }

/* Fallback: Phone CTA buttons */
.phone-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* --- LOCATION CARDS --- */
.location-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.location-card:hover { border-color: var(--brand-border); box-shadow: var(--shadow-card); }
.location-card h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.location-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 0.875rem; font-size: 0.92rem; }
.location-detail img { width: 18px; height: 18px; opacity: 0.5; flex-shrink: 0; margin-top: 2px; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 700; color: var(--dark); }

/* --- FAQ --- */
details { border-bottom: 1px solid var(--border); }
details > summary {
  list-style: none; cursor: pointer; padding: 1.375rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--dark); user-select: none; gap: 1rem;
}
details > summary::-webkit-details-marker { display: none; }
details > summary:hover { color: var(--brand); }
.faq-plus {
  width: 32px; height: 32px; border-radius: 50%; background: var(--brand-light);
  border: 1.5px solid var(--brand-border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--brand); font-weight: 400;
  transition: background 0.2s; line-height: 1;
}
details[open] .faq-plus { background: var(--brand); color: var(--white); }
.faq-answer { padding: 0 0 1.375rem; color: var(--text); font-size: 0.95rem; line-height: 1.8; max-width: 640px; }

/* --- COMPARE TABLE --- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col { border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.compare-col.highlight { border-color: var(--brand); }
.compare-head { padding: 1.25rem 1.5rem; background: var(--bg-warm); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--dark); }
.compare-col.highlight .compare-head { background: var(--brand-light); color: var(--brand); }
.compare-row { display: flex; align-items: center; gap: 12px; padding: 0.875rem 1.5rem; border-top: 1px solid var(--border); font-size: 0.88rem; font-weight: 500; color: var(--dark); }
.c-yes { color: var(--brand); font-size: 1.1rem; font-weight: 900; flex-shrink: 0; width: 20px; }
.c-no  { color: #D0C4B0; font-size: 1rem; flex-shrink: 0; width: 20px; font-weight: 900; }

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-warm); border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand p { font-size: 0.88rem; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--dark); margin-bottom: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a { font-size: 0.9rem; color: var(--text); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: var(--text-light);
}
.footer-bottom a { color: var(--text-light); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--brand); }
.footer-links { display: flex; gap: 1.5rem; }

/* --- UTILITIES --- */
.text-brand  { color: var(--brand); }
.text-muted  { color: var(--text-light); }
.fw-800      { font-weight: 800; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.disclaimer {
  font-size: 0.78rem; color: var(--text-light);
  font-style: italic; line-height: 1.6;
}

/* --- SCROLL REVEAL --- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 860px) {
  html { font-size: 17px; }
  .hero-badge { display: none; }
}
@media (max-width: 600px) {
  html { font-size: 16px; }
  .btn-xl { padding: 16px 32px; font-size: 1rem; }
  .trust-banner { justify-content: flex-start; gap: 1rem; overflow-x: auto; }
}

/* --- Sticky Mobile CTA bar --- */
.sticky-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px var(--px); gap: 10px;
  box-shadow: 0 -4px 24px rgba(180,140,60,0.10);
}
@media (max-width: 860px) { .sticky-cta-bar { display: flex; } }
.sticky-cta-bar .btn { flex: 1; padding: 14px 12px; font-size: 0.9rem; }

/* Bottom padding so sticky bar doesn't cover content on mobile */
@media (max-width: 860px) { body { padding-bottom: 80px; } }

/* ============================================================
   CONVERSION ENHANCEMENTS
   ============================================================ */

/* --- Urgency Bar --- */
.urgency-bar {
  background: linear-gradient(90deg, #1A1A1A 0%, #2C2C2C 100%);
  color: #fff;
  padding: 10px var(--px);
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap; font-size: 0.9rem;
  position: relative; z-index: 199;
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(34,197,94,0.0); }
}
.urgency-cta {
  background: var(--brand); color: #1A1A1A;
  padding: 5px 16px; border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.82rem; white-space: nowrap;
  transition: background 0.2s;
}
.urgency-cta:hover { background: var(--brand-hover); }
.urgency-close {
  position: absolute; right: var(--px); top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.5);
  cursor: pointer; font-size: 1rem; line-height: 1;
  padding: 4px 8px;
}
.urgency-close:hover { color: #fff; }

/* --- Social Proof Strip in Hero --- */
.social-proof-strip {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 16px;
  display: inline-flex; align-items: center;
  box-shadow: var(--shadow-soft); max-width: 360px;
}
.proof-avatar-row { display: flex; align-items: center; gap: 10px; }
.proof-avatars { display: flex; }
.proof-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.78rem; flex-shrink: 0;
  border: 2px solid var(--white);
  margin-left: -8px;
}
.proof-avatars .proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.4; }

/* --- Second hero badge (bottom right) --- */
.hero-badge--bottom-right {
  left: auto; right: -20px; bottom: auto; top: 24px;
}
@media (max-width: 860px) { .hero-badge--bottom-right { display: none; } }

/* --- Testimonials Grid --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.testimonial-stars { color: var(--brand); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem; color: var(--text); line-height: 1.75;
  font-style: italic; flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 0.5rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-weight: 800; font-size: 0.92rem; color: var(--dark); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* --- Pricing Trust Row --- */
.pricing-trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem 2rem; margin-top: 1.75rem;
  padding: 1.25rem; background: var(--brand-light);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md);
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.pricing-trust-row span {
  font-size: 0.88rem; font-weight: 700; color: var(--dark);
}

/* --- Exit Intent Popup --- */
.exit-popup-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.55);
  align-items: center; justify-content: center;
  padding: var(--px);
}
.exit-popup-overlay.open { display: flex; }
.exit-popup-box {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem 2rem; max-width: 420px; width: 100%;
  text-align: center; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: popup-in 0.3s ease;
}
@keyframes popup-in {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--text-light);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.exit-popup-close:hover { background: var(--border); color: var(--dark); }
.exit-popup-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.exit-popup-box h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 0.75rem; }
.exit-popup-box p { font-size: 0.95rem; color: var(--text); }
.exit-popup-dismiss {
  display: block; width: 100%; margin-top: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 0.78rem; color: var(--text-light);
  font-style: italic; text-decoration: underline;
  padding: 4px 0;
}
.exit-popup-dismiss:hover { color: var(--text); }

/* --- CTA Section micro-copy --- */
.booking-section .micro-copy {
  font-size: 0.82rem; color: var(--text-light);
  margin-top: 0.5rem; display: flex;
  align-items: center; justify-content: center; gap: 0.5rem;
}
.booking-section .micro-copy::before { content: '🔒'; }

/* --- FAQ improved hover --- */
details > summary:focus-visible {
  outline: 3px solid var(--brand); outline-offset: 4px; border-radius: 4px;
}

/* --- Button pulse for primary CTA --- */
.btn-pulse {
  animation: btn-pulse 2.5s infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(247,148,3,0.25); }
  50% { box-shadow: 0 4px 28px rgba(247,148,3,0.55); }
}

/* --- Scroll indicator in hero --- */
.scroll-hint {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-light);
  margin-top: 2rem; animation: bounce-y 2s infinite;
}
.scroll-hint svg { color: var(--brand); }
@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Accessibility: focus-visible for all buttons */
.btn:focus-visible, .location-tab:focus-visible {
  outline: 3px solid var(--brand); outline-offset: 3px;
}

/* ============================================================
   BOOKING WIZARD (3-Schritt-Buchungslogik)
   ============================================================ */

.booking-wizard {
  background: var(--bg-warm); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-soft);
}

/* Step-Indicator */
.bw-steps { display: flex; flex-direction: column; gap: 2rem; }
.bw-step-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 0.5rem;
}
.bw-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: default;
}
.bw-step-dot span {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--border); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.9rem;
  transition: background 0.3s, color 0.3s;
}
.bw-step-dot small {
  font-size: 0.72rem; font-weight: 600; color: var(--text-light);
  font-family: 'Montserrat', sans-serif; white-space: nowrap;
  transition: color 0.3s;
}
.bw-step-dot.active span { background: var(--brand); color: #1A1A1A; }
.bw-step-dot.active small { color: var(--brand); }
.bw-step-dot.done span { background: var(--brand-light); color: var(--brand); border: 2px solid var(--brand); }
.bw-step-dot.done small { color: var(--brand); }
.bw-step-line {
  flex: 1; height: 2px; background: var(--border);
  margin: 0 8px; margin-bottom: 20px; min-width: 40px; max-width: 80px;
}

/* Panel */
.bw-panel { display: none; }
.bw-panel.active { display: block; }
.bw-panel-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--dark);
  margin-bottom: 0.5rem; text-align: center;
}
.bw-panel-sub {
  text-align: center; font-size: 0.9rem; color: var(--brand);
  font-weight: 700; margin-bottom: 1.25rem;
}

/* Back button */
.bw-back-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: var(--text-light);
  padding: 0 0 1.25rem; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.bw-back-btn:hover { color: var(--brand); }

/* Standort-Kacheln */
.bw-standort-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  max-width: 560px; margin: 0 auto;
}
@media (max-width: 480px) { .bw-standort-grid { grid-template-columns: 1fr; } }

.bw-standort-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem 1.25rem;
  text-align: center; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
  box-shadow: var(--shadow-soft);
}
.bw-standort-card:hover {
  border-color: var(--brand); box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.bw-standort-card.selected {
  border-color: var(--brand); background: var(--brand-light);
  box-shadow: 0 4px 20px rgba(247,148,3,0.18);
}
.bw-card-icon { font-size: 1.75rem; margin-bottom: 0.25rem; }
.bw-standort-card strong {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--dark);
}
.bw-standort-card span { font-size: 0.82rem; color: var(--text); line-height: 1.4; }
.bw-standort-card em { font-style: normal; font-size: 0.82rem; color: var(--brand); font-weight: 700; }

/* Leistungs-Liste */
.bw-leistungen-grid {
  display: flex; flex-direction: column; gap: 0.625rem;
  max-width: 680px; margin: 0 auto;
}
.bw-leistung-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.125rem 1.25rem;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; align-items: center; gap: 1rem;
  text-align: left; box-shadow: var(--shadow-soft);
}
.bw-leistung-card:hover {
  border-color: var(--brand); box-shadow: var(--shadow-card);
  transform: translateX(4px);
}
.bw-leistung-card.selected {
  border-color: var(--brand); background: var(--brand-light);
}
.bw-leistung-icon { font-size: 1.5rem; flex-shrink: 0; width: 36px; text-align: center; }
.bw-leistung-info { flex: 1; }
.bw-leistung-info strong {
  display: block; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.95rem; color: var(--dark); line-height: 1.3;
}
.bw-dauer { font-size: 0.8rem; color: var(--brand); font-weight: 700; margin-top: 2px; display: block; }
.bw-leistung-arrow {
  color: var(--brand); font-size: 1.1rem; font-weight: 900;
  flex-shrink: 0; transition: transform 0.2s;
}
.bw-leistung-card:hover .bw-leistung-arrow { transform: translateX(4px); }

/* Auswahl-Zusammenfassung */
.bw-selection-summary {
  text-align: center; font-size: 0.9rem; color: var(--text);
  padding: 0.75rem 1rem; background: var(--brand-light);
  border: 1px solid var(--brand-border); border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.bw-selection-summary strong { color: var(--dark); }
.bw-selection-summary em { color: var(--brand); font-style: normal; font-weight: 700; }

/* Kalender-Container */
.bw-cal-container {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: 640px; position: relative;
}

/* Loading-Spinner */
.bw-cal-loading {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; background: var(--white); z-index: 5;
}
.bw-cal-loading span { font-size: 0.9rem; color: var(--text-light); font-weight: 600; }
.bw-spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--brand-light);
  border-top-color: var(--brand);
  animation: bw-spin 0.8s linear infinite;
}
@keyframes bw-spin { to { transform: rotate(360deg); } }

/* Micro-copy im Wizard */
.booking-wizard .micro-copy {
  font-size: 0.82rem; color: var(--text-light);
  text-align: center; margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.booking-wizard .micro-copy::before { content: '🔒'; }

/* ============================================================
   KARTEN-EMBED PLACEHOLDER → echte Iframe-Karte
   ============================================================ */
.map-embed {
  width: 100%; height: 200px; border-radius: var(--radius-sm);
  border: none; display: block; margin-bottom: 1.25rem;
}

/* ============================================================
   IMPRESSUM / DATENSCHUTZ – Textseite
   ============================================================ */
.legal-page {
  padding-top: calc(76px + 3rem); padding-bottom: 5rem;
}
.legal-page .container { max-width: 760px; }
.legal-page h1 { margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.15rem; margin: 2rem 0 0.625rem; color: var(--dark); }
.legal-page h3 { font-size: 1rem; margin: 1.5rem 0 0.5rem; color: var(--dark); }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--text); line-height: 1.8; }
.legal-page ul { padding-left: 1.25rem; margin: 0.5rem 0; }
.legal-page a { color: var(--brand); text-decoration: underline; }
.legal-page a:hover { color: var(--brand-hover); }

/* ============================================================
   RESPONSIVE – Standorte 2-Spalten auf Mobile
   ============================================================ */
@media (max-width: 760px) {
  .standorte-grid-responsive {
    grid-template-columns: 1fr !important;
  }
}
/* Allgemein: Index-Standort-Grid auf Mobile */
@media (max-width: 600px) {
  #standorte [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}



/* ============================================================
   MAVCOM BAR – nur Herz-Link
   ============================================================ */
.mavcom-bar {
  background: #f5f0e8;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 0.45rem 1rem;
  text-align: center;
}
.mavcom-bar a {
  display: inline-block;
  opacity: 0.45;
  transition: opacity 0.2s;
  line-height: 1;
  text-decoration: none;
}
.mavcom-bar a:hover { opacity: 1; }
.mavcom-heart {
  font-size: 1rem;
  color: var(--brand);
  font-style: normal;
}

/* ============================================================
   COOKIE-BANNER (DSGVO)
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #e8e8e8;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.25);
  font-size: 0.85rem;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { margin: 0; flex: 1 1 280px; }
#cookie-banner a { color: var(--brand); text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept {
  background: var(--brand);
  color: #fff;
}
.cookie-btn-essential {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35) \!important;
  color: #ccc;
}
@media (max-width: 600px) {
  #cookie-banner { padding: 1rem; gap: 0.75rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================
   COOKIE-EINSTELLUNGEN Button auf Legal-Seiten
   ============================================================ */
.cookie-settings-row {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cookie-settings-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-settings-btn::before { content: '🍪'; font-size: 0.9rem; }
.cookie-settings-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* Cookie-Einstellungen Button im Footer */
.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-family: inherit;
  text-decoration: none;
}
.footer-cookie-btn:hover { opacity: 1; color: var(--brand); }
