:root {
  --petrol-900: #1e3a3b;
  --petrol-800: #274c4d;
  --petrol-700: #2f5d5e;
  --petrol-600: #396f70;
  --petrol-500: #4a8586;
  --sand: #f4ede4;
  --sand-dark: #e8ddc9;
  --paper: #fffdfa;
  --ink: #2b2620;
  --muted: #6b6255;
  --terracotta: #bf6a4d;
  --terracotta-dark: #a8563b;
  --radius: 14px;
  --shadow: 0 20px 45px -20px rgba(30, 58, 59, 0.35);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  margin: 0;
  line-height: 1.2;
  color: var(--petrol-900);
}
p { margin: 0; color: var(--muted); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--nav { background: var(--petrol-700); color: #fff; padding: 10px 22px; font-size: 0.85rem; }
.btn--nav:hover { background: var(--petrol-800); }
.btn--block { width: 100%; justify-content: center; }

/* Topbar */
.topbar {
  background: var(--petrol-900);
  color: #dcebe9;
  font-size: 0.8rem;
  text-align: center;
  padding: 8px 16px;
}
.topbar__phone { font-weight: 700; color: #fff; }
.topbar__sep { margin: 0 8px; opacity: 0.5; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--petrol-900);
}
.nav__logo span { color: var(--terracotta); }
.nav__logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav__links { display: flex; gap: 22px; font-weight: 600; font-size: 0.92rem; }
.nav__links a { white-space: nowrap; }
.nav__links a:hover { color: var(--petrol-600); }

#leistungen, #ablauf, #ueber-uns, #kontakt { scroll-margin-top: 100px; }

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg-base {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--petrol-700) 0%, var(--petrol-500) 45%, var(--terracotta) 130%);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero__bg--people {
  background-position: center 28%;
}
.hero__bg.is-active { opacity: 1; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,58,59,0.55) 0%, rgba(30,58,59,0.75) 60%, rgba(30,58,59,0.88) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 6%;
  color: #fff;
  text-align: center;
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.hero__sub { color: #e6ece7; font-size: 1.1rem; margin: 20px auto 32px; max-width: 680px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 36px auto 0;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(30, 58, 59, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 12px 22px;
}

/* USP bar */
.usp {
  background: var(--petrol-800);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 6%;
}
.usp__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; color: #fff; }
.usp__icon { font-size: 1.5rem; }
.usp__item strong { display: block; font-size: 0.98rem; }
.usp__item span { color: #c3d8d3; font-size: 0.85rem; }

/* Section head */
.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  color: var(--terracotta);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }

/* Services */
.services { padding: 90px 6%; background: var(--paper); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card__icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--petrol-700), var(--petrol-500));
}
.service-card__body { padding: 22px 22px 26px; }
.service-card__body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card__body p { font-size: 0.92rem; }

.services__more {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 26px 32px;
  text-align: center;
  background: var(--sand);
  border: 1px solid rgba(30,58,59,0.1);
  border-radius: var(--radius);
}
.services__more p { color: var(--ink); font-size: 0.95rem; }
.services__more strong { color: var(--petrol-700); }

/* Reassurance: keine Entmündigung */
.reassure { padding: 90px 6%; background: var(--sand); }
.reassure__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.reassure__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  text-align: center;
}
.reassure__no {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 2px;
}
.reassure__yes {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--petrol-800);
}
.reassure__note {
  max-width: 780px;
  margin: 40px auto 0;
  padding: 26px 32px;
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(30,58,59,0.1);
  border-radius: var(--radius);
}
.reassure__note p { color: var(--ink); font-size: 0.95rem; }

/* Process */
.process { padding: 90px 6%; background: var(--petrol-900); color: #fff; }
.process .eyebrow { color: #d8a98d; }
.process h2 { color: #fff; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 { color: #fff; font-size: 1.02rem; margin-bottom: 8px; }
.step p { color: #c3d8d3; font-size: 0.85rem; }

/* Timeline (Ablauf-Grafik) */
.timeline { padding: 60px 6% 90px; background: var(--paper); }
.timeline__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  position: relative;
}
.timeline__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  top: 34px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--terracotta) 0, var(--terracotta) 8px, transparent 8px, transparent 14px);
  z-index: 0;
}
.timeline__item:first-child::before { content: none; }
.timeline__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--petrol-700), var(--petrol-500));
  box-shadow: var(--shadow);
  font-size: 1.6rem;
}
.timeline__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  margin-top: -14px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  border: 3px solid var(--paper);
  z-index: 2;
}
.timeline__text { display: flex; flex-direction: column; }
.timeline__item h3 { margin-top: 16px; font-size: 1rem; }
.timeline__item p { margin-top: 8px; font-size: 0.85rem; }

/* Reviews / trust quotes */
.reviews { padding: 90px 6%; background: var(--paper); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.review {
  margin: 0;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review__icon { font-size: 1.4rem; margin-bottom: 12px; }
.review p { color: var(--ink); font-size: 0.95rem; margin-bottom: 16px; }
.review cite { font-style: normal; font-weight: 700; font-size: 0.85rem; color: var(--petrol-700); }

/* Contact */
.contact {
  padding: 110px 6% 90px;
  background: var(--petrol-800);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1180px;
  margin: 32px auto 72px;
  border-radius: var(--radius);
  align-items: start;
}
.contact .eyebrow { color: #d8a98d; }
.contact h2 { color: #fff; margin: 8px 0 16px; }
.contact__info { text-align: center; }
.contact__info p { color: #d7e5e2; max-width: 420px; margin: 0 auto 24px; }
.contact__list { display: inline-flex; flex-direction: column; gap: 14px; margin: 4px 0; }
.contact__list li { display: flex; align-items: center; gap: 8px; font-size: 0.98rem; }
.contact__list a:hover { text-decoration: underline; }
.contact__form {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--petrol-900);
}
.contact__form input, .contact__form textarea, .contact__form select {
  font-family: inherit;
  padding: 12px 14px;
  border: 1px solid #ddd6ca;
  border-radius: 8px;
  font-size: 0.95rem;
  resize: vertical;
}
.contact__form input:focus, .contact__form textarea:focus, .contact__form select:focus {
  outline: 2px solid var(--petrol-500);
  border-color: var(--petrol-500);
}
.contact__hint { font-size: 0.78rem; color: var(--muted); text-align: center; }

/* Page header (subpages) */
.page-header {
  background: var(--petrol-900);
  color: #fff;
  padding: 70px 6% 60px;
  text-align: center;
}
.page-header .eyebrow { color: #d8a98d; }
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-header p { color: #d7e5e2; max-width: 640px; margin: 14px auto 0; }

.more-link { display: inline-block; margin-top: 36px; font-weight: 700; color: var(--petrol-600); text-align: center; }
.more-link:hover { text-decoration: underline; }
.more-link-wrap { text-align: center; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 2.1rem; font-family: 'Fraunces', serif; color: var(--petrol-700); }
.stat span { color: var(--muted); font-size: 0.85rem; }

/* Story */
.story { padding: 90px 6%; background: var(--paper); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}
.story__images {
  position: relative;
  padding: 0 24px 24px 0;
}
.story__img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.story__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}
.story__img-main--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--petrol-700), var(--petrol-500));
}
.story__text .eyebrow { margin-bottom: 14px; }
.story__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.story__text p { margin-bottom: 16px; font-size: 1rem; }
.story__text p:last-child { margin-bottom: 0; }

/* FAQ */
.faq { padding: 90px 6% 110px; background: var(--sand); }
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--paper);
  border: 1px solid rgba(30,58,59,0.1);
  border-radius: var(--radius);
  padding: 6px 26px;
  box-shadow: var(--shadow);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--petrol-900);
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 0 22px; }
.faq__answer p { font-size: 0.95rem; }
.faq__answer a { color: var(--petrol-600); font-weight: 700; }
.faq__answer a:hover { text-decoration: underline; }

/* Info callout box (used on ablauf/leistungen pages) */
.callout {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  background: var(--sand);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
}
.callout h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--petrol-800); }
.callout p { color: var(--ink); font-size: 0.95rem; }

/* Footer */
.footer { background: var(--petrol-900); color: #c3d8d3; padding: 40px 6% 24px; }
.footer__top { text-align: center; margin-bottom: 24px; }
.footer__top .nav__logo { color: #fff; }
.footer__top p { margin-top: 8px; font-style: italic; color: #d8a98d; }
.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.footer__bottom a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .reassure__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline__list { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .timeline__item::before { content: none; }
  .contact { grid-template-columns: 1fr; gap: 36px; padding: 72px 6% 56px; margin-top: 24px; }
  .usp { grid-template-columns: repeat(2, 1fr); }
  .story__grid { grid-template-columns: 1fr; gap: 40px; }
  .story__images { padding: 0 16px 16px 0; margin-bottom: 8px; }
}
@media (max-width: 680px) {
  .nav { padding: 14px 4%; gap: 10px; }
  .nav__links { display: none; }
  .nav__logo { font-size: 0.92rem; gap: 7px; }
  .nav__logo-icon { width: 24px; height: 24px; }
  .btn--nav { padding: 9px 14px; font-size: 0.74rem; white-space: nowrap; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .reassure__grid { grid-template-columns: 1fr; }
  .usp { grid-template-columns: 1fr; }
  .timeline__list { grid-template-columns: 1fr; row-gap: 0; }
  .timeline__item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0 0 32px 0;
    gap: 18px;
  }
  .timeline__item:last-child { padding-bottom: 0; }
  .timeline__item::before {
    content: '';
    position: absolute;
    top: 68px;
    left: 33px;
    width: 3px;
    height: calc(100% - 34px);
    background: repeating-linear-gradient(180deg, var(--terracotta) 0, var(--terracotta) 8px, transparent 8px, transparent 14px);
  }
  .timeline__item:last-child::before { content: none; }
  .timeline__icon { flex-shrink: 0; width: 56px; height: 56px; font-size: 1.3rem; }
  .timeline__num { position: absolute; top: -8px; left: 40px; margin-top: 0; }
  .timeline__item h3, .timeline__item p { margin-top: 0; }
  .stats { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__content { padding: 44px 6% 56px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__trust { flex-direction: column; align-items: stretch; }
  .hero__trust-item { white-space: normal; text-align: center; justify-content: center; border-radius: 14px; }
  .topbar { display: flex; flex-direction: column; gap: 2px; }
  .topbar__sep { display: none; }
  .callout { padding: 22px 20px; }
}

/* Founder profile */
.founder { padding: 90px 6%; background: var(--sand); }
.founder__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
.founder__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 6px solid var(--paper);
}
.founder__text .eyebrow { margin-bottom: 10px; }
.founder__text h2 { font-size: clamp(1.6rem, 2.6vw, 2rem); margin-bottom: 8px; }
.founder__role {
  color: var(--terracotta-dark);
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.founder__text p:last-child { font-size: 1rem; }
@media (max-width: 720px) {
  .founder__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .founder__photo { width: 220px; }
}
