
:root {
  --green: #50624d;
  --green-soft: #768772;
  --rose: #c49386;
  --rose-soft: #f3e6e0;
  --ivory: #faf7f3;
  --sand: #f4eee8;
  --text: #3f463e;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(86, 88, 81, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 243, 0.92);
  border-bottom: 1px solid rgba(80, 98, 77, 0.08);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green);
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav a { font-size: 0.96rem; }
.nav a:hover,
.footer-links a:hover,
.contact-card a:hover { color: var(--rose); }

.hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, #fcfaf7 0%, #f7f1eb 100%);
}

.hero-grid,
.two-col,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 1rem;
}

.section-tag.light { color: #f8ddd3; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--green);
}

h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
h1 span { color: var(--rose); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.6rem; }

.lead {
  font-size: 1.1rem;
  max-width: 62ch;
  margin-bottom: 1.75rem;
}

.hero-image-card {
  background: rgba(255,255,255,0.7);
  border-radius: 32px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-image {
  border-radius: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(80, 98, 77, 0.2);
}
.btn-small { padding: 0.7rem 1rem; }
.btn-light {
  background: var(--white);
  color: var(--green);
}

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

.section { padding: 5rem 0; }
.section-soft { padding: 5rem 0; background: var(--sand); }

.quote-box,
.highlight-box,
.contact-card,
.card,
.step,
.legal-box {
  background: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-box {
  padding: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--rose);
  text-align: center;
}

.cards,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.card,
.step,
.highlight-box,
.contact-card,
.legal-box {
  padding: 1.75rem;
}

.highlight-box ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.highlight-box li { margin-bottom: 0.6rem; }

.step span {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--rose-soft);
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta {
  padding: 2rem 0 5rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-soft) 100%);
  color: var(--white);
  border-radius: 32px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.cta h2, .cta p { color: var(--white); }

.small-note {
  margin-top: 1rem;
  color: #6c625d;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid rgba(80, 98, 77, 0.08);
  padding: 1.5rem 0;
  background: #f8f4ef;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-columns {
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-page {
  min-height: calc(100vh - 160px);
}

.legal-page-box {
  max-width: 900px;
}

.legal-page-box h2 {
  font-size: 1.55rem;
  margin-top: 2rem;
}

.legal-page-box p {
  margin: 0 0 1rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .about-grid,
  .contact-grid,
  .cards,
  .steps,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-box {
    text-align: left;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 3rem; }
  .section, .section-soft { padding: 4rem 0; }
  .brand { font-size: 1.4rem; }
  .nav { gap: 0.8rem 1rem; }
}

/* Rechtlicher Hinweis dezenter */
	.legal-box {
	max-width: 720px;
	margin: 0 auto;
	padding: 1.5rem;
}
	#hinweis h2 {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
}
	#hinweis .small-note {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #7a6f69;
}

.about-photo-card {
  background: rgba(255,255,255,0.82);
  border-radius: 32px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.about-photo {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 24px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-qualifications {
  margin-top: 0.5rem;
}

.about-qualifications h3 {
  margin-bottom: 0.75rem;
}

.about-qualifications ul {
  margin: 0;
  padding-left: 1.2rem;
}

.about-qualifications li {
  margin-bottom: 0.55rem;
}

/* ---------------------------------------------------------
   Responsive Korrekturen für Mobilgeräte
   --------------------------------------------------------- */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

.container,
.legal-box,
.card,
.step,
.highlight-box,
.contact-card,
.cta-box {
  min-width: 0;
}

p,
li,
a,
h1,
h2,
h3,
.brand,
.nav {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

h1 { font-size: clamp(2.05rem, 8vw, 4.5rem); }
h2 { font-size: clamp(1.65rem, 6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 4.5vw, 1.6rem); }

.hero-image-card {
  max-width: 520px;
  width: 100%;
  justify-self: center;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-photo-card {
  max-width: 430px;
  width: 100%;
  justify-self: center;
}

.about-photo {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.legal-page-box {
  width: 100%;
  max-width: 900px;
}

.legal-page-box h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.legal-page-box h2 {
  font-size: clamp(1.25rem, 5.5vw, 1.65rem);
  line-height: 1.18;
}

.legal-page-box p,
.legal-page-box li {
  font-size: clamp(0.98rem, 3.8vw, 1.05rem);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .about-grid,
  .contact-grid,
  .cards,
  .steps {
    gap: 1.5rem;
  }

  .hero-image-card {
    max-width: 420px;
  }

  .about-photo-card {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .nav-wrap {
    padding: 0.85rem 0;
  }

  .brand {
    font-size: clamp(1.25rem, 7vw, 1.55rem);
    line-height: 1.2;
  }

  .nav {
    width: 100%;
    gap: 0.6rem;
  }

  .nav a {
    font-size: 0.95rem;
  }

  .hero {
    padding: 2.25rem 0 2rem;
  }

  .hero-copy h1 br {
    display: none;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    padding: 0.85rem 1rem;
    text-align: center;
  }

  .btn-small {
    width: auto;
  }

  .hero-image-card {
    max-width: 300px;
    padding: 0.75rem;
    border-radius: 24px;
  }

  .hero-image {
    border-radius: 18px;
  }

  .section,
  .section-soft {
    padding: 3rem 0;
  }

  .quote-box,
  .card,
  .step,
  .highlight-box,
  .contact-card,
  .legal-box,
  .cta-box {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .quote-box {
    font-size: 1.45rem;
  }

  .legal-page-box h2 {
    margin-top: 1.6rem;
  }

  .about-photo-card {
    max-width: 300px;
    padding: 0.75rem;
    border-radius: 24px;
  }

  .about-photo {
    max-height: 430px;
    border-radius: 18px;
  }

  .footer-wrap,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 1rem, 1120px);
  }

  .legal-page-box h1 {
    font-size: 1.8rem;
  }

  .legal-page-box h2 {
    font-size: 1.15rem;
  }

  .legal-page-box p,
  .legal-page-box li {
    font-size: 0.95rem;
  }
}


/* =========================================================
   FINALER RESPONSIVE-FIX: Rechtliche Seiten + Bilder
   Diese Regeln stehen absichtlich ganz unten und überschreiben
   ältere Werte zuverlässig.
   ========================================================= */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

main, section, header, footer, .container, .legal-box, .legal-page-box {
  min-width: 0 !important;
}

.container {
  width: min(1120px, calc(100% - 2rem)) !important;
}

.legal-page .section {
  padding: clamp(2rem, 5vw, 4rem) 0 !important;
}

.legal-page .legal-page-box {
  width: min(100%, 900px) !important;
  max-width: 900px !important;
  padding: clamp(1.15rem, 4vw, 2rem) !important;
  overflow: hidden !important;
}

.legal-page .legal-page-box h1,
.legal-page .legal-page-box h2,
.legal-page .legal-page-box h3,
.legal-page .legal-page-box p,
.legal-page .legal-page-box li,
.legal-page .legal-page-box a,
.brand,
.nav a {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto !important;
}

.legal-page .legal-page-box h1 {
  font-size: clamp(2rem, 6vw, 3.25rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.02em !important;
}

.legal-page .legal-page-box h2 {
  font-size: clamp(1.25rem, 3.8vw, 1.65rem) !important;
  line-height: 1.18 !important;
  margin-top: clamp(1.4rem, 4vw, 2rem) !important;
}

.legal-page .legal-page-box p,
.legal-page .legal-page-box li {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
  line-height: 1.65 !important;
}

.hero-image-card {
  width: min(100%, 440px) !important;
  justify-self: center !important;
}

.hero-image {
  width: 100% !important;
  height: auto !important;
  max-height: 440px !important;
  object-fit: contain !important;
}

.about-photo-card {
  width: min(100%, 360px) !important;
  justify-self: center !important;
}

.about-photo {
  width: 100% !important;
  height: auto !important;
  max-height: 520px !important;
  object-fit: cover !important;
  object-position: center top !important;
}

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start !important;
  }

  .legal-page .legal-page-box {
    max-width: 100% !important;
  }

  .hero-image-card,
  .about-photo-card {
    width: min(100%, 320px) !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, 1120px) !important;
  }

  .site-header {
    position: relative !important;
  }

  .nav-wrap {
    gap: 0.65rem !important;
  }

  .brand {
    font-size: clamp(1.35rem, 6vw, 1.65rem) !important;
    line-height: 1.15 !important;
  }

  .nav {
    width: 100% !important;
    gap: 0.45rem 0.8rem !important;
  }

  .nav a {
    font-size: 0.95rem !important;
  }

  .legal-page .section {
    padding: 1rem 0 2.5rem !important;
  }

  .legal-page .legal-page-box {
    border-radius: 18px !important;
    padding: 1rem !important;
  }

  .legal-page .legal-page-box h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem) !important;
  }

  .legal-page .legal-page-box h2 {
    font-size: clamp(1.15rem, 6vw, 1.45rem) !important;
  }

  .hero-image-card,
  .about-photo-card {
    width: min(100%, 280px) !important;
  }

  .hero-image {
    max-height: 300px !important;
  }

  .about-photo {
    max-height: 380px !important;
  }
}

@media (max-width: 380px) {
  .legal-page .legal-page-box h1 {
    font-size: 1.75rem !important;
  }

  .legal-page .legal-page-box h2 {
    font-size: 1.12rem !important;
  }
}


/* =========================================================
   V4 TYPO-FEINSCHLIFF: ausgewogen auf Desktop, Laptop und Mobile
   ========================================================= */

h1,
.hero-copy h1,
.hero-copy h1 span {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

h1,
.hero-copy h1 {
  font-size: clamp(2.45rem, 4.15vw, 3.55rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
}

h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.65rem) !important;
  line-height: 1.13 !important;
}

h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.5rem) !important;
}

.hero {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2.25rem, 4vw, 3rem) !important;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px) !important;
  gap: clamp(2rem, 5vw, 4rem) !important;
}

.hero-copy {
  max-width: 660px !important;
}

.lead {
  font-size: clamp(1rem, 1.25vw, 1.08rem) !important;
  line-height: 1.65 !important;
  max-width: 58ch !important;
}

.hero-image-card {
  width: min(100%, 420px) !important;
  padding: clamp(0.85rem, 1.5vw, 1rem) !important;
}

.hero-image {
  max-height: 410px !important;
}

.legal-page .legal-page-box h1 {
  font-size: clamp(2rem, 4.4vw, 3rem) !important;
  line-height: 1.08 !important;
  overflow-wrap: anywhere !important;
  hyphens: auto !important;
}

.legal-page .legal-page-box h2 {
  font-size: clamp(1.2rem, 2.3vw, 1.55rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: anywhere !important;
  hyphens: auto !important;
}

@media (min-width: 901px) and (max-width: 1400px) {
  .container {
    width: min(1180px, calc(100% - 3rem)) !important;
  }

  h1,
  .hero-copy h1 {
    font-size: clamp(2.6rem, 3.9vw, 3.45rem) !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px) !important;
  }

  .hero-image-card {
    width: min(100%, 400px) !important;
  }
}

@media (max-width: 900px) {
  h1,
  .hero-copy h1 {
    font-size: clamp(2.25rem, 6vw, 3rem) !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy {
    max-width: 720px !important;
  }
}

@media (max-width: 640px) {
  h1,
  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.55rem) !important;
    line-height: 1.1 !important;
  }

  .hero-copy h1 br {
    display: none !important;
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
  }

  .hero-image-card {
    width: min(100%, 280px) !important;
  }

  .hero-image {
    max-height: 280px !important;
  }
}

/* =========================================================
   V5 TYPOGRAFIE-FEINSCHLIFF
   Ziel: ruhige, hochwertige Lesbarkeit ohne unschöne Worttrennungen
   auf Desktop, Laptop, Tablet und Smartphone.
   ========================================================= */

html,
body {
  text-align: left !important;
}

body,
p,
li,
a,
.brand,
.nav,
.btn,
h1,
h2,
h3,
.legal-page-box h1,
.legal-page-box h2,
.legal-page-box p,
.legal-page-box li {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  text-align: left !important;
}

.legal-page-box a,
.contact-card a {
  overflow-wrap: anywhere !important;
}

p,
li {
  line-height: 1.68 !important;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 13.5ch !important;
  font-size: clamp(2.15rem, 3.55vw, 3.15rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em !important;
}

.hero-copy .lead {
  max-width: 54ch !important;
}

.cta-box {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
}

.cta-box h2 {
  max-width: 15ch !important;
  font-size: clamp(1.9rem, 3.1vw, 2.7rem) !important;
  line-height: 1.12 !important;
}

.cta-box p {
  max-width: 60ch !important;
}

.cta-box .btn,
.cta-box .btn-light {
  width: auto !important;
  min-width: 160px !important;
  white-space: nowrap !important;
  text-align: center !important;
}

.card,
.step,
.highlight-box,
.contact-card,
.legal-box,
.quote-box {
  overflow: visible !important;
}

.card p,
.step p,
.highlight-box li,
.contact-card p,
.legal-box p {
  max-width: 65ch !important;
}

.legal-page .legal-page-box {
  overflow: visible !important;
}

.legal-page .legal-page-box h1 {
  font-size: clamp(2rem, 3.8vw, 2.85rem) !important;
  line-height: 1.1 !important;
  max-width: 16ch !important;
}

.legal-page .legal-page-box h2 {
  font-size: clamp(1.22rem, 1.9vw, 1.48rem) !important;
  line-height: 1.22 !important;
  max-width: 28ch !important;
}

.legal-page .legal-page-box p,
.legal-page .legal-page-box li {
  max-width: 72ch !important;
}

@media (min-width: 901px) and (max-width: 1500px) {
  .hero-copy h1 {
    font-size: clamp(2.25rem, 3.25vw, 3rem) !important;
    max-width: 14.5ch !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px) !important;
    gap: clamp(2.25rem, 4vw, 3.5rem) !important;
  }

  .hero-image-card {
    width: min(100%, 390px) !important;
  }

  .cta-box h2 {
    font-size: clamp(1.9rem, 2.8vw, 2.5rem) !important;
  }
}

@media (max-width: 900px) {
  .hero-copy h1 {
    max-width: 16ch !important;
    font-size: clamp(2rem, 6vw, 2.65rem) !important;
  }

  .cta-box {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .cta-box h2 {
    max-width: 17ch !important;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    max-width: 14ch !important;
    font-size: clamp(1.9rem, 8vw, 2.25rem) !important;
    line-height: 1.1 !important;
  }

  .hero-copy h1 br {
    display: none !important;
  }

  .cta-box h2 {
    max-width: 14ch !important;
    font-size: clamp(1.75rem, 8vw, 2.1rem) !important;
  }

  .cta-box .btn,
  .cta-box .btn-light {
    width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
  }

  .legal-page .legal-page-box h1 {
    max-width: 100% !important;
    font-size: clamp(1.85rem, 8vw, 2.25rem) !important;
  }

  .legal-page .legal-page-box h2 {
    max-width: 100% !important;
    font-size: clamp(1.15rem, 5.5vw, 1.35rem) !important;
  }
}

/* =========================================================
   V6 HERO-GRAFIK: Breite passend zur unteren rechten Box
   Ziel: Die Logo-Grafik im oberen Rahmen hat auf Desktop/Laptop
   dieselbe Spaltenbreite wie die Box "Einfühlsam. Individuell. Ganzheitlich."
   ========================================================= */

@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 2.5rem !important;
    align-items: center !important;
  }

  .hero-image-card {
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
    padding: clamp(1.25rem, 2vw, 2rem) !important;
  }

  .hero-image {
    width: 100% !important;
    max-height: 520px !important;
    object-fit: contain !important;
  }
}

@media (min-width: 901px) and (max-width: 1500px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 2.5rem !important;
  }

  .hero-image-card {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 900px) {
  .hero-image-card {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    justify-self: center !important;
  }
}

@media (max-width: 640px) {
  .hero-image-card {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
  }

  .hero-image {
    max-height: 340px !important;
  }
}
