:root {
  --color-background: #ffffff;
  --color-text: #4A4A4A;
  --color-sage: #B2AC88;
  --color-sage-dark: #8f8a69;
  --color-sand: #CBBD93;
  --color-sand-soft: #f4efe3;
  --color-border: #e0ddcf;
  --color-muted: #777777;

  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1120px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
}
  /* Text-Schutz */
  *, *::before, *::after {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}


/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #fdfcf9;  /* fast weiß, nur minimal warm */
}

/* Header / Navigation */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(203, 189, 147, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 50px;   /* vorher 40px */
  width: auto;
  object-fit: contain;
}


.logo-text {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--color-text);
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-sage-dark);
  border-color: var(--color-sage);
}

.nav-cta {
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Mobile Nav Toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-sage {
  background: var(--color-sage);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(178, 172, 136, 0.4);
}

.btn-sage:hover,
.btn-sage:focus-visible {
  background: var(--color-sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(178, 172, 136, 0.5);
}

.btn-outline {
  border: 1px solid var(--color-sage);
  color: var(--color-sage-dark);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(178, 172, 136, 0.08);
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--color-text);
  background-color: #ffffff;
  background-image: url("img/hero-praxis.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.90) 0%,
    rgba(255, 255, 255, 0.88) 50%,
    rgba(255, 255, 255, 0.80) 70%,
    rgba(255, 255, 255, 0.0) 100%
  );
}


.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 2.5rem;
  padding: 5rem 1.5rem 4.5rem;
}

.hero-logo-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-content {
  max-width: 640px;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0,1fr);
    padding-top: 4.3rem;
  }

  .hero-logo-block {
    order: -1;
    margin-bottom: 1.2rem;
  }

  .hero {
    min-height: 68vh;
    background-position: center;
  }
}


.hero-content {
  position: relative;
  padding: 5.5rem 1.5rem 4.5rem;
  max-width: 640px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.02rem;
  color: #5a5a5a;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

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

.hero-hinweis {
  font-size: 0.88rem;
  color: var(--color-muted);
  max-width: 30rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-text h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.claim {
  font-style: italic;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.bullet-list {
  padding-left: 1.2rem;
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Services */

.section h2 {
  font-size: 1.7rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* NEUE Version: Service-Bilder größer, zentriert, nicht beschnitten */


.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.4rem 1.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(203, 189, 147, 0.4);

  display: flex;             /* NEU: Flex-Layout */
  flex-direction: column;    /* Inhalte untereinander */
  height: 100%;              /* gleiche Höhe in der Grid-Zeile */
}

.service-card__button {
  margin-top: auto;
  align-self: flex-start;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    background-color 0.16s ease-out,
    border-color 0.16s ease-out;
}

.service-card__button:hover,
.service-card__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(178, 172, 136, 0.35);
  border-color: var(--color-sage);
  background-color: rgba(178, 172, 136, 0.06);
}

.service-card:hover,
.service-card:focus-within {
  transform: none;
  box-shadow:  0 18px 45px rgba(0, 0, 0, 0.08);
  border-color: rgba(203, 189, 147, 0.9); /* etwas stärker als deine Standardborder */
}

.service-icon {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 1.1rem;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.service-icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;   /* ganze Fotos sichtbar */
  background: #ffffff;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.service-list {
  padding-left: 1.2rem;
  font-size: 0.93rem;
}

.service-list li {
  margin-bottom: 0.3rem;
}

/* Info Box (Wahlarzt) */

.info-box {
  background: linear-gradient(135deg, #f4efe3, #f9f4e9);
  border-radius: 18px;
  padding: 2.1rem 1.8rem;
  border: 1px solid rgba(203, 189, 147, 0.7);
  box-shadow: var(--shadow-soft);
}

.info-box h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.info-lead {
  font-weight: 500;
  margin-bottom: 0.9rem;
}

/* Booking */

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.booking-lead {
  font-weight: 500;
  margin-top: 0;
}

.step-list {
  padding-left: 1.3rem;
  margin-bottom: 1.4rem;
}

.step-list li {
  margin-bottom: 0.4rem;
}

.booking-btn {
  margin-bottom: 0.9rem;
}

.booking-hinweis-title {
  margin-top: 1.3rem;
  font-weight: 600;
}

.booking-image-wrapper {
  display: flex;
  justify-content: center;
}

.booking-image {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  padding: 0.7rem 1rem;
}

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

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

.faq-item summary::after {
  content: "＋";
  float: right;
  font-weight: 400;
  color: var(--color-muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* Kontakt */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-name {
  font-weight: 600;
}

.contact-block {
  margin-bottom: 1rem;
}

.contact-cta {
  margin-top: 1rem;
}

.contact-map-placeholder {
  display: flex;
  justify-content: center;
}

.map-box {
  border-radius: 16px;
  border: 1px dashed var(--color-border);
  background: #fffdf8;
  padding: 1.8rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(203, 189, 147, 0.5);
  background: #f9f7f3;
  padding: 1.3rem 0 2rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.footer-links a {
  color: var(--color-text);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-image,
  .booking-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav ul {
    position: absolute;
    inset: 56px 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1.5rem 1.2rem;
    border-bottom: 1px solid rgba(203, 189, 147, 0.5);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav.open ul {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    margin-top: 0.75rem;
  }

  .nav-cta.btn-sage {
    box-shadow: 0 6px 18px rgba(178, 172, 136, 0.24);
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 68vh;
    background-position: center;
  }

  .hero-content {
    padding-top: 4.3rem;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 3.3rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.service-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.service-hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-hero-logo img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .service-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }
  .service-hero-logo {
    order: -1;
  }
}
/* Cookie Banner Style */
/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid rgba(203, 189, 147, 0.4);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.10);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-base);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

#cookie-banner-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

#cookie-banner-text a {
  color: var(--color-sage-dark);
  text-decoration: underline;
}

#cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#cookie-accept {
  background: var(--color-sage);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-base);
  box-shadow: 0 10px 30px rgba(178, 172, 136, 0.4);
  transition: background 0.2s ease, transform 0.1s ease;
}

#cookie-accept:hover {
  background: var(--color-sage-dark);
  transform: translateY(-1px);
}

#cookie-decline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-sage);
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-base);
  transition: background 0.2s ease;
}

#cookie-decline:hover {
  background: rgba(178, 172, 136, 0.08);
}

@media (min-width: 640px) {
  #cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #cookie-banner-buttons {
    flex-shrink: 0;
  }
}
