/* ---------------------------------------------------------------------
   bewusst-versorgt – Ergaenzungen zu theme.json
   Nur was sich ueber Block-Einstellungen nicht sauber abbilden laesst.
   Farben kommen ausschliesslich aus den Presets.
   ------------------------------------------------------------------ */

/* --- Kopfbereich --------------------------------------------------- */
.bv-header {
  border-bottom: 1px solid var(--wp--preset--color--sand);
}
/* Eine Zeile: Marke links, Navigation rechts. Erst auf Tablet umbrechen. */
.bv-header-row { gap: 24px; flex-wrap: nowrap; }
.bv-brand { gap: 12px; flex: 0 1 auto; min-width: 0; }
.bv-brand .wp-block-site-logo { margin: 0; flex: none; line-height: 0; }
.bv-brand .wp-block-site-logo img { height: 58px; width: auto; display: block; }
.bv-wordmark { min-width: 0; }
.bv-wordmark .wp-block-site-title { line-height: 1.1; }
.bv-wordmark .wp-block-site-title a { text-decoration: none; }
.bv-nav-area { gap: 24px; flex: none; }
.bv-nav-area .wp-block-navigation { font-size: 16px; }
.bv-nav-area .wp-block-navigation a { text-decoration: none; color: var(--wp--preset--color--ink-muted); }
.bv-nav-area .wp-block-navigation a:hover { color: var(--wp--preset--color--teal-700); }
.bv-header-cta .wp-block-button__link { padding: 11px 22px; font-size: 15.5px; }

.bv-claim {
  font-family: var(--wp--preset--font-family--accent);
  font-size: 15px;
  line-height: 1.3;
  color: var(--wp--preset--color--teal-500);
  margin: 2px 0 0;
  white-space: nowrap;
}
/* Der Claim ist das Erste, was Platz macht — er steht auch im Fussbereich. */
@media (max-width: 1220px) { .bv-claim { display: none; } }
@media (max-width: 1020px) {
  .bv-header-row { flex-wrap: wrap; }
  .bv-nav-area { flex: 1 1 100%; justify-content: flex-start; }
}
@media (max-width: 640px) {
  /* Auf dem Handy sind 32px Rand verschenkte Breite. */
  :root {
    --wp--style--root-padding-left: 20px;
    --wp--style--root-padding-right: 20px;
  }
  .bv-brand .wp-block-site-logo img { height: 46px; }
  .bv-wordmark .wp-block-site-title { font-size: 19px; }
}

/* --- Kicker / Eyebrow ---------------------------------------------- */
.bv-kicker {
  font-size: 12.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wp--preset--color--teal-700);
  margin-bottom: 16px;
}

/* --- Hero-Portraet: rund, mit Ring --------------------------------- */
/* Deckelt die Groesse, damit das Bild bei 1280 Layoutbreite nicht
   uebergross wird. Sitzt rechtsbuendig in seiner Spalte. */
.bv-portrait { position: relative; max-width: 430px; margin-left: auto; margin-right: 0; }
.bv-portrait img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 24px 60px -34px rgba(18, 51, 47, .6);
}
.bv-portrait::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid var(--wp--preset--color--mint-300);
  opacity: .55;
  pointer-events: none;
}

/* --- Portraet mit organischer Ecke (Ueber-mich) --------------------- */
.bv-portrait-soft img {
  border-radius: 8px 8px 96px 8px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

/* --- Wellentrenner -------------------------------------------------- */
.bv-wave { line-height: 0; }
.bv-wave svg { display: block; width: 100%; height: 52px; }

/* --- CTA-Kasten ----------------------------------------------------- */
.bv-cta {
  background: var(--wp--preset--color--surface);
  border: 1px solid var(--wp--preset--color--sand);
  box-shadow: 0 1px 2px rgba(18,51,47,.04), 0 18px 40px -30px rgba(18,51,47,.45);
}

/* --- Wer antwortet (kleines Avatar-Duo) ----------------------------- */
.bv-answers { display: flex; align-items: center; gap: 14px; }
.bv-answers .wp-block-image { margin: 0; flex: none; width: 58px; }
.bv-answers img {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--wp--preset--color--surface);
  box-shadow: 0 0 0 1px var(--wp--preset--color--sand);
}

/* --- Nummerierte Schritte ------------------------------------------ */
.bv-steps .bv-step { border-left: 1px solid var(--wp--preset--color--sand); padding-left: 32px; }
.bv-steps .bv-step:first-child { border-left: none; padding-left: 0; }
.bv-step .bv-num {
  font-family: var(--wp--preset--font-family--display);
  font-size: 44px;
  line-height: 1;
  color: var(--wp--preset--color--mint-300);
  margin-bottom: 14px;
}

/* --- Zahlenband ----------------------------------------------------- */
.bv-fact .bv-fact-value {
  font-family: var(--wp--preset--font-family--display);
  font-size: 34px;
  line-height: 1.1;
  color: var(--wp--preset--color--teal-700);
  margin-bottom: 4px;
}
.bv-fact p { margin: 0; }

/* --- Claims-Block (rechtlich fixiert) ------------------------------- */
.bv-claims {
  border-left: 3px solid var(--wp--preset--color--mint-300);
  padding-left: 26px;
}
.bv-claims ul { list-style: none; padding: 0; margin: 0 0 16px; }
.bv-claims li { margin-bottom: 12px; color: var(--wp--preset--color--ink-muted); }
.bv-claims li em {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--wp--preset--color--ink-muted);
  opacity: .8;
  margin-top: 2px;
}

/* --- Tier-Bruecke und Transparenz ----------------------------------- */
.bv-door {
  background: var(--wp--preset--color--surface);
  border: 1px solid var(--wp--preset--color--sand);
  box-shadow: 0 1px 2px rgba(18,51,47,.04), 0 18px 40px -30px rgba(18,51,47,.45);
}
.bv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wp--preset--color--mint-100);
  color: var(--wp--preset--color--teal-700);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 7px 14px;
  border-radius: 999px;
}
.bv-transparenz {
  border-top: 1px solid var(--wp--preset--color--sand);
  border-bottom: 1px solid var(--wp--preset--color--sand);
}

/* --- FAQ ------------------------------------------------------------ */
.bv-faq .wp-block-details {
  border-bottom: 1px solid var(--wp--preset--color--sand);
  padding: 16px 0;
}
.bv-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.bv-faq summary::-webkit-details-marker { display: none; }
.bv-faq summary::after { content: " +"; color: var(--wp--preset--color--teal-700); }
.bv-faq details[open] summary::after { content: " –"; }

/* --- Lesbarkeit ----------------------------------------------------- */
.bv-lead { font-size: 20px; font-weight: 300; color: var(--wp--preset--color--ink-muted); }
.bv-muted { color: var(--wp--preset--color--ink-muted); }

/* --- Tastaturbedienung ---------------------------------------------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--wp--preset--color--teal-500);
  outline-offset: 3px;
}

/* --- Mobil ----------------------------------------------------------- */
@media (max-width: 781px) {
  .bv-steps .bv-step,
  .bv-steps .bv-step:first-child {
    border-left: 2px solid var(--wp--preset--color--sand);
    padding-left: 22px;
  }
  .bv-portrait::after { inset: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
