
:root {
  --acc: #b8860b;
  --acc2: #8b6508;
  --acc-rgb: 184, 134, 11;
  --bg: #ffffff;
  --bg-dark: #0a0a14;
  --text: #18181b;
  --text-dim: #6b6b78;
  --border: #ececf0;
  --card: #fafafa;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.5;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* CUSTOM CURSOR */
.cursor { position: fixed; width: 40px; height: 40px; border: 1.5px solid var(--acc); border-radius: 50%; pointer-events: none; z-index: 9999; transition: width .25s, height .25s, background .25s; mix-blend-mode: difference; }
.cursor.on { width: 60px; height: 60px; background: rgba(var(--acc-rgb), 0.15); }
.cursor-dot { position: fixed; width: 6px; height: 6px; background: var(--acc); border-radius: 50%; pointer-events: none; z-index: 9999; }
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* HEADER */
.px-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 0; transition: all .4s cubic-bezier(.4,0,.2,1); }
.px-header.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); padding: 14px 0; box-shadow: 0 1px 0 var(--border); }
.px-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.px-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900; color: var(--text); text-decoration: none; letter-spacing: -.5px; }
.px-header:not(.scrolled) .px-logo { color: #fff; }
.px-nav { display: flex; gap: 36px; }
.px-nav a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; position: relative; transition: color .2s; }
.px-header:not(.scrolled) .px-nav a { color: rgba(255,255,255,0.85); }
.px-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--acc); transition: width .3s; }
.px-nav a:hover::after { width: 100%; }
.px-call { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--acc); color: #fff !important; text-decoration: none; border-radius: 100px; font-size: 13px; font-weight: 600; transition: all .25s; }
.px-call:hover { background: var(--text); transform: translateY(-1px); }
@media (max-width: 700px) { .px-nav { display: none; } }

/* HERO */
.px-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.1);
  transition: transform .1s linear;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,20,0.6) 0%, rgba(10,10,20,0.3) 50%, rgba(var(--acc-rgb),0.3) 100%);
  z-index: 2;
}

/* Mesh-Gradient Blobs (animiert) */
.mesh { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; animation: meshFloat 18s ease-in-out infinite; }
.mesh-1 { width: 500px; height: 500px; background: var(--acc); top: -10%; left: -10%; }
.mesh-2 { width: 400px; height: 400px; background: var(--acc2); top: 30%; right: -10%; animation-delay: -6s; }
.mesh-3 { width: 350px; height: 350px; background: #ec4899; bottom: -10%; left: 30%; animation-delay: -12s; }
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 80px) scale(.9); }
}

.hero-content { position: relative; z-index: 3; max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); width: 100%; color: #fff; }

.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: clamp(24px, 4vw, 36px); font-weight: 500; }
.dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 12px #22c55e; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero-title { font-family: 'Fraunces', serif; font-size: clamp(48px, 8vw, 110px); line-height: 0.95; font-weight: 700; letter-spacing: -3px; margin-bottom: clamp(24px, 4vw, 36px); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; transform: translateY(110%); transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.hero-title .line.in span { transform: translateY(0); }
.hero-title .line:nth-child(2) span { transition-delay: .15s; }
.hero-title .ital { font-style: italic; color: var(--acc2); font-weight: 600; }

.hero-sub { max-width: 580px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.78); margin-bottom: clamp(32px, 5vw, 48px); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; background: #fff; color: var(--text) !important; text-decoration: none; border-radius: 100px; font-weight: 600; font-size: 15px; transition: all .3s; }
.btn-primary:hover { background: var(--acc); color: #fff !important; transform: translateY(-2px); box-shadow: 0 20px 40px rgba(var(--acc-rgb), 0.4); }
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { display: inline-flex; align-items: center; padding: 18px 32px; color: #fff; text-decoration: none; border-radius: 100px; font-weight: 500; font-size: 15px; border: 1px solid rgba(255,255,255,0.25); transition: all .3s; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* REVEAL-Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 4; color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #fff; animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { 0% { top: -50%; } 100% { top: 100%; } }

/* MARQUEE */
.marquee { overflow: hidden; background: var(--text); color: #fff; padding: 22px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.marquee-track { display: flex; gap: 60px; animation: scroll 25s linear infinite; white-space: nowrap; font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; }
.marquee-item { display: inline-flex; align-items: center; gap: 30px; }
.marquee-item::after { content: '★'; color: var(--acc2); font-size: 18px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* STATS */
.px-stats { padding: clamp(60px, 8vw, 100px) 0; background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(20px, 3vw, 40px); }
.stat-card { text-align: center; padding: 30px 20px; border: 1px solid var(--border); border-radius: 20px; transition: all .3s; background: linear-gradient(180deg, #fafafa 0%, #fff 100%); }
.stat-card:hover { transform: translateY(-4px); border-color: var(--acc); box-shadow: 0 20px 40px rgba(var(--acc-rgb), 0.08); }
.stat-card strong { display: block; font-family: 'Fraunces', serif; font-size: clamp(36px, 4vw, 52px); font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1; }
.stat-card span { font-size: 13px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }

/* STORY */
.px-story { padding: clamp(80px, 12vw, 140px) 0; background: var(--card); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.story-img { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s; }
.story-img:hover img { transform: scale(1.05); }
.story-img .img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--acc); font-size: 80px; }
.eyebrow { display: inline-block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--acc); font-weight: 600; margin-bottom: 16px; }
.story-text h2 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; font-weight: 700; letter-spacing: -1.5px; margin-bottom: 24px; color: var(--text); }
.story-text p { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.7; color: var(--text-dim); margin-bottom: 16px; }
.story-meta { display: flex; gap: 30px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.meta-item strong { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.meta-item span { font-family: 'Fraunces', serif; font-size: 18px; color: var(--text); font-weight: 600; }
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; } }

/* LEISTUNGEN */
.px-leistungen { padding: clamp(80px, 12vw, 140px) 0; background: var(--bg); }
.section-head { text-align: center; margin-bottom: clamp(50px, 8vw, 80px); }
.section-head h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.05; font-weight: 700; letter-spacing: -2px; color: var(--text); }
.leistungen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.5vw, 32px); }
.tilt-card { position: relative; padding: clamp(28px, 3vw, 40px); border: 1px solid var(--border); border-radius: 20px; background: var(--bg); transition: border-color .3s, box-shadow .3s; transform-style: preserve-3d; cursor: pointer; overflow: hidden; }
.tilt-card::before { content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 1.5px; background: linear-gradient(135deg, var(--acc), var(--acc2)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; }
.tilt-card:hover::before { opacity: 1; }
.tilt-card:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.tilt-num { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 700; color: var(--acc); margin-bottom: 16px; opacity: .25; line-height: 1; }
.tilt-card h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; margin-bottom: 12px; color: var(--text); letter-spacing: -.5px; }
.tilt-card p { font-size: 14px; line-height: 1.6; color: var(--text-dim); }

/* TESTIMONIAL */
.px-testimonial { padding: clamp(80px, 12vw, 140px) 0; background: var(--bg-dark); color: #fff; text-align: center; position: relative; overflow: hidden; }
.px-testimonial .container { position: relative; z-index: 2; max-width: 900px; }
.quote-icon { color: var(--acc); opacity: .25; margin-bottom: 30px; }
.testimonial-text { font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 38px); line-height: 1.4; font-weight: 600; font-style: italic; letter-spacing: -0.8px; margin-bottom: 28px; }
.testimonial-by { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* KONTAKT */
.px-kontakt { padding: clamp(80px, 12vw, 140px) 0 60px; background: var(--bg); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.kontakt-text h2 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; font-weight: 700; letter-spacing: -1.5px; margin-bottom: 20px; color: var(--text); }
.kontakt-text p { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.6; color: var(--text-dim); margin-bottom: 36px; }
.kontakt-cards { display: flex; flex-direction: column; gap: 14px; }
.k-card { display: flex; align-items: center; gap: 18px; padding: 18px 22px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; text-decoration: none; color: var(--text); transition: all .3s; }
.k-card:hover { background: var(--bg); border-color: var(--acc); transform: translateX(4px); }
.k-icon { width: 44px; height: 44px; background: var(--acc); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.k-card strong { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; font-weight: 600; }
.k-card span { font-size: 15px; font-weight: 500; color: var(--text); }

.kontakt-form { background: var(--card); padding: clamp(28px, 3vw, 40px); border-radius: 20px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kontakt-form input, .kontakt-form textarea { width: 100%; padding: 16px 18px; border: 1px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 14px; margin-bottom: 12px; background: #fff; color: var(--text); transition: border .2s; }
.kontakt-form input:focus, .kontakt-form textarea:focus { outline: none; border-color: var(--acc); }
.kontakt-form button { width: 100%; padding: 18px; background: var(--text); color: #fff; border: 0; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .25s; }
.kontakt-form button:hover { background: var(--acc); }
@media (max-width: 800px) { .kontakt-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

.maps-wrap { max-width: 1280px; margin: 60px auto 0; padding: 0 clamp(20px, 4vw, 60px); }
.maps-wrap iframe { border-radius: 20px; }

/* FOOTER */
.px-footer { background: var(--bg-dark); color: #fff; padding: 60px 0 30px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; }
.footer-tag { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 6px; }
.footer-meta { display: flex; flex-direction: column; gap: 6px; text-align: right; color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-bottom { padding-top: 30px; text-align: center; color: rgba(255,255,255,0.4); font-size: 12px; }

/* FLOATING BUTTONS */
.floating-buttons { position: fixed; right: 22px; bottom: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 99; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: all .25s; animation: floatIn .6s cubic-bezier(.16,1,.3,1) .8s both; }
.float-btn:hover { transform: scale(1.1); }
.float-call { background: var(--acc); }
.float-wa { background: #25d366; }
@keyframes floatIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
