/* ============================================================
   Flowbetrieb — Stylesheet
   Palette: Taupe / Salbei / warmes Offwhite / Anthrazit
   Schrift: Inter
   ============================================================ */

:root {
  --taupe:      #8B7D70;
  --taupe-dunkel: #756A5E;
  --salbei:     #5E5A2B;
  --salbei-dunkel: #494621;
  --offwhite:   #F5F1EB;
  --anthrazit:  #2F3133;
  --weiss:      #FFFFFF;
  --rand:       #E3DCD0;

  --max-breite: 1040px;
  --radius:     14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--anthrazit);
  background: var(--offwhite);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typo ---------- */
h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
p { margin-bottom: 1rem; }
a { color: var(--salbei); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Akzentwörter (in Headlines gezielt eingesetzt) */
.akzent { color: var(--salbei); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--salbei);
  margin-bottom: 1rem;
}
.lead { font-size: 1.2rem; color: #4a4d50; max-width: 34ch; }
.micro { font-size: 0.9rem; color: #6b6e71; margin-top: 1rem; }
.hero-personal { font-weight: 600; font-size: 1.05rem; color: var(--salbei); margin-bottom: 1.5rem; max-width: 42ch; }
.section-intro { font-size: 1.15rem; max-width: 60ch; color: #4a4d50; margin-bottom: 2.5rem; text-wrap: balance; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--taupe-dunkel);
  color: var(--weiss);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--salbei); color: var(--weiss); text-decoration: none; transform: translateY(-1px); }
.btn-klein { padding: 0.55rem 1.2rem; font-size: 0.95rem; }
.btn-sekundaer { background: transparent; border: 1px solid var(--taupe-dunkel); color: var(--taupe-dunkel); }
.btn-sekundaer:hover { background: var(--salbei); border-color: var(--salbei); color: var(--weiss); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 241, 235, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rand);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { font-weight: 700; font-size: 1.7rem; color: var(--salbei); letter-spacing: -0.01em; }
.logo:hover { text-decoration: none; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-bild { position: relative; }
.hero-bild img,
.person-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius);
  display: block;
}

/* Bild-Platzhalter (verschwindet, sobald echtes Bild da ist) */
.bild-platzhalter {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  background: repeating-linear-gradient(45deg, #ece6db, #ece6db 12px, #e6dfd2 12px, #e6dfd2 24px);
  border: 2px dashed var(--taupe);
  border-radius: var(--radius);
  color: var(--taupe);
  font-weight: 500;
}
.bild-platzhalter small { color: #8a8074; font-weight: 400; }

/* ---------- Sektionen allgemein ---------- */
.section { padding: 104px 0; }
.section-problem { background: var(--weiss); }
.section-ablauf { background: var(--weiss); }
.section-nicht { background: var(--taupe); color: var(--offwhite); }
.section-nicht h2 { color: var(--weiss); }

/* ---------- Manifest (ruhiges Statement unter dem Hero) ---------- */
.section-manifest { padding: 80px 0; }
.manifest-text {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin: 0;
  color: var(--anthrazit);
}
.manifest-text .leise { display: block; margin-top: 1.1rem; font-size: 0.82em; color: #6b6e71; max-width: 36ch; }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.problem-item {
  background: var(--offwhite);
  border-left: 3px solid var(--salbei);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* ---------- Karten ---------- */
.karten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.karte {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.karte p { margin-bottom: 0; color: #4a4d50; }
.leitsatz {
  margin-top: 2.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
  color: var(--salbei);
}

/* ---------- Ablauf / Schritte ---------- */
.schritte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px;
}
.schritt { position: relative; padding-top: 0.5rem; }
.schritt-icon {
  color: var(--salbei);
  margin-bottom: 1rem;
  line-height: 0;
}
.schritt-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.schritt-kopf {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.schritt-nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--salbei);
  color: var(--weiss);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}
.schritt-kopf h3 { margin-bottom: 0; }
.schritt p { color: #4a4d50; margin-bottom: 0; }

/* ---------- Person ---------- */
.person-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.person-text h2 { margin-bottom: 1.25rem; }
.person-ehrlich {
  font-weight: 600;
  font-size: 1.15rem;
  border-left: 3px solid var(--salbei);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* ---------- Was du nicht bekommst ---------- */
.nicht-liste { list-style: none; max-width: 60ch; }
.nicht-liste li {
  padding: 0.85rem 0 0.85rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(245, 241, 235, 0.25);
  font-size: 1.1rem;
}
.nicht-liste li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--salbei);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq { max-width: 720px; }
.faq details {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 14px;
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--salbei); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.85rem 0 0; color: #4a4d50; }

/* ---------- Termin ---------- */
.section-termin { background: var(--weiss); }
.buchung {
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--offwhite);
}
.buchung iframe { display: block; }
.buchung-hinweis {
  background: var(--offwhite);
  border: 2px dashed var(--taupe);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: -1px;
}
.buchung-hinweis .btn { margin: 0.4rem; }

/* ---------- Galerie ---------- */
.section-galerie { padding-top: 0; }
.galerie-text {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 34ch;
  margin: 0 auto 2.5rem;
}
.galerie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.galerie img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--anthrazit);
  color: var(--offwhite);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.site-footer .logo { color: var(--weiss); }
.footer-claim { color: #b9b2a6; font-size: 0.95rem; margin-top: 0.25rem; }
.footer-kontakt a, .footer-rechtliches a {
  display: block;
  color: var(--offwhite);
  margin-bottom: 0.4rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  color: var(--offwhite);
  font-size: 0.95rem;
}
.footer-social svg {
  width: 20px; height: 20px;
  fill: currentColor;
}
.footer-social:hover { color: var(--weiss); text-decoration: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 820px) {
  body { font-size: 17px; }
  .hero-grid,
  .person-grid { grid-template-columns: 1fr; }
  .hero-bild { order: -1; }
  .person-bild { max-width: 420px; }
  .problem-grid,
  .karten,
  .schritte { grid-template-columns: 1fr; }
  .lead { max-width: none; }
  .hero { padding: 40px 0 48px; }
  .section { padding: 64px 0; }
  .section-manifest { padding: 56px 0; }
}
