:root {
  --color-black: #000000;
  --color-deep: #0a0a0a;
  --color-panel: rgba(15, 15, 15, 0.78);
  --color-panel-solid: #111111;
  --color-white: #f5f5f5;
  --color-muted: #c9c9c9;
  --color-soft: #8f8f8f;
  --color-gold: #d4af37;
  --color-gold-soft: rgba(212, 175, 55, 0.24);
  --color-line: rgba(212, 175, 55, 0.28);
  --shadow-luxury: 0 28px 80px rgba(0, 0, 0, 0.62);
  --max-width: 1180px;
  --nav-height: 78px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(18px);
  transition: all 0.4s ease;
}

.navbar {
  width: min(100% - 32px, var(--max-width));
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 0.4s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  min-width: 140px;
}

.nav-logo img {
  max-height: 50px;
  width: auto;
  transform-origin: left center;
  transition: max-height 0.4s ease, transform 0.4s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  position: relative;
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 220ms ease, font-size 0.4s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: width 0.4s ease, height 0.4s ease;
}

.site-header.scrolled .navbar {
  min-height: 58px;
}

.site-header.scrolled .nav-logo img {
  max-height: 40px;
  transform: scale(0.92);
}

.site-header.scrolled .nav-menu a {
  font-size: 0.78rem;
}

.site-header.scrolled .nav-menu {
  top: 58px;
}

.site-header.scrolled .nav-toggle {
  width: 42px;
  height: 42px;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-white);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-image: url("../assets/images/hero_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  background-color: var(--color-black);
}

.hero-sparkle-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-sparkle {
  position: absolute;
  width: clamp(10px, var(--sparkle-size, 2.8vw), 132px);
  aspect-ratio: 1;
  color: var(--sparkle-color, rgba(255, 250, 232, 0.94));
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 2%, #fffce8 3%, currentColor 6%, transparent 15%);
  filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 14px rgba(255, 255, 255, 0.38));
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(0.25) rotate(var(--sparkle-rotation, 0deg));
  will-change: transform, opacity;
}

.hero-sparkle::before,
.hero-sparkle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(to bottom, transparent, currentColor 46%, currentColor 54%, transparent);
}

.hero-sparkle::before {
  width: 5%;
  min-width: 1px;
}

.hero-sparkle::after {
  height: 5%;
  min-height: 1px;
  background: linear-gradient(to right, transparent, currentColor 46%, currentColor 54%, transparent);
}

.hero-sparkle.is-active {
  animation: hero-sparkle-glint var(--sparkle-duration, 2400ms) cubic-bezier(0.22, 0.72, 0.3, 1) forwards;
}

@keyframes hero-sparkle-glint {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(var(--sparkle-rotation, 0deg));
  }

  8% {
    opacity: var(--sparkle-opacity, 0.48);
    transform: translate(-50%, -50%) scale(1) rotate(var(--sparkle-rotation, 0deg));
  }

  20% {
    opacity: var(--sparkle-opacity, 0.48);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.38) rotate(calc(var(--sparkle-rotation, 0deg) + 10deg));
  }
}

.section-padding {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  margin: 0 0 clamp(28px, 4vw, 54px);
  color: var(--color-white);
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.quality-grid .reveal:nth-child(1),
.services-grid .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.quality-grid .reveal:nth-child(2),
.services-grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.quality-grid .reveal:nth-child(3),
.services-grid .reveal:nth-child(3) {
  transition-delay: 200ms;
}

.quality-grid .reveal:nth-child(4),
.services-grid .reveal:nth-child(4) {
  transition-delay: 300ms;
}

.quality-grid .reveal:nth-child(5),
.services-grid .reveal:nth-child(5) {
  transition-delay: 400ms;
}

.services-grid .reveal:nth-child(6) {
  transition-delay: 500ms;
}

.quality-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 34rem),
    linear-gradient(180deg, #000000 0%, #070707 100%);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.quality-item {
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transform-style: preserve-3d;
  min-height: 260px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018) 42%, rgba(212, 175, 55, 0.035)),
    rgba(7, 7, 7, 0.52);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.56),
    0 8px 24px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 221, 125, 0.18),
    inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  transition: all 0.3s ease;
}

.quality-item.reveal {
  transition: all 0.8s ease-out;
}

.quality-item.touch-animate {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.58);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 7, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.13), 0 30px 70px rgba(0, 0, 0, 0.56), 0 10px 26px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 221, 125, 0.2), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  animation: serviceCardTilt 2.8s cubic-bezier(0.35, 0, 0.2, 1);
}

.quality-item img {
  width: 74px;
  height: 74px;
  margin-bottom: 20px;
  object-fit: contain;
}

.quality-item h2 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.quality-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.93rem;
}

.services-section {
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.07), transparent 30%, rgba(212, 175, 55, 0.05)),
    #050505;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transform-style: preserve-3d;
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018) 42%, rgba(212, 175, 55, 0.035)),
    rgba(7, 7, 7, 0.52);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.56),
    0 8px 24px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 221, 125, 0.18),
    inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card.reveal {
  transition: all 0.8s ease-out;
}

.service-card.touch-animate {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.58);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 7, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.13), 0 30px 70px rgba(0, 0, 0, 0.56), 0 10px 26px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 221, 125, 0.2), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  animation: serviceCardTilt 2.8s cubic-bezier(0.35, 0, 0.2, 1);
}

@keyframes serviceCardTilt {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.13), 0 26px 68px rgba(0, 0, 0, 0.56), 0 8px 24px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 221, 125, 0.2), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
  24% {
    transform: perspective(1000px) rotateX(0.8deg) rotateY(-3.2deg) translateY(-10px);
    border-color: rgba(212, 175, 55, 0.56);
    box-shadow: 0 0 26px rgba(212, 175, 55, 0.18), -16px 30px 70px rgba(0, 0, 0, 0.54), -5px 10px 26px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 221, 125, 0.22), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
  58% {
    transform: perspective(1000px) rotateX(-0.7deg) rotateY(3.6deg) translateY(-11px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.2), 18px 32px 74px rgba(0, 0, 0, 0.56), 6px 11px 28px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 221, 125, 0.22), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
  82% {
    transform: perspective(1000px) rotateX(0.3deg) rotateY(-1.2deg) translateY(-9px);
    border-color: rgba(212, 175, 55, 0.52);
    box-shadow: 0 0 23px rgba(212, 175, 55, 0.15), -7px 27px 68px rgba(0, 0, 0, 0.54), -2px 9px 24px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 221, 125, 0.21), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.13), 0 30px 70px rgba(0, 0, 0, 0.56), 0 10px 26px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 221, 125, 0.2), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
}

/* ================================================================
   LEISTUNGS-KACHELN – GRÖSSE DER BILD-AUFDECKUNG (card-visual)
   Zwei komplette Varianten hinterlegt. Zum Wechseln: gewünschten
   Block aktivieren (Kommentarzeichen entfernen), den anderen
   Block auskommentieren. Es darf immer nur EIN Block aktiv sein.
   ----------------------------------------------------------------
   Variante A – Original: kompakter Ausschnitt oben rechts
   Variante B – Bild deckt fast die ganze Kachel auf, nur unten
                links bleibt eine kleine Ecke transparent (aktiv)
   ================================================================ */

/* --- Variante A (auskommentiert) ---
.card-visual {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 62%;
  height: 62%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  -webkit-mask-image: linear-gradient(225deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 38%, transparent 72%);
  mask-image: linear-gradient(225deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 38%, transparent 72%);
  opacity: 0.55;
  transform: scale(1);
  transform-origin: top right;
  transition: transform 420ms ease, opacity 420ms ease;
}
--- Ende Variante A --- */

/* --- Variante B (aktuell aktiv) --- */
.card-visual {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  -webkit-mask-image: linear-gradient(225deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 65%, transparent 95%);
  mask-image: linear-gradient(225deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 65%, transparent 95%);
  opacity: 0.55;
  transform: scale(1);
  transform-origin: top right;
  transition: transform 420ms ease, opacity 420ms ease;
}
/* --- Ende Variante B --- */

.service-card.touch-animate .card-visual {
  opacity: 0.85;
  transform: scale(1.08);
}

.card-number,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.card-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.34rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card p {
  margin: 0;
  color: var(--color-muted);
}

.about-section {
  position: relative;
  overflow: visible;
  background:
    linear-gradient(180deg, #050505 0%, #000000 100%);
  isolation: isolate;
}

.brand-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(68vw, 760px);
  opacity: 0.13;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 28px 90px rgba(212, 175, 55, 0.15));
}

@keyframes floatLeaf {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

.global-floating-leaf {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  width: clamp(110px, 13vw, 220px);
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.58));
  animation: floatLeaf 7s ease-in-out infinite;
}

.global-floating-leaf img {
  width: 100%;
  height: auto;
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes whatsappHoverGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(212, 175, 55, 0);
  }
}

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  animation: whatsappFloat 6s ease-in-out infinite;
  transition: transform 220ms ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.whatsapp-host {
  position: absolute;
  left: 50%;
  bottom: 50%;
  z-index: -1;
  width: 120px;
  height: 120px;
  background-image: url("../assets/images/whatsapp_kontakt.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
  transform: translate(0, 0) scale(0.8);
  transform-origin: bottom left;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
  transition: opacity 420ms ease, transform 420ms ease;
}

.whatsapp-float:hover .whatsapp-host,
.whatsapp-float:focus-visible .whatsapp-host {
  z-index: 1;
  opacity: 1;
  transform: translate(36px, -48px) scale(1);
}

/* ================================================================
   WHATSAPP-DAME – BEWEGUNGS-VARIANTE
   Zum Wechseln: gewünschte Zeile aktivieren, andere auskommentieren.
   ----------------------------------------------------------------
   Variante A – Dame bewegt sich MIT dem Logo (Float läuft weiter):
     animation: whatsappFloat 6s ease-in-out infinite, whatsappHoverGlow 700ms ease-out;
   Variante B – Dame steht STILL (aktuell aktiv):
     animation: whatsappHoverGlow 700ms ease-out;
   ================================================================ */
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08);
  /* Variante A – Dame bewegt sich mit: */
  /* animation: whatsappFloat 6s ease-in-out infinite, whatsappHoverGlow 700ms ease-out; */
  /* Variante B – Dame steht still (aktuell aktiv): */
  animation: whatsappHoverGlow 700ms ease-out;
}

.back-to-top {
  position: fixed;
  left: 92px;
  bottom: 22px;
  z-index: 98;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.035)),
    rgba(7, 7, 7, 0.76);
  color: rgba(230, 199, 96, 0.88);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 235, 170, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 420ms ease,
    visibility 420ms ease,
    transform 420ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: backToTopArrowFloat 3.4s ease-in-out infinite;
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  border-color: rgba(212, 175, 55, 0.54);
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.11),
    0 14px 38px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 235, 170, 0.17);
  transform: translateY(-3px) scale(1.03);
  animation: whatsappHoverGlow 700ms ease-out;
}

@keyframes backToTopArrowFloat {
  0%,
  100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-3px);
  }
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}

.about-copy p {
  max-width: 740px;
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-panel {
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transform-style: preserve-3d;
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018) 42%, rgba(212, 175, 55, 0.035)),
    rgba(7, 7, 7, 0.52);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.56),
    0 8px 24px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 221, 125, 0.18),
    inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.about-panel.touch-animate,
.about-panel:focus-within {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.13), 0 30px 70px rgba(0, 0, 0, 0.56), 0 10px 26px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 221, 125, 0.2), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  animation: promiseCardTilt 2.8s cubic-bezier(0.35, 0, 0.2, 1);
}

.about-panel::after,
.service-card::after,
.quality-item::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -50%;
  left: -25%;
  width: 10%; /* Breite des Lichtstreifens */
  height: 200%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.025) 22%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(212, 175, 55, 0.05) 68%,
    transparent 100%
  );
  filter: blur(5px);
  transform: skewX(-18deg);
}

.about-panel:focus-within::after,
.about-panel.touch-animate::after,
.service-card.touch-animate::after,
.quality-item.touch-animate::after {
  animation: promiseShineSweep 2.8s linear both;
}

@keyframes promiseCardTilt {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow:
      0 0 20px rgba(212, 175, 55, 0.13),
      0 26px 68px rgba(0, 0, 0, 0.56),
      0 8px 24px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 221, 125, 0.2),
      inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
  24% {
    transform: perspective(1000px) rotateX(0.8deg) rotateY(-3.2deg) translateY(-10px);
    border-color: rgba(212, 175, 55, 0.56);
    box-shadow:
      0 0 26px rgba(212, 175, 55, 0.18),
      -16px 30px 70px rgba(0, 0, 0, 0.54),
      -5px 10px 26px rgba(0, 0, 0, 0.36),
      inset 0 1px 0 rgba(255, 221, 125, 0.22),
      inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
  58% {
    transform: perspective(1000px) rotateX(-0.7deg) rotateY(3.6deg) translateY(-11px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
      0 0 28px rgba(212, 175, 55, 0.2),
      18px 32px 74px rgba(0, 0, 0, 0.56),
      6px 11px 28px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 221, 125, 0.22),
      inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
  82% {
    transform: perspective(1000px) rotateX(0.3deg) rotateY(-1.2deg) translateY(-9px);
    border-color: rgba(212, 175, 55, 0.52);
    box-shadow:
      0 0 23px rgba(212, 175, 55, 0.15),
      -7px 27px 68px rgba(0, 0, 0, 0.54),
      -2px 9px 24px rgba(0, 0, 0, 0.36),
      inset 0 1px 0 rgba(255, 221, 125, 0.21),
      inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow:
      0 0 20px rgba(212, 175, 55, 0.13),
      0 30px 70px rgba(0, 0, 0, 0.56),
      0 10px 26px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 221, 125, 0.2),
      inset 0 -1px 0 rgba(212, 175, 55, 0.08);
  }
}

@keyframes promiseShineSweep {
  0% {
    left: -25%;
    opacity: 0;
    transform: skewX(-18deg);
  }
  12% {
    opacity: 0.42;
  }
  40% {
    left: 115%;
    opacity: 0;
  }
  55% {
    left: 115%;
    opacity: 0;
  }
  68% {
    opacity: 0.34;
  }
  94% {
    left: -25%;
    opacity: 0;
  }
  100% {
    left: -25%;
    opacity: 0;
    transform: skewX(-18deg);
  }
}

.about-panel h3 {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 1.28rem;
}

.about-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
}

.about-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
}

.contact-section {
  position: relative;
  background:
    radial-gradient(circle at 16% 18%, rgba(212, 175, 55, 0.10), transparent 28rem),
    #050505;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-luxury);
  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius);
  outline: 1px solid transparent;
  outline-offset: 3px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--color-white);
  font: inherit;
  transition:
    border-color 520ms ease,
    outline-color 520ms ease,
    box-shadow 600ms ease,
    background-color 520ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.46);
  outline-color: rgba(212, 175, 55, 0.38);
  background-color: rgba(6, 6, 3, 0.67);
  box-shadow:
    0 0 0 2px rgba(212, 175, 55, 0.035),
    0 0 14px rgba(212, 175, 55, 0.07);
}

input,
select {
  min-height: 50px;
  padding: 0 15px;
}

textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-gold) 50%),
    linear-gradient(135deg, var(--color-gold) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-soft);
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--color-gold);
}

.privacy-check a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button-primary {
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d4af37 0%, #f2dc82 50%, #b8911f 100%);
  color: #080808;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(212, 175, 55, 0.2);
}

.form-note {
  margin: 0;
  color: var(--color-soft);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: #000000;
}

.footer-layout {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-layout p {
  margin: 0;
  color: var(--color-soft);
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-layout a {
  color: var(--color-muted);
}

.footer-layout a:hover {
  color: var(--color-gold);
}

.legal-main {
  padding-top: clamp(54px, 8vw, 94px);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 30rem),
    #050505;
}

.legal-hero {
  padding: clamp(54px, 8vw, 88px) 0 36px;
}

.legal-content {
  padding-bottom: clamp(80px, 10vw, 130px);
}

.legal-card {
  max-width: 920px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.84);
  box-shadow: var(--shadow-luxury);
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--color-gold);
  font-size: 1.25rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 24px 0 8px;
  color: var(--color-white);
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: var(--color-muted);
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-card a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.placeholder {
  color: #f2dc82;
}

@media (hover: hover) and (pointer: fine) {
  .quality-item.mouse-animate,
  .service-card.mouse-animate {
    z-index: 2;
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.58);
    background:
      linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.035)),
      rgba(7, 7, 7, 0.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.13), 0 30px 70px rgba(0, 0, 0, 0.56), 0 10px 26px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 221, 125, 0.2), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
    animation: serviceCardTilt 2.8s cubic-bezier(0.35, 0, 0.2, 1);
  }

  .service-card.mouse-animate .card-visual {
    opacity: 0.85;
    transform: scale(1.08);
  }

  .about-panel.mouse-animate {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.13), 0 30px 70px rgba(0, 0, 0, 0.56), 0 10px 26px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 221, 125, 0.2), inset 0 -1px 0 rgba(212, 175, 55, 0.08);
    animation: promiseCardTilt 2.8s cubic-bezier(0.35, 0, 0.2, 1);
  }

  .about-panel.mouse-animate::after,
  .service-card.mouse-animate::after,
  .quality-item.mouse-animate::after {
    animation: promiseShineSweep 2.8s linear both;
  }
}

@media (max-width: 1080px) {
  .quality-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 70px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.94);
    box-shadow: var(--shadow-luxury);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    padding: 15px 12px;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero-section {
    min-height: auto;
    background-position: center center;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .global-floating-leaf {
    width: clamp(86px, 18vw, 120px);
  }
}

@media (max-width: 640px) {
  .navbar,
  .section-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .nav-logo img {
    max-height: 42px;
  }

  .hero-section {
    min-height: auto;
    background-size: 100% 100%;
  }

  .quality-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .quality-item:last-child {
    grid-column: auto;
  }

  .quality-item,
  .service-card {
    min-height: auto;
  }

  .about-panel {
    padding: 26px;
  }

  .brand-shape {
    width: 120vw;
    opacity: 0.09;
  }

  .global-floating-leaf {
    right: 14px;
    bottom: 14px;
    width: 88px;
    opacity: 0.86;
  }

  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    left: 78px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-host {
    width: 108px;
    height: 108px;
  }

  .whatsapp-float:hover .whatsapp-host,
  .whatsapp-float:focus-visible .whatsapp-host {
    transform: translate(32px, -43px) scale(1);
  }

  .footer-layout {
    padding: 28px 0 calc(96px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }

  .service-card:hover .card-visual {
    transform: scale(1);
  }

  .whatsapp-float {
    animation: none;
  }

  .whatsapp-host {
    transition-duration: 250ms !important;
  }
}
