:root {
  --bg: #fefefe;
  --bg-alt: #f8f6f2;
  --text: #2d3748;
  --muted: #718096;
  --primary: #573c5c;
  --primary-700: #49324d;
  --accent: #38a169;
  --border: #e2e8f0;
  --shadow: 0 6px 30px rgba(45, 55, 72, 0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.9); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.brand { display: flex; flex-direction: column; }
.brand-title { font-weight: 700; letter-spacing: 0.2px; }
.brand-sub { font-size: 12px; color: var(--muted); }

.nav { position: relative; }
.menu { display: flex; list-style: none; gap: 20px; margin: 0; padding: 0; }
.menu a { color: var(--text); font-weight: 500; }
.cta { padding: 10px 14px; border-radius: 10px; background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.cta:hover { background: var(--primary-700); text-decoration: none; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; margin-right: 6px; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero { padding: 64px 0 32px; background: linear-gradient(180deg, #f8f6f2 0%, #fefefe 100%); }
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 32px; }
.hero h1 { font-size: clamp(22px, 2.8vw, 34px); line-height: 1.2; margin: 0 0 12px; }
.hero p { margin: 0 0 10px; color: #374151; }
.hero-actions { display: flex; gap: 12px; margin-top: 12px; }
.hero-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/5; }

.button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 12px; font-weight: 600; border: 1px solid transparent; }
.button.primary { background: var(--primary); color: #fff; }
.button.primary:hover { background: var(--primary-700); text-decoration: none; }
.button.ghost { background: transparent; border-color: var(--border); color: var(--text); }
.button.ghost:hover { background: var(--bg-alt); text-decoration: none; }

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: var(--bg-alt); }
.grid.two { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; align-items: start; }

.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: var(--shadow); }
.card.muted { background: #fcfcfd; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 14px; }

.checklist { padding-left: 18px; }
.checklist li { margin: 6px 0; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 18px; }
.chip { background: #fff; border: 1px solid var(--border); color: #111827; padding: 8px 12px; border-radius: 999px; box-shadow: var(--shadow); font-size: 14px; }

.note { color: var(--muted); font-size: 14px; }

.map-wrap { margin-top: 10px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 260px; border: 0; }

/* Therapie gallery */
.therapy-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 16px; }
.therapy-gallery img { width: 100%; height: auto; border-radius: 14px; box-shadow: var(--shadow); object-fit: cover; }

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

/* Kontakt */
.contact-list { list-style: none; padding: 0; margin: 12px 0 18px; }
.contact-list li { margin: 6px 0; }
.contact-list a { color: #2d3748; font-weight: 600; }
.contact-list a:hover { color: var(--primary); text-decoration: none; }

.contact-form { display: grid; grid-template-columns: 1fr; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; font: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(87,60,92,0.25); border-color: var(--primary); }
.form-note { font-size: 12px; color: var(--muted); margin: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.footer-links { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .grid.two { grid-template-columns: 1fr; }
  .menu { position: absolute; right: 0; top: 100%; background: #fff; border: 1px solid var(--border); padding: 12px; border-radius: 12px; flex-direction: column; gap: 10px; min-width: 220px; display: none; }
  .menu.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .cta { display: none; }
}


