/* ============================================================
   MWE — Privat / Persönliches (Landingpage)
   Seitenspezifische Styles. Design-Tokens, Reset, Header, Footer,
   Buttons, Hero, Steps, Kontaktformular kommen aus dem Design
   System (css/design-system.css), hier nur Overrides + neue,
   seiteneigene Komponenten.
   ============================================================ */

:root {
  --priv-accent: var(--terracotta-standard);   /* #A26449 */
  --container-max: 1360px; /* gleiche Breite wie .site-header .container */
}

/* ============================================================
   EIN EINHEITLICH ECKIGER LOOK — analog zu Business/Soziales
   (kein border-radius auf Karten/Buttons/Formularen; echte Kreise
   bleiben unangetastet).
   ============================================================ */

.btn,
.portrait-photo,
.step,
.contact-box {
  border-radius: 0;
}

/* ============================================================
   HERO
   ============================================================ */

/* Eyebrows bleiben Standard-Grün (wie Dachseite/Soziales) — keine
   Terracotta-Einfärbung. */

/* ============================================================
   FARBBAND-BALKEN — wiederverwendbarer vertikaler Akzent-Strich
   (identisch zu soziales/style.css .ansatz-card-bar, inkl.
   Container-Query-Fix für exakte Höhe unabhängig vom Kasten).
   ============================================================ */

.ansatz-card-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  overflow: hidden;
  line-height: 0;
  container-type: size;
}

.ansatz-card-bar img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 4px;
  width: 100cqh;
  max-width: none;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* ============================================================
   ZITAT — großer Kasten in Container-Breite, Farbband oben statt
   dunkler Flächenfarbe.
   ============================================================ */

.zitat-box {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-standard);
  border-top: none;
  padding: var(--space-xl) var(--space-lg);
  overflow: hidden;
  transition: background 0.25s;
}

.zitat-box:hover {
  background: var(--gray-light);
}

.zitat-bar-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  overflow: hidden;
  line-height: 0;
}

.zitat-bar-top img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#zitat .quote-block p,
#zitat .quote-attribution {
  color: var(--anthracite);
}

/* ============================================================
   TYPISCHE ANLÄSSE — 7 benannte Kästen (Begriff + Kurzbeschreibung),
   gleiches Kartenmuster wie Zitat-Kasten/Ansatz-Kästen (weiß, grauer
   Rand, Farbband links, Hover hellgrau).
   ============================================================ */

.situation-intro {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--anthracite);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.situation-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-standard);
  border-left: none;
  padding: 1.75rem 1.5rem 1.75rem calc(1.5rem + 4px);
  overflow: hidden;
  transition: background 0.25s;
}

.situation-card:hover {
  background: var(--gray-light);
}

.situation-card h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--anthracite);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 0 0 0.5rem;
}

.situation-card p {
  font-size: 1rem;
  color: var(--anthracite);
  line-height: 1.6;
  margin: 0;
}

/* Letzte (7.) Kachel in der Mitte der letzten Zeile zentrieren statt
   linksbündig allein stehen zu lassen */
.situation-grid .situation-card:last-child {
  grid-column: 2;
}

/* ============================================================
   PROSA-ABSCHNITTE — "Wie ich arbeite" / "Allein oder gemeinsam"
   Ruhiger, einspaltiger Lesetext ohne Kacheln oder Aufzählungen.
   ============================================================ */

.prose-block {
  max-width: 700px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.prose-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--anthracite);
  margin: 0;
}

/* ============================================================
   DREI SCHRITTE — Terracotta statt Grün als Bereichsfläche
   (analog zur Business-Seite, die hierfür Blau nutzt)
   ============================================================ */

.step {
  background: var(--terracotta-standard);
}

.schritte-closing {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   KONTAKT — 1:1 von Business/Soziales übernommen. Farben bleiben
   bewusst grün (site-weite Ausnahme für CTA/Formular-Fokus),
   nur Inhalte unterscheiden sich.
   ============================================================ */

.contact-lead {
  text-align: center;
  font-size: 1rem;
  color: var(--anthracite);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.contact-portrait {
  width: 110px;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center 15%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-org {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-standard);
}

.contact-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--anthracite);
}

.contact-info address {
  font-style: normal;
  font-size: 1rem;
  color: var(--anthracite);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-dark);
  text-decoration: none;
  font-size: 1rem;
  margin-top: 0.75rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-link + .contact-link {
  margin-top: 0.4rem;
}

.contact-note {
  margin-top: calc(var(--space-sm) + 5px);
  margin-bottom: calc(var(--space-sm) + 5px);
  font-size: 1rem;
  font-style: italic;
  color: var(--anthracite);
  line-height: 1.6;
}

.contact-form {
  background: transparent;
  padding: 0;
}

.contact-honeypot {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  height: 0;
}

.required-mark {
  color: var(--green-standard);
  font-weight: 700;
}

.optional {
  font-weight: 400;
  color: var(--anthracite);
}

.form-privacy {
  margin-top: var(--space-sm);
  font-size: 0.82rem;
  color: var(--anthracite);
  line-height: 1.6;
}

.form-privacy a {
  color: var(--green-dark);
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-row + .form-field,
.form-row + .form-row {
  margin-top: var(--space-md);
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-standard);
  border-radius: 0;
  color: var(--anthracite);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-standard);
  box-shadow: 0 0 0 3px rgba(105, 151, 86, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-standard);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-actions {
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.form-actions .btn {
  border-radius: 0;
}

/* ============================================================
   RESPONSIVE — MOBIL (≤ 768px)
   ============================================================ */

@media (max-width: 900px) {
  .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .situation-grid .situation-card:last-child {
    grid-column: auto;
  }
}

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

  .schritte-closing {
    flex-direction: column;
    align-items: stretch;
  }
}
