* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #f4efe6;
  overflow-x: hidden;
}

body {
  padding-top: 90px;
}

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

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

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 100px;
  margin-top: -10px;
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 158, 90, 0.18), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero {
  position: relative;
  overflow: hidden;
}

/* Hintergrundbild */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(rgba(5,4,3,0.85), rgba(5,4,3,0.9)),
    url("img/hero.jpg");

  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.9);
}

/* leichter goldener Verlauf */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 70% 40%,
    rgba(214,171,92,0.18),
    transparent 60%
  );

  mix-blend-mode: screen;
  opacity: 0.6;
}

/* Inhalt über dem BG */
.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  overflow: hidden;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: #050403;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.call-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6ab5c, #c49a4a);
  
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 20px;

  transition: all 0.3s ease;
}

/* Hover Effekt */
.call-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(214,171,92,0.4);
}

/* Klick Effekt */
.call-circle:active {
  transform: scale(0.95);
}
.header-call {
  width: 46px;
  height: 46px;
  border-radius: 50%;

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

  background: rgba(214, 171, 92, 0.12);
  border: 1px solid rgba(214, 171, 92, 0.25);

  text-decoration: none;

  transition: all 0.3s ease;
}

/* ICON vom Footer übernehmen */
.header-call i {
  width: 18px;
  height: 18px;
  display: block;

  background: url("https://cdn.jsdelivr.net/npm/lucide-static@latest/icons/phone.svg") no-repeat center;
  background-size: contain;

  filter: invert(1) opacity(0.9);
  transition: 0.3s ease;
}

/* Hover */
.header-call:hover {
  background: rgba(214, 171, 92, 0.2);
  box-shadow: 0 0 20px rgba(214, 171, 92, 0.25);
  transform: scale(1.08);
}

.header-call:hover i {
  filter: invert(76%) sepia(42%) saturate(552%) hue-rotate(358deg);
}

/* Klick */
.header-call:active {
  transform: scale(0.95);
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 250px; /* größer als Header */
  width: auto;
  object-fit: contain;

  transform: translateY(15px); /* nach unten schieben */
}

.logo span {
  color: #d6a765;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c7bcae;
  transition: 0.3s;
}

.nav a:hover {
  color: #d6a765;
}

.header-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.35s;
}

.header-btn,
.primary {
  background: #d6a765;
  color: #100b06;
  box-shadow: 0 0 35px rgba(214, 167, 101, 0.25);
}

.secondary {
  border: 1px solid rgba(214, 167, 101, 0.4);
  color: #f4efe6;
}

.btn:hover,
.header-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 55px rgba(214, 167, 101, 0.42);
}

.hero {
  min-height: 100vh;
  padding: 150px 7% 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  position: relative;
  background:
    radial-gradient(circle at 75% 20%, rgba(214, 167, 101, 0.25), transparent 35%),
    linear-gradient(135deg, #050505, #15100c 50%, #080808);
}

.eyebrow {
  color: #d6a765;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1,
.section-head h2,
.about-content h2,
.contact h2 {
  font-family: Georgia, serif;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 105px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.hero h1 span {
  color: #d6a765;
  font-style: italic;
}

.hero-text {
  max-width: 600px;
  color: #c8bdae;
  font-size: 18px;
  line-height: 1.8;
  margin: 30px 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 620px;
}

.floating-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(214, 167, 101, 0.22);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65);
}

.floating-card img {
  height: 100%;
  object-fit: cover;
}

.card-one {
  width: 72%;
  height: 520px;
  right: 0;
  top: 20px;
  animation: floatOne 7s ease-in-out infinite;
}

.card-two {
  width: 48%;
  height: 320px;
  left: 0;
  bottom: 20px;
  animation: floatTwo 8s ease-in-out infinite;
}

@keyframes floatOne {
  50% {
    transform: translateY(-25px) rotate(-2deg);
  }
}

@keyframes floatTwo {
  50% {
    transform: translateY(25px) rotate(3deg);
  }
}

.marquee {
  overflow: hidden;
  background: #0b0806;
  border-top: 1px solid rgba(214, 167, 101, 0.18);
  border-bottom: 1px solid rgba(214, 167, 101, 0.18);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee span {
  padding: 22px 35px;
  color: #d6a765;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 110px 7%;
}

.section-head {
  max-width: 850px;
  margin-bottom: 55px;
}

.section-head h2 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1;
  margin-bottom: 20px;
}

.section-head p {
  color: #bfb3a5;
  line-height: 1.8;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(216,168,95,0.5);
}

.project-image {
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-info {
  padding: 25px;
}

.project-info span {
  color: #d8a85f;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-info h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  margin: 10px 0;
}

.project-info p {
  color: #c9c0b2;
  line-height: 1.6;
  font-size: 15px;
}

.project-info strong {
  display: block;
  margin-top: 15px;
  color: #d8a85f;
}

.services-section {
  background: linear-gradient(135deg, #080808, #15100c);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-box {
  padding: 35px;
  min-height: 260px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: 0.35s;
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: rgba(214, 167, 101, 0.35);
}

.service-box span {
  color: #d6a765;
}

.service-box h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  margin: 24px 0 15px;
}

.service-box p {
  color: #bfb3a5;
  line-height: 1.7;
}

.about {
  padding: 110px 7%;
  display: grid;
  grid-template-columns: minmax(380px, 520px) 1fr;
  gap: 80px;
  align-items: center;
  background: #090909;

  max-width: 1700px;
  margin: 0 auto;
}

.about-image {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(214, 167, 101, 0.18);

  width: 100%;
  max-width: 520px;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 760px;

  object-fit: cover;
  object-position: center top;

  display: block;
}

.about-content {
  width: 100%;
  max-width: 900px;
}

.about-content h2 {
  font-size: clamp(48px, 5vw, 92px);
  line-height: 0.95;
}

.about-content p {
  color: #c8bdae;
  line-height: 1.85;
  margin-top: 25px;
  font-size: 17px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.stats div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.stats strong {
  display: block;
  color: #d6a765;
  font-size: 32px;
  margin-bottom: 8px;
}

.stats span {
  color: #bfb3a5;
}

.contact {
  padding: 120px 7%;
  min-height: 75vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(214, 167, 101, 0.22), transparent 35%),
    #050505;
}

.contact-box {
  max-width: 850px;
}

.contact h2 {
  font-size: clamp(44px, 7vw, 95px);
  line-height: 0.95;
}

.contact p {
  max-width: 620px;
  margin: 25px auto 35px;
  color: #c8bdae;
  line-height: 1.8;
}

.footer {
  padding: 20px 7%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #827668;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer {
  position: relative;
  min-height: 260px;
  padding: 55px 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  overflow: hidden;
  background: #050505;
  color: #c8c8c8;
}

/* goldener Trennstrich */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  width: 86%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(214, 171, 92, 0.55),
    transparent
  );
  z-index: 3;
}

/* Background */
.footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.86)),
    url("img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}

/* Pattern Overlay */
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%);
  background-size: 140px 80px;
  opacity: 0.22;
  pointer-events: none;
}

/* Content Layer */
.footer-left,
.footer-logo,
.footer-right {
  position: relative;
  z-index: 2;
}

/* LEFT */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-left p {
  margin: 0;
  font-size: 15px;
  color: #b8ada0;
}

.footer-left a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8ada0;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-left a:hover {
  color: #d6ab5c;
}

/* Premium Icons */
.footer-left i {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  opacity: 0.9;
  filter: invert(1) opacity(0.9);
  transition: 0.25s ease;
}

.icon-location {
  background: url("https://cdn.jsdelivr.net/npm/lucide-static@latest/icons/map-pin.svg") no-repeat center;
  background-size: contain;
}

.icon-phone {
  background: url("https://cdn.jsdelivr.net/npm/lucide-static@latest/icons/phone.svg") no-repeat center;
  background-size: contain;
}

.icon-mail {
  background: url("https://cdn.jsdelivr.net/npm/lucide-static@latest/icons/send.svg") no-repeat center;
  background-size: contain;
}

.footer-left a:hover i {
  filter: invert(76%) sepia(42%) saturate(552%) hue-rotate(358deg) brightness(94%) contrast(92%);
}

/* LOGO */
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  width: 250px;
  opacity: 1;
  filter: none;
  transition: 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 20px rgba(214,171,92,0.28));
}

/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-right a {
  color: #b8ada0;
  text-decoration: none;
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-right a:hover {
  color: #d6ab5c;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-footer {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 45px 20px;
  }

  .footer-left {
    align-items: center;
  }

  .footer-left a {
    justify-content: center;
    font-size: 14px;
  }

  .footer-right {
    align-items: center;
  }

  .footer-logo img {
    width: 150px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition: 1s ease;
}

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

.project-detail {
  min-height: 100vh;
  padding: 130px 7% 90px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216,168,95,0.18), transparent 35%),
    #080706;
}

.back-link {
  display: inline-block;
  color: #d8a85f;
  margin-bottom: 35px;
  font-weight: 700;
}

.detail-hero {
  max-width: 950px;
  margin-bottom: 50px;
}

.detail-hero span {
  color: #d8a85f;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
}

.detail-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(46px, 7vw, 90px);
  line-height: 1;
  margin: 18px 0;
}

.detail-hero p {
  color: #c9c0b2;
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
}

.browser-preview {
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 45px 110px rgba(0,0,0,0.6);
}

.browser-top {
  height: 52px;
  background: #161412;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.browser-top i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d8a85f;
  opacity: 0.7;
}

.browser-preview img {
  width: 100%;
  height: auto;
}

.detail-gallery {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.detail-gallery img {
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.35s;
}

.detail-gallery img:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(216,168,95,0.45);
}

.project-actions {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.project-actions a {
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
}

.project-actions .gold {
  background: #d8a85f;
  color: #100c08;
}

.project-actions .outline {
  border: 1px solid rgba(216,168,95,0.45);
}

.liquid-cta {
  position: relative;
  min-height: 95vh;
  overflow: hidden;
  background: #050403;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

/* bewegende goldene 3D-Flüssigkeit */
.liquid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: blur(8px);
}

.liquid-shape {
  position: absolute;
  width: 950px;
  height: 260px;
  border-radius: 55% 45% 60% 40%;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 224, 151, 0.95), transparent 18%),
    radial-gradient(circle at 50% 55%, rgba(214, 171, 92, 0.9), transparent 32%),
    linear-gradient(120deg, #5c3415, #d6ab5c, #f0cf88, #7a421c);
  box-shadow:
    inset 0 0 55px rgba(255,255,255,0.22),
    inset 0 -35px 80px rgba(0,0,0,0.45),
    0 45px 120px rgba(214,171,92,0.25);
  opacity: 0.9;
  transform: rotate(12deg);
}

.shape-one {
  left: -12%;
  top: 38%;
  animation: liquidFloatOne 10s ease-in-out infinite alternate;
}

.shape-two {
  right: -20%;
  top: 48%;
  opacity: 0.55;
  transform: rotate(-10deg) scale(0.9);
  animation: liquidFloatTwo 13s ease-in-out infinite alternate;
}

.shape-three {
  left: 22%;
  top: 58%;
  opacity: 0.38;
  transform: rotate(4deg) scale(0.7);
  animation: liquidFloatThree 15s ease-in-out infinite alternate;
}

/* dunkler Lesbarkeitsfilter */
.liquid-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at center, rgba(5,4,3,0.25), rgba(5,4,3,0.76) 62%),
    linear-gradient(180deg, rgba(5,4,3,0.4), #050403 96%);
  pointer-events: none;
}

/* weiße Orbit-Linien wie im Video */
.orbit-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.orbit-lines span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 850px;
  height: 360px;
  border: 2px solid rgba(245, 238, 230, 0.55);
  border-radius: 50%;
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.18));
}

.orbit-lines span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(12deg);
  animation: orbitOne 12s linear infinite;
}

.orbit-lines span:nth-child(2) {
  width: 980px;
  height: 420px;
  transform: translate(-50%, -50%) rotate(-28deg);
  animation: orbitTwo 15s linear infinite reverse;
}

.orbit-lines span:nth-child(3) {
  width: 720px;
  height: 300px;
  transform: translate(-50%, -50%) rotate(52deg);
  animation: orbitThree 10s linear infinite;
}

/* Text vorne */
.liquid-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1000px;
  padding: 0 24px;
}

.liquid-content p {
  color: #d6ab5c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.liquid-content h2 {
  margin: 22px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.94;
  color: #f5eee6;
  text-shadow: 0 24px 90px rgba(0,0,0,0.9);
}

.liquid-content span {
  display: block;
  color: #d6c7b6;
  font-size: 18px;
}

.liquid-content a {
  margin-top: 42px;
  display: inline-flex;
  padding: 16px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6ab5c, #f0cf88);
  color: #100b06;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 70px rgba(214,171,92,0.42);
}
.legal-page {
  padding: 100px 20px;
  background: #050403;
  color: #f5eee6;
}

.legal-page .container {
  max-width: 900px;
  margin: auto;
}

.legal-page h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.legal-page h2 {
  margin-top: 40px;
  color: #d6ab5c;
}

.legal-page p {
  color: #cfc2b5;
  line-height: 1.6;
}
.legal-hero {
  position: relative;
  min-height: 45vh;
  padding: 120px 7% 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(214,171,92,0.18), transparent 35%),
    #050403;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.2;
}

.legal-back {
  position: absolute;
  top: 35px;
  left: 7%;
  z-index: 2;
  color: #d6ab5c;
  text-decoration: none;
  font-weight: 800;
}

.legal-box {
  position: relative;
  z-index: 2;
  text-align: center;
}

.legal-box h1 {
  margin: 18px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 96px);
  color: #f5eee6;
  line-height: 1;
}

.legal-box p {
  color: #cfc1af;
  font-size: 18px;
}

.legal-content {
  padding: 70px 7%;
  background: #050403;
}

.legal-card {
  max-width: 950px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid rgba(214,171,92,0.18);
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: #d6ab5c;
  font-size: 22px;
}

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

.legal-card p {
  color: #cfc1af;
  line-height: 1.8;
  font-size: 16px;
}

.legal-card a {
  color: #f0cf88;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}
.counter {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #d6ab5c;
  transition: 0.3s;
}

.before-after-wrap {
  max-width: 1100px;
  margin: 60px auto 0;
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(214,171,92,0.28);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
}

/* Beide Bilder exakt übereinander */
.image {
  position: absolute;
  inset: 0;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔥 DAS MACHT DEN RICHTIGEN TRANSITION EFFECT */
.image.after {
  clip-path: inset(0 50% 0 0);
}

/* Linie */
.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #d6ab5c, transparent);
  transform: translateX(-50%);
  z-index: 5;
}

.slider-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #d6ab5c, #f0cf88);
  box-shadow: 0 0 35px rgba(214,171,92,0.55);
}

.slider-line span::before {
  content: "↔";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #100b06;
  font-weight: 900;
  font-size: 22px;
}

/* unsichtbarer slider */
.slider-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

/* Labels */
.ba-label {
  position: absolute;
  top: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f5eee6;
  font-weight: 800;
  backdrop-filter: blur(14px);
  z-index: 6;
}

.before-label { left: 24px; }
.after-label { right: 24px; color: #d6ab5c; }

/* =========================================
   CLEAN MOBILE VERSION
========================================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* =========================
     HEADER
  ========================= */

  .header {
    height: 84px;
    padding: 0 20px;
  }

  .nav {
    display: none;
  }

  .logo {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .logo img {
    height: 185px;
    width: auto;
    object-fit: contain;
    transform: translateY(12px);
  }

  .header-call {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }

  /* =========================
     HERO
  ========================= */

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;

    min-height: auto;

    padding:
      120px
      22px
      70px;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(52px, 14vw, 68px);
    line-height: 0.95;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* =========================
     HERO VISUAL
  ========================= */

  .hero-visual {
    height: 500px;
    width: 100%;
  }

  .card-one {
    width: 78%;
    height: 420px;
    right: 0;
  }

  .card-two {
    width: 58%;
    height: 260px;
    left: 0;
    bottom: 0;
  }

  /* =========================
     GENERELLE SECTIONS
  ========================= */

  .section,
  .about,
  .services-section,
  .contact,
  .legal-content {
    padding: 70px 22px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head h2 {
    font-size: 44px;
    line-height: 1;
  }

  /* =========================
     PROJECTS
  ========================= */

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-image {
    height: 240px;
  }

  .project-info h2 {
    font-size: 24px;
  }

  /* =========================
     SERVICES
  ========================= */

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-box {
    min-height: auto;
    padding: 34px 28px;
  }

  .service-box h3 {
    font-size: 28px;
    line-height: 1.1;
  }

  .service-box p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* =========================
     ABOUT
  ========================= */

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
  }

  .about-content h2 {
    font-size: 52px;
    line-height: 0.95;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* =========================
     STATS
  ========================= */

  .stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats div {
    padding: 20px;
  }

  /* =========================
     BEFORE / AFTER
  ========================= */

  .before-after-slider {
    height: 420px;
    border-radius: 24px;
  }

  .slider-line span {
    width: 48px;
    height: 48px;
  }

  /* =========================
     CTA SECTION
  ========================= */

  .liquid-cta {
    min-height: 82vh;
    padding: 90px 20px;
    overflow: hidden;
  }

  .liquid-bg {
    display: block;
    filter: blur(3px);
    opacity: 0.32;
  }

  .liquid-shape {
    width: 500px;
    height: 150px;
    opacity: 0.35;
  }

  .shape-one {
    left: -45%;
    top: 40%;
  }

  .shape-two {
    right: -55%;
    top: 55%;
    opacity: 0.18;
  }

  .shape-three {
    left: 0%;
    top: 68%;
    opacity: 0.12;
  }

  .orbit-lines {
    display: block;
  
    opacity: 1;
  
    transform: scale(0.9);
  
    mix-blend-mode: screen;
  }
  
  .orbit-lines span {
    width: 620px;
    height: 280px;
  
    border:
      2px solid rgba(255,255,255,0.34);
  
    filter:
      drop-shadow(0 0 18px rgba(255,255,255,0.22));
  }
  
  /* einzelne Linien stärker */
  .orbit-lines span:nth-child(1) {
    opacity: 1;
  }
  
  .orbit-lines span:nth-child(2) {
    opacity: 0.8;
  }
  
  .orbit-lines span:nth-child(3) {
    opacity: 0.65;
  }

  .liquid-content {
    position: relative;
    z-index: 5;
    padding: 0 12px;
  }

  .liquid-content p {
    font-size: 12px;
    letter-spacing: 7px;
  }

  .liquid-content h2 {
    font-size: clamp(52px, 14vw, 62px);
    line-height: 0.94;
    letter-spacing: -2px;

    text-shadow:
      0 10px 30px rgba(0,0,0,0.7);
  }

  .liquid-content span {
    max-width: 320px;
    margin: 18px auto 0;

    font-size: 16px;
    line-height: 1.6;
  }

  .liquid-content a {
    width: 100%;
    max-width: 340px;

    justify-content: center;

    margin-top: 34px;
  }

  /* =========================
     LEGAL PAGES
  ========================= */

  .legal-hero {
    min-height: auto;

    padding:
      115px
      20px
      70px;

    display: block;

    text-align: center;

    overflow: hidden;
  }

  .legal-back {
    position: relative;

    top: auto;
    left: auto;

    display: inline-block;

    margin-bottom: 55px;

    font-size: 18px;
    line-height: 1.2;

    z-index: 5;
  }

  .legal-box {
    width: 100%;
    max-width: 100%;

    overflow: hidden;

    text-align: center;
  }

  .legal-box .eyebrow {
    display: block;

    font-size: 12px;

    letter-spacing: 7px;

    margin-bottom: 20px;
  }

  .legal-box h1 {
    font-size: clamp(38px, 11vw, 48px);

    line-height: 1;

    letter-spacing: -1px;

    max-width: 100%;

    overflow-wrap: break-word;

    word-break: normal;

    margin: 0 auto;
  }

  .legal-box p {
    max-width: 310px;

    margin: 22px auto 0;

    font-size: 16px;
    line-height: 1.5;
  }

  .legal-content {
    padding: 45px 20px;
  }

  .legal-card {
    width: 100%;
    max-width: 100%;

    padding: 28px 22px;

    border-radius: 24px;
  }

  .legal-card h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .legal-card p,
  .legal-card a {
    font-size: 16px;
    line-height: 1.7;

    overflow-wrap: anywhere;
  }

  /* =========================
     FOOTER
  ========================= */

  .site-footer {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 34px;

    padding: 50px 22px;
  }

  .footer-left,
  .footer-right {
    align-items: center;
  }

  .footer-left a {
    justify-content: center;
  }

  .footer-logo img {
    width: 170px;
  }

  /* =========================
     GALLERY
  ========================= */

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery img {
    width: 100%;
    height: auto;
  }

}

@media (min-width: 1700px) {
  .about {
    gap: 120px;
  }

  .about-image img {
    max-height: 820px;
  }
}

/* Animationen */
@keyframes liquidFloatOne {
  from {
    transform: translateX(-40px) translateY(0) rotate(12deg) scale(1);
    border-radius: 55% 45% 60% 40%;
  }
  to {
    transform: translateX(150px) translateY(-45px) rotate(7deg) scale(1.06);
    border-radius: 40% 60% 45% 55%;
  }
}

@keyframes liquidFloatTwo {
  from {
    transform: translateX(80px) translateY(0) rotate(-10deg) scale(0.9);
  }
  to {
    transform: translateX(-160px) translateY(-60px) rotate(-4deg) scale(1.02);
  }
}

@keyframes liquidFloatThree {
  from {
    transform: translateX(0) translateY(0) rotate(4deg) scale(0.7);
  }
  to {
    transform: translateX(90px) translateY(40px) rotate(12deg) scale(0.78);
  }
}

@keyframes orbitOne {
  from { transform: translate(-50%, -50%) rotate(12deg); }
  to { transform: translate(-50%, -50%) rotate(372deg); }
}

@keyframes orbitTwo {
  from { transform: translate(-50%, -50%) rotate(-28deg); }
  to { transform: translate(-50%, -50%) rotate(332deg); }
}

@keyframes orbitThree {
  from { transform: translate(-50%, -50%) rotate(52deg); }
  to { transform: translate(-50%, -50%) rotate(412deg); }
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* wichtig */
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-img {
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-img:hover {
  transform: scale(1.03);
}
@media (max-width: 800px) {
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery img {
    height: auto;
  }
}
