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

:root {
  --lavender: #b89ec4;
  --purple-dark: #422666;
  --lavender-light: #e8ddf0;
  --lavender-bg: #f3eef8;
  --lavender-mid: #d0b8e0;
  --purple-btn: #9b7db5;
  --text-dark: #2a2a2a;
  --text-mid: #555;
  --text-light: #888;
  --white: #fff;
  --off-white: #faf9fc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── GLITTER CANVAS ── */
#glitter-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(107, 57, 123, 0.97) 0%, rgba(233,167,203,0.97) 100%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

.nav-logo svg { width: 90px; height: auto; }
.nav-logo svg path { fill: white; }

.nav-brand {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  color: white;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-links .btn-nav {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: 9px 20px;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.nav-links .btn-nav:hover { background: rgba(255,255,255,0.35); color: white; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 600px) {
  /* ── HERO ── */
  .hero {
    position: relative;
    height: auto;
      min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-top: 150px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .hero-bg video {
      margin-top: 100px;
    position: absolute;
    inset: 0;
    width: 100vw;
    height: auto;

    object-position: center;
  }
}

/*.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(60,40,80,0.15) 0%,
    rgba(60,40,80,0.55) 100%
  );
  z-index: 1;
}*/

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: white;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* ── INTRO ── */
.intro {
  padding: 72px 24px 60px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.intro p {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
  margin-top: 20px;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: linear-gradient(90deg, #a076ad 0%, #e9a7cb 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary:hover { background: linear-gradient(90deg, #8d63a0 0%, #d98fbc 100%); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(160,118,173,0.35); }

.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid #ccc;
  padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover { border-color: #a076ad; color: #a076ad; }

.pillars {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.pillar {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

/* ── SERVICES ── */
.services {
  padding: 80px 48px;
  background: var(--off-white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 32px 28px;
  border: 1px solid rgba(184,158,196,0.2);
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--purple-btn);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(155,125,181,0.12);
}

.service-icon {
  width: 36px;
  height: 36px;
  background: var(--lavender-bg);
  border: 1px solid var(--lavender-light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--purple-dark);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PROMISE ── */
.promise {
  padding: 80px 48px;
  background: var(--lavender-bg);
  position: relative;
}

.promise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.promise-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.promise-text .section-label { text-align: left; }
.promise-text .section-title { text-align: left; margin-bottom: 20px; }

.promise-text p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

.promise-list li::before {
  content: '✓';
  color: var(--purple-btn);
  font-weight: 600;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── OFFICE ── */
.office {
  padding: 80px 48px;
  background: white;
  position: relative;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 48px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(160,118,173,0.55) 0%, rgba(201,141,188,0.45) 50%, rgba(233,167,203,0.5) 100%),
    url('Bilder/Fee-Hauskultur-Sky.jpg') center/cover no-repeat;
}

.testimonials .section-header .section-label { color: rgba(255,255,255,0.75); }
.testimonials .section-header .section-title { color: white; }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testi-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.6);
}

.testi-quote {
  font-size: 28px;
  color: #a076ad;
  line-height: 1;
  margin-bottom: 12px;
}

.testi-card p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a076ad 0%, #e9a7cb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: 500;
  flex-shrink: 0;
}

.testi-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  display: block;
}

.testi-role {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
}

/* ── CONTACT ── */
.contact {
  padding: 80px 48px;
  background: var(--off-white);
  position: relative;
}

.contact-inner {
  max-width: 580px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  background: white;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--lavender); }

.form-group textarea { height: 120px; }

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ── FOOTER ── */
footer {
  background: white;
  border-top: 1px solid rgba(184,158,196,0.25);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo svg { width: 96px; }
.footer-logo svg path { fill: #a076ad; }
.footer-logo .nav-brand {
  background: linear-gradient(90deg, #a076ad 0%, #e9a7cb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--lavender); }

/* ── SPARKLE DECORATIONS ── */
.sparkle-deco {
  position: absolute;
  pointer-events: none;
  color: var(--lavender-mid);
  font-size: 18px;
  opacity: 0.5;
  animation: floatSpark 4s ease-in-out infinite;
}

@keyframes floatSpark {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-8px) rotate(20deg); opacity: 0.7; }
}

/* ── DISKRETION IMAGE ── */
.diskretion-img {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  line-height: 0;
}

.diskretion-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.8s ease;
}

.diskretion-img:hover img {
  transform: scale(1.02);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .services-grid, .office-grid { grid-template-columns: 1fr; }
  .promise-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .services, .promise, .office, .testimonials, .contact { padding: 60px 20px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}
