/* Schriften: per <link> in HTML laden (parallel, kein @import-Blocking). */


/* ───────── Theme tokens (:root) ───────── */
:root {
  --bg: #f4efe6; /* Elfenbein  */
  --paper: #fbf8f1;
  --ink: #0e1b2c; /* Mitternachtsblau */
  --ink-2: #182a40;
  --muted: #5a5747;
  --line: #d9d2c2;
  --gold: #b89455; /* Champagner */
  --gold-2: #d4b27a;
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --maxw: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
/* Document scroll: nur body zu clippen reicht auf manchen mobilen Browsern nicht. */
html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* paper grain — very subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(rgba(14, 27, 44, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(14, 27, 44, 0.02) 1px, transparent 1px);
  background-size:
    3px 3px,
    7px 7px;
  background-position:
    0 0,
    1px 2px;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 {
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
}
h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
}
p {
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}
.rule-gold {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent
  );
  border: 0;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-2);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover:not(:disabled):not(.is-loading) .arrow {
  transform: translateX(3px);
}

/* Kontakt: Spinner beim Absenden (fetch läuft) */
.btn .btn-spinner {
  display: none;
  box-sizing: border-box;
  width: 1.15em;
  height: 1.15em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: kontakt-btn-spin 0.68s linear infinite;
  flex-shrink: 0;
  opacity: 0.92;
}
.btn.is-loading .btn-spinner {
  display: block;
}
.btn.is-loading {
  cursor: progress;
}
.btn:disabled {
  cursor: not-allowed;
}
@keyframes kontakt-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ───────── Topbar ───────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  position: relative;
  flex: none;
}
.nav {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
  color: var(--muted);
}
.nav a:hover {
  color: var(--ink);
}
.topbar-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 780px) {
  .nav {
    display: none;
  }
  .topbar-cta .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* ───────── Hero ───────── */
.hero {
  padding: 110px 0 90px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  /* Rechte Spalte so hoch wie der linke Hero-Stack (bis Feature-Zeile) */
  align-items: stretch;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    padding: 64px 0 56px;
  }
}

.hero h1 .accent {
  font-style: italic;
  color: var(--ink);
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 8px;
  background: var(--gold);
  opacity: 0.32;
  z-index: -1;
  border-radius: 1px;
}
.hero-sub {
  margin-top: 28px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-aside {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* Schmal: klassische Karte mit festem Seitenverhältnis */
@media (max-width: 960px) {
  .hero-aside {
    aspect-ratio: 4 / 5;
  }

  .hero-aside img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* Hoch: Höhe rechts = nur linke Hero-Spalte (Eyebrow-Oberkante bis Unterkante hero-meta).
   Kein zusätzlicher Leerraum über dem Eyebrow. Foto-Intrinsics dürfen die Rasterzeile
   nicht aufblasen → height:0 auf dem img im Flex-Spaltenfüller. */
@media (min-width: 961px) {
  .hero-aside {
    align-self: stretch;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-aside img {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    height: 0;
    object-fit: cover;
    display: block;
  }
}
.hero-aside dl {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
}
.hero-aside dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 4px;
}
.hero-aside dd {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}
.hero-aside dd:last-child {
  margin-bottom: 0;
}

/* Drei Spalten nebeneinander; feste Tagline-Zeile reserviert Platz für „Optional“. */
.hero-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 26px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.hero-meta-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.hero-meta-tagline {
  flex: 0 0 auto;
  height: calc(10.5px * 1.35 + 6px);
  margin: 0;
  overflow: hidden;
}
.hero-meta-tagline--spacer {
  pointer-events: none;
}

.hero-meta-item b {
  display: block;
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.hero-meta-desc {
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}
.hero-meta-tag {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  padding-bottom: 6px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .hero-meta {
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
    padding-top: 22px;
  }
  .hero-meta-tagline--spacer {
    display: none;
  }
  .hero-meta-tagline {
    height: auto;
    overflow: visible;
  }
}

/* ───────── Section ───────── */
section {
  padding: 110px 0;
  position: relative;
}
@media (max-width: 780px) {
  section {
    padding: 72px 0;
  }
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 780px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}
.section-head .lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
}

/* ───────── Problem cards ───────── */
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) {
  .problems {
    grid-template-columns: 1fr;
  }
}
.problem {
  background: var(--bg);
  padding: 36px 32px 40px;
}
.problem .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.problem h3 {
  margin-bottom: 12px;
  font-size: 24px;
}
.problem p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ───────── Manifest ───────── */
.manifest {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.manifest h2,
.manifest h3 {
  color: var(--paper);
}
.manifest .eyebrow {
  color: var(--gold-2);
}
.manifest .eyebrow::before {
  background: var(--gold-2);
}
.manifest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .manifest-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.manifest .manifest-intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.7);
}
.manifest .lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  font-style: italic;
  color: var(--paper);
}
.manifest .pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.manifest .pillar {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
}
.manifest .pillar:first-child {
  border-top: 0;
  padding-top: 0;
}
.manifest .pillar .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-2);
  text-transform: uppercase;
  padding-top: 6px;
}
.manifest .pillar h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-weight: 500;
}
.manifest .pillar p {
  color: rgba(244, 239, 230, 0.7);
  font-size: 15px;
  margin: 0;
}

/* ───────── Before/After ───────── */
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .ba-wrap {
    grid-template-columns: 1fr;
  }
}

/* Mehrere Beispiele gestapelt */
.ba-example {
  margin-top: 56px;
}
.ba-example:first-of-type {
  margin-top: 28px;
}
.ba-example + .ba-example {
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.ba-caption {
  margin-bottom: 26px;
  max-width: 720px;
}
.ba-caption-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.ba-caption h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 720px) {
  .ba-caption h3 {
    font-size: 21px;
  }
}

/* Innerhalb der Beispiele: Nachher größer, Vorher entsättigt */
.ba-example .ba-wrap {
  grid-template-columns: 4fr 6fr;
  gap: 28px;
  align-items: start;
}
.ba-example .ba-card:first-child .browser {
  filter: saturate(0.65) brightness(0.98);
  opacity: 0.92;
  transform: scale(0.97);
  transform-origin: top left;
}
@media (max-width: 980px) {
  .ba-example .ba-wrap {
    grid-template-columns: 1fr;
  }
  .ba-example .ba-card:first-child .browser {
    transform: none;
  }
}
.ba-card {
  display: flex;
  flex-direction: column;
}
.ba-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ba-label.before {
  color: var(--muted);
}
.ba-label.after {
  color: var(--gold);
}
.ba-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.ba-label.before .dot {
  background: var(--muted);
}
.ba-label.after .dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 148, 85, 0.18);
}

/* Browser chrome */
.browser {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(14, 27, 44, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: #f2eee6;
}
.browser-bar .dots {
  display: flex;
  gap: 6px;
}
.browser-bar .dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8d3c5;
  display: block;
}
.browser-bar .url {
  flex: 1;
  height: 22px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #e6e0d2;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: #8a8473;
  overflow: hidden;
  white-space: nowrap;
}

/* OLD site mockup — deliberately dated, overcrowded */
.old-site {
  background: #fff;
  font-family: "Times New Roman", Times, serif;
  color: #222;
  font-size: 12px;
  line-height: 1.45;
  flex: 1;
}
.old-banner {
  background: linear-gradient(180deg, #2a4d8f 0%, #1a3266 100%);
  color: #fff;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #c9a23a;
}
.old-banner .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.old-banner .logo .crest {
  width: 28px;
  height: 28px;
  border: 2px solid #c9a23a;
  display: grid;
  place-items: center;
  font-family: "Times New Roman", serif;
  color: #c9a23a;
  font-weight: bold;
  font-size: 14px;
  background: #fff2;
}
.old-banner h4 {
  color: #fff;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.old-banner .sub {
  font-size: 9px;
  color: #cfd9ec;
  letter-spacing: 0.04em;
}
.old-banner .lang {
  font-size: 10px;
  color: #fff;
}
.old-nav {
  background: #14264f;
  color: #fff;
  padding: 6px 14px;
  display: flex;
  gap: 14px;
  font-size: 10.5px;
  border-bottom: 1px solid #0d1a3a;
}
.old-nav span {
  padding: 4px 0;
}
.old-nav span.active {
  color: #c9a23a;
  text-decoration: underline;
}
.old-hero {
  padding: 18px 14px 14px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}
.old-hero .head h2 {
  font-family: "Times New Roman", serif;
  color: #1a3266;
  font-size: 17px;
  line-height: 1.2;
  margin: 0 0 6px;
  font-weight: bold;
}
.old-hero .head p {
  font-size: 11px;
  color: #444;
  margin: 0 0 6px;
}
.old-hero .photo {
  background: repeating-linear-gradient(45deg, #d6dbe5 0 8px, #c8cfdd 8px 16px);
  border: 1px solid #93a0bf;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: #5b6a89;
  font-size: 9px;
  font-style: italic;
}
.old-cols {
  padding: 0 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  font-size: 10px;
}
.old-cols .col {
  border: 1px dashed #b9b09a;
  padding: 8px;
  background: #faf6e9;
}
.old-cols .col h5 {
  font-family: "Times New Roman", serif;
  color: #1a3266;
  margin: 0 0 4px;
  font-size: 11px;
  text-decoration: underline;
}
.old-cols .col p {
  margin: 0;
  color: #3a3a3a;
  font-size: 9.5px;
  line-height: 1.4;
}
.old-marquee {
  background: #fff8d6;
  border-top: 1px solid #d8c876;
  border-bottom: 1px solid #d8c876;
  padding: 5px 14px;
  font-size: 10px;
  color: #6d5a14;
  font-style: italic;
}
.old-footer {
  background: #1a3266;
  color: #cfd9ec;
  padding: 8px 14px;
  font-size: 9px;
  display: flex;
  justify-content: space-between;
}

/* NEW site mockup v2 — dark hero, asymmetric, distinctly different from Erste Instanz */
.new-site {
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: "Inter", system-ui, sans-serif;
  color: #14181f;
}
.new-site.v2 .nv2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #ececea;
  background: #fff;
}
.new-site.v2 .nv2-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.new-site.v2 .nv2-mk {
  width: 26px;
  height: 26px;
  background: #14181f;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.04em;
  position: relative;
}
.new-site.v2 .nv2-mk i {
  font-style: normal;
  color: #c9a96b;
  margin-left: 1px;
}
.new-site.v2 .nv2-name {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #14181f;
}
.new-site.v2 .nv2-nav {
  display: flex;
  gap: 18px;
  font-size: 10.5px;
  color: #6a6f78;
  letter-spacing: 0.02em;
}
.new-site.v2 .nv2-tel {
  font-size: 10.5px;
  font-family: "JetBrains Mono", monospace;
  color: #14181f;
  letter-spacing: 0.02em;
}

/* Hero — dark side panel + photo */
.new-site.v2 .nv2-hero {
  display: grid;
  grid-template-columns: 5fr 6fr;
  min-height: 230px;
}
.new-site.v2 .nv2-hero-img {
  position: relative;
  overflow: hidden;
  background: #1a1f28;
}
.new-site.v2 .nv2-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05) brightness(0.85);
}

/* Klassizistische Andeutung — vertikale Säulen-Struktur statt Foto */
.new-site.v2 .nv2-hero-img--abstract {
  background:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(201, 169, 107, 0.18) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #232a36 0%, #14181f 70%, #0c0f15 100%);
  display: block;
}
.new-site.v2 .nv2-pillars {
  position: absolute;
  inset: 18% 14% 16% 14%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9%;
  align-items: stretch;
}
.new-site.v2 .nv2-pillars span {
  display: block;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(201, 169, 107, 0.18) 40%,
    rgba(201, 169, 107, 0.28) 75%,
    rgba(201, 169, 107, 0.05) 100%
  );
  border-left: 1px solid rgba(201, 169, 107, 0.32);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
}
.new-site.v2 .nv2-pillars span:nth-child(2n) {
  opacity: 0.7;
}
.new-site.v2 .nv2-pillars span:nth-child(3n) {
  opacity: 0.85;
}
.new-site.v2 .nv2-pillar-base {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 107, 0.55) 20%,
    rgba(201, 169, 107, 0.55) 80%,
    transparent
  );
}
.new-site.v2 .nv2-hero-text {
  background: #14181f;
  color: #fff;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new-site.v2 .nv2-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96b;
}
.new-site.v2 .nv2-hero-text h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 14px 0 0;
}
.new-site.v2 .nv2-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.new-site.v2 .nv2-btn {
  background: #c9a96b;
  color: #14181f;
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.new-site.v2 .nv2-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

/* Fields list — minimal rows with arrows */
.new-site.v2 .nv2-fields {
  padding: 22px 22px 24px;
  background: #fff;
}
.new-site.v2 .nv2-fields-head {
  margin-bottom: 12px;
}
.new-site.v2 .nv2-fields-list {
  display: flex;
  flex-direction: column;
}
.new-site.v2 .nv2-field {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #ececea;
  font-size: 11px;
}
.new-site.v2 .nv2-field:last-child {
  border-bottom: 1px solid #ececea;
}
.new-site.v2 .nv2-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #c9a96b;
  letter-spacing: 0.04em;
}
.new-site.v2 .nv2-name2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  color: #14181f;
  letter-spacing: -0.005em;
}
.new-site.v2 .nv2-arr {
  color: #14181f;
  font-size: 14px;
}

/* ───────── OLD site 2 — Hofmann (Familienrecht, 2013, kitschig) ───────── */
.old-site2 {
  background: #fffdf6;
  font-family: Verdana, Geneva, sans-serif;
  color: #3a2238;
  font-size: 12px;
  line-height: 1.5;
  flex: 1;
}
.old-site2 .o2-banner {
  background: linear-gradient(180deg, #fbe4f0 0%, #f5c8de 100%);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dotted #c25aa1;
}
.old-site2 .o2-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.old-site2 .o2-clipart {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #c25aa1;
  border-radius: 50%;
  color: #c25aa1;
  font-size: 18px;
}
.old-site2 .o2-title h4 {
  margin: 0;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive;
  font-size: 16px;
  color: #6f1c54;
}
.old-site2 .o2-sub {
  font-size: 10px;
  font-style: italic;
  color: #6f1c54;
}
.old-site2 .o2-contact {
  font-size: 10.5px;
  color: #6f1c54;
  text-align: right;
  line-height: 1.3;
}
.old-site2 .o2-nav {
  background: #c25aa1;
  color: #fff;
  padding: 5px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 10px;
}
.old-site2 .o2-nav span.active {
  color: #fff8d6;
  text-decoration: underline;
  font-weight: bold;
}
.old-site2 .o2-welcome {
  background: #fff8d6;
  color: #c25aa1;
  text-align: center;
  padding: 6px 14px;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive;
  font-size: 13px;
  border-bottom: 1px dashed #e5b1d3;
}
.old-site2 .o2-table {
  width: 100%;
  border-collapse: collapse;
  background: #fffdf6;
}
.old-site2 .o2-table td {
  vertical-align: top;
  padding: 14px;
  font-size: 11px;
  border: 1px solid #f1d6e7;
}
.old-site2 .o2-td-text p {
  margin: 0 0 6px;
}
.old-site2 .o2-td-img {
  width: 38%;
}
.old-site2 .o2-photo {
  background: repeating-linear-gradient(
    135deg,
    #fff0a8 0 8px,
    #f5e088 8px 16px
  );
  border: 1px solid #c9b03c;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: #7a661c;
  font-size: 9.5px;
  font-style: italic;
}
.old-site2 .o2-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 10px 14px 14px;
  font-size: 10.5px;
}
.old-site2 .o2-box {
  background: #fbe4f0;
  border: 1px dashed #c25aa1;
  padding: 8px;
}
.old-site2 .o2-box h5 {
  margin: 0 0 4px;
  color: #6f1c54;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive;
  font-size: 11.5px;
}
.old-site2 .o2-box p {
  margin: 0;
  color: #3a2238;
  font-size: 9.5px;
}
.old-site2 .o2-footer {
  background: #c25aa1;
  color: #fbe4f0;
  padding: 7px 14px;
  font-size: 9px;
  text-align: center;
}

/* ───────── NEW site v3 — Hofmann (Familienrecht, warm-ruhig) ───────── */
.new-site.v3 {
  background: #f5efe4;
  color: #2a2a26;
  font-family: "Inter", system-ui, sans-serif;
}
.new-site.v3 .nv3-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #e5dcc8;
  background: #f5efe4;
}
.new-site.v3 .nv3-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.new-site.v3 .nv3-mk {
  width: 26px;
  height: 26px;
  background: #4a6b5f;
  color: #f5efe4;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
}
.new-site.v3 .nv3-name {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  color: #2a2a26;
}
.new-site.v3 .nv3-nav {
  display: flex;
  gap: 18px;
  font-size: 10.5px;
  color: #7a7363;
  letter-spacing: 0.02em;
}
.new-site.v3 .nv3-tel {
  font-size: 10.5px;
  font-family: "JetBrains Mono", monospace;
  color: #2a2a26;
}
.new-site.v3 .nv3-hero {
  display: grid;
  grid-template-columns: 6fr 4fr;
  min-height: 230px;
  background: #ebe3d2;
}
.new-site.v3 .nv3-hero-text {
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new-site.v3 .nv3-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a6b5f;
}
.new-site.v3 .nv3-hero-text h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #2a2a26;
  margin: 12px 0 12px;
}
.new-site.v3 .nv3-hero-lead {
  font-size: 11.5px;
  line-height: 1.55;
  color: #5a5444;
  margin: 0 0 18px;
  max-width: 28em;
}
.new-site.v3 .nv3-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.new-site.v3 .nv3-btn {
  background: #4a6b5f;
  color: #f5efe4;
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.new-site.v3 .nv3-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #5a5444;
  letter-spacing: 0.04em;
}
.new-site.v3 .nv3-hero-ornament {
  position: relative;
  background:
    linear-gradient(180deg, #d9ceb6 0%, #cdbf9f 100%),
    #d9ceb6;
  border-left: 1px solid #cdbf9f;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px 22px 18px;
}
/* Zarte vertikale Pinstripe-Textur (Innenraum-Andeutung) */
.new-site.v3 .nv3-hero-ornament::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(74, 107, 95, 0.07) 0 1px,
    transparent 1px 22px
  );
  pointer-events: none;
}
.new-site.v3 .nv3-ornament-initial {
  position: absolute;
  top: -32px;
  right: -8px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 260px;
  line-height: 1;
  color: #4a6b5f;
  opacity: 0.14;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.new-site.v3 .nv3-ornament-phrase {
  position: relative;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
  color: #4a6b5f;
  max-width: 14em;
}
.new-site.v3 .nv3-fields {
  padding: 22px 22px 24px;
  background: #f5efe4;
}
.new-site.v3 .nv3-fields-head {
  margin-bottom: 12px;
}
.new-site.v3 .nv3-fields-list {
  display: flex;
  flex-direction: column;
}
.new-site.v3 .nv3-field {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #e5dcc8;
  font-size: 11px;
}
.new-site.v3 .nv3-field:last-child {
  border-bottom: 1px solid #e5dcc8;
}
.new-site.v3 .nv3-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #4a6b5f;
  letter-spacing: 0.04em;
}
.new-site.v3 .nv3-name2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  color: #2a2a26;
}
.new-site.v3 .nv3-arr {
  color: #4a6b5f;
  font-size: 14px;
}

/* ───────── OLD site 3 — Brandt (Strafrecht, 2015 WP-Theme) ───────── */
.old-site3 {
  background: #fff;
  font-family: Georgia, "Times New Roman", serif;
  color: #2c2c2c;
  font-size: 12px;
  line-height: 1.5;
  flex: 1;
}
.old-site3 .o3-banner {
  position: relative;
  background: linear-gradient(135deg, #1c5fae 0%, #0d3a72 100%);
  color: #fff;
  padding: 18px 16px;
  overflow: hidden;
}
.old-site3 .o3-banner-bg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 56px;
  color: rgba(255, 255, 255, 0.12);
  font-family: Georgia, serif;
}
.old-site3 .o3-banner-text h4 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  font-family: Georgia, serif;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
.old-site3 .o3-sub {
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: #cfe0f5;
  margin-top: 3px;
}
.old-site3 .o3-nav {
  background: #0d3a72;
  color: #fff;
  display: flex;
  gap: 14px;
  padding: 8px 16px;
  font-size: 10.5px;
  font-family: Arial, sans-serif;
  align-items: center;
  border-bottom: 1px solid #082855;
}
.old-site3 .o3-nav span.active {
  background: #1c5fae;
  padding: 2px 6px;
}
.old-site3 .o3-search {
  margin-left: auto;
  background: #fff;
  color: #888;
  padding: 2px 8px;
  font-size: 9.5px;
  font-style: italic;
}
.old-site3 .o3-content {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 12px;
  padding: 14px 16px;
}
.old-site3 .o3-main h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  color: #0d3a72;
  border-bottom: 2px solid #1c5fae;
  padding-bottom: 4px;
}
.old-site3 .o3-main p {
  margin: 0 0 8px;
  font-size: 10.5px;
  color: #333;
  line-height: 1.5;
}
.old-site3 .o3-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
}
.old-site3 .o3-widget {
  background: #eef3f9;
  border: 1px solid #bcd3ec;
  padding: 7px 9px;
}
.old-site3 .o3-widget h6 {
  margin: 0 0 4px;
  font-family: Arial, sans-serif;
  font-size: 9.5px;
  color: #0d3a72;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #bcd3ec;
  padding-bottom: 2px;
}
.old-site3 .o3-widget p,
.old-site3 .o3-widget ul {
  margin: 0;
  padding: 0;
  font-size: 9.5px;
  color: #333;
  list-style: none;
}
.old-site3 .o3-widget li {
  padding: 1px 0;
}
.old-site3 .o3-widget.o3-badge {
  background: #fff5cc;
  border-color: #d3b94a;
  color: #7a601a;
  font-size: 9px;
  text-align: center;
  font-style: italic;
}
.old-site3 .o3-footer {
  background: #0d3a72;
  color: #cfe0f5;
  padding: 7px 14px;
  font-size: 9px;
  text-align: center;
}

/* ───────── NEW site v4 — Brandt (Strafverteidigung, streng-reduziert) ───────── */
.new-site.v4 {
  background: #ffffff;
  color: #0b0b0b;
  font-family: "Inter", system-ui, sans-serif;
}
.new-site.v4 .nv4-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid #0b0b0b;
}
.new-site.v4 .nv4-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.new-site.v4 .nv4-mk {
  width: 22px;
  height: 22px;
  background: #0b0b0b;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 500;
  font-size: 13px;
}
.new-site.v4 .nv4-name {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 17px;
  font-weight: 500;
  color: #0b0b0b;
  letter-spacing: -0.005em;
}
.new-site.v4 .nv4-suffix {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6a6a6a;
}
.new-site.v4 .nv4-nav {
  display: flex;
  gap: 22px;
  font-size: 10.5px;
  color: #0b0b0b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.new-site.v4 .nv4-tel {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: #0b0b0b;
}
.new-site.v4 .nv4-hero {
  padding: 56px 28px 48px;
  border-bottom: 1px solid #0b0b0b;
  background: #ffffff;
}
.new-site.v4 .nv4-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6a6a6a;
}
.new-site.v4 .nv4-hero h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #0b0b0b;
  margin: 20px 0 22px;
}
.new-site.v4 .nv4-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #4a4a4a;
  letter-spacing: 0.04em;
}
.new-site.v4 .nv4-line {
  flex: 1;
  height: 1px;
  background: #0b0b0b;
  max-width: 80px;
}
.new-site.v4 .nv4-cta {
  color: #0b0b0b;
  border-bottom: 1px solid #0b0b0b;
  padding-bottom: 2px;
  font-size: 10.5px;
}
.new-site.v4 .nv4-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.new-site.v4 .nv4-field {
  padding: 22px;
  border-right: 1px solid #0b0b0b;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 110px;
}
.new-site.v4 .nv4-field:last-child {
  border-right: 0;
}
.new-site.v4 .nv4-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #6a6a6a;
  letter-spacing: 0.04em;
}
.new-site.v4 .nv4-name2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  color: #0b0b0b;
}

/* Mockup-Mobile-Anpassungen */
@media (max-width: 520px) {
  .new-site.v3 .nv3-hero {
    grid-template-columns: 1fr;
  }
  .new-site.v3 .nv3-hero-ornament {
    display: none;
  }
  .new-site.v3 .nv3-hero-text h2 {
    font-size: 26px;
  }
  .new-site.v4 .nv4-fields {
    grid-template-columns: 1fr;
  }
  .new-site.v4 .nv4-field {
    border-right: 0;
    border-bottom: 1px solid #0b0b0b;
    min-height: 0;
  }
  .new-site.v4 .nv4-field:last-child {
    border-bottom: 0;
  }
  .new-site.v4 .nv4-hero h2 {
    font-size: 30px;
  }
  .new-site.v4 .nv4-suffix {
    display: none;
  }
  .new-site.v2 .nv2-hero {
    grid-template-columns: 1fr;
  }
  .new-site.v2 .nv2-hero-img {
    aspect-ratio: 16/9;
    min-height: 140px;
  }
}

/* slider beneath the static comparison */
.ba-slider-wrap {
  margin-top: 56px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 22px;
}
.ba-slider-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ba-slider-meta b {
  color: var(--ink);
  font-weight: 500;
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8.5;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  border: 1px solid var(--line);
  background: #fff;
}
.ba-slider .layer {
  position: absolute;
  inset: 0;
}
.ba-slider .layer.after {
  clip-path: inset(0 0 0 var(--p, 50%));
}
.ba-slider .handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  left: var(--p, 50%);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(14, 27, 44, 0.05);
}
.ba-slider .knob {
  position: absolute;
  top: 50%;
  left: var(--p, 50%);
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(14, 27, 44, 0.25);
  pointer-events: none;
}
.ba-slider .tag {
  position: absolute;
  top: 14px;
  padding: 5px 10px;
  border-radius: 1px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ba-slider .tag.l {
  left: 14px;
  background: rgba(14, 27, 44, 0.86);
  color: #fff;
}
.ba-slider .tag.r {
  right: 14px;
  background: var(--gold);
  color: var(--ink);
}

/* fill child mockups inside slider */
.ba-slider .layer .browser {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}
.ba-slider .layer .old-site,
.ba-slider .layer .new-site {
  height: 100%;
}

/* ───────── Pricing ───────── */
.pricing {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing.pricing-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .pricing {
    grid-template-columns: 1fr 1fr;
  }
  .pricing.pricing-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .pricing {
    grid-template-columns: 1fr;
  }
  .pricing.pricing-3 {
    grid-template-columns: 1fr;
  }
}

/* Block-Kopf für die zwei Pricing-Blöcke (Einmalig / Sorglos-Paket).
   Die Blöcke liegen in getrennten .container-Elementen — kein .pricing-block + .pricing-block möglich. */
#preise .pricing-block-sorglos-wrap {
  margin-top: 120px;
}
#preise .pricing-block--sorglos .pricing-block-head {
  padding-top: 48px;
}
.pricing-block-head {
  margin-bottom: 40px;
  max-width: 720px;
}
.pricing-block-head h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  margin-top: 28px;
}
.pricing-block-head .pricing-block-lead {
  color: var(--muted);
  font-size: 15.5px;
  margin: 26px 0 0;
  max-width: 56ch;
}
.price-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.price-cell:last-child {
  border-right: 0;
}
@media (max-width: 980px) {
  .price-cell:nth-child(2n) {
    border-right: 0;
  }
  .price-cell {
    border-bottom: 1px solid var(--line);
  }
}
.price-intro {
  background: var(--ink);
  color: var(--paper);
}
.price-intro h3 {
  color: var(--paper);
  font-size: 28px;
  margin-bottom: 12px;
}
.price-intro p {
  color: rgba(244, 239, 230, 0.72);
  font-size: 14.5px;
  margin: 0;
}
.price-intro .meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.price-cell .tier-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.price-cell .tier-price {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.price-cell .tier-price small {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin-left: 4px;
  font-weight: 400;
}
.price-cell .tier-tag {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.price-cell ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 13.5px;
  color: var(--ink);
}
.price-cell ul li {
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-cell ul li::before {
  content: "§";
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 600;
}
.price-cell .tier-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
/* Profil/Premium: „Paket wählen“ stärker als Standard-Ghost (Karte sonst fast aufgehend) */
.price-cell:not(.featured) .tier-cta.btn-ghost {
  background: var(--paper);
  border-color: color-mix(in srgb, var(--ink) 28%, var(--line));
}
.price-cell:not(.featured) .tier-cta.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.price-cell.featured {
  background: var(--paper);
  position: relative;
}
.price-cell.featured::after {
  content: "Empfohlen";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid color-mix(in srgb, var(--ink) 18%, var(--gold));
  padding: 6px 10px;
}

/* Preise: etwas dichter als der Rest, aber gut lesbar (Orientierung: Lead ~17px, Listen global 13,5px) */
/* Gleiche Kartenhöhe pro Zeile; Toggle + CTA unten bündig (:has für Spalten ohne Toggle, z. B. „Sichtbar“). */
#preise .pricing.pricing-3 {
  align-items: stretch;
}
#preise .pricing.pricing-3 > .price-cell {
  align-self: stretch;
  height: 100%;
}
#preise .price-cell {
  padding: 28px 24px 30px;
  min-height: 0;
}
#preise .price-cell:has(.pricing-expand-inline:not([hidden])) .pricing-expand-inline {
  margin-top: auto;
}
#preise .price-cell:has(.pricing-expand-inline:not([hidden])) .tier-cta {
  margin-top: 0;
}
#preise .price-cell .tier-subtitle {
  font-size: 15px;
  line-height: 1.42;
  color: var(--ink);
  margin-bottom: 12px;
}
#preise .price-cell .tier-audience {
  font-size: 14.25px;
  line-height: 1.5;
  margin: 0 0 14px;
  color: var(--muted);
}
#preise .price-cell .tier-incl {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
  color: var(--ink);
}
#preise .price-cell .tier-note {
  font-size: 13px;
  color: var(--muted);
  margin: -2px 0 16px;
}
#preise .price-cell .tier-name {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
#preise .price-cell .tier-price {
  font-size: clamp(32px, 4vw, 44px);
}
#preise .price-cell .tier-price small {
  font-size: 13px;
}
#preise .price-cell ul {
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 10px;
}
#preise .price-cell ul li {
  padding: 7px 0;
}
/* Festpreis & Sorglos: zugeklappt keine Leistungsliste und kein „Alles aus …“ */
#preise .pricing.pricing--einmal:not(.is-expanded) .price-cell > .tier-incl,
#preise .pricing.pricing--einmal:not(.is-expanded) .price-cell > ul,
#preise .pricing.pricing--sorglos:not(.is-expanded) .price-cell > .tier-incl,
#preise .pricing.pricing--sorglos:not(.is-expanded) .price-cell > ul {
  display: none;
}
/* Sorglos „Sicher“: Zuschlag-Hinweis erst mit aufgeklappter Liste */
#preise .pricing.pricing--sorglos:not(.is-expanded) .price-cell > .tier-note {
  display: none;
}
#preise .pricing-expand-inline {
  margin: 0 0 12px;
  flex-shrink: 0;
}
#preise .pricing-expand-inline[hidden] {
  display: none !important;
}
#preise .pricing-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 4px 0;
  font-family: inherit;
  font-size: 12.25px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 1px dashed color-mix(in srgb, var(--muted) 55%, var(--line));
  border-radius: 0;
  cursor: pointer;
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}
#preise .pricing-expand-btn:hover {
  color: var(--ink);
  border-bottom-color: color-mix(in srgb, var(--gold) 65%, var(--ink));
}
#preise .pricing-expand-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
#preise .pricing-block-head {
  margin-bottom: 28px;
}
#preise .pricing-block-head h3 {
  margin-top: 18px;
  font-size: clamp(22px, 2.2vw, 28px);
}

/* Sorglos: Basis-Band über den drei Betreuungs-Karten (volle Breite, dunkel wie .price-intro) */
#preise .pricing-basis-band {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
#preise .pricing-basis-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 28px 40px;
  padding: 32px 28px 34px;
  align-items: start;
}
@media (max-width: 720px) {
  #preise .pricing-basis-band-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
#preise .pricing-basis-band .tier-name {
  margin-bottom: 12px;
}
#preise .pricing-basis-price {
  color: var(--paper);
}
#preise .pricing-basis-price small {
  color: rgba(244, 239, 230, 0.62);
}
#preise .pricing-basis-body p {
  margin: 0;
  font-size: 14.25px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.78);
}
#preise .pricing-basis-hint {
  margin-top: 16px !important;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.58);
}
#preise .pricing-inline-faq--on-dark {
  color: var(--gold-2);
  border-bottom-color: rgba(212, 178, 122, 0.45);
}
#preise .pricing-inline-faq--on-dark:hover {
  color: var(--paper);
  border-bottom-color: var(--gold-2);
}
#preise .pricing-basis-bridge {
  margin: 28px 0 24px;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
#preise .pricing-block--sorglos .pricing.pricing--sorglos {
  border-top: 0;
}

/* ───────── Process ───────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-reset: step;
}
@media (max-width: 880px) {
  .process {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .process {
    grid-template-columns: 1fr;
  }
}
.step {
  padding: 36px 28px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  counter-increment: step;
}
.step:last-child {
  border-right: 0;
}
@media (max-width: 880px) {
  .step:nth-child(2n) {
    border-right: 0;
  }
  .step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 500;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.step .when {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.step .when span {
  color: var(--muted);
  margin-right: 6px;
}

/* ───────── About ───────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.portrait {
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.portrait-photo {
  padding: 0;
}
.portrait-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.portrait-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(14, 27, 44, 0) 30%,
    rgba(14, 27, 44, 0.78) 100%
  );
  pointer-events: none;
}
.portrait-photo .place {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(14, 27, 44, 0.04) 0 2px,
      transparent 2px 14px
    ),
    radial-gradient(
      circle at 30% 30%,
      rgba(184, 148, 85, 0.18),
      transparent 60%
    );
}
.portrait .initials {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.portrait .initials .dot {
  color: var(--gold);
}
.portrait .place {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.portrait .place b {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}

/* Drei Klassen-Segmente: schlägt `.portrait .place b` für das Foto-Portrait */
.portrait.portrait-photo .place b {
  color: #fff;
}

.about-text p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 18px;
}
.about-text p.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-text .sig {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
}
.about-text .sig b {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  display: block;
}

/* Quellen-Links inline im Über-mich-Fließtext */
.about-text .source-link {
  color: var(--gold);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  padding-bottom: 1px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.about-text .source-link:hover {
  color: var(--gold-2);
  border-bottom-color: var(--gold-2);
}

/* Credentials-Liste (Vita-Stil, dezent) */
.about-text .credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 26px 0 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-text .credential {
  padding: 2px 20px;
  border-left: 1px solid var(--line);
}
.about-text .credential:first-child {
  border-left: 0;
  padding-left: 0;
}
.about-text .credential:last-child {
  padding-right: 0;
}
.about-text .credential dt {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
}
.about-text .credential dd {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.about-text .credential dt a {
  color: inherit;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.about-text .credential dt a:hover {
  border-bottom-color: var(--ink);
}
@media (max-width: 720px) {
  .about-text .credentials {
    grid-template-columns: 1fr;
    padding: 6px 0;
  }
  .about-text .credential {
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .about-text .credential:first-child {
    border-top: 0;
  }
}

/* ───────── Guarantee strip ───────── */
.guarantee {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
@media (max-width: 780px) {
  .guarantee-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
}
.seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  flex: none;
  border: 1px solid var(--gold);
  position: relative;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: var(--ink);
  text-align: center;
  line-height: 1.1;
}
.seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
}
.seal span {
  font-style: italic;
  font-size: 14px;
}
.seal b {
  display: block;
  font-size: 22px;
  font-weight: 500;
}
.guarantee h3 {
  font-size: 26px;
  margin-bottom: 6px;
}
.guarantee p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
  max-width: 56ch;
}

/* ───────── FAQ ───────── */
.faq-list {
  border-top: 1px solid var(--line);
}
details.faq-item {
  border-bottom: 1px solid var(--line);
}
details.faq-item > summary.faq-q {
  list-style: none;
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
details.faq-item > summary.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  font-family: var(--serif);
  /* Flex-Item darf schrumpfen, sonst breiter FAQ-Titel = horizontales Scrollen */
  min-width: 0;
}
.faq-q .plus {
  width: 28px;
  height: 28px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 14px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
details.faq-item[open] > summary.faq-q .plus {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-a {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-a > div {
  padding: 0 0 28px;
  max-width: 64ch;
}
.faq-a .faq-a-list {
  margin: 0.75em 0 0;
  padding-left: 1.25em;
  color: var(--muted);
}
.faq-a .faq-a-list li {
  margin: 0.35em 0;
}
.faq-a .faq-a-para-follow {
  margin: 1em 0 0;
}

/* Hinweis-Links vom Pricing zum FAQ („was zählt als Änderung“) */
#preise .pricing-inline-faq {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ───────── Contact / CTA ───────── */
.cta {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink);
}
.cta h2,
.cta h3 {
  color: var(--paper);
}
.cta .eyebrow {
  color: var(--gold-2);
}
.cta .eyebrow::before {
  background: var(--gold-2);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Dankeseite erst nach erfolgreichem Submit sichtbar — [hidden] zuverlässig erzwingen */
#contact-thanks[hidden],
#contact-default[hidden] {
  display: none !important;
}
@media (max-width: 880px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.cta .lead {
  color: rgba(244, 239, 230, 0.78);
  font-size: 18px;
  max-width: 44ch;
  line-height: 1.6;
  margin-top: 28px;
}
.cta-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-points div {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 14.5px;
  color: rgba(244, 239, 230, 0.85);
}
.cta-points b {
  color: var(--gold-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  min-width: 28px;
}

.form-card {
  position: relative;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.16);
  padding: 36px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.form-row input,
.form-row textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.28);
  color: var(--paper);
  font: inherit;
  font-size: 16px;
  padding: 8px 0;
  outline: none;
  font-family: var(--serif);
  letter-spacing: -0.005em;
  transition: border-color 0.2s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(244, 239, 230, 0.32);
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold-2);
}
/* Chrome/Android: Autofill sonst weiß/gelb — an dunkles Kontaktformular anpassen */
.form-card .form-row input:-webkit-autofill,
.form-card .form-row input:-webkit-autofill:hover,
.form-card .form-row input:-webkit-autofill:focus,
.form-card .form-row textarea:-webkit-autofill,
.form-card .form-row textarea:-webkit-autofill:hover,
.form-card .form-row textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--paper);
  caret-color: var(--paper);
  box-shadow: 0 0 0 1000px rgba(14, 27, 44, 0.92) inset;
  -webkit-box-shadow: 0 0 0 1000px rgba(14, 27, 44, 0.92) inset;
  border-bottom-color: rgba(244, 239, 230, 0.28);
  transition: background-color 99999s ease-out;
}
.form-row textarea {
  resize: vertical;
  min-height: 70px;
}
.form-row.invalid input,
.form-row.invalid textarea {
  border-color: #c97766;
}
.form-row .err {
  color: #e6a195;
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0;
  text-transform: none;
  min-height: 14px;
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-actions small {
  color: rgba(244, 239, 230, 0.5);
  font-size: 11.5px;
}
.form-success {
  padding: 28px;
  border: 1px solid var(--gold-2);
  color: var(--paper);
  background: rgba(212, 178, 122, 0.07);
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--paper);
}
.form-success p {
  color: rgba(244, 239, 230, 0.78);
  margin: 0;
}

/* ───────── Footer ───────── */
footer {
  padding: 48px 0 64px;
  color: var(--muted);
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}
@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.footer-mini {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-mini a {
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer-mini a:hover {
  color: var(--ink);
}

/* ───────── Reveal anim ───────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ───────── Rechtstexte (Impressum, Datenschutz) ───────── */
.legal-main {
  padding: 48px 0 100px;
  position: relative;
  z-index: 2;
}
.legal-inner {
  max-width: 720px;
}
.legal-inner > .eyebrow {
  margin-bottom: 10px;
}
.legal-inner > h1 {
  margin-bottom: 10px;
}
.legal-inner .legal-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 36px;
}
.legal-inner h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 2.4rem 0 0.85rem;
  letter-spacing: -0.01em;
}
.legal-inner h2:first-of-type {
  margin-top: 0;
}
.legal-inner p,
.legal-inner li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-inner ul {
  margin: 0 0 18px;
  padding-left: 1.35rem;
}
.legal-inner li {
  margin-bottom: 8px;
}
.legal-inner address {
  font-style: normal;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.65;
}
.legal-inner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-inner a:hover {
  color: var(--gold-2);
}
/* Platzhalter für fehlende Pflichtangaben — vor Livegang ausfüllen und Klasse entfernen */
.legal-inner .legal-todo {
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* utility */
.gold {
  color: var(--gold);
}
.italic {
  font-style: italic;
}
.mono {
  font-family: var(--mono);
}
