/* ============================================
   BÜRO KAHL — WEBSITE STYLES
   Helle Galerie-Ästhetik · Off-White · Beige · Greige
   Fraunces (Serif Display) + Inter (Sans Body)
   ============================================ */

:root {
  /* Backgrounds — hell zu dunkel */
  --c-white: #FFFFFF;
  --c-off:   #FAFAF7;
  --c-beige: #F0EBE0;
  --c-greige:#E8E3D6;
  --c-cream: #F5F1E8;

  /* Text & Linien */
  --c-ink:   #1F1F1D;
  --c-soft:  #5A5A55;
  --c-muted: #9A958C;
  --c-line:  #D9D4C7;

  /* Akzente */
  --c-charcoal: #1F1F1D;
  --c-bronze:   #8B7355;

  /* Type */
  --ff-serif: "Fraunces", "Source Serif Pro", Georgia, serif;
  --ff-sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 780px;
  --radius: 4px;
  --pad-x: clamp(20px, 4vw, 32px);
  --section-y: clamp(64px, 9vw, 120px);
  --nav-h: 72px;
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-off);
  color: var(--c-ink);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; list-style: none; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 2px solid var(--c-ink); outline-offset: 3px; border-radius: 2px; }

/* ============= TYPE SCALE ============= */
.display {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-feature-settings: "ss01";
}
.display em { font-style: italic; font-weight: 400; }

.h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.h2 em { font-style: italic; font-weight: 400; color: var(--c-ink); }

.h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.h4 {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-bronze);
  margin-bottom: 20px;
}

.lead, .section__lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--c-soft);
}

.muted { color: var(--c-muted); }

.placeholder {
  color: var(--c-muted);
  font-style: italic;
  background: repeating-linear-gradient(
    -45deg,
    rgba(154,149,140,0.08),
    rgba(154,149,140,0.08) 6px,
    transparent 6px,
    transparent 12px
  );
  padding: 0 4px;
}

/* ============= LAYOUT ============= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: var(--section-y);
  background: var(--c-off);
  position: relative;
}
.section--beige  { background: var(--c-beige); }
.section--greige { background: var(--c-greige); }

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section__head--left { margin-inline: 0; text-align: left; }
.section__head .section__lead { margin-top: 24px; }

/* ============= NAV ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(250, 250, 247, 0.96);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: var(--nav-h);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-ink);
}
.nav__logo {
  width: 36px;
  height: 36px;
  flex: none;
}
.nav__wordmark {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__menu {
  display: flex;
  gap: 36px;
  font-size: 14.5px;
}
.nav__menu a {
  text-decoration: none;
  color: var(--c-ink);
  position: relative;
  padding-block: 4px;
  transition: color .15s ease;
}
.nav__menu a:hover { color: var(--c-bronze); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--c-ink);
  color: var(--c-off);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .15s ease, transform .15s ease;
}
.nav__phone:hover { background: #2d2d29; transform: translateY(-1px); }
.nav__phone svg { opacity: .9; }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-ink);
  margin: 4px 0;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav__mobile {
  border-top: 1px solid var(--c-line);
  background: var(--c-off);
  padding: 20px var(--pad-x) 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  text-decoration: none;
  color: var(--c-ink);
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--ff-serif);
  font-weight: 500;
}
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile-phone {
  margin-top: 12px;
  background: var(--c-ink);
  color: var(--c-off) !important;
  text-align: center;
  border-radius: 4px;
  font-family: var(--ff-sans) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  padding: 14px 18px !important;
  border-bottom: 0 !important;
}

/* ============= HERO ============= */
.hero {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(64px, 9vw, 120px);
  background: var(--c-off);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero__text { max-width: 580px; }
.hero .display { margin-bottom: 28px; }
.hero .lead { margin-bottom: 40px; max-width: 520px; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 36px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13.5px;
  color: var(--c-soft);
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-bronze);
  display: inline-block;
}

.hero__media { position: relative; margin: 0; }
.hero__caption {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  text-transform: uppercase;
}

/* ============= PHOTO PLACEHOLDERS ============= */
.photo {
  position: relative;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  overflow: hidden;
  border-radius: var(--radius);
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 14px,
      rgba(139,115,85,0.06) 14px,
      rgba(139,115,85,0.06) 15px
    );
  display: flex;
  align-items: flex-end;
}
.photo--portrait { aspect-ratio: 4 / 5; width: 100%; }
.photo__caption {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  background: rgba(250,250,247,0.85);
  padding: 8px 12px;
  margin: 12px;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  text-transform: uppercase;
}

/* Real image versions — used once images are dropped in */
.photo__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  background: var(--c-cream);
}
.photo__img--portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Full-width image banner between sections */
.image-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--c-off);
  overflow: hidden;
}
.image-banner img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.image-banner--wide img {
  max-height: 520px;
}
@media (max-width: 640px) {
  .image-banner img { max-height: 280px; }
}

/* Optional: when real images are dropped in, replace .photo with <img class="photo__img" /> */
.photo[data-img="hero"]   { background-color: #ebe5d7; }
.photo[data-img="about"]  { background-color: #efe9db; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-ink);
  color: var(--c-off);
  padding: 16px 28px;
  border-radius: 999px;
}
.btn--primary:hover { background: #2d2d29; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  padding: 12px 0;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border-bottom: 1.5px solid var(--c-ink);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--c-bronze); border-color: var(--c-bronze); }
.btn--ghost .btn__num { font-weight: 500; font-size: 14px; }
.btn--block { display: flex; width: 100%; }

/* ============= PROBLEM ============= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem {
  background: var(--c-off);
  border: 1px solid var(--c-line);
  padding: 36px 32px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem__num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--c-bronze);
  line-height: 1;
  font-weight: 400;
}
.problem p { color: var(--c-soft); }

/* ============= LEISTUNGEN ============= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}
.service {
  padding: 40px 36px 44px;
  background: var(--c-off);
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .25s ease;
}
.service:hover { background: var(--c-cream); }
.service__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  background: var(--c-cream);
  margin-bottom: 4px;
}
.service__icon svg { width: 20px; height: 20px; }
.service p { color: var(--c-soft); font-size: 15px; line-height: 1.6; }

/* ============= BRANCHEN ============= */
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry {
  background: var(--c-off);
  border: 1px solid var(--c-line);
  padding: 32px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.industry header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.industry__num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--c-bronze);
  letter-spacing: 0.02em;
}
.industry ul { display: flex; flex-direction: column; gap: 8px; }
.industry li {
  font-size: 14.5px;
  color: var(--c-soft);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.industry li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px; height: 1px;
  background: var(--c-bronze);
}
.industries__note {
  margin-top: 48px;
  text-align: center;
  font-size: 16px;
  color: var(--c-soft);
}
.industries__note a {
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--c-ink);
  padding-bottom: 1px;
}
.industries__note a:hover { color: var(--c-bronze); border-color: var(--c-bronze); }

/* ============= ABLAUF ============= */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--c-line);
  z-index: 0;
}
.step {
  position: relative;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }
.step__marker {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-off);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-bottom: 8px;
}
.step__marker span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
}
.step p {
  font-size: 14.5px;
  color: var(--c-soft);
  line-height: 1.6;
}

/* ============= PREISE ============= */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.benefits li {
  padding: 32px 32px 36px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits li:nth-child(odd)  { border-right: 1px solid var(--c-line); }
.benefits li p { color: var(--c-soft); font-size: 15px; }

.price-cta {
  margin-top: 56px;
  text-align: center;
  background: var(--c-off);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.price-cta p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--c-ink);
  line-height: 1.35;
  max-width: 520px;
  letter-spacing: -0.005em;
}

/* ============= ÜBER ANDREA ============= */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.about__media {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.about__text { max-width: 620px; }
.about__text .eyebrow { margin-bottom: 16px; }
.about__text .h2 { margin-bottom: 32px; }

.prose { display: flex; flex-direction: column; gap: 18px; color: var(--c-ink); }
.prose p { font-size: 16px; line-height: 1.7; }

.pullquote {
  margin: 40px 0 40px;
  padding: 28px 0 28px 28px;
  border-left: 1px solid var(--c-bronze);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: var(--c-ink);
  position: relative;
}
.pullquote__mark {
  position: absolute;
  left: 18px;
  top: -10px;
  font-size: 64px;
  color: var(--c-bronze);
  line-height: 1;
  display: none;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.values li { display: flex; flex-direction: column; gap: 8px; }
.values p { font-size: 14px; color: var(--c-soft); line-height: 1.55; }

.zisko {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}
.zisko__photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-greige) repeating-linear-gradient(135deg, transparent 0 6px, rgba(139,115,85,.1) 6px 7px);
  border: 1px solid var(--c-line);
  flex: none;
  position: relative;
}
.zisko__photo::after {
  content: "Zisko";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  text-transform: uppercase;
}
/* When real Zisko photo is dropped in */
.zisko__photo--real {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--c-line);
  background: none;
}
.zisko__photo--real::after { content: none; }
.zisko p { font-size: 14px; line-height: 1.55; color: var(--c-soft); margin: 0; }
.zisko strong { color: var(--c-ink); font-weight: 500; }

/* ============= TESTIMONIALS ============= */
/* ============= TESTIMONIAL SLIDER ============= */
.slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.slider__track {
  overflow: hidden;
  border-radius: var(--radius);
}
.slider__slides-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
/* Slides nebeneinander im DOM, nur eine sichtbar */
.slider__slide {
  min-width: 100%;
  box-sizing: border-box;
}
/* Karten-Styles bleiben auf .testimonial */
.testimonial {
  margin: 0;
  background: var(--c-off);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 48px 44px 40px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.testimonial::before {
  content: "„";
  display: block;
  font-family: var(--ff-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--c-bronze);
  opacity: 0.6;
  margin-bottom: 12px;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--c-ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  flex: 1;
}
.testimonial--short blockquote { font-size: 22px; line-height: 1.5; }
.testimonial--long  blockquote { font-size: 17px; line-height: 1.6; }
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  margin-top: 32px;
}
.testimonial__source {
  font-weight: 500;
  font-size: 15px;
  color: var(--c-ink);
}
.testimonial__industry {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.testimonial__industry a {
  color: var(--c-muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.testimonial__industry a:hover {
  color: var(--c-bronze);
  text-decoration-color: var(--c-bronze);
}
.testimonial--placeholder blockquote { font-style: normal; }

/* Controls */
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: var(--c-off);
  color: var(--c-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.slider__btn:hover {
  border-color: var(--c-ink);
  color: var(--c-ink);
  background: var(--c-cream);
}
.slider__btn:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: 2px;
}
.slider__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--c-line);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.slider__dot.is-active {
  background: var(--c-ink);
  transform: scale(1.35);
}
.slider__dot:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .slider__slides-inner { transition: none; }
}
@media (max-width: 640px) {
  .testimonial { padding: 32px 24px 28px; min-height: 280px; }
  .testimonial--short blockquote { font-size: 18px; }
  .testimonial--long  blockquote { font-size: 15px; }
  .slider__btn { width: 38px; height: 38px; }
}

/* ============= FAQ ============= */
.faq { border-top: 1px solid var(--c-line); }
.faq__item {
  border-bottom: 1px solid var(--c-line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: color .15s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--c-bronze); }
.faq__q {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.faq__icon {
  position: relative;
  width: 18px; height: 18px;
  flex: none;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transition: transform .25s ease;
}
.faq__icon::before {
  width: 14px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  padding: 0 0 28px;
  color: var(--c-soft);
  max-width: 640px;
  font-size: 16px;
}
.faq__item[open] summary .faq__q { color: var(--c-ink); }

/* ============= KONTAKT ============= */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact__block { display: flex; flex-direction: column; gap: 6px; }
.contact__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.contact__value {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
a.contact__value { border-bottom: 1px solid transparent; transition: border-color .15s ease, color .15s ease; }
a.contact__value:hover { color: var(--c-bronze); border-color: var(--c-bronze); }
.contact__value--big { font-size: clamp(26px, 2.5vw, 32px); }
.contact__value--small { font-size: 18px; }
.contact__meta {
  font-size: 13.5px;
  color: var(--c-soft);
  line-height: 1.5;
  margin-top: 2px;
}

.contact__form {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form-title {
  margin-bottom: 8px;
  font-size: clamp(20px, 1.8vw, 24px);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-ink);
}
.field__hint { color: var(--c-muted); font-weight: 400; }
.field input, .field textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  background: var(--c-off);
  border-radius: var(--radius);
  color: var(--c-ink);
  resize: vertical;
  transition: border-color .15s ease, background .15s ease;
}
.field input:hover, .field textarea:hover { border-color: var(--c-muted); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-ink);
  background: var(--c-white);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #a8482a;
  background: #fbf3ed;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13.5px;
  color: var(--c-soft);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input {
  width: 18px; height: 18px;
  margin: 2px 0 0;
  accent-color: var(--c-ink);
}
.checkbox a { color: var(--c-ink); }

.form__note { font-size: 13px; color: var(--c-muted); margin-top: 4px; text-align: center; }
.form__success {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--c-ink);
}

/* ============= FOOTER ============= */
.footer {
  background: var(--c-ink);
  color: #cfcbc1;
  padding-block: clamp(56px, 7vw, 88px) 32px;
}
.footer a { color: #e6e2d6; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid #2c2c29;
}
.footer__brand { max-width: 320px; }
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo img {
  width: 40px; height: 40px;
  filter: invert(1);
}
.footer__logo span {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  color: #fafaf7;
  letter-spacing: -0.01em;
}
.footer__tag {
  font-size: 14px;
  line-height: 1.55;
  color: #a5a098;
}
.footer__h {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fafaf7;
  margin-bottom: 16px;
}
.footer__col p { font-size: 14.5px; line-height: 1.7; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  font-size: 12.5px;
  color: #8a857c;
  letter-spacing: 0.02em;
}

/* ============= RESPONSIVE ============= */
/* ============================================
   RESPONSIVE — Mobile First Polish
   Breakpoints: 1180, 1020, 820, 640, 480
   ============================================ */

/* ============= 1180 — Kleiner Desktop / Großes Tablet Landscape ============= */
@media (max-width: 1180px) {
  :root {
    --pad-x: clamp(20px, 3vw, 28px);
  }
  .hero__grid { gap: 48px; }
}

/* ============= 1020 — Tablet Landscape ============= */
@media (max-width: 1020px) {
  /* Nav: Burger statt Menü */
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__phone span:not(.sr-only) { display: none; }
  .nav__phone {
    width: 44px; height: 44px;
    padding: 0;
    justify-content: center;
  }
  .nav__phone svg { width: 16px; height: 16px; }
  .nav__phone::after {
    content: "Anrufen";
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  /* Hero einspaltig, Bild zentriert */
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero__text { max-width: 720px; }
  .hero .lead { max-width: 640px; }

  /* Grid-Anpassungen */
  .services { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Steps werden vertikal */
  .steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .steps::before {
    top: 0; bottom: 0;
    left: 22px; right: auto;
    width: 1px; height: auto;
  }
  .step {
    grid-template-columns: 44px 1fr;
    display: grid;
    gap: 8px 24px;
    padding: 16px 0;
  }
  .step__marker { margin-bottom: 0; }
  .step .h3 {
    padding-top: 10px;
    grid-column: 2;
  }
  .step p { grid-column: 2; }

  /* About einspaltig */
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__media {
    position: static;
    max-width: 420px;
  }
  .values { grid-template-columns: 1fr; gap: 18px; }

  /* Kontakt einspaltig */
  .contact { grid-template-columns: 1fr; gap: 40px; }

  /* Footer 2 Spalten + Brand voll */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}

/* ============= 820 — Tablet Portrait ============= */
@media (max-width: 820px) {
  :root {
    --section-y: clamp(56px, 8vw, 80px);
  }

  /* Headlines werden ruhiger */
  .display { font-size: clamp(36px, 7.5vw, 56px); }
  .h2 { font-size: clamp(28px, 5.5vw, 40px); }

  /* Branchen noch zweispaltig aber kompakter */
  .industries { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .industry { padding: 24px 22px; }

  /* Hero-Bild kleiner */
  .hero__media { max-width: 460px; }

  /* Benefits gehen auf 1 Spalte */
  .benefits { grid-template-columns: 1fr; }
  .benefits li:nth-child(odd) { border-right: 0; }
  .benefits li { padding-inline: 0; padding-block: 20px; }

  /* Modal nimmt mehr Platz ein */
  .modal__panel { max-width: 90%; }

  /* About-Image kleiner */
  .about__media { max-width: 380px; }
}

/* ============= 640 — Mobile (Standard) ============= */
@media (max-width: 640px) {
  :root {
    --section-y: 64px;
    --pad-x: 20px;
  }

  /* Headlines noch ruhiger */
  .display {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.05;
  }
  .h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.12;
  }
  .h3 { font-size: 18px; }
  .section__lead { font-size: 16px; }

  /* Alle Grids auf eine Spalte */
  .services { grid-template-columns: 1fr; border-top: 0; border-left: 0; }
  .service {
    border-right: 0;
    border-left: 1px solid var(--c-line);
    border-top: 1px solid var(--c-line);
    padding: 32px 24px 36px;
  }
  .service:first-child { border-top: 1px solid var(--c-line); }

  .industries { grid-template-columns: 1fr; gap: 14px; }
  .industry { padding: 22px 20px; gap: 14px; }

  /* Hero CTAs vertikal stapeln */
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__ctas .btn { width: 100%; }
  .btn--ghost { align-items: center; text-align: center; }
  .hero__media { max-width: 100%; }

  /* Section-Heads kompakter */
  .section__head { margin-bottom: 40px; }

  /* Form-Felder einspaltig */
  .field-row { grid-template-columns: 1fr; }

  /* Footer komplett einspaltig */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Pull-Quote etwas kleiner */
  .pullquote { font-size: 17px; padding-left: 24px; }

  /* Steps - kleineren Marker */
  .step__marker { width: 36px; height: 36px; font-size: 14px; }
  .steps::before { left: 18px; }
  .step { grid-template-columns: 36px 1fr; }

  /* Image-Banner kompakter */
  .image-banner img { max-height: 240px; }

  /* Zisko-Block etwas anpassen */
  .zisko { grid-template-columns: 56px 1fr; gap: 14px; padding: 16px 18px; }
  .zisko__photo,
  .zisko__photo--real { width: 56px; height: 56px; }

  /* Hero-Padding angepasst */
  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}

/* ============= 480 — Mobile klein (iPhone SE, ältere Android) ============= */
@media (max-width: 480px) {
  :root {
    --pad-x: 16px;
  }
  .display { font-size: 36px; }
  .h2 { font-size: 26px; }
  .hero .lead { font-size: 16px; }
  .section__lead { font-size: 15px; }

  /* Eyebrows kleiner */
  .eyebrow { font-size: 11px; letter-spacing: 0.1em; }

  /* Service-Cards bekommen weniger Padding */
  .service { padding: 28px 20px 32px; }

  /* Trust-Items 2 pro Reihe wenn nötig */
  .trust { gap: 6px 14px; font-size: 12.5px; }

  /* Form-Padding reduzieren */
  .contact__form { padding: 24px 20px; }

  /* Hero-Caption kleiner */
  .hero__caption { font-size: 11px; }

  /* Modal: weniger seitliches Padding */
  .modal__header { padding: 20px 18px 16px; }
  .modal__body { padding: 18px 18px 28px; }
  .modal__close { width: 32px; height: 32px; top: 14px; right: 14px; }
}

/* ============= LANDSCAPE MOBILE — bis 480 Höhe ============= */
@media (max-height: 480px) and (orientation: landscape) {
  /* Hero kompakter weil wenig vertikaler Platz */
  .hero {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .display { font-size: clamp(28px, 5.5vw, 38px); }
  .hero .lead { margin-bottom: 24px; font-size: 15px; }
  .hero__ctas { margin-bottom: 18px; }
  .trust { font-size: 12px; gap: 4px 16px; }

  /* Modal-Höhe an Landscape anpassen */
  .modal__panel { max-height: calc(100vh - 16px); }
  .modal { padding: 8px; }

  /* Consent-Banner: max-height mit scroll, sonst überdeckt es alles */
  .consent {
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .consent__inner {
    padding: 14px 20px 16px;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .consent__head { grid-column: 1 / -1; }
  .consent__title { font-size: 14px; margin-bottom: 4px; }
  .consent__text { font-size: 11.5px; line-height: 1.45; }
  .consent__options { gap: 4px; }
  .consent__option { padding: 4px 0; }
  .consent__option-text strong { font-size: 12px; }
  .consent__option-text em { font-size: 11px; line-height: 1.35; }
  .consent__actions { gap: 6px; min-width: 0; }
  .consent__actions .btn {
    padding: 9px 14px;
    font-size: 12.5px;
    min-height: 36px;
  }
}

/* ============= TOUCH-OPTIMIERUNG ============= */
@media (hover: none) and (pointer: coarse) {
  /* Hover-States deaktivieren auf Touch (verhindert sticky hover) */
  .service:hover {
    transform: none;
  }
  .service:hover .service__icon {
    transform: none;
  }
  /* Buttons brauchen größere Touch-Targets */
  .btn { min-height: 44px; }
  .nav__mobile a { padding: 14px 0; }
  /* FAQ-Items größer */
  .faq__item summary { min-height: 44px; }
}

/* ============= PRINT ============= */
@media print {
  .nav, .nav__mobile, .footer { display: none; }
  body { background: white; color: black; }
  .section { padding-block: 24px; background: white !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================
   MODAL — Impressum & Datenschutz
   ============================================ */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  animation: modalFadeIn 0.25s ease;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 29, 0.55);
  cursor: pointer;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.modal__panel {
  position: relative;
  background: var(--c-off);
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  overflow: hidden;
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 64px -16px rgba(31, 31, 29, 0.18),
              0 4px 16px -4px rgba(31, 31, 29, 0.08);
}
.modal__header {
  flex: 0 0 auto;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-off);
  position: relative;
}
.modal__header .eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-bronze);
  font-weight: 500;
}
.modal__title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 0;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-soft);
  cursor: pointer;
  transition: all 0.18s ease;
}
.modal__close:hover {
  background: var(--c-cream);
  color: var(--c-ink);
  border-color: var(--c-soft);
}
.modal__close:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: 2px;
}
.modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 28px 32px 36px;
  color: var(--c-soft);
  font-size: 15px;
  line-height: 1.7;
  scrollbar-gutter: stable;
}
.modal__body h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-ink);
  margin: 28px 0 10px;
  letter-spacing: -0.005em;
}
.modal__body h3:first-child { margin-top: 0; }
.modal__body p { margin: 0 0 14px; }
.modal__body ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.modal__body ul li {
  margin-bottom: 6px;
}
.modal__body a {
  color: var(--c-ink);
  text-decoration: underline;
  text-decoration-color: var(--c-bronze);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
.modal__body a:hover {
  color: var(--c-bronze);
}
.modal__meta {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-muted);
  font-style: italic;
}
.modal__notice {
  background: var(--c-cream);
  border-left: 3px solid var(--c-bronze);
  padding: 14px 18px;
  margin: 0 0 24px;
  font-size: 14px;
  border-radius: 2px;
}
.modal__notice strong {
  color: var(--c-ink);
}
.placeholder-note {
  display: inline-block;
  background: var(--c-cream);
  color: var(--c-bronze);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 13px;
  border: 1px dashed var(--c-bronze);
  font-style: italic;
}

/* Custom Scrollbar — passend zum Design */
.modal__body {
  scrollbar-width: thin;
  scrollbar-color: var(--c-line) transparent;
}
.modal__body::-webkit-scrollbar {
  width: 8px;
}
.modal__body::-webkit-scrollbar-track {
  background: transparent;
  margin: 8px 0;
}
.modal__body::-webkit-scrollbar-thumb {
  background: var(--c-line);
  border-radius: 4px;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.modal__body::-webkit-scrollbar-thumb:hover {
  background: var(--c-bronze);
  background-clip: padding-box;
  border: 1px solid transparent;
}

/* Body-Lock wenn Modal offen */
body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0);
}

/* Animations */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__panel {
    animation: none;
  }
}

@media (max-width: 640px) {
  .modal { padding: 0; }
  .modal__panel {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    border: 0;
  }
  .modal__header { padding: 20px 20px 16px; }
  .modal__body { padding: 20px 20px 32px; }
  .modal__title { font-size: 26px; }
  .modal__close { top: 14px; right: 14px; width: 36px; height: 36px; }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.consent[hidden] { display: none; }
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--c-off);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 32px -8px rgba(31, 31, 29, 0.12);
  animation: consentSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.consent__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 32px) 22px;
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  gap: 32px;
  align-items: start;
}

.consent__head {
  min-width: 0;
}
.consent__title {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
  color: var(--c-ink);
}
.consent__text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-soft);
  margin: 0;
}
.consent__text a {
  color: var(--c-ink);
  text-decoration: underline;
  text-decoration-color: var(--c-bronze);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
.consent__text a:hover { color: var(--c-bronze); }

.consent__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.consent__option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 8px 0;
}
.consent__option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Toggle Switch */
.consent__toggle {
  position: relative;
  display: block;
  width: 36px;
  height: 20px;
  background: var(--c-line);
  border-radius: 999px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.consent__toggle::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--c-off);
  border-radius: 50%;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(31, 31, 29, 0.18);
}
.consent__option input:checked + .consent__toggle {
  background: var(--c-ink);
}
.consent__option input:checked + .consent__toggle::before {
  transform: translateX(16px);
}
.consent__option--locked .consent__toggle {
  background: var(--c-bronze);
  opacity: 0.7;
  cursor: not-allowed;
}
.consent__option--locked {
  cursor: not-allowed;
}
.consent__option input:focus-visible + .consent__toggle {
  outline: 2px solid var(--c-bronze);
  outline-offset: 3px;
}

.consent__option-text {
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.consent__option-text strong {
  color: var(--c-ink);
  font-weight: 500;
  font-size: 14px;
}
.consent__option-text em {
  color: var(--c-muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
}

.consent__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  min-width: 180px;
}
.consent__actions .btn {
  width: 100%;
  font-size: 13px;
  padding: 11px 18px;
  white-space: nowrap;
}
.consent__actions .btn--text {
  background: transparent;
  border: 0;
  color: var(--c-soft);
  text-decoration: underline;
  text-decoration-color: var(--c-line);
  text-underline-offset: 3px;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-weight: 500;
  padding: 8px;
  transition: color 0.15s ease;
}
.consent__actions .btn--text:hover {
  color: var(--c-ink);
  text-decoration-color: var(--c-bronze);
}

@keyframes consentSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .consent { animation: none; }
  .consent__toggle::before { transition: none; }
}

/* Tablet */
@media (max-width: 960px) {
  .consent__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .consent__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .consent__actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .consent__inner {
    padding: 20px 20px 16px;
    gap: 16px;
  }
  .consent__title { font-size: 17px; }
  .consent__text { font-size: 13px; }
  .consent__actions { flex-direction: column; }
  .consent__actions .btn { width: 100%; min-width: 0; }
  .consent__actions .btn--text { order: 99; padding-top: 4px; }
}

/* ============================================
   ANIMATIONS — sanft, edel, zurückhaltend
   ============================================ */

/* Reveal-Klasse — wird vom JS beim Sichtbarwerden gesetzt
   Progressive Enhancement: Reveal-States gelten nur wenn HTML die Klasse .js-ready hat.
   So bleibt die Seite ohne JS oder für Crawler vollständig sichtbar. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variante: Side-Reveal (für Bilder rechts) */
.js-ready .reveal--right {
  transform: translateX(40px);
}
.js-ready .reveal--right.is-visible {
  transform: translateX(0);
}

/* Variante: Subtle (weniger Bewegung, für viele kleine Elemente) */
.js-ready .reveal--subtle {
  transform: translateY(12px);
  transition-duration: 0.7s;
}

/* ============= HERO ANIMATION ============= */
/* Progressive Enhancement: nur wenn JS aktiv ist, werden Wörter animiert */
.js-ready .hero h1 {
  overflow: visible;
}
.js-ready .hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroWordIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.js-ready .hero h1 .word--1 { animation-delay: 0.15s; }
.js-ready .hero h1 .word--2 { animation-delay: 0.40s; }
.js-ready .hero h1 .word--3 { animation-delay: 0.65s; }

/* Das italic-Wort bekommt zusätzlich einen Rotations-Twist beim Reinkommen */
.js-ready .hero h1 em.word {
  transform: translateY(40px) rotate(-2deg);
}

@keyframes heroWordIn {
  0% {
    opacity: 0;
    transform: translateY(40px) rotate(var(--word-rotate, 0deg));
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* Eyebrow im Hero fadet zuerst rein */
.js-ready .hero .eyebrow {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

/* Lead-Text und CTAs nach den Wörtern */
.js-ready .hero .lead {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
.js-ready .hero .hero__ctas {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}
.js-ready .hero .trust {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

/* Hero-Image: sanft skaliert und fadet rein */
.js-ready .hero__media {
  opacity: 0;
  animation: heroImageIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============= NUMBER-PULSE in Problem & Steps ============= */
.problem__num,
.step__marker {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible .problem__num,
.reveal.is-visible .step__marker {
  animation: numberPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

@keyframes numberPop {
  0%   { transform: scale(0.85); opacity: 0.5; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============= BUTTON HOVER POLISH ============= */
.btn--primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(31, 31, 29, 0.25);
}
.btn--primary:active {
  transform: translateY(0);
}

/* Sanfter Glow-Pfeil rechts beim Hover, ohne extra Icon */
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn--primary:hover::after {
  opacity: 1;
}

.btn--ghost {
  transition: color 0.3s ease, gap 0.3s ease;
}

/* ============= IMAGE BANNER — Ken Burns subtil ============= */
.image-banner img {
  transition: transform 8s ease-out;
  transform: scale(1.02);
}
.image-banner.is-visible img {
  transform: scale(1.08);
}

/* ============= PULL QUOTE HIGHLIGHT ============= */
.pullquote {
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.06), transparent);
  transition: none;
}
.reveal.is-visible .pullquote::before {
  animation: shimmerSweep 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

@keyframes shimmerSweep {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* ============= NAV — sanfter Schatten beim Scrollen ============= */
.nav {
  transition: background 0.3s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px -8px rgba(31, 31, 29, 0.08);
}

/* ============= SERVICE CARDS — sanfter Lift on Hover ============= */
.service {
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service:hover {
  background: var(--c-white);
  transform: translateY(-2px);
}
.service__icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease;
}
.service:hover .service__icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--c-beige);
}

/* ============= REDUCED MOTION ============= */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--right,
  .reveal--subtle,
  .hero h1 .word,
  .hero .eyebrow,
  .hero .lead,
  .hero .hero__ctas,
  .hero .trust,
  .hero__media {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .image-banner img {
    transform: none !important;
    transition: none !important;
  }
  .pullquote::before {
    display: none !important;
  }
  .service:hover {
    transform: none !important;
  }
  .service:hover .service__icon {
    transform: none !important;
  }
  .btn--primary:hover {
    transform: none !important;
  }
}

/* ============================================
   MATCH-CHECK
   ============================================ */

/* Center-Variant für die Section-Head */
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.section__head--center .eyebrow {
  display: inline-flex;
}

/* Match-App Container */
.match {
  background: var(--c-off);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 12px;
}

.match__panel {
  padding: clamp(28px, 5vw, 56px);
  position: relative;
  animation: matchFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.match__panel[hidden] { display: none; }

@keyframes matchFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Intro */
.match__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 0;
}
.match__intro-eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-bronze);
  margin: 0 0 16px;
  font-weight: 500;
}
.match__intro-text {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.5;
  color: var(--c-ink);
  margin: 0 0 32px;
  font-weight: 400;
}

/* Progress */
.match__progress {
  display: flex;
  gap: 8px;
  margin: 0 0 28px;
  justify-content: center;
}
.match__progress-step {
  width: 32px;
  height: 3px;
  background: var(--c-line);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.match__progress-step.is-active {
  background: var(--c-ink);
}
.match__progress-step.is-done {
  background: var(--c-bronze);
}

.match__step-label {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 12px;
  text-align: center;
  font-weight: 500;
}

.match__q {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  text-align: center;
  margin: 0 auto 32px;
  max-width: 600px;
}

/* Options */
.match__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
}
.match__option {
  background: var(--c-off);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: left;
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--c-ink);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.match__option::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B7355' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center / contain no-repeat;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.match__option:hover {
  border-color: var(--c-ink);
  background: var(--c-cream);
  transform: translateX(2px);
}
.match__option:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.match__option:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: 2px;
}
.match__option.is-selected {
  border-color: var(--c-ink);
  background: var(--c-ink);
  color: var(--c-off);
}
.match__option.is-selected::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAFAF7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  opacity: 1;
  transform: translateX(0);
}
.match__option--warn:hover {
  border-color: var(--c-bronze);
}

/* Result */
.match__panel--result {
  text-align: center;
  background: var(--c-cream);
}
.match__result-eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-bronze);
  margin: 0 0 16px;
  font-weight: 500;
}
.match__result-title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin: 0 0 18px;
}
.match__result-title em {
  font-style: italic;
  font-weight: 400;
}
.match__result-text {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--c-soft);
  margin: 0 auto 28px;
  max-width: 560px;
  font-weight: 400;
}
.match__result-rec {
  background: var(--c-off);
  border-left: 3px solid var(--c-bronze);
  text-align: left;
  padding: 22px 28px;
  margin: 28px auto;
  max-width: 560px;
  border-radius: 2px;
}
.match__result-rec h4 {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-ink);
  margin: 0 0 10px;
}
.match__result-rec p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-soft);
  margin: 0;
}
.match__result-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0 18px;
  flex-wrap: wrap;
}
.match__result-note {
  font-size: 13px;
  color: var(--c-muted);
  font-style: italic;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   INTERACTIVE STEPS (Ablauf-Drawer)
   ============================================ */

.steps--interactive {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.steps--interactive::before {
  display: none;
}
.steps--interactive .step {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--c-off);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
  display: block;  /* Override .step flex-column */
}
.steps--interactive .step:first-child { padding-left: 0; }
.steps--interactive .step:last-child  { padding-right: 0; }
.steps--interactive .step:has(.step__head[aria-expanded="true"]) {
  border-color: var(--c-bronze);
}
.steps--interactive .step__marker {
  position: static;
  margin: 0;
}

.step__head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 8px 24px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  align-items: start;
  transition: background 0.25s ease;
}
.step__head:hover {
  background: var(--c-cream);
}
.step__head:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: -2px;
}
.step__head .step__marker {
  grid-row: span 2;
  margin: 0;
  align-self: start;
}
.step__head .h3 {
  margin: 0;
  padding-top: 8px;
}
.step__head p {
  grid-column: 2;
  margin: 0;
}
.step__toggle {
  grid-row: 1;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--c-soft);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
  align-self: start;
  margin-top: 6px;
}
.step__head[aria-expanded="true"] .step__toggle {
  transform: rotate(180deg);
  background: var(--c-cream);
  color: var(--c-ink);
}

.step__detail {
  padding: 4px 26px 26px;
  padding-left: 94px; /* alignment mit Marker + Gap */
  animation: stepDetailIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid var(--c-line);
  margin-top: -1px;
}
.step__detail[hidden] {
  display: none;
}

@keyframes stepDetailIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step__detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px 0 22px;
  padding: 20px;
  background: var(--c-cream);
  border-radius: var(--radius);
}
.step__detail-block { min-width: 0; }
.step__detail-label {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 6px;
  font-weight: 500;
}
.step__detail-value {
  font-family: var(--ff-serif);
  font-size: 16px;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

.step__detail-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-soft);
  margin: 0;
}
.step__detail-text strong {
  color: var(--c-ink);
  font-weight: 500;
}

.steps__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--c-muted);
  font-style: italic;
}
.steps__hint svg {
  color: var(--c-bronze);
}

/* ============= MOBILE TWEAKS für Match + Steps ============= */
@media (max-width: 640px) {
  .match__panel { padding: 24px 18px; }
  .match__intro { padding: 12px 0; }
  .match__q { font-size: 20px; margin-bottom: 24px; }
  .match__progress-step { width: 24px; }
  .match__option {
    padding: 16px 18px;
    font-size: 14px;
  }
  .match__result-rec {
    padding: 18px 20px;
  }
  .match__result-actions { flex-direction: column; }
  .match__result-actions .btn { width: 100%; }

  /* Interactive Steps Mobile */
  .step__head {
    grid-template-columns: 36px 1fr auto;
    padding: 18px 18px;
    gap: 6px 16px;
  }
  .step__head .step__marker {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .step__toggle { width: 28px; height: 28px; margin-top: 4px; }
  .step__detail {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 20px;
  }
  .step__detail-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
}

/* Override: Auf Mobile/Tablet sind die Steps ja schon vertikal — hier setzen wir das Layout für die interaktive Variante zurecht */
@media (max-width: 1020px) {
  .steps--interactive {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .steps--interactive::before {
    display: none;
  }
  .steps--interactive .step {
    display: block;
    padding: 0;
  }
}

/* ============================================
   RECHTSSEITEN (Impressum, Datenschutz)
   ============================================ */
.legal {
  padding-top: clamp(48px, 8vw, 88px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--c-soft);
  text-decoration: underline;
  text-decoration-color: var(--c-line);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--c-bronze);
  text-decoration-color: var(--c-bronze);
}
.breadcrumb span[aria-hidden] { color: var(--c-line); }

.legal__head {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-line);
}
.legal__head .eyebrow { margin-bottom: 10px; }
.legal__head h1 { margin: 0; }

.legal__body {
  color: var(--c-soft);
  font-size: 15.5px;
  line-height: 1.75;
}
.legal__body h3 {
  font-family: var(--ff-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--c-ink);
  margin: 36px 0 12px;
  letter-spacing: -0.005em;
}
.legal__body h3:first-child { margin-top: 0; }
.legal__body p { margin: 0 0 16px; }
.legal__body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal__body ul li { margin-bottom: 8px; }
.legal__body a {
  color: var(--c-ink);
  text-decoration: underline;
  text-decoration-color: var(--c-bronze);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
  overflow-wrap: anywhere;
}
.legal__body a:hover { color: var(--c-bronze); }

.legal__body .notice {
  background: var(--c-cream);
  border-left: 3px solid var(--c-bronze);
  padding: 16px 20px;
  margin: 0 0 32px;
  font-size: 14.5px;
  border-radius: 2px;
}
.legal__body .notice strong { color: var(--c-ink); }

.legal__meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-muted);
  font-style: italic;
}

.legal__back {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  font-size: 15px;
}
.legal__back a {
  color: var(--c-ink);
  text-decoration: underline;
  text-decoration-color: var(--c-bronze);
  text-underline-offset: 4px;
  transition: color 0.15s ease;
}
.legal__back a:hover { color: var(--c-bronze); }

@media (max-width: 640px) {
  .legal__body { font-size: 15px; }
  .legal__body h3 { font-size: 19px; margin-top: 30px; }
}

/* ============================================
   KONTAKTFORMULAR — Spamschutz & Fehlermeldung
   ============================================ */

/* Honeypot: für Menschen unsichtbar, für Bots im DOM vorhanden.
   Bewusst NICHT display:none, weil manche Bots das erkennen. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form__error {
  margin: 16px 0 0;
  padding: 14px 18px;
  background: #fdecea;
  border-left: 3px solid #a8482a;
  border-radius: 2px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #7a3520;
}
