:root {
  --color-text: #2d3533;
  --color-muted: #68716f;
  --color-green: #3f625a;
  --color-green-dark: #294a43;
  --color-green-soft: #e9efec;
  --color-warm: #f5f2ec;
  --color-warm-dark: #e7e0d5;
  --color-border: #dfe4e1;
  --color-white: #fff;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--color-text);
  background: #fff;
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Lora", serif;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -.025em;
}

a { color: inherit; }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

.container-xl { max-width: 1180px; }

.section {
  padding: 6rem 0;
}

.section-small {
  padding: 4.5rem 0;
}

.overline {
  display: block;
  margin-bottom: .85rem;
  font-size: .78rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-green);
}

.section-heading {
  font-size: clamp(2.25rem, 4.2vw, 3.7rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.copy-large {
  color: var(--color-muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.btn-primary-custom,
.btn-secondary-custom {
  border-radius: .25rem;
  padding: .8rem 1.2rem;
  font-size: .96rem;
  font-weight: 600;
  transition: all .2s ease;
}

.btn-primary-custom {
  background: var(--color-green);
  border: 1px solid var(--color-green);
  color: #fff;
}

.btn-primary-custom:hover {
  color: #fff;
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

.btn-secondary-custom {
  background: transparent;
  border: 1px solid #bfc9c5;
  color: var(--color-text);
}

.btn-secondary-custom:hover {
  background: var(--color-green-soft);
  border-color: var(--color-green);
  color: var(--color-green-dark);
}


/* =========================================================
   Header & dynamische Contao-Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container-xl {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header .navbar-brand {
  flex: 0 0 auto;
  margin: 0;
  color: var(--color-text);
  text-decoration: none;
}

.site-header .brand-name {
  display: block;
  font-family: "Lora", serif;
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 500;
}

.site-header .brand-subtitle {
  display: block;
  margin-top: .25rem;
  color: var(--color-muted);
  font-size: .78rem;
  line-height: 1.3;
  letter-spacing: .015em;
}

.site-header .main-nav {
  flex: 0 0 auto;
  margin-left: auto;
}

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

.site-header .main-nav li {
  position: relative;
  margin: 0;
  padding: 0;
}

.site-header .main-nav a,
.site-header .main-nav strong {
  position: relative;
  display: block;
  padding: .8rem .85rem;
  color: #49514f;
  font: 600 .95rem/1.2 "Source Sans 3", sans-serif;
  text-decoration: none;
  transition: color .2s ease;
}

.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible,
.site-header .main-nav li.active > a,
.site-header .main-nav li.active > strong,
.site-header .main-nav a.active,
.site-header .main-nav strong.active,
.site-header .main-nav li.trail > a {
  color: var(--color-green);
}

.site-header .main-nav li.active > a::after,
.site-header .main-nav li.active > strong::after,
.site-header .main-nav a.active::after,
.site-header .main-nav strong.active::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .38rem;
  height: 1px;
  background: var(--color-green);
}

.site-header .main-nav > .invisible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 991.98px) {
  .site-header .container-xl {
    min-height: 76px;
    gap: 1.25rem;
  }

  .site-header .main-nav a,
  .site-header .main-nav strong {
    padding-inline: .6rem;
    font-size: .9rem;
  }

  .site-header .main-nav li.active > a::after,
  .site-header .main-nav li.active > strong::after,
  .site-header .main-nav a.active::after,
  .site-header .main-nav strong.active::after {
    left: .6rem;
    right: .6rem;
  }
}

@media (max-width: 767.98px) {
  .site-header .container-xl {
    min-height: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-wrap: wrap;
  }

  .site-header .navbar-brand { width: 100%; }
  .site-header .brand-name { font-size: 1.35rem; }
  .site-header .brand-subtitle { max-width: 280px; font-size: .7rem; }

  .site-header .main-nav {
    width: 100%;
    margin: .65rem 0 0;
    padding-top: .65rem;
    border-top: 1px solid var(--color-border);
  }

  .site-header .main-nav ul { width: 100%; gap: 0; }
  .site-header .main-nav li { flex: 1 1 auto; }

  .site-header .main-nav a,
  .site-header .main-nav strong {
    padding: .6rem .4rem;
    font-size: .88rem;
    text-align: center;
  }

  .site-header .main-nav li.active > a::after,
  .site-header .main-nav li.active > strong::after,
  .site-header .main-nav a.active::after,
  .site-header .main-nav strong.active::after {
    left: .4rem;
    right: .4rem;
    bottom: .15rem;
  }
}


/* Hero */
.hero {
  background: var(--color-warm);
  border-bottom: 1px solid #ebe6dd;
}

.hero-copy-wrap {
  padding: 7rem 0 6.5rem;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.75rem;
  font-size: clamp(3rem, 5.7vw, 5.35rem);
  line-height: 1.03;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 2rem;
  color: #5f6866;
  font-size: 1.22rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero-image-column {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: #d7ded9;
}

.hero-image-column img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder {
  height: 100%;
  min-height: 640px;
  display: flex;
  align-items: end;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(46,68,62,.03), rgba(46,68,62,.16)),
    linear-gradient(135deg, #d9e0dc 0%, #bccbc5 100%);
}

.image-note {
  max-width: 300px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.86);
  border-left: 3px solid var(--color-green);
  color: #4c5754;
  font-size: .84rem;
  line-height: 1.5;
}

/* Quick info */
.quick-info {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.quick-info-item {
  padding: 1.6rem 0;
}

.quick-info-item + .quick-info-item {
  border-left: 1px solid var(--color-border);
  padding-left: 2.25rem;
}

.quick-info-label {
  display: block;
  margin-bottom: .15rem;
  color: var(--color-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.quick-info-value {
  font-weight: 600;
  font-size: .98rem;
}

/* About */
.about {
  background: #fff;
}

.about-copy {
  max-width: 760px;
}

.about-copy p:last-child { margin-bottom: 0; }

.quote-box {
  margin-top: 1rem;
  padding: 2.25rem 0 2.25rem 2rem;
  border-left: 1px solid var(--color-green);
}

.quote-box blockquote {
  margin: 0 0 1rem;
  font-family: "Lora", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.35;
  color: var(--color-green-dark);
}

.quote-box cite {
  color: var(--color-muted);
  font-size: .9rem;
  font-style: normal;
}

/* Services */
.services {
  background: #f8f9f8;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.service-column {
  padding-top: 1.3rem;
  border-top: 3px solid var(--color-green);
}

.service-column.alt {
  border-top-color: #9b8773;
}

.service-column h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.service-column > p {
  color: var(--color-muted);
  max-width: 510px;
  margin-bottom: 1.75rem;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-border);
}

.service-list li {
  position: relative;
  padding: .75rem 0 .75rem 1.15rem;
  border-bottom: 1px solid var(--color-border);
  color: #46504d;
  font-size: .98rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-green);
}

.service-note {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #cfd7d3;
  color: var(--color-muted);
  font-size: .95rem;
}

/* Praxis / personal section */
.practice-section {
  background: #fff;
}

.practice-photo {
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(39,68,60,.04), rgba(39,68,60,.12)),
    #e1e5e2;
  display: flex;
  align-items: end;
  padding: 1.6rem;
}

.practice-photo-note {
  background: rgba(255,255,255,.92);
  padding: .85rem 1rem;
  font-size: .82rem;
  color: var(--color-muted);
  border: 1px solid rgba(255,255,255,.8);
}

.practice-details {
  padding-left: 2rem;
}

.practice-details dl {
  margin: 2rem 0 0;
}

.practice-details dt {
  margin-top: 1.1rem;
  color: var(--color-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.practice-details dd {
  margin: .2rem 0 0;
  font-size: 1.02rem;
}

.practice-details a {
  color: var(--color-green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.practice-photo:has(img) {
  padding: 0;
  overflow: hidden;
}

.practice-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

/* Gemeinsamer Kontakt-CTA (Startseite + Leistungen) */
.contact-section {
  padding: 5.5rem 0;
  background: var(--color-green-dark);
  color: #fff;
}

.contact-section h2,
.contact-section h3 { color: #fff; }
.contact-section .overline { color: #bcd0c9; }

.contact-section h2 {
  max-width: 690px;
  margin-bottom: 1.3rem;
  font-size: clamp(2.35rem, 4.6vw, 3.7rem);
  line-height: 1.14;
}

.contact-section .copy-large {
  max-width: 670px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.contact-section .btn-primary-custom {
  background: #fff;
  border-color: #fff;
  color: var(--color-green-dark);
}

.contact-section .btn-primary-custom:hover {
  background: var(--color-warm);
  border-color: var(--color-warm);
}

.contact-section .btn-secondary-custom {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
}

.contact-section .btn-secondary-custom:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .7);
}

.contact-address {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.contact-address h3 {
  margin-bottom: 1.2rem;
  font-size: 1.45rem;
}

.contact-address p {
  margin-bottom: .55rem;
  color: rgba(255, 255, 255, .72);
}

.contact-address a {
  color: #fff;
  text-decoration: none;
}

.contact-address a:hover { text-decoration: underline; }


/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid #3a554f;
  background: var(--color-green-dark);
  color: rgba(255,255,255,.62);
  font-size: .84rem;
}

.site-footer a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.site-footer a:hover { color: #fff; }

@media (max-width: 991.98px) {
  .hero-copy-wrap { padding: 5rem 0; }

  .hero-image-column,
  .hero-image-column img,
  .hero-image-placeholder { min-height: 480px; }

  .quick-info-item + .quick-info-item {
    border-left: 0;
    padding-left: 0;
  }

  .practice-details {
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .contact-address {
    margin-top: 2.5rem;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 767.98px) {
  body { font-size: 1rem; }
  .section { padding: 4.5rem 0; }
  .section-small { padding: 3.5rem 0; }
  .hero-copy-wrap { padding: 4.25rem 0; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .hero-intro { font-size: 1.08rem; }

  .hero-image-column,
  .hero-image-column img,
  .hero-image-placeholder { min-height: 390px; }

  .quick-info { padding: .5rem 0; }
  .quick-info-item { padding: .8rem 0; }
  .quote-box { padding: 1.5rem 0 1.5rem 1.25rem; }
  .service-column + .service-column { margin-top: 2.75rem; }
  .practice-photo,
  .practice-photo img { min-height: 350px; }
  .contact-section { padding: 4.25rem 0; }
  .site-footer .d-flex { display: block !important; }
  .site-footer .footer-links { margin-top: .6rem; }
}


.page-hero {
  background: var(--color-warm);
  border-bottom: 1px solid #e7e0d5;
  padding: 6.5rem 0 5.75rem;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 1.02;
}

.page-hero-copy {
  max-width: 570px;
  margin-top: 1.4rem;
  color: #5f6866;
  font-size: 1.18rem;
  line-height: 1.75;
}

.page-hero-index {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #cec8bf;
}

.page-hero-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem 0;
  border-bottom: 1px solid #d9d3ca;
  color: #4e5855;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
}

.page-hero-index a:hover { color: var(--color-green-dark); }
.page-hero-index i { font-size: .8rem; color: var(--color-green); }

.intro-section {
  padding: 5.25rem 0 4.75rem;
  background: #fff;
}

.intro-lead {
  max-width: 820px;
  margin: 0;
  font-family: "Lora", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  line-height: 1.42;
  color: #36413e;
}

.intro-aside {
  max-width: 390px;
  margin-left: auto;
  padding-left: 1.75rem;
  border-left: 1px solid var(--color-green);
  color: var(--color-muted);
  font-size: .96rem;
}

.service-section {
  padding: 6rem 0;
  border-top: 1px solid var(--color-border);
  scroll-margin-top: 90px;
}

.service-section.children { background: #f8f9f8; }
.service-section.adults { background: #fff; }

.section-number {
  display: block;
  margin-bottom: 2.5rem;
  color: #a2ada9;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-title {
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.08;
}

.service-intro {
  max-width: 490px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.service-list-grid { border-top: 1px solid #cfd7d3; }

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 82px;
  padding: 1.2rem .25rem;
  border-bottom: 1px solid var(--color-border);
}

.service-item:nth-child(odd) {
  border-right: 1px solid var(--color-border);
  padding-right: 2rem;
}

.service-item:nth-child(even) { padding-left: 2rem; }

.service-marker {
  flex: 0 0 auto;
  width: 18px;
  height: 1px;
  margin-top: .8rem;
  background: var(--color-green);
}

.service-item strong {
  display: block;
  color: #3c4643;
  font-weight: 600;
  line-height: 1.45;
}

.service-item small {
  display: block;
  margin-top: .15rem;
  color: var(--color-muted);
  font-size: .86rem;
  line-height: 1.45;
}

.balance-section {
  padding: 5rem 0;
  background: var(--color-warm);
  border-top: 1px solid var(--color-warm-dark);
  border-bottom: 1px solid var(--color-warm-dark);
  scroll-margin-top: 90px;
}

.balance-rule {
  width: 46px;
  height: 2px;
  margin-bottom: 1.7rem;
  background: #9b8773;
}

.balance-section h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.balance-section p {
  max-width: 700px;
  color: #626a68;
}

.partner-box {
  padding: 1.6rem 0 0 1.8rem;
  border-left: 1px solid #b6aa9e;
}

.partner-label {
  display: block;
  margin-bottom: .35rem;
  color: #8a7969;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.partner-box strong {
  display: block;
  margin-bottom: .25rem;
  font-family: "Lora", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.partner-box a {
  color: var(--color-green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.method-section {
  padding: 5.5rem 0;
  background: #fff;
}

.method-section h2 {
  max-width: 620px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
}

.method-copy {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.method-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  color: #7a8380;
  font-size: .88rem;
}


@media (max-width: 991.98px) {
  .page-hero { padding: 5rem 0 4.5rem; }
  .page-hero-index { margin-top: 3rem; }
  .intro-aside { margin: 2rem 0 0; }
  .service-section { padding: 5rem 0; }
  .service-list-grid { margin-top: 3rem; }
}

@media (max-width: 767.98px) {
  .page-hero { padding: 4.25rem 0 3.75rem; }
  .page-hero-copy { font-size: 1.07rem; }
  .intro-section { padding: 4rem 0; }
  .service-section { padding: 4.25rem 0; }
  .section-number { margin-bottom: 1.5rem; }

  .service-item:nth-child(odd),
  .service-item:nth-child(even) {
    border-right: 0;
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .balance-section,
  .method-section { padding: 4.25rem 0; }
  .partner-box { margin-top: 2rem; }
}


.rsce-about-page .about-hero {
  background: var(--color-warm);
  border-bottom: 1px solid var(--color-warm-dark);
}

.rsce-about-page .about-hero-copy {
  padding: 6.5rem 4rem 6.5rem max(2rem, calc((100vw - 1180px) / 2));
}

.rsce-about-page .about-hero h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 6vw, 5.8rem);
  line-height: 1.01;
}

.rsce-about-page .about-hero-lead {
  max-width: 670px;
  margin: 0;
  color: #5f6866;
  font-size: 1.2rem;
  line-height: 1.75;
}

.rsce-about-page .portrait-wrap {
  min-height: 620px;
  height: 100%;
  background: #dfe7e3;
  position: relative;
  overflow: hidden;
}

.rsce-about-page .portrait-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rsce-about-page .portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2.4rem;
  background:
radial-gradient(circle at 62% 32%, rgba(255,255,255,.7), transparent 23%),
linear-gradient(135deg, #dbe4e0, #cbd8d3);
}

.rsce-about-page .portrait-placeholder::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 300px;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  border-radius: 48% 48% 42% 42%;
  background: rgba(63,98,90,.18);
}

.rsce-about-page .portrait-note {
  position: relative;
  max-width: 290px;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.88);
  border-left: 2px solid var(--color-green);
  color: #55615e;
  font-size: .9rem;
}

.rsce-about-page .statement-section {
  padding: 6rem 0;
  background: #fff;
}

.rsce-about-page .statement-text {
  max-width: 900px;
  margin: 0;
  font-family: "Lora", serif;
  font-size: clamp(1.2rem, 3vw, 1.15rem);
  line-height: 1.38;
  color: #36413e;
}

.rsce-about-page .statement-signature {
  margin-top: 1.6rem;
  color: var(--color-muted);
  font-size: .95rem;
}

.rsce-about-page .work-section {
  padding: 6rem 0;
  border-top: 1px solid var(--color-border);
  background: #f8f9f8;
}

.rsce-about-page .section-title {
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 4.7vw, 3rem);
  line-height: 1.1;
}

.rsce-about-page .work-copy {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.rsce-about-page .work-copy p:last-child {
  margin-bottom: 0;
}

.rsce-about-page .work-aside {
  margin-top: 2rem;
  padding: 1.6rem 0 0 1.8rem;
  border-left: 1px solid var(--color-green);
}

.rsce-about-page .work-aside strong {
  display: block;
  margin-bottom: .45rem;
  font-family: "Lora", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.rsce-about-page .work-aside p {
  margin: 0;
  color: var(--color-muted);
  font-size: .95rem;
}

.rsce-about-page .principles-section {
  padding: 6rem 0;
  background: #fff;
}

.rsce-about-page .principles-intro {
  max-width: 560px;
  color: var(--color-muted);
}

.rsce-about-page .principles-list {
  margin-top: .5rem;
  border-top: 1px solid #cfd7d3;
}

.rsce-about-page .principle {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--color-border);
}

.rsce-about-page .principle-number {
  padding-top: .25rem;
  color: #9aa5a1;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.rsce-about-page .principle h3 {
  margin-bottom: .55rem;
  font-size: 1.45rem;
}

.rsce-about-page .principle p {
  max-width: 640px;
  margin: 0;
  color: var(--color-muted);
  font-size: .98rem;
}

.rsce-about-page .profile-section {
  padding: 6rem 0;
  background: var(--color-warm);
  border-top: 1px solid var(--color-warm-dark);
  border-bottom: 1px solid var(--color-warm-dark);
}

.rsce-about-page .profile-facts {
  margin: 0;
  border-top: 1px solid #d0cac0;
}

.rsce-about-page .profile-facts > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #d8d2c8;
}

.rsce-about-page .profile-facts dt {
  color: #7b756d;
  font-size: .83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.rsce-about-page .profile-facts dd {
  margin: 0;
  color: #48514f;
  font-weight: 600;
}

.rsce-about-page .profile-note {
  max-width: 560px;
  color: #6a6e6c;
}

.rsce-about-page .quote-section {
  padding: 5.5rem 0;
  background: var(--color-green-dark);
  color: #fff;
}

.rsce-about-page .quote-section blockquote {
  max-width: 900px;
  margin: 0;
  font-family: "Lora", serif;
  font-size: clamp(2.15rem, 4.3vw, 3.7rem);
  line-height: 1.28;
  color: #fff;
}

.rsce-about-page .quote-section cite {
  display: block;
  margin-top: 1.4rem;
  color: rgba(255,255,255,.62);
  font-style: normal;
  font-size: .92rem;
}

.rsce-about-page .contact-section {
  padding: 5.5rem 0;
  background: #fff;
  color: var(--color-text);
}

.rsce-about-page .contact-section h2 {
  max-width: 700px;
  margin-bottom: 1.2rem;
  color: var(--color-text);
  font-size: clamp(2.35rem, 4.6vw, 3.7rem);
  line-height: 1.14;
}

.rsce-about-page .contact-section .overline {
  color: var(--color-green);
}

.rsce-about-page .contact-copy {
  max-width: 650px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.rsce-about-page .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.rsce-about-page .contact-section .btn-primary-custom {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}

.rsce-about-page .contact-section .btn-secondary-custom {
  background: transparent;
  border-color: #bfc9c5;
  color: var(--color-text);
}

.rsce-about-page .contact-address {
  padding-left: 2rem;
  border-left: 1px solid var(--color-border);
}

.rsce-about-page .contact-address p {
  margin-bottom: .55rem;
  color: var(--color-muted);
}

.rsce-about-page .contact-address a {
  color: var(--color-green-dark);
  text-decoration: none;
}

.rsce-about-page .contact-address a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .rsce-about-page .about-hero-copy {
padding: 5rem max(1.5rem, calc((100vw - 720px) / 2));
  }

  .rsce-about-page .portrait-wrap {
min-height: 480px;
  }

  .rsce-about-page .principles-list {
margin-top: 3rem;
  }

  .rsce-about-page .contact-address {
margin-top: 2.5rem;
padding-left: 0;
border-left: 0;
  }
}

@media (max-width: 767.98px) {
  .rsce-about-page .about-hero-copy {
padding: 4.25rem 1.25rem 4rem;
  }

  .rsce-about-page .portrait-wrap {
min-height: 400px;
  }

  .rsce-about-page .statement-section,
  .rsce-about-page .work-section,
  .rsce-about-page .principles-section,
  .rsce-about-page .profile-section,
  .rsce-about-page .quote-section,
  .rsce-about-page .contact-section {
padding: 4.25rem 0;
  }

  .rsce-about-page .principle {
grid-template-columns: 42px 1fr;
gap: .8rem;
  }

  .rsce-about-page .profile-facts > div {
grid-template-columns: 1fr;
gap: .25rem;
  }
}

/* Hero */
.rsce-contact-page .contact-hero {
  padding: 6.25rem 0 5.5rem;
  background: var(--color-warm);
  border-bottom: 1px solid var(--color-warm-dark);
}

.rsce-contact-page .contact-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 1.02;
}

.rsce-contact-page .contact-hero-copy {
  max-width: 620px;
  margin-top: 1.4rem;
  color: #5f6866;
  font-size: 1.18rem;
  line-height: 1.75;
}

.rsce-contact-page .contact-hero-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #d3ccc2;
  color: #666d6b;
  font-size: .94rem;
}

/* Übersicht */
.rsce-contact-page .contact-overview {
  padding: 5.75rem 0;
  background: #fff;
}

.rsce-contact-page .contact-overview-title {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
  line-height: 1.15;
}

.rsce-contact-page .contact-overview-copy {
  max-width: 540px;
  color: var(--color-muted);
}

.rsce-contact-page .contact-list {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.rsce-contact-page .contact-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.rsce-contact-page .contact-list dt {
  color: #7b8582;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.rsce-contact-page .contact-list dd {
  margin: 0;
  color: #46504d;
  font-weight: 600;
}

.rsce-contact-page .contact-list a {
  color: var(--color-green-dark);
  text-decoration: none;
}

.rsce-contact-page .contact-list a:hover {
  text-decoration: underline;
}

/* Formular */
.rsce-contact-page .form-section {
  padding: 6rem 0;
  background: #f8f9f8;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.rsce-contact-page .form-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4.6vw, 3.8rem);
  line-height: 1.13;
}

.rsce-contact-page .form-intro {
  max-width: 580px;
  color: var(--color-muted);
}

.rsce-contact-page .form-note {
  margin-top: 1.75rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--color-green);
  color: #6d7774;
  font-size: .92rem;
}

.rsce-contact-page .contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 2rem;
}

.rsce-contact-page .contact-form .widget {
  margin-bottom: 1rem;
}

.rsce-contact-page .contact-form label {
  margin-bottom: .4rem;
  color: #47514e;
  font-size: .9rem;
  font-weight: 700;
}

.rsce-contact-page .contact-form input[type="text"],
.rsce-contact-page .contact-form input[type="email"],
.rsce-contact-page .contact-form input[type="tel"],
.rsce-contact-page .contact-form select,
.rsce-contact-page .contact-form textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: .65rem .8rem;
  border: 1px solid #cfd8d4;
  border-radius: .2rem;
  background: #fff;
  color: var(--color-text);
  box-shadow: none;
}

.rsce-contact-page .contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.rsce-contact-page .contact-form input:focus,
.rsce-contact-page .contact-form select:focus,
.rsce-contact-page .contact-form textarea:focus {
  outline: 0;
  border-color: var(--color-green);
}

.rsce-contact-page .contact-form .checkbox_container,
.rsce-contact-page .contact-form .widget-checkbox {
  color: #68716f;
  font-size: .9rem;
  line-height: 1.5;
}

.rsce-contact-page .contact-form button,
.rsce-contact-page .contact-form input[type="submit"] {
  display: inline-block;
  border: 1px solid var(--color-green);
  border-radius: .25rem;
  padding: .8rem 1.2rem;
  background: var(--color-green);
  color: #fff;
  font-weight: 600;
  transition: all .2s ease;
}

.rsce-contact-page .contact-form button:hover,
.rsce-contact-page .contact-form input[type="submit"]:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

/* Anfahrt */
.rsce-contact-page .location-section {
  padding: 6rem 0;
  background: var(--color-warm);
}

.rsce-contact-page .location-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.5vw, 3.6rem);
}

.rsce-contact-page .location-copy {
  max-width: 560px;
  color: var(--color-muted);
}

.rsce-contact-page .location-details {
  margin-top: 2rem;
  color: #4d5754;
}

.rsce-contact-page .location-details strong {
  display: block;
  margin-bottom: .2rem;
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.rsce-contact-page .map-placeholder {
  min-height: 390px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
linear-gradient(35deg, rgba(63,98,90,.06) 25%, transparent 25%),
linear-gradient(-35deg, rgba(63,98,90,.06) 25%, transparent 25%),
#e4e9e6;
  background-size: 44px 44px;
  border: 1px solid #d0d7d3;
}

.rsce-contact-page .map-marker {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-green-dark);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 30px rgba(41,74,67,.17);
}

.rsce-contact-page .map-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.92);
  color: #5a6461;
  font-size: .88rem;
}

/* Hinweis */
.rsce-contact-page .notice-section {
  padding: 4.25rem 0;
  background: #fff;
}

.rsce-contact-page .notice-box {
  max-width: 880px;
  padding-top: 1.4rem;
  border-top: 1px solid var(--color-border);
  color: #747d7a;
  font-size: .91rem;
}

.rsce-contact-page .notice-box strong {
  color: #4a5552;
}

@media (max-width: 991.98px) {
  .rsce-contact-page .contact-hero {
padding: 5rem 0 4.5rem;
  }

  .rsce-contact-page .contact-list {
margin-top: 3rem;
  }

  .rsce-contact-page .contact-form {
margin-top: 2rem;
  }

  .rsce-contact-page .map-placeholder {
min-height: 340px;
margin-top: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .rsce-contact-page .contact-hero {
padding: 4.25rem 0 3.75rem;
  }

  .rsce-contact-page .contact-overview,
  .rsce-contact-page .form-section,
  .rsce-contact-page .location-section {
padding: 4.25rem 0;
  }

  .rsce-contact-page .contact-list > div {
grid-template-columns: 1fr;
gap: .25rem;
  }

  .rsce-contact-page .contact-form {
padding: 1.4rem;
  }
}

.rsce-standard-page a {
  color: var(--color-green-dark);
}

/* Seitenkopf */
.rsce-standard-page .standard-hero {
  padding: 4.75rem 0 4.25rem;
  background: var(--color-warm);
  border-bottom: 1px solid var(--color-warm-dark);
}

.rsce-standard-page .standard-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.05;
}

.rsce-standard-page .standard-hero-intro {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: #626b68;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* Inhalt */
.rsce-standard-page .standard-content {
  padding: 5.25rem 0 6rem;
  background: #fff;
}

.rsce-standard-page .standard-lead {
  margin-bottom: 3rem;
  color: #4d5754;
  font-size: 1.1rem;
}

.rsce-standard-page .standard-lead > :last-child,
.rsce-standard-page .standard-section-copy > :last-child,
.rsce-standard-page .standard-aside-copy > :last-child {
  margin-bottom: 0;
}

.rsce-standard-page .standard-sections {
  border-top: 1px solid var(--color-border);
}

.rsce-standard-page .standard-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 110px;
}

.rsce-standard-page .standard-section-title {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.rsce-standard-page h3.standard-section-title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.rsce-standard-page .standard-section-copy {
  max-width: 780px;
  color: var(--color-muted);
}

.rsce-standard-page .standard-section-copy p {
  margin-bottom: 1rem;
}

.rsce-standard-page .standard-section-copy ul,
.rsce-standard-page .standard-section-copy ol {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.rsce-standard-page .standard-section-copy li + li {
  margin-top: .35rem;
}

.rsce-standard-page .standard-section-copy a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rsce-standard-page .standard-section-copy strong {
  color: #414b48;
}

/* Hinweisbox */
.rsce-standard-page .standard-aside {
  margin-top: 3.25rem;
  padding: 2rem;
  background: #f8f9f8;
  border-left: 2px solid var(--color-green);
}

.rsce-standard-page .standard-aside h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.rsce-standard-page .standard-aside-copy {
  color: var(--color-muted);
}

.rsce-standard-page .standard-aside-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--color-green-dark);
  font-weight: 700;
  text-decoration: none;
}

.rsce-standard-page .standard-aside-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rsce-standard-page .standard-footer-note {
  margin-top: 3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-border);
  color: #89908e;
  font-size: .86rem;
}

@media (max-width: 767.98px) {
  .rsce-standard-page .standard-hero {
padding: 3.75rem 0 3.25rem;
  }

  .rsce-standard-page .standard-content {
padding: 4rem 0 4.5rem;
  }

  .rsce-standard-page .standard-section {
padding: 2rem 0;
  }

  .rsce-standard-page .standard-aside {
padding: 1.5rem;
  }
}

/*
 * Praxis Thomas Stein – Startseite
 * Ergänzung für Praxisbilder / Praxis-Slider
 *
 * Voraussetzung für den Slider:
 * Bootstrap 5 JavaScript / bootstrap.bundle.min.js ist im Seitenlayout geladen.
 */

.practice-photo {
    position: relative;
    min-height: 460px;
    overflow: hidden;
}

.practice-photo:has(img) {
    padding: 0;
}

.practice-photo img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* Slider ------------------------------------------------------------- */

.practice-slider {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: #e1e5e2;
}

.practice-slider .carousel-inner,
.practice-slider .carousel-item {
    min-height: 460px;
    height: 460px;
}

.practice-slider .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sehr dezente Beschriftung – wird nur ausgegeben, wenn im Backend befüllt */
.practice-slider-caption {
    position: absolute;
    left: 1.35rem;
    bottom: 1.35rem;
    z-index: 3;
    max-width: calc(100% - 8rem);
    padding: .7rem .9rem;
    background: rgba(255, 255, 255, .9);
    color: var(--color-text, #2d3533);
    font-size: .82rem;
    line-height: 1.4;
    backdrop-filter: blur(8px);
}

/* Navigation */
.practice-slider-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--color-green-dark, #294a43);
    font-size: .9rem;
    box-shadow: 0 6px 22px rgba(25, 45, 40, .12);
    transform: translateY(-50%);
    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease,
        opacity .2s ease;
}

.practice-slider-prev {
    left: 1rem;
}

.practice-slider-next {
    right: 1rem;
}

.practice-slider-control:hover,
.practice-slider-control:focus-visible {
    background: var(--color-green-dark, #294a43);
    color: #fff;
}

.practice-slider-control:active {
    transform: translateY(-50%) scale(.96);
}

/* Punkte */
.practice-slider-indicators {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem .65rem;
    margin: 0;
    border-radius: 2rem;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
}

.practice-slider-indicators button {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #aab5b1;
    opacity: .65;
    transition:
        width .2s ease,
        border-radius .2s ease,
        background-color .2s ease,
        opacity .2s ease;
}

.practice-slider-indicators button.active {
    width: 22px;
    flex-basis: 22px;
    border-radius: 1rem;
    background: var(--color-green-dark, #294a43);
    opacity: 1;
}

/* Bootstrap-Fade etwas ruhiger */
.practice-slider.carousel-fade .carousel-item {
    transition: opacity .65s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    .practice-slider .practice-slider-control {
        opacity: 0;
    }

    .practice-slider:hover .practice-slider-control,
    .practice-slider:focus-within .practice-slider-control {
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .practice-photo,
    .practice-slider,
    .practice-slider .carousel-inner,
    .practice-slider .carousel-item {
        min-height: 350px;
        height: 350px;
    }

    .practice-photo img {
        height: 350px;
    }

    .practice-slider-control {
        width: 40px;
        height: 40px;
    }

    .practice-slider-prev {
        left: .75rem;
    }

    .practice-slider-next {
        right: .75rem;
    }

    .practice-slider-indicators {
        right: .9rem;
        bottom: .9rem;
    }

    .practice-slider-caption {
        left: .9rem;
        bottom: .9rem;
        max-width: calc(100% - 6.5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .practice-slider.carousel-fade .carousel-item,
    .practice-slider-control,
    .practice-slider-indicators button {
        transition: none;
    }
}

