/* Lokal gehostete Schriften (DSGVO-freundlich, kein Google-Server-Aufruf) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/CormorantGaramond.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/CormorantGaramond-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('fonts/SourceSans3.woff2') format('woff2');
}

:root {
  --cream: #f5f7f0;
  --sand: #e7ede0;
  --terracotta: #6b8463;
  --terracotta-dark: #54694d;
  --sage: #8a9b7e;
  --sage-dark: #66785b;
  --ink: #383d34;
  --ink-soft: #636b5c;
  --white: #fcfdfa;
  --shadow: 0 10px 40px rgba(61, 55, 51, 0.08);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }

p + p { margin-top: 1em; }

a { color: var(--terracotta-dark); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 55, 51, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
header .container { max-width: 1200px; }

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.2;
}
.brand span {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  align-items: center;
}
nav ul a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 400;
  font-size: 0.9rem;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--terracotta-dark); }

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink-soft);
}
.btn-ghost:hover { background: var(--sand); border-color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(245, 247, 240, 0.92), rgba(245, 247, 240, 0.84) 55%, var(--cream)),
    url('D57D432A-F445-46CC-A90E-52F1DB803ADA_1_105_c.jpeg') center 38% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 132, 99, 0.14), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 155, 126, 0.16), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--terracotta-dark); }

.hero p.lead {
  font-size: 1.2rem;
  max-width: 600px;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
}
.hero p.lead + p.lead { margin-top: 1em; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero-badges div { display: flex; align-items: center; gap: 0.5rem; }
.hero-badges svg { flex-shrink: 0; }

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }

.section-alt { background: var(--white); }

/* ---------- Einstieg / Intro ---------- */
.intro-block { max-width: 680px; }
.intro-block p { color: var(--ink); }

/* ---------- Über mich ---------- */
.about-grid { max-width: 780px; }

.quals {
  margin-top: 1.5rem;
  list-style: none;
}
.quals li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
}
.quals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
}

/* ---------- Angebot ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sage);
}
.card.accent { border-top-color: var(--terracotta); }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--ink-soft); font-size: 1rem; }

.card-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--terracotta-dark);
}
.card-link:hover { color: var(--ink); }

.topics {
  margin-top: 3rem;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.topics h3 { margin-bottom: 0.35rem; }
.topics .topics-lead { margin-bottom: 1.1rem; color: var(--ink-soft); font-size: 1rem; }
.topics ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.4rem 2rem;
  font-size: 1rem;
}
.topics li { padding-left: 1.6rem; position: relative; }
.topics li::before {
  content: "✺";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.85em;
  top: 0.2em;
}

/* ---------- Kosten ---------- */
.kosten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.kosten-grid .card { border-top: none; border-left: 4px solid var(--sage); }
.kosten-grid .card h3 { font-size: 1.25rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 2rem auto 0; }
details {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--terracotta);
  transition: transform 0.25s;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details .faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  max-width: 640px;
  margin-top: 2.25rem;
}

.contact-info {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info dl { font-size: 1rem; }
.contact-info dt {
  font-weight: 600;
  margin-top: 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.contact-info dd { margin: 0.15rem 0 0; }

/* ---------- Gruppe: Prosa & Überblick-Box ---------- */
.prose { max-width: 680px; }
.prose h3 { margin-top: 2.25rem; }
.prose .lead-paragraph { font-size: 1.15rem; color: var(--ink-soft); }

.uebersicht {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 2.25rem;
  margin: 2.75rem 0;
  max-width: 680px;
}
.uebersicht h3 { margin-bottom: 1rem; }
.uebersicht ul { list-style: none; }
.uebersicht li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
}
.uebersicht li::before {
  content: "✺";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.85em;
  top: 0.45em;
}

/* ---------- Notfall ---------- */
.notfall {
  background: var(--sand);
  border-left: 4px solid var(--terracotta);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.notfall strong { color: var(--ink); }

/* ---------- Footer ---------- */
footer {
  background: #2f372c;
  color: #c8cfc0;
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
footer h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
footer a { color: #dde4d4; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal nav { display: flex; gap: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 1.1rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(61,55,51,0.1);
    box-shadow: var(--shadow);
  }
  nav ul.open { display: flex; }
  .nav-toggle { display: block; }
  .cards, .kosten-grid { grid-template-columns: 1fr; }
  section { padding: 3.25rem 0; }
}
