:root {
  --primary: #5B5670;
  --accent: #B7A7AC;
  --bg: #FAF8F6;
  --bg-alt: #F0ECEA;
  --text: #3B3742;
  --text-muted: #726B76;
  --text-faint: #9A8791;
  --border: #E6E0DE;
  --header-footer-bg: #E9E1EA;
  --header-footer-border: #D9CDDB;
  --font-heading: Verdana, Arial, Helvetica, sans-serif;
  --font-body: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  padding-top: 78px;
}

a { color: inherit; text-decoration: none; }

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

.wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .wrap {
    width: 75%;
    padding: 0;
  }
}

/* Header */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-footer-bg);
  border-bottom: 1px solid var(--header-footer-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  padding-bottom: 13px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand span {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text);
}

nav.main-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--text-muted);
}

nav.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav.main-nav a.active {
  color: var(--text);
  font-weight: bold;
  border-bottom: 2px solid var(--primary);
}

nav.main-nav a:hover {
  color: var(--text);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 700px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    z-index: 10;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  text-align: center;
  padding: 64px 24px 48px;
}

.hero .kicker {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 38px;
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto 16px;
}

.hero p {
  font-size: 15px;
  text-align: justify;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 28px;
}

.plain-photo {
  width: 100%;
  height: 360px;
  align-self: start;
  object-fit: contain;
  object-position: top;
}

@media (max-width: 700px) {
  .plain-photo { height: 220px; }
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--primary);
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.btn:hover { opacity: 0.92; }

/* Section headings */
.section {
  padding: 40px 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: normal;
  margin-bottom: 8px;
}

.section-lead {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 16px;
}

.section.bordered-top {
  border-top: 1px solid var(--border);
}

/* Leistungen list */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
  width: 100%;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
}

.service-list li:last-child { border-bottom: none; }

.service-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.service-list h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 4px;
}

.service-list p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Ueber mich */
.about {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 640px;
}

.about .photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bg-alt);
  overflow: hidden;
}

.about .photo img { width: 100%; height: 100%; object-fit: cover; }

.about h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: bold;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.about p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 560px) {
  .about { grid-template-columns: 1fr; text-align: center; }
  .about .photo { margin: 0 auto; }
}

/* Price table */
.price-category {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  margin: 24px 0 8px;
}

table.price-table {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 8px;
}

table.price-table tr {
  border-bottom: 1px solid var(--border);
}

table.price-table td {
  padding: 10px 4px;
}

table.price-table td:last-child {
  text-align: right;
  font-weight: bold;
  white-space: nowrap;
}

/* Trust block */
.trust-block {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 760px;
  width: 100%;
  font-size: 14px;
  color: var(--text);
}

.trust-block .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--primary);
}

/* FAQ */
.faq-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
}

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

.faq-item p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

/* Contact form */
.contact-section {
  background: var(--bg-alt);
  padding: 40px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

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

@media (min-width: 700px) {
  .contact-grid.three-col {
    grid-template-columns: 1fr 1.1fr 0.7fr;
    max-width: 1100px;
    align-items: start;
  }
}

.contact-grid.compact {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form.contact-form.inline-row {
  flex-direction: row;
  flex-wrap: wrap;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
}

form.contact-form textarea { resize: vertical; }

form.contact-form button {
  align-self: flex-start;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  font-size: 13px;
  min-height: 1.4em;
}

.form-message.success {
  color: var(--primary);
}

.form-message.error {
  color: #B4614F;
}

.contact-info {
  font-size: 14px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info .icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info .icon-row .icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.map-embed {
  border: none;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-top: 4px;
}

/* Footer */
footer.site-footer {
  background: var(--header-footer-bg);
  color: var(--text-muted);
  font-size: 13px;
  padding-top: 40px;
  border-top: 1px solid var(--header-footer-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 32px;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.footer-col.brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col.brand-col img {
  height: 76px;
  width: auto;
  margin-bottom: 14px;
}

.footer-col.legal-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

@media (min-width: 700px) {
  .footer-col.legal-col {
    align-items: flex-start;
    text-align: left;
    margin-left: 120px;
  }
}

.footer-col .footer-heading {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-col .footer-brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
}

.footer-col div,
.footer-col a {
  display: block;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px 24px 28px;
  border-bottom: 1px solid var(--header-footer-border);
  text-align: center;
}

.footer-quote svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.footer-quote .quote-text {
  max-width: 480px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-contact-row svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-note {
  font-size: 12px;
  color: var(--text-faint);
  margin: 2px 0 14px 0;
}

.footer-credit {
  border-top: 1px solid var(--header-footer-border);
  padding: 22px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-credit .credit-copyright {
  font-size: 12px;
  color: var(--text-faint);
}

.footer-credit .credit-design {
  font-size: 11px;
  color: var(--text-faint);
  opacity: 0.85;
}

.footer-credit a {
  color: var(--text-faint);
  text-decoration: underline;
}

.footer-credit a:hover {
  color: var(--text);
}

.footer-col a:not(.btn-outline):hover {
  color: var(--text);
  text-decoration: underline;
}

/* Abschlussbereich mit Logo, Name, Slogan statt Mini-Formular */
.closer {
  padding: 56px 24px;
  text-align: center;
}

.closer-logo {
  height: 84px;
  width: auto;
  margin: 0 auto 18px;
}

.closer-name {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

.closer-slogan {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 24px;
}

/* Rechtstexte (Impressum, Datenschutz) */
.legal {
  max-width: 760px;
  margin: 0 auto;
}

.legal h2 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 19px;
  margin: 32px 0 10px;
}

.legal h2:first-child { margin-top: 0; }

.legal h3 {
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 14px;
  margin: 18px 0 6px;
}

.legal p {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.7;
}

.legal ul {
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text);
}

.legal li { margin-bottom: 4px; }

.legal a {
  color: var(--primary);
  text-decoration: underline;
}

.legal .meta {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.center { text-align: center; }

/* Preis-Karten-Grid (inspiriert von Kosmetik Schwabing) */
.price-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.price-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}

.price-card .icon-box svg { width: 24px; height: 24px; }

.price-card h3 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 18px;
  margin: 0 0 10px;
}

.price-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 16px;
  flex: 1;
  line-height: 1.6;
}

.price-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.price-card .meta .duration {
  font-weight: normal;
  color: var(--text-muted);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.price-card .meta .duration svg { width: 14px; height: 14px; }

/* Kontakt-Infokarten */
.info-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 20px;
}

a.info-card:hover {
  background: var(--border);
}

.info-card .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-card .icon-circle svg { width: 20px; height: 20px; }

.info-card h3 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 15px;
  margin: 0 0 4px;
}

.info-card div.value {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Karte mit Zwei-Klick-Consent-Platzhalter */
.map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.map-placeholder {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.map-placeholder h3 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 16px;
  margin: 0;
}

.map-placeholder p {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0;
}

.map-placeholder p a {
  color: var(--primary);
  text-decoration: underline;
}

.map-placeholder-link {
  font-size: 12px;
  color: var(--primary);
  text-decoration: underline;
  margin-top: 4px;
}

.transit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.transit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-muted);
}

.transit-item .icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.transit-item strong {
  display: block;
  color: var(--text);
  font-weight: bold;
  margin-bottom: 2px;
}

.brand-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 12px 0;
}

.brand-cta img {
  height: 90px;
  width: auto;
}

.brand-cta h2 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 24px;
  margin: 0;
}

.brand-cta .slogan {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: -8px;
}

/* Zweispaltiges Section-Layout (Desktop): Titel links, Inhalt rechts */
.section-grid .section-head {
  margin-bottom: 20px;
}

.section-head .head-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
}

.section-head .head-icon svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 900px) {
  .section-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
  }
  .section-grid .section-head {
    margin-bottom: 0;
    position: sticky;
    top: 110px;
  }
}

/* Betriebsurlaub-Hinweisleiste (bei Bedarf im HTML einkommentieren) */
.notice-bar {
  background: var(--primary);
  color: var(--bg);
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
}

/* Leistungs-Checkliste (vollständige Liste) */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

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

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
}

.checklist .check-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
}

/* Rechtstext-Seiten (Impressum, Datenschutz) */
.legal-content {
  max-width: 760px;
  font-size: 14px;
  line-height: 1.75;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 26px;
  margin: 0 0 8px;
}

.legal-content .updated {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 19px;
  margin: 40px 0 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.legal-content .quote-line {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 14px 18px;
  font-style: italic;
  color: var(--text-muted);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 14px;
  margin: 20px 0 8px;
}

.legal-content p {
  margin: 0 0 12px;
  color: var(--text);
}

.legal-content ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 4px;
}

.legal-content a {
  text-decoration: underline;
  color: var(--primary);
  word-break: break-word;
}

.legal-content .toc {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 32px;
}

.legal-content .toc p { margin: 0 0 8px; font-weight: bold; }
.legal-content .toc ul { margin: 0; }
