/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --sage:       #6b8f71;
  --sage-light: #a8c5ad;
  --sage-dark:  #4a6651;
  --cream:      #faf7f2;
  --warm-white: #ffffff;
  --gold:       #c8a96e;
  --gold-light: #e8d5b0;
  --text-dark:  #2c3e35;
  --text-mid:   #4a5c52;
  --text-light: #7a8c81;
  --border:     #e4ece5;
  --shadow:     rgba(44, 62, 53, 0.10);
  --radius:     12px;
  --font-sans:  'Georgia', 'Times New Roman', serif;
  --font-body:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-sans); font-weight: normal; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); line-height: 1.3; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p  { color: var(--text-mid); margin-bottom: 1rem; }
a  { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--gold); }

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

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-dark);
}
.nav-logo span { color: var(--sage); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage-dark); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-primary {
  background: var(--sage);
  color: #fff;
}
.btn-primary:hover {
  background: var(--sage-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 143, 113, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: #fff;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background:
    linear-gradient(135deg, rgba(250,247,242,0.97) 0%, rgba(232,213,176,0.25) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(107,143,113,0.15) 0%, transparent 65%);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  height: 80%;
  border-radius: 50% 50% 50% 70% / 60% 40% 60% 40%;
  background: linear-gradient(135deg, rgba(168,197,173,0.25), rgba(200,169,110,0.12));
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute;
  left: -8%;
  bottom: -10%;
  width: 40%;
  height: 50%;
  border-radius: 50%;
  background: rgba(107,143,113,0.07);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107,143,113,0.1);
  color: var(--sage-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; }
#hero h1 { color: var(--text-dark); margin-bottom: 1.25rem; }
#hero h1 em { color: var(--sage); font-style: normal; }
#hero .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--sage-dark);
}
.stat-label { font-size: 0.8rem; color: var(--text-light); }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── About ── */
#about { background: var(--warm-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 420px;
}
.about-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.18;
}
.about-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  width: 88%;
  box-shadow: 0 12px 40px var(--shadow);
  text-align: center;
}
.about-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.about-card h3 { color: var(--text-dark); font-size: 1.15rem; margin-bottom: 0.4rem; }
.about-card .subtitle { font-size: 0.85rem; color: var(--sage); font-weight: 600; margin-bottom: 0; }
.credential-list { list-style: none; margin-top: 1.25rem; text-align: left; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.credential-list li:last-child { border-bottom: none; }
.credential-list li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }

/* ── Services ── */
#leistungen { background: var(--cream); }
.services-intro { max-width: 620px; margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { box-shadow: 0 10px 35px var(--shadow); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107,143,113,0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.service-card h3 { color: var(--text-dark); font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.93rem; margin-bottom: 0; }
.service-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-kasse { background: rgba(107,143,113,0.1); color: var(--sage-dark); }
.badge-privat { background: rgba(200,169,110,0.15); color: #8b6914; }

/* ── Approach / Focus areas ── */
#ansatz { background: var(--warm-white); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.approach-item {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--border);
  text-align: center;
}
.approach-num {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--sage-light);
  margin-bottom: 0.5rem;
  font-weight: normal;
  letter-spacing: 0.02em;
}
.approach-item h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.approach-item p { font-size: 0.83rem; margin: 0; }

/* ── Quote ── */
.quote-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 5rem 0;
}
.quote-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.quote-inner blockquote {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.quote-inner blockquote::before { content: '„'; }
.quote-inner blockquote::after  { content: '"'; }
.quote-inner cite {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-style: normal;
}

/* ── Info / Praxis ── */
#praxis { background: var(--cream); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.info-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-card-header {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  padding: 1.25rem 1.75rem;
  color: #fff;
}
.info-card-header h3 { color: #fff; font-size: 1rem; font-weight: 600; margin: 0; }
.info-card-body { padding: 1.5rem 1.75rem; }
.info-row {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-light); min-width: 110px; flex-shrink: 0; }
.info-value { color: var(--text-dark); font-weight: 500; }
.info-value a { color: var(--sage-dark); }
.info-value a:hover { color: var(--gold); }

.map-placeholder {
  background: linear-gradient(135deg, rgba(107,143,113,0.08), rgba(168,197,173,0.15));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── Contact ── */
#kontakt { background: var(--warm-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(107,143,113,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-item-text span { font-size: 0.95rem; color: var(--text-dark); }

/* ── Footer ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand { font-family: var(--font-sans); font-size: 1.1rem; color: #fff; margin-bottom: 0.75rem; }
.footer-brand span { color: var(--sage-light); }
footer p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1rem; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; margin: 0; }
.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--sage-light);
}

/* ── Responsive ── */
@media (max-width: 768px) {

  /* Allgemein */
  section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }

  /* Navigation */
  .nav-links { display: none; }
  .nav-inner { padding: 0 1.25rem; }
  nav .btn { padding: 0.55rem 1.1rem; font-size: 0.82rem; }

  /* Hero */
  #hero { min-height: auto; padding: 6rem 0 3.5rem; }
  .hero-content { max-width: 100%; }
  .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  .hero-stats > div { flex: 1 1 40%; }
  .stat-num { font-size: 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  /* About – Kachel-Fix: absolute → normaler Fluss */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual {
    position: static;
    height: auto;
  }
  .about-card-bg { display: none; }
  .about-card {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: 0 4px 20px var(--shadow);
    padding: 1.5rem;
  }

  /* Leistungen */
  .services-grid { grid-template-columns: 1fr; }

  /* Behandlungsschwerpunkte */
  .approach-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .approach-item { padding: 1rem; }

  /* Info / Praxis */
  .info-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .map-placeholder { height: 200px; }

  /* Kontakt */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}
