:root {
  --bg: #ffffff;
  --bg-soft: #f9f7f1;
  --panel: #ffffff;
  --text: #121212;
  --text-soft: #5f5f5f;
  --line: #ece6d9;
  --dark: #111111;
  --accent: #cda24f;
  --accent-strong: #b8872d;
  --accent-soft: rgba(205, 162, 79, 0.12);
  --shadow: 0 18px 55px rgba(15, 15, 15, 0.08);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 92px 0; position: relative; }
.muted { background: linear-gradient(180deg, #fffdf8 0%, #faf7f1 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; color: var(--text-soft); font-size: 0.84rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: var(--text-soft);
  font-weight: 500;
  position: relative;
}
.main-nav a:hover {
  color: var(--text);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark {
  background: linear-gradient(135deg, var(--dark), #242424);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-light {
  background: rgba(255,255,255,0.9);
  border-color: var(--line);
  color: var(--text);
}
.btn-light:hover {
  border-color: rgba(205,162,79,0.35);
  background: #fffaf1;
}
.full-width { width: 100%; }
.btn.btn-light.btn-referenzen {
  background: #e7d3a3 !important;
  color: #000 !important;
  border: 1px solid #d6b97a !important;
}

.btn.btn-light.btn-referenzen:hover {
  background: #d6b97a !important;
  color: #000 !important;
  border: 1px solid #d6b97a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(214, 185, 122, 0.3);
}
.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

.hero {
  overflow: hidden;
  padding-top: 74px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 34px;
  align-items: center;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}
.hero-orb-left {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(205,162,79,0.16), rgba(205,162,79,0));
  left: -80px; top: 40px;
}
.hero-orb-right {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(205,162,79,0.11), rgba(205,162,79,0));
  right: -100px; top: 20px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8d6a27;
  background: var(--accent-soft);
  border: 1px solid rgba(205,162,79,0.22);
  padding: 9px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.light {
  color: #f4d79f;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

h1, h2, h3, h4, h5 { margin: 0 0 14px; line-height: 1.08; }
h1, h2, .showcase-badge, .package-overview h3, .ref-card h3 { font-family: 'Cormorant Garamond', serif; }
h1 {
  font-size: clamp(2.7rem, 4.6vw, 5.2rem);
  letter-spacing: -0.04em;
  max-width: 11ch;
}
h2 {
  font-size: clamp(2.15rem, 3.3vw, 3.6rem);
  letter-spacing: -0.03em;
  max-width: 15ch;
}
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 58ch;
}

.hero-note {
  margin-top: 16px;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(205,162,79,0.24);
  color: #2f2a22;
  font-weight: 600;
  max-width: 62ch;
  box-shadow: 0 12px 35px rgba(15,15,15,0.06);
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-stats div,
.service-card,
.ref-card,
.timeline-card,
.contact-form,
.contact-panel,
.package-shell,
.faq-item,
.flash {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-stats div { padding: 18px; }
.hero-stats strong { display: block; margin-bottom: 5px; font-size: 1.02rem; }
.hero-stats span { color: var(--text-soft); font-size: 0.94rem; }

.hero-showcase { display: flex; justify-content: flex-end; }
.showcase-card {
  position: relative;
  min-height: 540px;
  width: min(100%, 520px);
  border-radius: 34px;
  border: 1px solid rgba(205,162,79,0.24);
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf5 100%);
  box-shadow: var(--shadow);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.showcase-card::before,
.showcase-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,162,79,0.15), rgba(205,162,79,0));
}
.showcase-card::before { width: 240px; height: 240px; top: -70px; right: -60px; }
.showcase-card::after { width: 260px; height: 260px; bottom: -80px; left: -60px; }
.full-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  animation: floatLogo 5.2s ease-in-out infinite;
}
.showcase-lines {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}
.showcase-lines span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(205,162,79,0.26), rgba(205,162,79,0.05));
}
.showcase-lines span:nth-child(1) { width: 70%; }
.showcase-lines span:nth-child(2) { width: 88%; }
.showcase-lines span:nth-child(3) { width: 58%; }
.showcase-badge {
  margin-top: 24px;
  text-align: center;
  font-size: 1.4rem;
  color: #6f5423;
}

.section-head { margin-bottom: 34px; }
.section-head.center { text-align: center; display: grid; place-items: center; }
.section-head.center h2,
.section-head.center p { text-align: center; }
.section-head p { color: var(--text-soft); max-width: 66ch; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.feature-item {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.feature-item span {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(205,162,79,0.16);
  color: #8d6a27;
  font-weight: 700;
}
.feature-item p { font-size: 0.95rem; }

.service-grid,
.reference-grid,
.package-grid {
  display: grid;
  gap: 18px;
}
.service-grid.refined { grid-template-columns: repeat(2, 1fr); margin-top: 22px; }
.reference-grid { grid-template-columns: repeat(3, 1fr); }
.package-grid { grid-template-columns: repeat(2, 1fr); }

.service-card,
.ref-card,
.timeline-card,
.contact-form,
.contact-panel,
.package-shell,
.package-card {
  padding: 28px;
}
.service-kicker,
.small-label,
.ref-card > span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8b6824;
  font-size: 0.79rem;
}
.service-card ul,
.package-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}
.service-card li,
.package-card li { margin-bottom: 9px; }

.package-shell {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf5 100%);
  border-color: rgba(205,162,79,0.22);
}
.package-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.package-overview p { color: var(--text-soft); max-width: 62ch; }
.package-details[hidden] { display: none; }
.package-details { margin-top: 20px; }
.package-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.84);
}

.dark-band {
  background: linear-gradient(135deg, #131313, #1d1d1d);
  color: #fff;
}
.dark-band p { color: rgba(255,255,255,0.74); }
.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.split-grid.align-start { align-items: start; }

.timeline.short-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.timeline-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.timeline-number {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  background: rgba(205,162,79,0.16);
  color: #f5d18c;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ref-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
}
.ref-card p { color: var(--text-soft); }
.ref-card-accent {
  background: linear-gradient(180deg, #fffdfa 0%, #f8f2e4 100%);
  border-color: rgba(205,162,79,0.32);
}
.mock-browser {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  gap: 8px;
}
.mock-browser div {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(205,162,79,0.55);
}

.check-grid.vertical {
  display: grid;
  gap: 12px;
}
.check-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.check-item span {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(205,162,79,0.16);
  color: #8d6a27;
  flex-shrink: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item { padding: 22px 24px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  padding-right: 22px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #8d6a27;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin-top: 12px;
  color: var(--text-soft);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 18px;
}
.contact-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf5 100%);
  border-color: rgba(205,162,79,0.22);
}
.contact-panel p { color: var(--text-soft); }
.contact-mini-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-mini-grid div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
}
.contact-mini-grid strong { display: block; margin-bottom: 4px; }

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
input, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fcfcfb;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus {
  border-color: rgba(205,162,79,0.46);
  box-shadow: 0 0 0 4px rgba(205,162,79,0.12);
}

.site-footer {
  padding: 48px 0 28px;
  background: #101010;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.site-footer a,
.site-footer p,
.footer-bottom span {
  color: rgba(255,255,255,0.72);
  display: block;
  margin: 6px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
  padding-top: 18px;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
  z-index: 999;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(0,0,0,0.16);
  color: #fff;
  transition: transform 0.22s ease;
  animation: pulseFloat 3.2s ease-in-out infinite;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-btn.whatsapp { background: linear-gradient(135deg, #181818, #2a2a2a); }
.float-btn.phone { background: linear-gradient(135deg, var(--accent-strong), var(--accent)); }
.float-btn span { font-size: 1.25rem; line-height: 1; }

.flash-stack { padding-top: 16px; }
.flash { padding: 14px 16px; margin-bottom: 12px; font-weight: 600; }
.flash.success { background: #effaf2; color: #0d6b34; border: 1px solid #ccefd8; }
.flash.error { background: #fff1f1; color: #9b1d1d; border: 1px solid #f2c5c5; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal.right { transform: translateX(28px); }
.reveal.left { transform: translateX(-28px); }
.reveal.right.in-view,
.reveal.left.in-view { transform: translateX(0); }

@keyframes pulseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .contact-wrap,
  .feature-grid,
  .service-grid.refined,
  .reference-grid,
  .package-grid,
  .timeline.short-timeline,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .desktop-only { display: none; }
  .mobile-toggle { display: block; }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .main-nav.open { display: flex; }
  .main-nav a::after { display: none; }

  .hero-grid,
  .split-grid,
  .contact-wrap,
  .feature-grid,
  .service-grid.refined,
  .reference-grid,
  .package-grid,
  .timeline.short-timeline,
  .footer-grid,
  .form-grid,
  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .package-overview {
    flex-direction: column;
    align-items: flex-start;
  }

  .section { padding: 72px 0; }
  h1 { max-width: 100%; }
  h2 { max-width: 100%; }
  .hero-showcase { justify-content: stretch; }
  .showcase-card { min-height: 0; }
  .brand span { display: none; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 20px, 1180px); }
  .nav-wrap { min-height: 76px; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 0.95rem; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.95rem; }
  .hero { padding-top: 46px; }
  .hero-stats div,
  .service-card,
  .ref-card,
  .timeline-card,
  .contact-form,
  .contact-panel,
  .package-shell,
  .package-card,
  .faq-item,
  .flash {
    padding: 22px;
    border-radius: 22px;
  }
  .feature-item { padding: 16px 15px; border-radius: 20px; }
  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
  .float-btn {
    width: 54px;
    height: 54px;
  }
}



/* --- KE Studio revised look: less kitsch, darker gold, more angular --- */
:root {
  --bg-soft: #f5f2eb;
  --line: #ddd5c8;
  --dark: #0c0c0c;
  --accent: #9b6a20;
  --accent-strong: #7f5314;
  --accent-soft: rgba(155, 106, 32, 0.12);
  --shadow: 0 14px 34px rgba(0,0,0,0.08);
  --radius: 16px;
}

.site-header {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(12,12,12,0.08);
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  box-shadow: none;
}
.main-nav a,
.brand span { color: #4e4a44; }

.btn {
  min-height: 50px;
  border-radius: 10px;
}
.btn-dark {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}
.btn-dark:hover { background: #000000; }
.btn-light {
  background: rgba(255,255,255,0.88);
  border-color: rgba(17,17,17,0.14);
}
.btn-light:hover {
  background: #ffffff;
  border-color: rgba(155,106,32,0.45);
}

.eyebrow {
  border-radius: 10px;
  color: var(--accent-strong);
  border-color: rgba(155,106,32,0.20);
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(10px);
}

.hero-cover {
  min-height: calc(100vh - 86px);
  padding: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}
.hero-cover .container {
  width: min(1280px, calc(100% - 40px));
}
.hero-bg-layer,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-bg-layer {
  background: url('/static/img/hero-bg.png') center center / cover no-repeat;
  transform: scale(1.03);
  animation: heroDrift 16s ease-in-out infinite alternate;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(255,248,240,0.4) 0%, rgba(255,248,240,0.2) 30%, rgba(255,248,240,0.12) 62%, rgba(255,248,240,0.05) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.12));
}
.hero-cover-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 58px 0 52px;
}
.hero-cover-card {
  max-width: 640px;
  padding: 34px 34px 28px;
  background: rgba(255,255,255,0.26);
  border: 1px solid rgba(255,255,255,0.34);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.hero-cover-card h1 {
  max-width: 12ch;
  color: #111111;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  margin-bottom: 16px;
}
.hero-lead {
  max-width: 44ch;
  color: #2f2a25;
  font-size: 1.08rem;
}
.hero-cover-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.hero-cover-features > div {
  padding: 16px 16px 14px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 12px;
  box-shadow: none;
}
.hero-cover-features strong {
  display: block;
  color: #111111;
  margin-bottom: 4px;
  font-size: 0.98rem;
}
.hero-cover-features span {
  color: #49453f;
  font-size: 0.92rem;
  line-height: 1.45;
}
.hero-orb,
.hero-showcase { display: none !important; }

.section.muted {
  background: linear-gradient(180deg, #faf8f3 0%, #f5f2eb 100%);
}

.service-card,
.ref-card,
.timeline-card,
.contact-form,
.contact-panel,
.package-shell,
.faq-item,
.flash,
.feature-item,
.hero-stats div {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.service-card,
.ref-card,
.package-shell,
.contact-form,
.contact-panel,
.timeline-card,
.faq-item {
  border-color: #e2dbd0;
}
.package-overview .small-label,
.ref-card span,
.service-kicker,
.timeline-number,
.mock-browser div {
  color: var(--accent-strong);
}
.ref-card-accent {
  background: #111111;
  color: #ffffff;
}
.ref-card-accent p,
.ref-card-accent span { color: rgba(255,255,255,0.78); }
.ref-card-accent .btn-dark {
  background: var(--accent-strong);
}

.dark-band {
  background: #111111;
}
.dark-band p,
.dark-band .timeline-card p { color: rgba(255,255,255,0.78); }
.timeline-card {
  background: #191919;
  border-color: rgba(255,255,255,0.10);
}
.timeline-card h3,
.dark-band h2 { color: #ffffff; }

.floating-actions {
  right: 18px;
  bottom: 18px;
  gap: 10px;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.18);
}
.float-btn.whatsapp { background: #111111; color: #fff; }
.float-btn.phone { background: var(--accent-strong); color: #fff; }

.hero .btn + .btn { margin-left: 0; }

@keyframes heroDrift {
  0% { transform: scale(1.03) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

@media (max-width: 1100px) {
  .hero-cover-card {
    max-width: 620px;
  }
  .hero-cover-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-cover {
    min-height: auto;
  }
  .hero-cover-inner {
    padding: 36px 0 28px;
    align-items: flex-end;
  }
  .hero-cover-card {
    margin-top: 90px;
    padding: 24px 20px 20px;
    max-width: 100%;
    background: rgba(255,255,255,0.42);
  }
  .hero-cover-card h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
    max-width: 10ch;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .site-header {
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 640px) {
  .hero-cover .container {
    width: min(100%, calc(100% - 24px));
  }
  .hero-bg-layer {
    background-position: 70% center;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255,248,240,0.50) 0%, rgba(255,248,240,0.60) 25%, rgba(255,248,240,0.84) 62%, rgba(255,248,240,0.94) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.16));
  }
  .hero-cover-inner {
    padding: 18px 0 18px;
    min-height: 88svh;
  }
  .hero-cover-card {
    margin-top: auto;
    border-radius: 16px;
  }
  .hero-cover-card h1 {
    max-width: 9ch;
  }
  .hero-cover-features > div {
    padding: 14px;
  }
}


/* --- final refinement pass --- */
:root {
  --accent: #8a5a16;
  --accent-strong: #6f4710;
  --accent-soft: rgba(138, 90, 22, 0.10);
  --line: #ddd6ca;
  --radius: 12px;
  --shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.brand img {
  width: 110px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}
.brand { gap: 12px; }
.brand strong { font-size: 1.02rem; }
.brand span { font-size: 0.82rem; }

.main-nav a {
  transition: color .2s ease, opacity .2s ease;
}
.main-nav a:hover { color: #111; opacity: .8; }
.main-nav a::after { background: var(--accent-strong); }

.nav-cta .btn { min-width: 118px; }
.btn {
  border-radius: 8px;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: #111; }
.btn-light { background: rgba(255,255,255,0.9); }

.hero-cover {
  min-height: calc(100vh - 86px);
  background: #ece7de;
}
.hero-bg-layer {
  background: url('/static/img/hero-bg.png') center center / cover no-repeat;
  transform: scale(1.01);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(242,237,229,0.92) 0%, rgba(242,237,229,0.84) 24%, rgba(242,237,229,0.58) 42%, rgba(242,237,229,0.18) 66%, rgba(242,237,229,0.06) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.18));
}
.hero-cover .container { width: min(1280px, calc(100% - 48px)); }
.hero-cover-inner {
  padding: 74px 0 52px;
  align-items: center;
}
.hero-cover-card {
  max-width: 720px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-label {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(17,17,17,0.08);
  color: var(--accent-strong);
}
.hero-cover-card h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 5.3vw, 6rem);
  line-height: .96;
  margin-bottom: 18px;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(255,255,255,.18);
}
.hero-lead {
  max-width: 34ch;
  font-size: 1.08rem;
  color: #2b2621;
}
.hero-actions { margin-top: 24px; }
.hero-cover-features {
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 26px;
  max-width: 980px;
}
.hero-cover-features > div {
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 10px;
  padding: 14px 15px;
}
.hero-cover-features strong { font-size: 0.96rem; }
.hero-cover-features span { font-size: .9rem; color: #4c463f; }

.service-card,
.ref-card,
.timeline-card,
.contact-form,
.contact-panel,
.package-shell,
.faq-item,
.flash,
.feature-item,
.hero-stats div,
.package-card,
.contact-mini-grid div,
.check-item,
.mobile-toggle,
.main-nav {
  border-radius: 12px;
}

.float-btn {
  border-radius: 10px;
  width: 52px;
  height: 52px;
}
.float-btn.whatsapp { background: #111; }
.float-btn.phone { background: var(--accent-strong); }

@media (max-width: 980px) {
  .brand img { width: 96px; }
  .hero-cover-card h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); max-width: 10ch; }
}

@media (max-width: 860px) {
  .brand img { width: 88px; }
  .hero-cover {
    min-height: auto;
  }
  .hero-cover-inner {
    min-height: 92svh;
    padding: 22px 0 18px;
    align-items: flex-end;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(242,237,229,0.18) 0%, rgba(242,237,229,0.42) 28%, rgba(242,237,229,0.76) 56%, rgba(242,237,229,0.94) 78%, rgba(242,237,229,0.98) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.16));
  }
  .hero-cover-card {
    margin-top: 0;
  }
  .hero-cover-card h1 {
    max-width: 9.5ch;
    font-size: clamp(2.35rem, 11vw, 3.7rem);
    line-height: .98;
    margin-bottom: 14px;
  }
  .hero-lead {
    max-width: 26ch;
    font-size: 1rem;
  }
  .hero-cover-features {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-bg-layer {
    background-position: 62% center;
    transform: scale(1.0);
  }
}

@media (max-width: 640px) {
  .site-header { background: rgba(255,255,255,0.95); }
  .brand img { width: 82px; }
  .brand strong { font-size: .98rem; }
  .hero-cover .container { width: calc(100% - 24px); }
  .hero-cover-inner {
    min-height: 90svh;
    padding: 16px 0 16px;
  }
  .hero-bg-layer {
    background-position: 66% top;
    background-size: cover;
  }
  .hero-cover-card h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
    max-width: 8.8ch;
  }
  .hero-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 8px 10px;
  }
  .hero-cover-features > div {
    background: rgba(255,255,255,0.84);
  }
  .floating-actions {
    right: 10px;
    bottom: 10px;
  }
}


/* --- user requested hero clean-up --- */
:root {
  --accent: #94691d;
  --accent-strong: #7a5314;
  --accent-soft: rgba(148,105,29,0.10);
}
.brand img {
  width: 74px;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.hero-cover {
  min-height: calc(100vh - 86px);
  background: #e9e2d8;
}
.hero-bg-layer {
  background: url('/static/img/hero-bg.png') center center / cover no-repeat;
  animation: heroDriftSoft 24s ease-in-out infinite alternate;
  transform: scale(1.02);
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(17,17,17,0.16), rgba(17,17,17,0.18)),
    radial-gradient(circle at center, rgba(248,244,237,0.88) 0%, rgba(245,239,230,0.82) 26%, rgba(242,236,227,0.58) 46%, rgba(239,232,221,0.30) 66%, rgba(236,228,216,0.08) 100%);
}
.hero-cover-inner {
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 56px 0;
}
.center-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hero-label {
  margin-bottom: 20px;
  background: rgba(255,255,255,0.84);
  color: var(--accent-strong);
  border-color: rgba(17,17,17,0.08);
}
.hero-cover-card h1 {
  max-width: 12ch;
  margin: 0 auto 18px;
  font-size: clamp(2.9rem, 5.4vw, 5.8rem);
  line-height: 0.97;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(255,255,255,0.2);
}
.hero-lead {
  max-width: 42ch;
  margin: 0 auto;
  color: #292521;
}
.hero-actions-center {
  justify-content: center;
}
.hero-cover-features {
  width: 100%;
  max-width: 980px;
  margin-top: 28px;
}
.hero-cover-features > div {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(3px);
  border-color: rgba(17,17,17,0.08);
}
@keyframes heroDriftSoft {
  0% { transform: scale(1.02) translate3d(0,0,0); }
  100% { transform: scale(1.05) translate3d(-0.8%, -0.6%, 0); }
}
@media (max-width: 860px) {
  .brand img { width: 64px; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17,17,17,0.12), rgba(17,17,17,0.16)),
      linear-gradient(180deg, rgba(248,244,237,0.06) 0%, rgba(244,237,228,0.24) 36%, rgba(244,237,228,0.74) 62%, rgba(244,237,228,0.92) 82%, rgba(244,237,228,0.98) 100%);
  }
  .hero-cover-inner {
    align-items: flex-end;
    min-height: 86svh;
    padding: 22px 0 18px;
  }
  .hero-cover-card h1 {
    max-width: 11ch;
    font-size: clamp(2.1rem, 9.5vw, 3.35rem);
  }
  .hero-cover-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .brand span { display: none; }
  .brand img { width: 56px; }
  .hero-bg-layer {
    background-position: 60% center;
    background-size: cover;
  }
  .hero-cover {
    min-height: auto;
  }
  .hero-cover-inner {
    min-height: 84svh;
  }
  .hero-cover-card h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 10vw, 2.85rem);
  }
  .hero-lead { max-width: 27ch; }
  .hero-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .floating-actions { right: 10px; bottom: 12px; }
}


/* ===== Hero readability + brand emphasis updates ===== */
:root{
  --gold-strong: #8c6a2f;
}

.hero-eyebrow,
.hero__eyebrow,
.eyebrow,
.hero-badge{
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  padding: 10px 18px !important;
  background: rgba(255,255,255,0.82) !important;
  color: var(--gold-strong) !important;
  border-radius: 8px !important;
  display: inline-block !important;
  margin-bottom: 22px !important;
  text-transform: uppercase;
}

.hero h1,
.hero__title,
.hero-title{
  display: inline-block !important;
  background: rgba(255,255,255,0.38) !important;
  padding: 14px 18px !important;
  border-radius: 8px !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.15 !important;
}

.hero-overlay,
.hero__overlay{
  background: rgba(0,0,0,0.28) !important;
}

.hero .btn,
.hero-buttons .btn,
.hero__buttons .btn{
  border-radius: 8px !important;
}

.hero-feature,
.hero-features > div,
.hero__features > div{
  border-radius: 8px !important;
}

/* Mobile tuning */
@media (max-width: 768px){
  .hero{
    background-position: 68% center !important;
  }

  .hero h1,
  .hero__title,
  .hero-title{
    font-size: clamp(2rem, 7vw, 3rem) !important;
    padding: 12px 14px !important;
  }

  .hero-eyebrow,
  .hero__eyebrow,
  .eyebrow,
  .hero-badge{
    font-size: 13px !important;
    letter-spacing: 0.12em !important;
    padding: 9px 12px !important;
  }
}


/* Logo cleanup */
.logo-clean,
.site-logo,
.navbar-brand img,
.brand img,
.logo img{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}


html {
  scroll-behavior: smooth;
}

.hero-secondary-btn--ghost {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.hero-secondary-btn--ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 45%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.hero-secondary-btn--ghost:hover,
.hero-secondary-btn--ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.hero-secondary-btn--ghost:hover::after,
.hero-secondary-btn--ghost:focus-visible::after {
  transform: translateX(130%);
}
.hero-visual img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-visual:hover img {
  transform: scale(1.03) translateY(-6px);
  filter: brightness(1.04);
}
.ref-premium {
  padding: 100px 0;
  background: #0b0b0b;
}

.ref-title {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.ref-premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* CARD */
.ref-premium-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.ref-premium-card img {
  width: 100%;
  height: auto;
  object-fit: contain; /* GANZES Bild sichtbar */
}

/* ZOOM */
.ref-premium-card:hover img {
  transform: scale(1.06);
}

/* OVERLAY */
.ref-premium-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 40px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2)
  );
}

/* TEXT */
.ref-premium-overlay h3 {
  color: #fff;
  font-size: 28px;
  margin: 0;
}

.ref-premium-overlay span {
  display: block;
  color: #cda24f;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

/* BUTTON */
.ref-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #cda24f;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.ref-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(205,162,79,0.4);
}
.ref-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

/* Scrollbar schöner (optional) */
.ref-scroll::-webkit-scrollbar {
  height: 6px;
}

.ref-scroll::-webkit-scrollbar-thumb {
  background: rgba(205,162,79,0.4);
  border-radius: 10px;
}
.ref-premium-card {
  min-width: 80%;
  max-width: 380px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .ref-premium-card {
    min-width: 85%;
  }
}
.section-head.center {
  text-align: center;
}
.hero-highlight {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 16px 22px;
  max-width: 600px;
  margin: 20px auto;
  font-weight: 600;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  animation: glowPulse 3.5s ease-in-out infinite;
}

.hero-highlight span {
  color: #cda24f;
  font-weight: 700;

  text-shadow:
    0 0 6px rgba(205,162,79,0.6),
    0 0 12px rgba(205,162,79,0.4),
    0 0 20px rgba(205,162,79,0.3);

  animation: textGlow 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 6px rgba(205,162,79,0.6);
  }
  50% {
    text-shadow:
      0 0 10px rgba(205,162,79,0.9),
      0 0 20px rgba(205,162,79,0.6);
  }
  100% {
    text-shadow: 0 0 6px rgba(205,162,79,0.6);
  }
}
.navbar {
  background: rgba(255, 255, 255, 0.15); /* HELL transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.site-header,
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.014) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
/* ===== FINAL HEADER FIX (KE Studio Transparent) ===== */

/* Reset alte Header Konflikte */
.site-header,
.navbar {
  all: unset;
}

/* Neuer Header */
.site-header,
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;

  display: block;

  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Inner Layout */
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 74px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.brand strong {
  font-size: 1rem;
  color: #111;
}

.brand span {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.6);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: #111;
  font-weight: 500;
  position: relative;
  opacity: 0.85;
  transition: 0.2s;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #8a5a16;
  transform: scaleX(0);
  transition: 0.25s;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.nav-cta {
  display: flex;
  gap: 12px;
}

.nav-cta .btn {
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 8px;
}

/* Mobile Button */
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.1);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #111;
}

/* ===== MOBILE ===== */
@media (max-width: 860px) {

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;

    display: none;
    flex-direction: column;
    gap: 14px;

    padding: 16px;

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);

    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .brand span {
    display: none;
  }
}
/* =========================
   HEADER FIX FINAL
   ========================= */

/* Header liegt über dem Hero */
.site-header,
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease,
    -webkit-backdrop-filter 0.25s ease;
}

/* erst beim Scrollen glass look */
.site-header.scrolled,
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

/* inner layout */
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Brand links */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand img {
  width: 74px;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  color: #111;
}

.brand span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.2;
  color: rgba(17, 17, 17, 0.68);
  white-space: nowrap;
}

/* Navigation Desktop */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: #111;
  font-weight: 500;
  position: relative;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #8a5a16;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Burger */
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  flex: 0 0 46px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #111;
  border-radius: 999px;
}

/* Hero braucht Abstand wegen fixed header */
.hero,
.hero-cover {
  padding-top: 86px;
}

/* =========================
   TABLET / MOBILE
   ========================= */
@media (max-width: 860px) {
  .nav-wrap {
    min-height: 74px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
    flex: 1 1 auto;
    max-width: calc(100% - 58px);
  }

  .brand img {
    width: 56px;
    flex: 0 0 56px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.95rem;
    line-height: 1.05;
  }

  .brand span {
    font-size: 0.74rem;
    white-space: normal;
    line-height: 1.15;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;

    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 2px 0;
  }

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

  .nav-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero,
  .hero-cover {
    padding-top: 74px;
  }
}

@media (max-width: 640px) {
  .site-header.scrolled,
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.18);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    max-width: calc(100% - 52px);
  }

  .brand img {
    width: 48px;
    flex: 0 0 48px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand span {
    font-size: 0.68rem;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .hero,
  .hero-cover {
    padding-top: 68px;
  }
}
.current-projects-head {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin: 0 auto 40px auto !important;
}

.current-projects-head h2 {
  width: 100%;
  margin: 0 auto !important;
  text-align: center !important;
  max-width: none !important;

  color: #ffffff !important; /* 🔥 DAS IST DIE LÖSUNG */
}
/* ========================================
   PREMIUM SOFT FADE LIFT
   ======================================== */

.reveal-premium {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(6px);
  will-change: opacity, transform, filter;
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.stagger-1 { transition-delay: 0.12s; }
.stagger-2 { transition-delay: 0.24s; }
.stagger-3 { transition-delay: 0.36s; }
.stagger-4 { transition-delay: 0.48s; }
.stagger-5 { transition-delay: 0.60s; }
.stagger-6 { transition-delay: 0.72s; }

@media (max-width: 768px) {
  .reveal-premium {
    transform: translateY(18px) scale(0.99);
    filter: blur(4px);
    transition-duration: 0.95s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-premium,
  .reveal-premium.in-view {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.btn.whatsapp-btn {
  background: #25D366 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.btn.whatsapp-btn:hover {
  background: #1ebe5d !important;
  color: #ffffff !important;
}
.float-btn.whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35) !important;
}

.float-btn.whatsapp:hover {
  background: #1ebe5d !important;
  color: #ffffff !important;
}
.float-btn.whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35) !important;
}

.float-btn.whatsapp:hover {
  background: #1ebe5d !important;
  color: #ffffff !important;
}