html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #fbf9f8;
    }

    section {
      scroll-margin-top: 72px;
    }

    body.no-scroll {
      overflow: hidden;
    }

    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    }

    .gold-gradient {
      background: linear-gradient(135deg, #d4af37 0%, #f9e29c 50%, #b8860b 100%);
    }

    .soft-gold-gradient {
      background: radial-gradient(circle at top left, #fffcf5 0%, #fbf9f8 100%);
    }

    .process-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid transparent;
      background: linear-gradient(135deg, #d4af37, transparent) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      opacity: 0.1;
      transition: opacity 0.5s ease;
      border-radius: 1rem;
      pointer-events: none;
    }

    .process-card:hover::before {
      opacity: 0.5;
    }

    .menu-overlay {
      opacity: 0;
      pointer-events: none;
    }

    .menu-overlay.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu {
      transform: translateX(-100%);
    }

    .mobile-menu.is-open {
      transform: translateX(0);
    }

    @media (min-width: 768px) {
      .mobile-menu {
        width: 420px;
        max-width: 420px;
      }
    }

/* WhatsApp Chat Modal */
.wa-chat-window {
  width: 100%;
  max-width: 500px;
  height: min(680px, calc(100vh - 40px));
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: all 0.25s ease;
}

#whatsAppModal.is-open .wa-chat-window {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.wa-chat-header {
  background: #075e54;
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-chat-body {
  flex: 1;
  position: relative;
  background-color: #efeae2;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(0,0,0,0.035) 2px, transparent 2px),
    radial-gradient(circle at 60px 70px, rgba(0,0,0,0.035) 2px, transparent 2px),
    radial-gradient(circle at 100px 40px, rgba(0,0,0,0.025) 3px, transparent 3px),
    linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  background-size: 120px 120px;
  padding: 22px 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wa-bubble {
  max-width: 82%;
  background: #ffffff;
  color: #1f2937;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 4px;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 14px;
}

.wa-input-area {
  background: #f0f2f5;
  padding: 10px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.wa-input-area textarea {
  flex: 1;
  min-height: 50px;
  max-height: 120px;
  resize: none;
  border: none;
  outline: none;
  border-radius: 26px;
  padding: 14px 18px;
  font-size: 16px;
  background: white;
  color: #111827;
  box-shadow: none;
}

.wa-input-area textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.wa-send-button {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 9999px;
  background: #075e54;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.wa-send-button:hover {
  background: #064c44;
  transform: scale(1.04);
}

.wa-powered {
  background: #ffffff;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  border-top: 1px solid #eeeeee;
}

.wa-powered span {
  color: #075e54;
  font-weight: 700;
}
/* =========================
   Scroll Reveal Animations
========================= */

.reveal {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.from-left {
  transform: translateX(-90px);
}

.reveal.from-right {
  transform: translateX(90px);
}

.reveal.from-top {
  transform: translateY(-70px);
}

.reveal.from-bottom {
  transform: translateY(70px);
}

.reveal.zoom-in {
  transform: scale(0.92);
}

.reveal.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* Animación más suave para tarjetas */
#ankauf .group.reveal,
.process-card.reveal {
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

/* Respeta usuarios que prefieren menos animación */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   Floating Contact Buttons
========================= */

.floating-contact-buttons {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.floating-contact-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.floating-contact-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.floating-contact-btn:active {
  transform: scale(0.95);
}

.floating-contact-btn .material-symbols-outlined {
  font-size: 29px;
  color: #111111;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Telefon + Mail: dorado premium */
.floating-contact-btn.gold-btn {
  background: linear-gradient(135deg, #f9e29c 0%, #d4af37 45%, #b8860b 100%);
  border: 1px solid rgba(255, 232, 150, 0.9);
}

.floating-contact-btn.gold-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.floating-contact-btn.gold-btn:hover::before {
  opacity: 1;
}

/* WhatsApp bleibt grün, aber etwas edler */
.floating-contact-btn.whatsapp-btn {
  background: #25D366;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.floating-contact-btn.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Kleine Labels beim Hover */
.floating-contact-btn::after {
  content: attr(data-label);
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 8px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-family: Manrope, sans-serif;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.floating-contact-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 640px) {
  .floating-contact-buttons {
    right: 18px;
    bottom: 24px;
    gap: 12px;
  }

  .floating-contact-btn {
    width: 54px;
    height: 54px;
  }

  .floating-contact-btn::after {
    display: none;
  }
}
.floating-contact-btn .call-icon {
  font-size: 31px;
  color: #111111;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.hero-slideshow {
  overflow: hidden;
  background: #f8efe2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 1.5s ease-in-out,
    transform 6.5s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

@media (min-width: 1024px) {
  .hero-slide {
    object-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.6s ease-in-out;
    transform: none !important;
  }

  .hero-slide.is-active {
    transform: none !important;
  }
}
.desktop-nav .nav-link {
  position: relative;
  padding-bottom: 8px;
}

.desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f9e29c, #b8860b);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
  width: 100%;
}

.desktop-nav .nav-link.active {
  color: #d4af37 !important;
}

/* =========================
   Reusable subpage styles
========================= */
.subpage-hero {
  background: radial-gradient(circle at top left, #fffcf5 0%, #fbf9f8 55%, #efeded 100%);
}

.article-prose p {
  margin-bottom: 1rem;
}

.article-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.article-prose li {
  margin-bottom: 0.5rem;
}

