:root {
  --bg: #f5f3ee;
  --surface: #ffffff;
  --surface-alt: #faf8f3;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --muted: #6b6b66;
  --muted-soft: #9a9a93;
  --line: #e6e2d8;
  --line-strong: #c8c2b3;
  --accent: #0a0a0a;
  --accent-on-dark: #f5f3ee;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(10,10,10,0.04);
  --shadow-md: 0 8px 24px -12px rgba(10,10,10,0.18);
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --maxw: 1120px;
}

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

/* Apple-style continuous corners (Squircle / Superellipse) — Progressive Enhancement.
   Wird nur in Browsern aktiv, die corner-shape unterstützen (z. B. Safari TP).
   Ältere Browser ignorieren es und bekommen normale border-radius-Ecken. */
@supports (corner-shape: superellipse(2.5)) {
  * { corner-shape: superellipse(2.5); }
}
@supports (-webkit-corner-shape: squircle) {
  * { -webkit-corner-shape: squircle; }
}
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Intro-Cursor (Hero-Animation auf index.html) */
.intro-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px;
  height: 40px;
  pointer-events: none;
  z-index: 9999;
  will-change: transform, opacity;
}
.intro-cursor svg {
  width: 100%; height: 100%;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(10,10,10,0.45));
}

/* Site brand (one-pager top banner, replaces nav header) */
.site-brand {
  padding: clamp(28px, 4vw, 44px) 24px clamp(12px, 1.6vw, 18px);
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--line);
}
.brand-mark {
  display: inline-flex; flex-direction: row;
  align-items: center; gap: 12px;
}
.brand-mark__icon {
  width: clamp(18px, 1.6vw, 22px);
  height: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark__text {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
  line-height: 1;
}
@media (max-width: 480px) {
  .brand-mark__text { letter-spacing: 0.12em; font-size: 14px; }
  .brand-mark__icon { width: 16px; height: 16px; }
}

/* Header (old sticky nav — unused on current pages) */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 243, 238, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 22px; height: 22px; }
.brand__text {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--ink);
}
.brand__name {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; font-size: 13px;
  letter-spacing: 0; color: var(--muted);
  margin-left: 4px;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 13px; color: var(--muted);
  transition: color 160ms ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); }

/* Hero */
.hero { padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 10vw, 112px); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 72px); align-items: center;
}
.eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--accent);
  text-transform: uppercase; margin: 0 0 24px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 500; font-style: normal;
  line-height: 1.02; letter-spacing: -0.035em;
  color: var(--ink); margin: 0 0 28px;
}
.hero__title em { font-style: italic; color: var(--ink); font-weight: 400; }
.hero__title .hero__op {
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
  padding: 0 0.05em;
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted); max-width: 52ch;
  margin: 0 0 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__aside {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 24px;
}
.hero__portrait {
  margin: 0;
  width: clamp(180px, 22vw, 240px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-alt);
  box-shadow: 0 14px 40px -18px rgba(10,10,10,0.35);
  border: 1px solid var(--line);
}
.hero__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 5%;
  transform: scale(1.12) translateX(-6%) translateY(4%);
  display: block;
}
.hero__meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: var(--muted);
  text-align: right;
}
.hero__meta strong { color: var(--ink); font-weight: 500; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; border-radius: var(--radius-sm);
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--ink); color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--ink-soft); transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--ink); background: var(--ink); color: var(--bg);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Sections */
.section { padding: clamp(64px, 9vw, 112px) 0; border-top: 1px solid var(--line); }
.section__head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 720px; }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--ink); margin: 0;
}
.section__intro { font-size: 16px; color: var(--muted); margin: 16px 0 0; max-width: 56ch; }

/* Service cards */
.services {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.service:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.service__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--surface-alt); color: var(--ink);
  margin-bottom: 18px;
}
.service__title {
  font-size: 16px; font-weight: 600; color: var(--ink);
  margin: 0 0 8px; letter-spacing: -0.005em;
}
.service__text { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Process strip */
.process {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  counter-reset: step;
  list-style: none; padding: 0; margin: 0;
}
.step { padding-top: 24px; border-top: 1px solid var(--line-strong); position: relative; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: -10px; left: 0;
  background: var(--bg); padding-right: 10px;
  font-family: var(--font-serif); font-style: italic; font-size: 14px;
  color: var(--ink); letter-spacing: 0.02em;
}
.step__title { font-size: 15px; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.step__text { font-size: 14px; color: var(--muted); margin: 0; }

/* Contact */
.contact { background: var(--ink); color: var(--bg); border-top: 0; }
.contact .section__title, .contact .eyebrow { color: var(--bg); }
.contact .eyebrow { color: rgba(245, 243, 238, 0.7); }
.contact .section__intro { color: rgba(245, 243, 238, 0.7); }

.contact__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 72px); align-items: start;
}

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245, 243, 238, 0.55);
}
.field input, .field textarea {
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(245, 243, 238, 0.2);
  color: var(--bg); font: inherit; font-size: 15px;
  padding: 8px 0; transition: border-color 160ms ease;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus {
  outline: 0; border-bottom-color: var(--bg);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245, 243, 238, 0.35); }

.form__submit {
  justify-self: start; margin-top: 8px;
  background: var(--bg); color: var(--ink);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.form__submit:hover, .form__submit:focus-visible {
  background: #ffffff; transform: translateY(-1px);
}

.contact__direct { display: flex; flex-direction: column; gap: 28px; }
.contact__card {
  border: 1px solid rgba(245, 243, 238, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contact__label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245, 243, 238, 0.55);
  margin: 0 0 8px;
}
.contact__value {
  font-family: var(--font-serif); font-size: 22px;
  color: var(--bg); margin: 0; line-height: 1.3;
  transition: color 160ms ease;
}
a.contact__value:hover { color: rgba(245, 243, 238, 0.65); }

/* Footer */
.footer {
  padding: 32px 0; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted);
  flex-wrap: wrap; gap: 16px;
}
.footer__left { display: flex; flex-direction: column; gap: 6px; }
.footer__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink);
}
.footer__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2a8f3d;
  box-shadow: 0 0 0 3px rgba(42,143,61,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(42,143,61,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(42,143,61,0.08); }
}
.footer__links { display: flex; gap: 24px; }
.footer__links a { transition: color 160ms ease; }
.footer__links a:hover { color: var(--ink); }

/* Über mich (index.html) */
.about-section { background: var(--surface-alt); }
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.about__media {
  position: relative;
}
.about__portrait {
  margin: 0;
  width: 100%; max-width: 380px;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 56px -22px rgba(10,10,10,0.35);
  transform: rotate(-1.2deg);
  transition: transform 400ms cubic-bezier(0.65, 0, 0.35, 1);
}
.about__portrait:hover { transform: rotate(0); }
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.08);
}
.about__note--photo {
  position: absolute;
  bottom: -8px; right: -16px;
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: var(--muted);
  transform: rotate(-4deg);
  line-height: 1.1;
  text-align: right;
  pointer-events: none;
  white-space: pre-line;
}

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
}
.about__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.about__title em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4px;
  height: 8px;
  background: rgba(212, 168, 136, 0.45);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}
.about__handwrite {
  font-family: "Caveat", cursive;
  color: var(--muted);
  display: block;
}
.about__handwrite--hi {
  font-size: 26px;
  margin: -18px 0 28px 4px;
  transform: rotate(-2deg);
  display: inline-block;
}
.about__para {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 56ch;
}
.about__para--note {
  font-size: 14px;
  color: var(--muted);
  border-left: 2px solid var(--line-strong);
  padding-left: 14px;
  margin-top: 28px;
  font-style: italic;
}
.about__signature {
  display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap;
  margin-top: 32px;
}
.about__signed {
  font-family: "Caveat", cursive;
  font-size: 36px; font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.about__phone {
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color 160ms, border-color 160ms;
}
.about__phone:hover { color: var(--ink); border-color: var(--ink); }

@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__media { max-width: 280px; }
  .about__note--photo { right: -8px; font-size: 18px; }
}

/* Google-Bewertungen */
.reviews { max-width: 1040px; margin: 0 auto; }
.reviews__summary {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: space-between; align-items: center;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}
.reviews__rating {
  display: flex; align-items: center; gap: 18px;
}
.reviews__stars {
  color: #e8b500;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}
.reviews__rating-text {
  display: flex; flex-direction: column; gap: 2px;
}
.reviews__rating-text strong {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.reviews__count {
  font-size: 13px; color: var(--muted);
}
.reviews__link {
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: border-color 160ms;
}
.reviews__link:hover { border-color: var(--ink); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.review {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  transition: border-color 200ms, box-shadow 200ms;
}
.review:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.review__stars {
  color: #e8b500;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review__text {
  font-size: 15px; line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-style: italic;
  flex-grow: 1;
}
.review__author {
  display: flex; flex-direction: column;
  gap: 2px;
  font-size: 13px;
  margin-top: auto;
}
.review__author strong { color: var(--ink); font-weight: 500; }
.review__role { color: var(--muted); }

/* Trust — Regional Logos (Marquee right-to-left) */
.trust-section {
  background: var(--surface-alt);
  padding: clamp(36px, 4.5vw, 56px) 0;
}
.trust-section .section__head {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__head--center .section__intro {
  margin-left: auto;
  margin-right: auto;
}
.trust {
  overflow: hidden;
  position: relative;
  /* Statt mask-image: Pseudo-Elements mit Gradient. Deutlich performanter. */
}
.trust::before,
.trust::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(48px, 8vw, 120px);
  pointer-events: none;
  z-index: 2;
}
.trust::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-alt) 0%, rgba(250, 248, 243, 0) 100%);
}
.trust::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-alt) 0%, rgba(250, 248, 243, 0) 100%);
}
.trust__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: trust-rtl 30s linear infinite;
  /* GPU-Layer erzwingen — Composite-only, kein Layout/Paint */
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  contain: layout style;
}
@keyframes trust-rtl {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-100% / 3), 0, 0); }
}
.trust:hover .trust__track { animation-play-state: paused; }

.trust__logo {
  flex-shrink: 0;
  width: 240px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 130px;
}
.trust__placeholder {
  font-size: 13px;
  color: var(--muted-soft);
  letter-spacing: 0.02em;
}
.trust__name {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  text-align: center;
}
.trust__logo--empty {
  border-style: dashed;
  background: transparent;
}
.trust__logo--empty .trust__placeholder {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

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

/* Anrufbeantworter 2.0 — Hauptprodukt */
.product-section { background: var(--surface-alt); }
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.product__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3.5vw, 40px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.product__col:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.product__col-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.015em;
}
.product__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.product__list li:last-child { margin-bottom: 0; }
.product__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 1px;
  background: var(--muted-soft);
}
/* Post-it Notiz — verkippt, mit Schatten und Tape */
.product__note {
  position: relative;
  max-width: 380px;
  margin: 64px auto 8px;
  padding: 32px 36px 36px;
  background: linear-gradient(180deg, #fff4c4 0%, #ffeaa0 100%);
  border-radius: 2px 24px 4px 28px;
  transform: rotate(-1.8deg);
  box-shadow:
    0 1px 1px rgba(0,0,0,0.06),
    0 14px 32px -10px rgba(0,0,0,0.22),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  font-family: "Caveat", "Geist", sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
}
.product__note p { margin: 0; }
.product__note em {
  font-style: normal;
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.product__note em::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  bottom: 2px;
  height: 6px;
  background: rgba(220, 60, 50, 0.45);
  z-index: -1;
  border-radius: 2px;
  transform: rotate(-1.5deg);
}
.product__note-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 96px;
  height: 22px;
  background: rgba(180, 165, 110, 0.55);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  /* dezente "klebrige" Textur via gradient */
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(0,0,0,0.06) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .product__note { transform: none; }
  .product__note-tape { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .product { grid-template-columns: 1fr; gap: 16px; }
}

/* "Mehr als Telefon" Callout (Branchen-Pages) */
.more-cta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  padding: 36px 40px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.more-cta__text { flex: 1 1 60%; min-width: 280px; }
.more-cta__text .eyebrow { margin-bottom: 12px; }
.more-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500; line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 12px;
}
.more-cta__lead {
  font-size: 15px; line-height: 1.65;
  color: var(--muted); margin: 0; max-width: 60ch;
}
@media (max-width: 640px) {
  .more-cta { padding: 28px 24px; }
  .more-cta .btn { width: 100%; justify-content: center; }
}

/* Branchen-Picker (auf index.html) */
.branchen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.branche-card {
  display: flex; flex-direction: column;
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
  position: relative;
}
.branche-card:hover, .branche-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.branche-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--ink);
  margin-bottom: 18px;
}
.branche-card__title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
.branche-card__text {
  font-size: 14px; line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
  flex-grow: 1;
}
.branche-card__cta {
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-top: auto;
}
.branche-card--other {
  background: var(--surface-alt);
  border-style: dashed;
}
.branche-card--other:hover, .branche-card--other:focus-visible {
  background: var(--surface);
  border-style: solid;
}

/* Beispielrechnung */
.calc-section { background: var(--surface-alt); }
.calc { max-width: 880px; }
.calc__rows {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line-strong);
}
.calc__row {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 24px; align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.calc__label {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink);
}
.calc__arrow {
  font-family: var(--font-serif);
  color: var(--muted-soft);
  font-size: 18px;
}
.calc__value {
  font-size: 15px; color: var(--ink-soft);
  display: flex; flex-direction: column; gap: 2px;
}
.calc__sub {
  font-size: 13px; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.calc__total {
  margin-top: 36px;
  padding: 28px;
  background: var(--ink); color: var(--bg);
  border-radius: var(--radius-md);
}
.calc__total-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,243,238,0.55);
  margin-bottom: 6px;
}
.calc__total-value {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.calc__total-sub {
  font-size: 14px; color: rgba(245,243,238,0.7);
  margin-bottom: 20px;
}
.calc__money {
  display: flex; gap: 32px; flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
  font-size: 15px; color: rgba(245,243,238,0.85);
}
.calc__money strong {
  display: block;
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px); color: var(--bg);
  margin-bottom: 2px;
}
.calc__footnote {
  margin: 28px 0 0;
  font-size: 14px; color: var(--ink-soft);
  max-width: 60ch;
}
.calc__disclaimer {
  font-size: 12px; color: var(--muted);
}

/* FAQ */
.faq { max-width: 760px; display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--line);
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item[open] { background: var(--surface-alt); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 20px 0;
  cursor: pointer; list-style: none;
  font-family: var(--font-serif); font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 160ms ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--font-sans); font-weight: 300;
  font-size: 28px; color: var(--muted);
  line-height: 1; flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__q:hover { color: var(--accent); }
.faq__item[open] .faq__q { padding-bottom: 8px; }
.faq__a {
  padding: 0 0 20px;
  font-size: 15px; line-height: 1.7;
  color: var(--ink-soft); max-width: 62ch;
}

/* Pioneer-Pricing */
.pioneer-section {
  background: var(--ink); color: var(--bg);
  border-top: 0;
}
.pioneer { max-width: 720px; }
.pioneer .eyebrow { color: rgba(245,243,238,0.55); }
.pioneer__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500; letter-spacing: -0.025em;
  color: var(--bg); margin: 0 0 24px;
}
.pioneer__text {
  font-size: 16px; line-height: 1.7;
  color: rgba(245,243,238,0.8);
  margin: 0 0 14px; max-width: 60ch;
}
.pioneer__text strong { color: var(--bg); }
.pioneer__status {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(245,243,238,0.18);
  border-radius: var(--radius-md);
}
.pioneer__dots { display: inline-flex; gap: 6px; }
.pioneer__dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1px solid rgba(245,243,238,0.5);
  background: transparent;
}
.pioneer__dot--taken {
  background: rgba(245,243,238,0.85);
  border-color: rgba(245,243,238,0.85);
}
.pioneer__count {
  font-size: 14px; color: var(--bg);
  letter-spacing: 0.02em;
}
.pioneer__count strong {
  font-family: var(--font-serif); font-size: 18px;
  font-weight: 500; margin-right: 2px;
}
.pioneer__taken {
  margin: 20px 0 0;
  font-size: 14px; line-height: 1.6;
  color: rgba(245,243,238,0.65);
  max-width: 56ch;
}
.pioneer__taken strong { color: var(--bg); font-weight: 500; }

/* Clients — statische Pill-Reihe */
.clients {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.client {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(245,243,238,0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,243,238,0.75);
  white-space: nowrap;
  flex-shrink: 0;
}
.client--taken {
  background: rgba(245,243,238,0.06);
  color: var(--bg);
  border-color: rgba(245,243,238,0.28);
}
.client--open {
  border-style: dashed;
  color: rgba(245,243,238,0.55);
}
.client__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(245,243,238,0.12);
  font-size: 11px;
  line-height: 1;
}
.client--taken .client__mark {
  background: var(--bg);
  color: var(--ink);
}

/* Kontakt Quick-Booking (Calendly-Block) */
.contact__quick {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding: 24px 28px;
  border: 1px solid rgba(245,243,238,0.18);
  border-radius: var(--radius-md);
  background: rgba(245,243,238,0.04);
  margin-bottom: 24px;
}
.contact__quick-text { display: flex; flex-direction: column; gap: 4px; }
.contact__quick-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.55);
  margin: 0;
}
.contact__quick-title {
  font-family: var(--font-serif); font-size: 20px;
  color: var(--bg); margin: 0;
}
.contact__or {
  text-align: center;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.45);
  margin: 8px 0 28px;
}

/* Inverse Button (for use on dark backgrounds) */
.btn--inverse {
  background: var(--bg); color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--inverse:hover, .btn--inverse:focus-visible {
  background: #ffffff; transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Legal pages (Impressum, Datenschutz) */
.legal { padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 80px); }
.legal__head { margin-bottom: clamp(40px, 5vw, 56px); max-width: 720px; }
.legal__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ink); margin: 0;
}
.legal__updated { color: var(--muted); font-size: 13px; margin-top: 16px; }

.prose { max-width: 70ch; color: var(--ink-soft); }
.prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
  margin: 48px 0 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  color: var(--ink); margin: 28px 0 8px;
  letter-spacing: 0.01em;
}
.prose p { margin: 0 0 14px; font-size: 15px; line-height: 1.7; }
.prose ul { margin: 0 0 14px; padding-left: 1.2em; }
.prose ul li { margin-bottom: 6px; font-size: 15px; line-height: 1.7; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line-strong); }
.prose a:hover { text-decoration-color: var(--ink); }
.prose address { font-style: normal; line-height: 1.7; margin-bottom: 14px; }
.prose strong { color: var(--ink); font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; }
  .hero__aside { align-items: flex-start; flex-direction: row; gap: 20px; align-items: center; }
  .hero__meta { text-align: left; }
  .hero__portrait { width: 120px; }
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .nav { gap: 20px; }

  .calc__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .calc__arrow { display: none; }
  .calc__money { gap: 18px; }

  .contact__quick { flex-direction: column; align-items: flex-start; }
  .contact__quick .btn { width: 100%; justify-content: center; }

  .footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .nav a:not(.nav__cta) { display: none; }
  .hero__ctas .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
