/* ==========================================================================
   Kanzlei Tanja Seeger — Design System
   Keine externen Requests (DSGVO-freundlich): Systemschriften, lokale Bilder.
   ========================================================================== */

:root {
  /* Farben – abgeleitet aus dem bestehenden Logo (#6F2A1D) und Sandton */
  --bone: #f7f2eb;
  --sand: #ece4da;
  --sand-deep: #e0d5c7;
  --line: #d8ccbd;
  --ink: #241e1a;
  --ink-soft: #5d5249;
  --ink-mute: #857a70;
  --rust: #6f2a1d;
  --rust-bright: #8c3a26;
  --rust-tint: rgba(111, 42, 29, 0.08);
  --dark: #1d1815;
  --dark-soft: #2b2320;
  --white: #fffdfa;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Georgia, ui-serif, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(36, 30, 26, 0.05);
  --shadow-md: 0 18px 40px -24px rgba(36, 30, 26, 0.35);
  --shadow-lg: 0 40px 80px -40px rgba(36, 30, 26, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--rust); color: var(--bone); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.14;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.05rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); line-height: 1.28; }
h4 { font-size: 1.06rem; line-height: 1.35; }

p { margin: 0 0 1.15em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 1.55vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow--center::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.muted { color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--dark); color: var(--sand); }
.section--dark h2, .section--dark h3 { color: var(--bone); }
.section--dark .eyebrow { color: #d9a48c; }
.section--dark .lead, .section--dark p { color: rgba(236, 228, 218, 0.78); }

.section-head { max-width: 44rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center p { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--rust);
  --btn-fg: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.28s var(--ease), color 0.28s var(--ease),
    transform 0.28s var(--ease), border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.btn:hover {
  background: var(--rust-bright);
  border-color: var(--rust-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: transparent;
  border-color: var(--rust);
  color: var(--rust);
  box-shadow: none;
}

.btn--light {
  --btn-bg: var(--bone);
  --btn-fg: var(--dark);
}
.btn--light:hover { background: var(--white); border-color: var(--white); color: var(--dark); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--sand);
  border-color: rgba(236, 228, 218, 0.35);
}
.btn--outline-light:hover {
  background: rgba(236, 228, 218, 0.08);
  border-color: var(--sand);
  color: var(--bone);
  box-shadow: none;
}

.btn--sm { padding: 0.7rem 1.25rem; font-size: 0.78rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform 0.25s var(--ease); }
.link-arrow:hover { border-color: currentColor; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark);
  color: rgba(236, 228, 218, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.035em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 42px;
  padding-block: 0.4rem;
}
.topbar__note { display: inline-flex; align-items: center; gap: 0.55rem; }
.topbar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7fb08a; flex: none;
  box-shadow: 0 0 0 3px rgba(127, 176, 138, 0.2);
}
.topbar__links { display: flex; gap: 1.5rem; }
.topbar a { text-decoration: none; transition: color 0.22s var(--ease); }
.topbar a:hover { color: var(--white); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 242, 235, 0.86);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -26px rgba(36, 30, 26, 0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
  transition: min-height 0.3s var(--ease);
}
.header.is-stuck .header__inner { min-height: 68px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--rust);
  background: var(--white);
  flex: none;
}
.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.16rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.brand__role {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.28rem;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-soft);
  padding-block: 0.35rem;
  transition: color 0.24s var(--ease);
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--rust); }

.header__cta { display: inline-flex; gap: 0.6rem; align-items: center; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: background 0.2s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.28s var(--ease), top 0.28s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--bone);
  padding: 7.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav a[aria-current="page"] { color: var(--rust); }
.mobile-nav a.btn {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 1.05rem 1.7rem;
  border: 1px solid var(--rust);
  color: var(--bone);
}
.mobile-nav__meta { margin-top: 2rem; font-size: 0.9rem; color: var(--ink-soft); }
.mobile-nav__meta a { font-family: var(--sans); font-size: 0.95rem; border: 0; padding: 0.2rem 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--rust);
  color: var(--bone);
  padding: 0.75rem 1.25rem;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -12%;
  width: 46rem;
  height: 46rem;
  background: radial-gradient(circle at center, rgba(111, 42, 29, 0.07), transparent 62%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 0.35em; }
.hero h1 em {
  font-style: normal;
  color: var(--rust);
  display: block;
}
.hero__claim {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
}
.hero__claim span { color: var(--rust); }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin-top: 2.1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.hero__assurance li { list-style: none; display: flex; align-items: center; gap: 0.5rem; }
.hero__assurance li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rust);
  flex: none;
}
.hero__assurance ul { display: contents; }

.portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 27rem);
}
.portrait__frame {
  position: absolute;
  inset: 1.75rem -1.75rem -1.75rem 1.75rem;
  border: 1px solid var(--rust);
  opacity: 0.4;
  border-radius: 999px 999px 3px 3px;
  pointer-events: none;
}
.portrait img {
  position: relative;
  width: 100%;
  border-radius: 999px 999px 3px 3px;
  filter: saturate(0.96) contrast(1.02);
}
.portrait__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rust);
  padding: 0.85rem 1.15rem;
  box-shadow: var(--shadow-md);
  max-width: 14rem;
}
.portrait__badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--rust);
}
.portrait__badge span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.3rem;
}

/* ---------- Marquee / Trust ---------- */
.trustbar { background: var(--sand); border-block: 1px solid var(--line); }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.trustbar__item {
  background: var(--sand);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.trustbar__item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}
.trustbar__item span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--sand-deep);
  box-shadow: var(--shadow-md);
}
.card__num {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--rust);
  opacity: 0.75;
  margin-bottom: 0.9rem;
}
.card ul { margin: 0.4rem 0 0; padding: 0; list-style: none; }
.card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 8px; height: 1px;
  background: var(--rust);
}
.card .link-arrow { margin-top: auto; padding-top: 1.4rem; align-self: flex-start; }

.card--feature { background: var(--white); }
.card--feature .card__icon {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  color: var(--rust);
}
.card--feature .card__icon svg { width: 20px; height: 20px; }

/* ---------- Alert / Frist ---------- */
.alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--dark);
  color: var(--sand);
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: var(--radius);
  border-left: 3px solid var(--rust-bright);
}
.alert h2 { color: var(--bone); margin-bottom: 0.4em; }
.alert p { color: rgba(236, 228, 218, 0.76); margin-bottom: 0; }
.alert__deadline {
  display: grid;
  place-items: center;
  width: 9.5rem; height: 9.5rem;
  border: 1px solid rgba(236, 228, 218, 0.25);
  border-radius: 50%;
  text-align: center;
  flex: none;
}
.alert__deadline strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.9rem;
  line-height: 1;
  color: #d9a48c;
}
.alert__deadline span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  color: rgba(236, 228, 218, 0.7);
}

/* ---------- Prozess ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 1.9rem 0 1.9rem 4.6rem;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0; top: 1.9rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--rust);
  opacity: 0.5;
}
.step h3 { margin-bottom: 0.35rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- Split / Über mich ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.split__media::after {
  content: "";
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid var(--rust);
  opacity: 0.28;
  border-radius: var(--radius);
  z-index: -1;
}

.quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  line-height: 1.42;
  color: var(--ink);
  border-left: 2px solid var(--rust);
  padding-left: 1.5rem;
  margin: 0 0 1.8rem;
  max-width: none;
}
.quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 1rem;
}

.factlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.factlist li { display: flex; gap: 0.85rem; align-items: flex-start; color: var(--ink-soft); }
.factlist li::before {
  content: "✓";
  color: var(--rust);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: none;
}

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.35;
  transition: color 0.24s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--rust); }
.faq summary::after {
  content: "";
  flex: none;
  width: 13px; height: 13px;
  margin-top: 0.45rem;
  background:
    linear-gradient(var(--rust), var(--rust)) center/13px 1px no-repeat,
    linear-gradient(var(--rust), var(--rust)) center/1px 13px no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details[open] summary { color: var(--rust); }
.faq__body { padding: 0 0 1.7rem; color: var(--ink-soft); max-width: 62ch; }
.faq__body ul { margin: 0.6rem 0 0; padding-left: 1.1rem; }
.faq__body li { margin-bottom: 0.35rem; }

/* ---------- CTA Band ---------- */
.cta {
  background: var(--dark);
  color: var(--sand);
  text-align: center;
}
.cta h2 { color: var(--bone); }
.cta p { margin-inline: auto; color: rgba(236, 228, 218, 0.78); }
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.2rem;
}
.cta__note {
  margin-top: 1.6rem;
  font-size: 0.84rem;
  color: rgba(236, 228, 218, 0.55);
}

/* ---------- Kontaktkarten ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card { background: var(--white); padding: clamp(1.6rem, 3vw, 2.2rem); }
.contact-card h3 { font-size: 1.06rem; margin-bottom: 0.6rem; }
.contact-card a { color: var(--rust); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.25s var(--ease); }
.contact-card a:hover { border-color: currentColor; }
.contact-card p { font-size: 0.98rem; color: var(--ink-soft); }

/* ---------- Page Header (Unterseiten) ---------- */
.pagehead {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.pagehead h1 { max-width: 20ch; }
.pagehead .lead { max-width: 56ch; }
.breadcrumb {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.4rem;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--rust); }

/* ---------- Prose (Rechtstexte) ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-top: 2.6rem; }
.prose h3 { font-size: 1.1rem; margin-top: 1.9rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.15rem; color: var(--ink-soft); margin: 0 0 1.15em; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--rust); }
.prose__meta {
  background: var(--sand);
  border-left: 2px solid var(--rust);
  padding: 1.25rem 1.5rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(236, 228, 218, 0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.93rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(236, 228, 218, 0.14);
}
.footer__logo { width: 152px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); opacity: 0.82; }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(236, 228, 218, 0.5);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer a { text-decoration: none; transition: color 0.24s var(--ease); }
.footer a:hover { color: var(--bone); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.82rem;
  color: rgba(236, 228, 218, 0.45);
}

/* ---------- Hinweisbox ---------- */
.note {
  background: var(--rust-tint);
  border-left: 2px solid var(--rust);
  padding: 1.15rem 1.5rem;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.note strong { color: var(--rust); }
.note p { max-width: none; }
.note :last-child { margin-bottom: 0; }
.note--dark {
  background: rgba(236, 228, 218, 0.06);
  border-left-color: #d9a48c;
  color: rgba(236, 228, 218, 0.8);
}

/* ---------- Mandantenstimmen ---------- */
.voice {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  display: flex;
  flex-direction: column;
}
.voice__stars {
  color: var(--rust);
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  margin-bottom: 1rem;
}
.voice blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
}
.voice cite {
  margin-top: auto;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Werdegang ---------- */
.vita { margin: 0; }
.vita__row {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.4rem 1.75rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}
.vita__row:last-child { border-bottom: 1px solid var(--line); }
.vita__when {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--rust);
}
.vita__what { margin: 0; color: var(--ink-soft); }
.vita__what strong { color: var(--ink); font-weight: 600; }

/* ---------- Honorartabelle ---------- */
.pricetable { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.pricetable th, .pricetable td {
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.pricetable thead th {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom-color: var(--sand-deep);
}
.pricetable td:last-child { white-space: nowrap; color: var(--ink); font-weight: 600; }
.pricetable tbody th { font-weight: 400; color: var(--ink); }
.table-scroll { overflow-x: auto; }

/* ---------- Formular ---------- */
.form { display: grid; gap: 1.15rem; max-width: 40rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px var(--rust-tint);
}
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.form__consent input { margin-top: 0.35rem; width: 16px; height: 16px; accent-color: var(--rust); flex: none; }
.form__consent a { color: var(--rust); }
.form .btn { justify-self: start; }

/* ---------- Beitragsliste ---------- */
.post {
  display: block;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease);
}
.post:last-of-type { border-bottom: 1px solid var(--line); }
.post__meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.6rem;
}
.post h3 { margin-bottom: 0.4rem; transition: color 0.24s var(--ease); }
.post:hover h3 { color: var(--rust); }
.post p { margin: 0; color: var(--ink-soft); }

/* ---------- Mobiler Schnellkontakt ---------- */
.callbar { display: none; }

@media (max-width: 700px) {
  .callbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -8px 24px -18px rgba(36, 30, 26, 0.6);
  }
  .callbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
    padding: 0.5rem 1rem;
    background: var(--bone);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .callbar a.callbar__primary { background: var(--rust); color: var(--bone); }
  .callbar svg { width: 16px; height: 16px; flex: none; }
  body { padding-bottom: 56px; }
  .mobile-nav { padding-bottom: 5.5rem; }
}

/* ---------- Druckansicht ---------- */
@media print {
  .topbar, .header, .mobile-nav, .callbar, .hero__actions, .cta__actions,
  .portrait__frame, .portrait__badge, .skip-link, .link-arrow { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; line-height: 1.5; }
  .section, .hero, .pagehead { padding-block: 1.2rem; background: #fff !important; }
  .section--dark, .cta, .alert, .footer { background: #fff !important; color: #000 !important; }
  .section--dark h2, .cta h2, .alert h2, .footer a { color: #000 !important; }
  .card, .contact-card { border: 1px solid #999; box-shadow: none; }
  a { color: #000; text-decoration: underline; }
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #444; }
  .faq details { break-inside: avoid; }
  .faq__body { display: block !important; }
  h1, h2, h3 { break-after: avoid; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Reveal ----------
   Nur aktiv, wenn JavaScript läuft (.js wird im <head> gesetzt).
   Ohne JS bleiben alle Inhalte sichtbar. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: grid; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Im schmalen Band würde der Hinweis zweizeilig umbrechen –
   dort haben die Rufnummern Vorrang. */
@media (max-width: 1050px) {
  .topbar__note { display: none; }
}

@media (max-width: 700px) {
  .header__cta .btn { display: none; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .portrait { width: min(100%, 22rem); margin-top: 1rem; }
  .portrait__badge { left: auto; right: -1rem; bottom: 1.5rem; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .split__media::after { display: none; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trustbar__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .alert { grid-template-columns: 1fr; }
  .alert__deadline { justify-self: start; }
  .topbar__links { display: none; }
  .topbar__note { display: inline-flex; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .portrait__frame { display: none; }
  .portrait__badge { position: static; margin-top: 1.25rem; max-width: none; box-shadow: none; }
  .hero__assurance { gap: 0.4rem 1.1rem; }
  .step { padding-left: 3.6rem; }
  .brand__name { font-size: 1.05rem; }
  .vita__row { grid-template-columns: 1fr; gap: 0.3rem; }
  .form__row { grid-template-columns: 1fr; }
}
