:root {
  --paper: #faf7f1;
  --paper-soft: #f1ebe0;
  --card: #ffffff;
  --ink: #2d2a24;
  --ink-soft: #6d6558;
  --ink-faint: #98907f;
  --green: #3f614d;
  --green-deep: #32503f;
  --green-soft: #7f9f8c;
  --green-pale: #e3ebe2;
  --terra: #bc6b48;
  --line: #e4dccd;
  --radius: 14px;
  --shadow: 0 6px 30px rgba(61, 55, 40, 0.08);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green);
}

/* Top-Leiste */

.topbar {
  background: var(--green-deep);
  color: #e9efe8;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.topbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: #e9efe8;
  text-decoration: none;
}

/* Navigation */

.p-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.p-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.p-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.p-logo .leaf {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.p-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.p-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.p-links a {
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.p-links a:hover {
  color: var(--green-deep);
}

.p-cta {
  background: var(--green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.p-cta:hover {
  background: var(--green-deep);
}

.p-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.p-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.p-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.p-toggle.open span:nth-child(2) { opacity: 0; }
.p-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */

.p-hero {
  position: relative;
  overflow: hidden;
}

.p-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 90px 24px 100px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.p-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.p-hero h1 em {
  font-style: italic;
  color: var(--green-deep);
}

.p-hero p.lead {
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
}

.p-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn-p {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-p:active { transform: translateY(1px); }

.btn-p-solid {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(63, 97, 77, 0.28);
}

.btn-p-solid:hover { background: var(--green-deep); }

.btn-p-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-soft);
}

.btn-p-ghost:hover { background: var(--green-pale); }

.p-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  list-style: none;
}

.p-trust li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

.p-hero-art {
  position: relative;
}

/* Sektionen allgemein */

.p-section {
  padding: 96px 24px;
}

.p-section-soft {
  background: var(--paper-soft);
}

.p-container {
  max-width: 1080px;
  margin: 0 auto;
}

.p-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.p-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.p-header h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.p-header p {
  font-size: 17.5px;
  color: var(--ink-soft);
}

/* Angebot / Karten */

.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.p-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(61, 55, 40, 0.12);
}

.p-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.p-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-deep);
}

.p-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 10px;
}

.p-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* Über mich */

.p-about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.p-portrait {
  position: relative;
}

.p-portrait svg {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.p-about blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--green-deep);
  border-left: 3px solid var(--green-soft);
  padding-left: 22px;
  margin: 26px 0;
}

.p-about .facts {
  list-style: none;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.p-about .facts li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}

.p-about .facts li:last-child { border-bottom: none; }

.p-about .facts strong { color: var(--ink); }

/* Ablauf */

.p-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: pstep;
}

.p-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.p-step::before {
  counter-increment: pstep;
  content: counter(pstep, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 44px;
  color: var(--green-pale);
  font-weight: 700;
  position: absolute;
  top: 18px;
  right: 24px;
  line-height: 1;
}

.p-step h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.p-step p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* FAQ */

.p-faq {
  max-width: 720px;
  margin: 0 auto;
}

.p-faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.p-faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.p-faq summary::-webkit-details-marker { display: none; }

.p-faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 24px;
  color: var(--green);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

.p-faq details[open] summary::after {
  transform: rotate(45deg);
}

.p-faq details p {
  padding: 0 24px 20px;
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* Kontakt */

.p-contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.p-info-card,
.p-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
}

.p-info-card h3,
.p-form-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.p-info-card .row {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15.5px;
}

.p-info-card .row:last-of-type { border-bottom: none; }

.p-info-card .row svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  flex: 0 0 auto;
  margin-top: 3px;
}

.p-info-card .row span { color: var(--ink-soft); }
.p-info-card .row strong { display: block; color: var(--ink); font-size: 15px; }

.hours {
  width: 100%;
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-collapse: collapse;
}

.hours td {
  padding: 4px 0;
}

.hours td:last-child { text-align: right; }

.p-form-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 16px 0 6px;
}

.p-form-card input,
.p-form-card textarea {
  width: 100%;
  padding: 13px 14px;
  font-size: 15.5px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.p-form-card input:focus,
.p-form-card textarea:focus {
  outline: none;
  border-color: var(--green-soft);
  box-shadow: 0 0 0 4px rgba(127, 159, 140, 0.18);
  background: #fff;
}

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

.p-form-card button {
  margin-top: 20px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.p-form-note {
  display: none;
  margin-top: 14px;
  font-size: 14.5px;
  text-align: center;
  color: var(--terra);
  font-weight: 600;
}

.p-form-note.visible { display: block; }

.p-privacy-hint {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 12px;
}

/* Footer */

.p-footer {
  background: var(--green-deep);
  color: #cfdccf;
  font-size: 14px;
  padding: 40px 24px;
}

.p-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.p-footer a { color: #fff; }

/* Beispiel-Hinweis (Ribbon) */

.demo-ribbon {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: #2d2a24;
  color: #fff;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.demo-ribbon:hover { transform: scale(1.04); }

.demo-ribbon strong { color: #9fd3ae; }

/* Einblenden beim Scrollen */

.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation: none !important; }
  .fade { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Hinweis auf freie Termine im Hero */

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-pale);
  border: 1px solid #cfdccf;
  border-radius: 99px;
  padding: 7px 16px;
  margin-bottom: 22px;
}

.free-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4d9e6a;
}

/* Themen-Chips unter dem Angebot */

.spektrum {
  margin-top: 44px;
  text-align: center;
}

.spektrum > p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chips li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* Über mich, Name und Rolle */

.about-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.2;
  margin-bottom: 6px;
}

.about-role {
  color: var(--ink-soft);
  font-size: 16px;
}

/* Praxis-Kacheln */

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.room-tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.room-tile svg {
  width: 100%;
  height: auto;
}

.room-tile figcaption {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-soft);
  text-align: center;
  padding: 14px;
}

/* Stimmen aus der Praxis */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.quote-card {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.quote-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.quote-card figcaption {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.quotes-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 18px;
}

/* Kosten */

.kosten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.kosten-grid h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 10px;
}

.kosten-grid p {
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* Terminplaner */

.booking {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 44px 40px;
}

.book-block {
  margin-bottom: 34px;
}

.book-q {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.book-num {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 99px;
  padding: 11px 22px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pill:hover {
  border-color: var(--green-soft);
}

.pill.gewaehlt {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 600;
}

.book-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.booking label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.booking .optional-label {
  margin-top: 16px;
  color: var(--ink-soft);
  font-weight: 500;
}

.booking input,
.booking textarea {
  width: 100%;
  padding: 13px 14px;
  font-size: 15.5px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking input:focus,
.booking textarea:focus {
  outline: none;
  border-color: var(--green-soft);
  box-shadow: 0 0 0 4px rgba(127, 159, 140, 0.18);
  background: #fff;
}

.booking textarea {
  min-height: 80px;
  resize: vertical;
}

.book-summary {
  background: var(--green-pale);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--green-deep);
  margin-bottom: 22px;
}

.book-summary strong {
  font-family: var(--serif);
}

.book-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Kontaktdaten unter dem Planer */

.p-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
  .p-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 70px; }
  .p-hero-art { max-width: 420px; margin: 0 auto; order: -1; }
  .p-grid, .p-steps { grid-template-columns: 1fr; }
  .p-about { grid-template-columns: 1fr; gap: 36px; }
  .p-portrait { max-width: 340px; }
  .p-contact { grid-template-columns: 1fr; }
  .p-section { padding: 70px 20px; }

  .p-toggle { display: flex; }

  .p-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 18px;
    display: none;
  }

  .p-links.open { display: flex; }

  .p-links a { display: block; padding: 13px 0; font-size: 17px; }

  .p-cta { text-align: center; margin-top: 8px; }

  .topbar-inner { justify-content: center; }

  .rooms, .quotes { grid-template-columns: 1fr; }
  .kosten-grid { grid-template-columns: 1fr; }
  .book-fields { grid-template-columns: 1fr; }
  .booking { padding: 30px 22px; }
}
