/* =========================================================
   SANIERUNG MÜNCHEN - CSS OHNE HERO SECTION
   Alle Hero-bezogenen Styles wurden entfernt
   ========================================================= */

/* style.base.css */
:root {
  --primary: #1B3B5F;
  --primary-light: #2B5A8E;
  --accent: #D4A574;
  --accent-dark: #B88D5F;
  --gold: #D4A574;
  --sage: #7A9B76;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --text-disabled: #A8A8A8;
  --bg: #FAFAF8;
  --bg-beige: #F5F3F0;
  --white: #FFFFFF;
  --shadow: rgba(27, 59, 95, 0.1);

  /* Extended Variables */
  --navy-deep: #0b1524;
  --navy-primary: #102b45;
  --navy-light: #1b4b75;
  --primary-ink: #0B1C2D;

  --gold-warm: #c6a96b;
  --gold-champagne: #e7d2ae;
  --gold-2: #E7D2AE;

  --lux-surface-1: #f6f5f2;
  --lux-surface-2: #f1efe9;
  --lux-stone: rgba(15, 27, 45, 0.08);
  --lux-stroke: rgba(198, 169, 107, 0.22);
  --lux-stroke-2: rgba(15, 27, 45, 0.12);

  --shadow-md: rgba(16, 43, 69, 0.14);
  --shadow-lg: rgba(11, 28, 45, 0.18);
  --shadow-xl: rgba(11, 28, 45, 0.22);

  --glass: rgba(255, 255, 255, 0.72);
  --glass-2: rgba(255, 255, 255, 0.55);
  --stroke: rgba(214, 176, 122, 0.20);
  --stroke-2: rgba(255, 255, 255, 0.35);

  --bg-navy-gradient: linear-gradient(180deg, #0f1b2d 0%, #0b1524 100%);
  --bg-gold-gradient: linear-gradient(180deg, var(--lux-surface-1) 0%, var(--lux-surface-2) 100%);
  --gold-solid: #C9973B;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(900px 480px at 18% -10%, rgba(214,176,122,0.18), transparent 60%),
    radial-gradient(900px 520px at 82% 0%, rgba(27,75,117,0.16), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, var(--bg-beige) 100%);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.24), transparent 35%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 50% 70%, rgba(0,0,0,0.06), transparent 45%),
    radial-gradient(circle, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 18px 18px;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  z-index: -1;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  width: 100%;
}

main {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none;
}

/* ============================================
   NAVIGATION & HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px var(--shadow);
  backdrop-filter: saturate(1.15) blur(10px);
  -webkit-backdrop-filter: saturate(1.15) blur(10px);
}

body {
  padding-top: 72px;
}

/* slideDown animation entfernt – Header ist jetzt fixed */

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand { 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
}

.brand__name {
  font-family: 'Crimson Pro', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.brand__name span { 
  color: var(--gold); 
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin-left: 1rem;
  flex: 1;
}

.nav__item { 
  position: relative; 
}

.nav__link {
  appearance: none;
  background: none;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0.2rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible { 
  color: var(--primary); 
  outline: none; 
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after { 
  width: 100%; 
}

.nav__dropdownBtn { 
  display: flex; 
  align-items: center; 
  gap: 0.4rem; 
}

.nav__chev { 
  font-size: 0.85rem; 
  opacity: 0.7; 
  transition: transform 0.2s ease; 
}

.has-dropdown[data-open="true"] .nav__chev { 
  transform: rotate(180deg); 
}

.nav__ctas { 
  display: flex; 
  align-items: center; 
  gap: 1rem; 
}

.nav__phone {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: rgba(27, 59, 95, 0.06);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
}

.nav__phone:hover { 
  transform: translateY(-1px); 
  background: rgba(27, 59, 95, 0.12); 
}

.nav__phone-icon { 
  font-size: 1.1rem; 
}

.nav__primaryCta {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold-champagne));
  color: var(--navy-deep);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 45px rgba(214,176,122,0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav__primaryCta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(214,176,122,0.45);
  filter: brightness(0.98) saturate(1.02);
}

/* ============================================
   DROPDOWN MEGA MENU
   ============================================ */

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -40px;
  width: min(850px, 85vw);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  padding: 1.5rem;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.has-dropdown[data-open="true"] .dropdown { 
  display: block; 
  opacity: 1; 
  transform: translateY(0); 
}

.dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1.5rem;
}

.dropdown__col { 
  display: flex; 
  flex-direction: column; 
}

.dropdown__title {
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  transition: all 0.2s ease;
  min-height: 44px;
}

.dropdown__link:hover,
.dropdown__link:focus-visible {
  outline: none;
  background: rgba(212, 165, 116, 0.12);
  transform: translateX(3px);
  color: var(--primary);
}

.dropdown__icon { 
  font-size: 1.3rem; 
  flex-shrink: 0; 
}

.dropdown__col--highlight {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(27, 59, 95, 0.08));
  border-radius: 14px;
  padding: 0;
}

.dropdown__highlight {
  padding: 1.3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dropdown__highlight-title {
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.dropdown__highlight-text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.dropdown__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(27, 59, 95, 0.25);
  min-height: 44px;
}

.dropdown__cta:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(27, 59, 95, 0.35);
}

.dropdown__cta-arrow { 
  font-size: 1.2rem; 
  transition: transform 0.2s ease; 
}

.dropdown__cta:hover .dropdown__cta-arrow { 
  transform: translateX(3px); 
}

.dropdown__phone-info {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dropdown__phone-label { 
  font-size: 0.85rem; 
  color: var(--text-light); 
  font-weight: 500; 
}

.dropdown__phone-number {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.dropdown__phone-number:hover { 
  color: var(--gold); 
}

/* ============================================
   MOBILE DRAWER – außerhalb des Headers im DOM,
   deshalb kein Stacking-Context-Problem mehr
   ============================================ */


/* ============================================
   MOBILE HAMBURGER
   ============================================ */

.nav__burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  cursor: pointer;
  padding: 11px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.nav__burger:hover { 
  background: rgba(0, 0, 0, 0.03); 
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); 
}

.nav__burger[aria-expanded="true"] span:nth-child(2) { 
  opacity: 0; 
}

.nav__burger[aria-expanded="true"] span:nth-child(3) { 
  transform: translateY(-7px) rotate(-45deg); 
}

/* ============================================
   MOBILE STICKY BOTTOM BAR – deaktiviert
   ============================================ */

.mobile-sticky-bar,
.mobile-bottom-cta {
  display: none !important;
}

/* ============================================
   BUTTONS & PREMIUM ELEMENTS
   ============================================ */

.btn, 
.cta-button, 
.pill { 
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease; 
}

.btn:hover, 
.cta-button:hover, 
.pill:hover { 
  transform: translateY(-1px); 
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 750;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  min-height: 46px;
  letter-spacing: .15px;
}

.btn--primary {
  background: linear-gradient(135deg, #c8a06e, #e6c9a2);
  color: #1b1b1b;
  box-shadow: 0 12px 30px rgba(212,165,116,.35);
  border: 1px solid rgba(212,165,116,.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212,165,116,.42);
}

.btn--ghost {
  background: rgba(255,255,255,.78);
  color: rgba(27,59,95,.95);
  border: 1px solid rgba(27,59,95,.14);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(212,165,116,.35);
  box-shadow: 0 12px 34px rgba(27,59,95,.10);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold-champagne));
  color: var(--navy-deep);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 16px 45px rgba(214,176,122,0.35);
}

.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 22px 60px rgba(214,176,122,0.45); 
  filter: brightness(0.98) saturate(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1.2rem 3rem;
  border: 2px solid var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover { 
  background: var(--white); 
  color: var(--primary); 
}

/* ============================================
   TYPOGRAPHY & HEADINGS
   ============================================ */

.section-title,
h2.section-title {
  font-family: 'Crimson Pro', serif;
  font-size: 3rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title::after,
.h2::after {
  content:"";
  display:block;
  width:78px;
  height:3px;
  margin-top:.55rem;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(212,165,116,1), rgba(212,165,116,.15));
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(27,59,95,.98);
  margin-bottom: .6rem;
}

.h2::after {
  content:"";
  display:block;
  width: 60px;
  height: 2px;
  margin-top: .55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212,165,116,1), rgba(212,165,116,.12));
}

/* ============================================
   SECTION WRAPPERS & CONTAINERS
   ============================================ */

section {
  width: 100%;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.35rem;
}

.services-container,
.why-us-container,
.team-container,
.before-after-container,
.reviews-container,
.areas-container,
.cta-content {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.seo-content {
  width: 100%;
  margin: 0;
  padding: 6rem 0;
}

.seo-content > * {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  box-sizing: border-box !important;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services { 
  padding: 6rem 2rem; 
}

.services-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 2.5rem; 
}

@media (min-width: 640px) { 
  .services-grid { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  } 
}

@media (min-width: 1024px) { 
  .services-grid { 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
  } 
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62));
  border: 1px solid rgba(214,176,122,0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 70px rgba(11,28,45,0.10);
  padding: 3rem 2.5rem;
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.service-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 28px 90px rgba(11,28,45,0.16); 
}

.service-card:hover::before { 
  height: 100%; 
}

.service-icon { 
  font-size: 3rem; 
  margin-bottom: 1.5rem; 
  display: block; 
}

.service-card h3 { 
  font-family: 'Crimson Pro', serif; 
  font-size: 1.8rem; 
  color: var(--primary); 
  margin-bottom: 1rem; 
  line-height: 1.3;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none !important;
}

.service-card p { 
  color: var(--text-light); 
  line-height: 1.7; 
  margin-bottom: 1.5rem; 
  flex: 1; 
  font-size: 1.05rem;
}

.service-card ul { 
  list-style: none; 
  margin-bottom: 1.5rem; 
}

.service-card ul li { 
  color: var(--text-light); 
  padding: 0.5rem 0; 
  padding-left: 1.5rem; 
  position: relative; 
}

.service-card ul li::before { 
  content: '✓'; 
  position: absolute; 
  left: 0; 
  color: var(--gold); 
  font-weight: bold; 
}

.service-link,
.service-card a {
  color: var(--accent);
  text-decoration: none !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease, color 0.3s ease;
  border-bottom: none !important;
}

.service-link:hover,
.service-card a:hover { 
  gap: 1rem;
  color: var(--accent-dark);
  text-decoration: none !important;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us { 
  padding: 6rem 2rem; 
}

.features-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 3rem; 
  margin-top: 4rem; 
}

@media (min-width: 640px) { 
  .features-grid { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  } 
}

@media (min-width: 1024px) { 
  .features-grid { 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
  } 
}

.feature { 
  height: 100%; 
  display: flex; 
  flex-direction: column; 
  text-align: center; 
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.feature h3 { 
  font-family: 'Crimson Pro', serif; 
  font-size: 1.5rem; 
  color: var(--primary); 
  margin-bottom: 1rem; 
}

.feature p { 
  color: var(--text-light); 
  line-height: 1.7; 
  flex: 1; 
  font-size: 1.05rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section { 
  padding: 6rem 2rem; 
}

.team-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 3rem 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  height: 500px;
}

.team-image-wrapper img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 58, 82, 0.95), rgba(26, 58, 82, 0.7));
  padding: 2.5rem;
}

.team-stats-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
  max-width: 600px; 
  margin: 0 auto; 
}

.team-stat { 
  text-align: center; 
  color: var(--white); 
}

.team-stat-number { 
  display: block; 
  font-family: 'Crimson Pro', serif; 
  font-size: 2.5rem; 
  font-weight: 700; 
  color: var(--gold); 
  line-height: 1; 
  margin-bottom: 0.5rem; 
}

.team-stat-label { 
  display: block; 
  font-size: 1rem; 
  opacity: 0.95; 
}

.team-description { 
  max-width: 900px; 
  margin: 2rem auto 0; 
  text-align: center; 
}

.team-description p { 
  font-size: 1.1rem; 
  line-height: 1.8; 
  color: var(--text-light); 
}

/* ============================================
   AREAS SECTION
   ============================================ */

.areas { 
  padding: 6rem 2rem; 
}

.areas h2 { 
  font-family: 'Crimson Pro', serif; 
  font-size: 3rem; 
  text-align: center; 
  margin-bottom: 1rem; 
}

.areas-subtitle { 
  text-align: center; 
  opacity: 0.9; 
  font-size: 1.2rem; 
  margin-bottom: 3rem; 
}

.areas-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 1.5rem; 
}

.area-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.area-item:hover { 
  background: rgba(255, 255, 255, 0.15); 
  transform: translateY(-5px); 
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section { 
  padding: 6rem 2rem; 
  text-align: center; 
}

.cta-section h2 { 
  font-family: 'Crimson Pro', serif; 
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  margin-bottom: 1.5rem; 
}

.cta-section p { 
  font-size: 1.3rem; 
  margin-bottom: 2.5rem; 
  opacity: 0.95; 
}

.cta-form { 
  display: flex; 
  gap: 1rem; 
  max-width: 600px; 
  margin: 0 auto; 
  flex-wrap: wrap; 
  justify-content: center; 
}

.cta-form input { 
  flex: 1; 
  min-width: 250px; 
  padding: 1.2rem 1.5rem; 
  border: none; 
  border-radius: 50px; 
  font-size: 1rem; 
  font-family: 'Source Sans 3', sans-serif; 
}

.cta-form button {
  padding: 1.2rem 3rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Sans 3', sans-serif;
}

.cta-form button:hover { 
  background: var(--primary-light); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(0,0,0,0.2); 
}

.cta-form-desktop { 
  max-width: 700px; 
  margin: 0 auto; 
  display: none; 
}

@media (min-width: 969px) { 
  .cta-form-desktop { 
    display: block; 
  } 
  .cta-form { 
    display: none; 
  }
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1rem; 
  margin-bottom: 1rem; 
}

.cta-form-desktop input,
.cta-form-desktop select,
.cta-form-desktop textarea {
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--text);
}

.cta-form-desktop select { 
  cursor: pointer; 
}

.cta-form-desktop textarea { 
  width: 100%; 
  resize: vertical; 
  min-height: 120px; 
  margin-bottom: 1rem; 
}

.cta-form-desktop button {
  width: 100%;
  padding: 1.4rem 3rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Sans 3', sans-serif;
}

.cta-form-desktop button:hover { 
  background: var(--primary-light); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.3); 
}

.photo-upload-wrapper { 
  margin-bottom: 1.5rem; 
}

.photo-upload-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 2px dashed var(--gold);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.photo-upload-label:hover { 
  background: rgba(212, 165, 116, 0.05); 
  border-color: var(--accent-dark); 
  transform: translateY(-1px); 
}

.photo-upload-icon { 
  font-size: 2rem; 
}

.photo-upload-text { 
  display: flex; 
  flex-direction: column; 
  gap: 0.3rem; 
}

.photo-upload-text strong { 
  color: var(--primary); 
  font-size: 1rem; 
}

.photo-upload-text small { 
  color: var(--text-light); 
  font-size: 0.9rem; 
}

.photo-upload-input { 
  display: none; 
}

.photo-upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.photo-preview-item { 
  position: relative; 
  border-radius: 8px; 
  overflow: hidden; 
  aspect-ratio: 1; 
  border: 2px solid var(--gold); 
}

.photo-preview-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.photo-preview-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.photo-preview-remove:hover { 
  background: rgba(0, 0, 0, 0.9); 
}

/* ============================================
   FOOTER
   ============================================ */

footer { 
  background: #0f1e29; 
  color: var(--white); 
  padding: 4rem 2rem 2rem; 
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 { 
  font-family: 'Crimson Pro', serif; 
  font-size: 1.5rem; 
  margin-bottom: 1.5rem; 
  color: var(--gold); 
}

.footer-section ul { 
  list-style: none; 
}

.footer-section ul li { 
  margin-bottom: 0.8rem; 
}

.footer-section a { 
  color: rgba(255, 255, 255, 0.8); 
  text-decoration: none; 
  transition: color 0.3s ease; 
}

.footer-section a:hover { 
  color: var(--gold); 
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SECTION BACKGROUNDS (Navy & Gold)
   ============================================ */

.section-navy {
  background: var(--bg-navy-gradient) !important;
  color: white !important;
  padding: 6rem 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.section-navy::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: 
    radial-gradient(circle at 15% 20%, rgba(214,176,122,0.15), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(214,176,122,0.08), transparent 50%) !important;
  pointer-events: none !important;
}

.section-navy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 1;
}

.section-navy .section-title,
.section-navy h2 {
  color: var(--gold-warm) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25) !important;
  font-size: clamp(1.4rem, 5vw, 2.4rem) !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.section-navy .section-subtitle,
.section-navy p {
  color: rgba(255,255,255,0.88) !important;
}

.section-navy .service-card,
.section-navy .feature {
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,0.22) !important;
}

.section-navy .service-card h3,
.section-navy .feature h3 {
  color: #ffffff !important;
}

.section-navy .service-card p,
.section-navy .feature p,
.section-navy .service-card ul li {
  color: rgba(255,255,255,0.85) !important;
}

.section-navy .service-card ul li::before {
  background: var(--gold-warm) !important;
  color: var(--gold-warm) !important;
}

.section-navy .service-link {
  color: var(--gold-champagne) !important;
  text-decoration: none !important;
}

.section-navy .service-link:hover {
  color: #ffffff !important;
}

.section-gold {
  background: var(--bg-gold-gradient) !important;
  color: var(--navy-deep) !important;
  border-top: 1px solid rgba(198,169,107,0.18);
  border-bottom: 1px solid rgba(198,169,107,0.18);
  padding: 6rem 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.section-gold::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(198,169,107,0.12), transparent 58%),
    radial-gradient(circle at 88% 78%, rgba(198,169,107,0.08), transparent 62%),
    radial-gradient(circle at 50% 120%, rgba(15,27,45,0.05), transparent 55%) !important;
  opacity: 1;
  pointer-events: none !important;
}

.section-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.section-gold .section-title,
.section-gold h2 {
  color: var(--navy-deep) !important;
  text-shadow: none !important;
  font-size: clamp(1.4rem, 5vw, 2.4rem) !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}
.section-gold .section-subtitle,
.section-gold p {
  color: rgba(11,21,36,0.78) !important;
}

.section-gold .service-card,
.section-gold .feature,
.section-gold details {
  background: rgba(255,255,255,0.86) !important;
  border: 1px solid var(--lux-stroke-2) !important;
  box-shadow: 0 14px 40px rgba(11,21,36,0.10) !important;
}

.section-gold .service-card h3,
.section-gold .feature h3,
.section-gold details summary {
  color: var(--navy-primary) !important;
}

.section-gold .service-card ul li::before,
.section-gold details summary span:last-child {
  background: var(--gold-warm) !important;
  color: var(--gold-warm) !important;
}

.section-gold .service-link {
  color: var(--navy-primary) !important;
  text-decoration: none !important;
}

.section-gold .service-link:hover {
  color: var(--navy-light) !important;
}

/* ============================================
   FORM STYLING IN SECTIONS
   ============================================ */

.section-gold input,
.section-gold select,
.section-gold textarea {
  background: rgba(255,255,255,0.92) !important;
  color: var(--navy-deep) !important;
  border: 1px solid rgba(15,27,45,0.18) !important;
}

.section-navy input,
.section-navy select,
.section-navy textarea {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}

.section-navy input::placeholder,
.section-navy textarea::placeholder {
  color: rgba(255,255,255,0.70) !important;
}

.cta-section.section-navy .cta-form-desktop button {
  background: #C9973B !important;
  color: #0B1C2D !important;
}

.cta-section.section-navy .cta-form-desktop button:hover {
  background: #D6B07A !important;
}

.cta-section.section-navy .photo-upload-label {
  background: rgba(255,255,255,0.1) !important;
  border-color: #E7D2AE !important;
}

.cta-section.section-navy .photo-upload-text strong {
  color: #E7D2AE !important;
}

.cta-section.section-navy .photo-upload-text small {
  color: rgba(255,255,255,0.7) !important;
}

/* ============================================
   DETAILS / FAQ
   ============================================ */

details {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

details:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

details summary {
  font-family: 'Crimson Pro', serif;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  margin-bottom: 1.5rem;
}

details p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ============================================
   CARDS & PREMIUM ELEMENTS
   ============================================ */

.card, 
.service-card, 
.reference-card, 
.step-card {
  border: 1px solid rgba(27,59,95,.10);
  box-shadow: 0 18px 55px rgba(27,59,95,.12);
}

.card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(27,59,95,.10);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 22px 60px rgba(27,59,95,.12);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 76px rgba(27,59,95,.14);
}

/* ============================================
   FOCUS & ACCESSIBILITY
   ============================================ */

:focus-visible {
  outline: 3px solid rgba(212,165,116,.55);
  outline-offset: 3px;
  border-radius: 14px;
}

.nav__link:focus-visible,
.dropdown__link:focus-visible,
.drawer__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 968px) {
  /* Nav: Logo | CTAs (☎ + Beratung) | Burger – kein Overlap möglich */
  .nav {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 64px;
    gap: 0;
  }

  .brand {
    flex: 1;           /* Logo nimmt verfügbaren Platz */
    min-width: 0;
  }

  .brand__name {
    font-size: 1.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Desktop-Links ausblenden */
  .nav__links { 
    display: none; 
  }

  /* CTAs: Telefon-Icon + Beratungsbutton nebeneinander, rechts vom Logo */
  .nav__ctas {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }

  /* Nur Telefon-Icon zeigen, Text ausblenden */
  .nav__phone-text {
    display: none;
  }

  .nav__phone {
    padding: 0.55rem 0.7rem;
    min-height: 42px;
    font-size: 1rem;
  }

  .nav__primaryCta {
    font-size: 0.82rem;
    padding: 0.55rem 0.8rem;
    min-height: 42px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(214,176,122,.3);
  }

  /* Hamburger ganz rechts */
  .nav__burger { 
    display: flex;
    margin-left: 0.35rem;
    flex-shrink: 0;
  }

  /* Body-padding wegen fixem Header */
  body { 
    padding-top: 64px;
    padding-bottom: 0;
  }

  .section-gold,
  .section-navy {
    padding: 4rem 0 !important;
  }
  
  .services-container,
  .why-us-container,
  .before-after-container,
  .cta-content,
  .seo-content > * {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .services,
  .why-us,
  .seo-content,
  .cta-section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .dropdown__grid { 
    grid-template-columns: 1fr; 
  }
  
  .section-gold,
  .section-navy {
    padding: 3rem 0 !important;
  }
  
  .services-container,
  .why-us-container,
  .before-after-container,
  .cta-content,
  .seo-content > * {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .cta-form { 
    flex-direction: column; 
  }
  
  .cta-form input { 
    min-width: 100%; 
  }
  
  .team-image-wrapper { 
    height: 300px; 
  }
  
  .team-stats-grid { 
    grid-template-columns: repeat(3,1fr); 
    gap: 0.75rem; 
  }
  
  .services,
  .why-us,
  .seo-content,
  .cta-section {
    padding: 3rem 1rem;
  }
}

/* Sehr kleine Phones: Beratungsbutton ausblenden, nur ☎-Icon + Burger */
@media (max-width: 380px) {
  .nav__primaryCta {
    display: none;
  }
  .brand__name {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-bottom-cta,
  .mobile-bottom-cta a,
  .card,
  .btn,
  .service-card { 
    transition: none !important; 
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp { 
  from { opacity: 0; transform: translateY(30px);} 
  to { opacity: 1; transform: translateY(0);} 
}

@keyframes fadeInRight { 
  from { opacity: 0; transform: translateX(50px);} 
  to { opacity: 1; transform: translateX(0);} 
}

/* =========================================================
   HERO (NO-SCROLL / ABOVE THE FOLD)
   - passt in 1 Screen (Desktop)
   - berücksichtigt Sticky Header
   - Inhalt höher (kein Scrollen)
   ========================================================= */

:root{
  --header-h: 72px; /* Muss mit body padding-top übereinstimmen */
}

.hero{
  position: relative;
  height: calc(100svh - var(--header-h));   /* ✅ passt genau in den Screen */
  min-height: 560px;                        /* Sicherheitsnetz */
  max-height: 820px;                        /* verhindert “zu groß” auf Ultra-Wide */

  display: grid;
  align-items: center;

  background:
    linear-gradient(135deg,
      rgba(11,28,45,0.22) 0%,
      rgba(16,43,69,0.14) 55%,
      rgba(27,75,117,0.18) 100%
    ),
    url("../img/hero-sanierung-muenchen.webp");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;

  color: #fff;
  overflow: hidden;
  /* isolation: isolate entfernt – würde Drawer verdecken */

  /* ✅ weniger padding => Content höher */
  padding: clamp(3.8rem, 5vw, 5.2rem) 2rem clamp(2.2rem, 3.2vw, 3rem);
}

/* dezentes Pattern */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 28%, rgba(11,28,45,0.14), transparent 55%),
    radial-gradient(circle at 82% 72%, rgba(11,28,45,0.10), transparent 55%);
  pointer-events:none;
  z-index:0;
}

.hero-container{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  position: relative;
  z-index: 1;

  /* ✅ Content etwas nach oben “ziehen” */
  transform: translateY(-2.5vh);

  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

/* Badge */
.hero-badge{
  display: inline-flex;              /* ⬅️ wichtig */
  width: fit-content;                /* ⬅️ nur so breit wie Inhalt */
  align-items: center;
  gap: .55rem;

  padding: .45rem .9rem;             /* ⬅️ kleiner & enger */
  background: rgba(198,169,107,0.22);
  border: 1px solid rgba(198,169,107,0.42);
  border-radius: 999px;

  font-size: .88rem;
  font-weight: 800;
  color: var(--gold-champagne);

  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}


/* Title (kompakter) */
.hero-title{
  font-family: "Crimson Pro", serif;
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: .1rem 0 .1rem;
  text-shadow:
    0 2px 10px rgba(0,0,0,.55),
    0 8px 26px rgba(0,0,0,.35);
}

/* Text-Container für bessere Lesbarkeit */
.hero-textbox{
  width: fit-content;
  max-width: 820px;

  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;

  background: rgba(11,28,45,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;

  backdrop-filter: blur(14px);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.35),
    0 1px 0 rgba(255,255,255,0.08) inset;
}

.hero-subtitle{
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 700;
  color: var(--gold-champagne);
  line-height: 1.35;
  max-width: 760px;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
  margin-bottom: .35rem;
}

.hero-description{
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 760px;
  margin-bottom: .3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.40);
}

/* Buttons (kompakter, aber premium) */
.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap: 1rem;
  margin-top: .6rem;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.65rem;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration:none;
  min-height: 52px;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.hero-btn--primary{
  background: linear-gradient(135deg, var(--gold-warm), var(--gold-champagne));
  color: var(--navy-deep);
  border: 2px solid transparent;
}
.hero-btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(198,169,107,.45);
  filter: brightness(1.03);
}

.hero-btn--secondary{
  background: rgba(255,255,255,0.14);
  color:#fff;
  border: 2px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(10px);
}
.hero-btn--secondary:hover{
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.58);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

/* Trust pills (kleiner, damit alles in 1 Screen passt) */
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap: .75rem;
  margin-top: .9rem;
}

.hero-trust-item{
  display:flex;
  align-items:center;
  gap:.55rem;
  padding: .5rem .85rem;
  font-size: .92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  background: rgba(11,28,45,0.46);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* Stats (kompakter) */
.hero-stats{
  margin-top: 1.1rem;
  max-width: 720px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.hero-stat{
  text-align:center;
  padding: 1.05rem .85rem;
  background: rgba(11,28,45,0.50);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.hero-stat-number{
  display:block;
  font-family:"Crimson Pro", serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--gold-champagne);
  line-height: 1;
  margin-bottom: .35rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.hero-stat-label{
  display:block;
  font-size: .92rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.40);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px){
  .hero{
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 6.2rem 2rem 3.5rem;
  }
  .hero-container{ transform: none; }
}

@media (max-width: 768px){
  .hero{
    padding: 5.4rem 1.25rem 3rem;
  }
  .hero-buttons{ flex-direction: column; }
  .hero-btn{ width: 100%; }
  .hero-stats{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  .hero-btn{ transition:none !important; }
}

/* =========================================================
   PREMIUM BEFORE/AFTER SLIDER (Reusable)
   Prefix: ba2-
   ========================================================= */

.ba2-section{
  padding: 4.5rem 2rem;
}

.ba2-wrap{
  max-width: 1000px;
  margin: 0 auto;
}

.ba2-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 1.25rem;
  margin-bottom: 1.6rem;
}

.ba2-title{
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  color: var(--primary);
  margin: 0;
}

.ba2-sub{
  margin: .6rem 0 0 0;
  color: var(--text-light);
  max-width: 70ch;
}

.ba2-pills{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  justify-content:flex-end;
}

.ba2-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.45rem .78rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(16,43,69,0.12);
  box-shadow: 0 10px 26px rgba(11,28,45,0.08);
  color: rgba(16,43,69,0.92);
  backdrop-filter: blur(8px);
}

/* Card */
.ba2-card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(16,43,69,0.12);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 26px 80px rgba(11,28,45,0.14);
  backdrop-filter: blur(10px) saturate(1.06);
}

/* Slider Stage */
.ba2-slider{
  position: relative;
  height: clamp(420px, 55vw, 620px);
  background: rgba(11,28,45,0.08);
  --pos: 50%;
  touch-action: none;
  user-select: none;
}

.ba2-slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  pointer-events:none;
  -webkit-user-drag:none;
}

.ba2-after{
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

/* Labels */
.ba2-label{
  position:absolute;
  top: 14px;
  padding: .42rem .8rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .2px;
  background: rgba(11,28,45,0.72);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.95);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  z-index: 5;
}
.ba2-label--before{ left: 14px; }
.ba2-label--after{ right: 14px; }

/* Divider line + knob */
.ba2-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.95);
  z-index: 5;
}

.ba2-knob {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  z-index: 6;
}

.ba2-knob svg{
  width: 26px;
  height: 26px;
  color: rgba(11,21,36,0.92);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

/* Invisible range */
.ba2-range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor: ew-resize;
  z-index: 10;
}

/* Optional caption */
.ba2-foot{
  padding: 1rem 1.2rem 1.25rem;
  border-top: 1px solid rgba(16,43,69,0.10);
  color: rgba(16,43,69,0.80);
  font-weight: 600;
  background: rgba(255,255,255,0.55);
}

/* Referenzen: grid for multiple sliders */
.ba2-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 980px){
  .ba2-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .ba2-slider{
    height: 360px;
  }
  .ba2-head{
    align-items:center;
  }
}

@media (max-width: 768px){
  .ba2-head{
    flex-direction: column;
    align-items:flex-start;
  }
  .ba2-pills{
    justify-content:flex-start;
  }
}

/* ===============================
   BEFORE / AFTER SLIDER – FIX
   =============================== */

.ba2 {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

/* Bilder */
.ba2 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none; /* ⬅️ WICHTIG */
}

/* Nachher-Bild */
.ba2-after {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}


/* Range Input = INTERAKTION */
.ba2-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;              /* unsichtbar */
  cursor: ew-resize;
  z-index: 10;             /* ⬅️ ÜBER den Bildern */
}

/* =========================================
   HARD FIX: Slider IMMER interaktiv
   ========================================= */

.ba2,
.ba2 * {
  pointer-events: auto !important;
}

.ba2-range {
  pointer-events: auto !important;
  z-index: 9999 !important;
  cursor: ew-resize !important;
}

/* Sicherstellen, dass Overlays NICHT blockieren */
.hero::before,
.hero::after,
.section-gold::before,
.section-gold::after {
  pointer-events: none !important;
}

/* WHY-US override – ans ENDE der style.css */
.why-us .features-grid{
  display:grid !important;
  grid-template-columns: repeat(1, minmax(0,1fr)) !important;
  gap: 1.25rem !important;
  margin-top: 1.25rem !important;
}

@media (min-width:700px){
  .why-us .features-grid{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 1.35rem !important; }
}
@media (min-width:1024px){
  .why-us .features-grid{ grid-template-columns: repeat(3, minmax(0,1fr)) !important; gap: 1.5rem !important; }
}

.why-us .feature{
  border-radius: 22px !important;
  padding: 1.55rem 1.55rem 1.85rem !important;
  background: rgba(255,255,255,.82) !important;
  border: 1px solid rgba(10,20,35,.10) !important;
  box-shadow:
    0 24px 60px rgba(10,20,35,.10),
    0 10px 24px rgba(10,20,35,.06),
    0 1px 0 rgba(255,255,255,.75) inset !important;
  backdrop-filter: blur(6px) !important;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
  overflow:hidden !important;
  position:relative !important;
}

.why-us .feature::before{
  content:"" !important;
  position:absolute !important;
  inset:-1px !important;
  background:
    radial-gradient(600px 220px at 18% 0%, rgba(212,165,116,.18), transparent 55%),
    radial-gradient(500px 220px at 105% 0%, rgba(27,59,95,.10), transparent 60%) !important;
  opacity:.75 !important;
  pointer-events:none !important;
}

.why-us .feature:hover{
  transform: translateY(-6px) !important;
  border-color: rgba(10,20,35,.14) !important;
  box-shadow:
    0 34px 86px rgba(10,20,35,.14),
    0 14px 34px rgba(10,20,35,.08),
    0 1px 0 rgba(255,255,255,.78) inset !important;
}

.why-us .feature-icon{
  width: 52px !important;
  height: 52px !important;
  border-radius: 16px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size: 1.35rem !important;
  background: linear-gradient(180deg, rgba(245,238,224,.95), rgba(255,255,255,.85)) !important;
  border: 1px solid rgba(10,20,35,.10) !important;
  box-shadow: 0 14px 30px rgba(10,20,35,.10) !important;
  margin-bottom: 1.05rem !important;
  z-index:1 !important;
  position:relative !important;
}

.why-us .feature h3{
  font-family:'Crimson Pro', serif !important;
  font-weight: 700 !important;
  font-size: 1.22rem !important;
  line-height: 1.2 !important;
  margin: 0 0 .55rem 0 !important;
  color: rgba(10,20,35,.92) !important;
  position:relative !important;
  z-index:1 !important;
}

.why-us .feature p{
  margin: 0 !important;
  font-size: 1.02rem !important;
  line-height: 1.7 !important;
  color: rgba(10,20,35,.72) !important;
  position:relative !important;
  z-index:1 !important;
}

.seo-content .container {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.seo-intro .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
}

.seo-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #c5a572;
}

.benefit-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.seo-content {
  position: relative;
  overflow: hidden;
}

/* SEO Text versteckt aber vorhanden */
.seo-background-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.premium-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.premium-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(197, 165, 114, 0.2);
  backdrop-filter: blur(10px);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #c5a572 0%, transparent 50%, #c5a572 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 60px rgba(197, 165, 114, 0.2),
    0 0 0 1px rgba(197, 165, 114, 0.1);
}

.premium-card:hover::before {
  opacity: 1;
}

.card-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c5a572, transparent);
  border-radius: 3px;
}

.premium-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c5a572 0%, #d4b886 100%);
  border-radius: 50%;
  color: white;
  box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
  transition: transform 0.4s ease;
}

.premium-card:hover .premium-icon {
  transform: scale(1.1) rotate(5deg);
}

.premium-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.premium-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
}

.premium-divider {
  text-align: center;
  margin: 3rem 0;
}

.divider-ornament {
  font-size: 1.5rem;
  color: #c5a572;
  letter-spacing: 1rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-showcase {
    padding: 3rem 1rem;
  }
  
  .premium-grid {
    gap: 2rem;
  }
  
  .premium-card {
    padding: 2rem 1.5rem;
  }
}

.premium-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem; /* Reduziert von 5rem */
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; /* Reduziert von 3rem */
  margin-bottom: 2rem; /* Reduziert von 4rem */
}

.premium-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-radius: 16px;
  padding: 2rem 1.5rem; /* Reduziert von 3rem 2rem */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(197, 165, 114, 0.2);
  backdrop-filter: blur(10px);
}

.premium-icon {
  width: 64px; /* Reduziert von 80px */
  height: 64px;
  margin: 0 auto 1.5rem; /* Reduziert von 2rem */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c5a572 0%, #d4b886 100%);
  border-radius: 50%;
  color: white;
  box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
  transition: transform 0.4s ease;
}

.premium-icon svg {
  width: 40px; /* Icon auch etwas kleiner */
  height: 40px;
}

.premium-card h3 {
  font-size: 1.35rem; /* Leicht reduziert von 1.5rem */
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem; /* Reduziert von 1rem */
  letter-spacing: 0.5px;
}

.premium-card p {
  font-size: 0.95rem; /* Leicht reduziert von 1rem */
  line-height: 1.7; /* Reduziert von 1.8 */
  color: #555;
  font-weight: 300;
}

.premium-divider {
  text-align: center;
  margin: 2rem 0; /* Reduziert von 3rem */
}

/* ── Hamburger-Button ──────────────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1),
              opacity 200ms ease,
              width 300ms ease;
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 899px) {
  .nav__burger { display: flex; }
  .nav__links  { display: none !important; }
  .nav__ctas   { display: none !important; }
}
#sm-drawer {
  visibility: hidden;
  pointer-events: none;
}
#sm-drawer[data-open="true"] {
  visibility: visible;
  pointer-events: auto;
}
#sm-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 10000;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: background 320ms ease;
}
#sm-drawer[data-open="true"] #sm-drawer__backdrop {
  background: rgba(0,0,0,0.52);
}
#sm-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 380px);
  z-index: 10001;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  box-shadow: -8px 0 48px rgba(0,0,0,0.18);
  transform: translateX(105%);
  transition: transform 340ms cubic-bezier(0.4,0,0.2,1);
}
#sm-drawer[data-open="true"] #sm-drawer__panel {
  transform: translateX(0);
}
.sm-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(10,20,35,0.10);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.sm-drawer__brand {
  font-family: 'Crimson Pro', 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1C2D;
  letter-spacing: -0.01em;
}
.sm-drawer__brand span { color: #c6a96b; }
.sm-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(10,20,35,0.06);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #0B1C2D;
  transition: background 150ms ease;
}
.sm-drawer__close:hover { background: rgba(10,20,35,0.12); }
.sm-drawer__ctas {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(10,20,35,0.10);
}
.sm-drawer__phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.1rem;
  border-radius: 12px;
  background: rgba(10,20,35,0.05);
  color: #0B1C2D;
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  border: 1px solid rgba(10,20,35,0.12);
  transition: background 150ms ease;
}
.sm-drawer__phone:hover { background: rgba(10,20,35,0.10); }
.sm-drawer__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg,#0B1C2D,#1a3a5c);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .97rem;
  transition: opacity 150ms ease, transform 150ms ease;
}
.sm-drawer__cta-btn:hover { opacity: .92; transform: translateY(-1px); }
.sm-drawer__links {
  list-style: none;
  margin: 0;
  padding: .6rem 0 2rem;
}
.sm-drawer__links li { margin: 0; }
.sm-drawer__link {
  display: block;
  padding: .88rem 1.4rem;
  color: #0B1C2D;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(10,20,35,0.06);
  transition: background 140ms ease, color 140ms ease;
}
.sm-drawer__link:hover { background: rgba(10,20,35,0.04); }
.sm-drawer__link--strong {
  color: #c6a96b;
  font-weight: 700;
}
.sm-drawer__accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .88rem 1.4rem;
  border: none;
  background: transparent;
  color: #0B1C2D;
  font-size: 1.02rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid rgba(10,20,35,0.06);
  transition: background 140ms ease;
  text-align: left;
}
.sm-drawer__accordion:hover { background: rgba(10,20,35,0.04); }
.sm-drawer__accordion-icon {
  font-size: .8rem;
  transition: transform 280ms ease;
  color: rgba(10,20,35,0.45);
}
.sm-drawer__accordion[aria-expanded="true"] .sm-drawer__accordion-icon {
  transform: rotate(180deg);
}
.sm-drawer__sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms cubic-bezier(0.4,0,0.2,1);
  background: rgba(10,20,35,0.025);
}
.sm-drawer__sub.is-open {
  max-height: 600px;
}
.sm-drawer__sublink {
  display: block;
  padding: .72rem 1.4rem .72rem 2.2rem;
  color: rgba(10,20,35,0.72);
  text-decoration: none;
  font-size: .97rem;
  border-bottom: 1px solid rgba(10,20,35,0.05);
  transition: background 130ms ease, color 130ms ease;
}
.sm-drawer__sublink:hover {
  background: rgba(10,20,35,0.06);
  color: #0B1C2D;
}
.sm-drawer__sublink::before {
  content: "↳ ";
  color: #c6a96b;
  font-size: .85rem;
}
body.sm-drawer-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}


.cta-section h2 {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  overflow: visible !important;
  white-space: normal !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.cta-content {
  overflow: visible !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}


@media (max-width: 640px) {
  .cta-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .cta-content {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    overflow: visible !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-section h2 {
    font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    padding: 0 !important;
    width: 100% !important;
  }
}

/* Dropdown-Optionen lesbar machen auf blauem Hintergrund */
select option {
  background-color: #ffffff;
  color: #333333;
}



/* ============================================================
   FIXES.CSS (integriert)
   ============================================================ */

/* ===== DRAWER ===== */
.drawer {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  pointer-events: none !important;
}

.drawer[data-open="true"] {
  pointer-events: auto !important;
  display: block !important;
}

.drawer__panel {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(85vw, 360px) !important;
  height: 100% !important;
  z-index: 2 !important;
  overflow-y: auto !important;
  background: #fff !important;
  box-shadow: -8px 0 40px rgba(0,0,0,0.22) !important;
  display: flex !important;
  flex-direction: column !important;
}

.drawer__backdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0,0,0,0.55) !important;
  border: none !important;
  cursor: pointer !important;
  z-index: 1 !important;
}

.drawer__body {
  flex: 1 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 1rem 1.1rem 2rem !important;
}

/* ===== Z-INDEX FIXES ===== */
.hero,
.hero::before,
.hero::after,
.section-gold::before,
.section-gold::after,
.section-navy::before,
.section-navy::after {
  z-index: auto !important;
}

.site-header {
  z-index: 500 !important;
}

/* ===== HAMBURGER ===== */
@media (max-width: 968px) {
  .nav__burger {
    display: flex !important;
  }
}

.nav__burger {
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(27, 59, 95, 0.25) !important;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(27, 59, 95, 0.10) !important;
  padding: 10px !important;
  cursor: pointer !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  transition: all 0.2s ease !important;
}

.nav__burger span {
  display: block !important;
  width: 22px !important;
  height: 2.5px !important;
  background: #1B3B5F !important;
  border-radius: 3px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav__burger[aria-expanded="true"] span {
  background: #C6A96B !important;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg) !important;
}

.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg) !important;
}

/* ===== CTA ===== */
.cta-section h2 {
  font-size: clamp(1.7rem, 4vw, 3.2rem) !important;
  line-height: 1.25 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  padding: 0 1rem !important;
}

.cta-section,
.cta-content {
  overflow: visible !important;
}

@font-face {
  font-family: "Syne";
  src: url("/assets/fonts/Syne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("/assets/fonts/Syne-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("/assets/fonts/Syne-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("/assets/fonts/Syne-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("/assets/fonts/Syne-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/InstrumentSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/InstrumentSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/InstrumentSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  src: url("/assets/fonts/InstrumentSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  background: #fff;
  border-top: 2px solid #c9a96e;
  padding: 16px 32px;

  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;

  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  font-family: sans-serif;

  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#cookieBanner.show {
  transform: translateY(0);
}

#cookieBanner.hide {
  transform: translateY(100%);
}

#cookieBanner p {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-actions button:first-child {
  background: #1e3a5f;
  color: #fff;
  border: none;
}

.cookie-actions button:last-child {
  background: transparent;
  color: #1e3a5f;
  border: 2px solid #c9a96e;
}

 