/* ==========================================================
   FONT LOADING  —  lokal, kein externer Request
   ========================================================== */

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Light.woff2') format('woff2'),
       url('assets/fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Regular.woff2') format('woff2'),
       url('assets/fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Medium.woff2') format('woff2'),
       url('assets/fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('assets/fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Bold.woff2') format('woff2'),
       url('assets/fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================
   DESIGN TOKENS
   ========================================================== */

:root {
  --beige:         #f6eee4;
  --beige-dark:    #eadecf;
  --green:         #265e39;
  --green-mid:     #3d7a50;
  --green-light:   #82a37c;
  --orange:        #b47a47;
  --white:         #ffffff;
  --off-white:     #fdfaf7;

  --text:          #265e39;
  --text-soft:     #4a7258;
  --text-muted:    #7c9e85;

  --border-faint:  rgba(38, 94, 57, 0.09);
  --border-light:  rgba(38, 94, 57, 0.15);
  --border-mid:    rgba(38, 94, 57, 0.22);

  --font: 'Poppins', 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
          'Segoe UI', sans-serif;

  --header-h: 72px;
  --max-w:    960px;
  --max-w-text: 640px;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 20px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================
   RESET
   ========================================================== */

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

/* ==========================================================
   BASE
   ========================================================== */

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;   /* 17px */
  line-height: 1.78;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 180ms var(--ease);
}

a:hover {
  opacity: 0.78;
}

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
  opacity: 1;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

p + p {
  margin-top: 1.2em;
}

strong {
  font-weight: 600;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  min-height: 52px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 200ms var(--ease),
              border-color 200ms var(--ease),
              color 200ms var(--ease),
              opacity 200ms var(--ease);
}

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

.btn-primary {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--green-mid);
  border-color: var(--green-mid);
  opacity: 1;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-mid);
  color: var(--green);
}

.btn-outline:hover {
  background-color: rgba(38, 94, 57, 0.05);
  border-color: var(--green);
  opacity: 1;
}

.btn-primary-inverse {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--green);
}

.btn-primary-inverse:hover {
  background-color: var(--beige);
  border-color: var(--beige);
  opacity: 1;
}

.btn-outline-inverse {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-outline-inverse:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.btn-header {
  padding: 10px 22px;
  min-height: 42px;
  font-size: 0.875rem;
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
  border-radius: var(--r-sm);
}

.btn-header:hover {
  background-color: var(--green-mid);
  border-color: var(--green-mid);
  opacity: 1;
}

/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-faint);
  transition: box-shadow 280ms var(--ease),
              border-color 280ms var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(38, 94, 57, 0.07);
  border-bottom-color: var(--border-light);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo {
  height: 46px;
  width: auto;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 7px 11px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--r-sm);
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.main-nav a:hover {
  background-color: rgba(38, 94, 57, 0.06);
  color: var(--green);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--green);
  transition: transform 260ms var(--ease), opacity 200ms var(--ease);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==========================================================
   MOBILE NAV OVERLAY
   ========================================================== */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  padding: 88px 36px 52px;
  transform: translateX(100%);
  transition: transform 340ms var(--ease);
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.mobile-nav-close:hover {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.mobile-nav-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  transition: color 180ms var(--ease);
}

.mobile-nav nav a:hover,
.mobile-nav nav a:focus-visible {
  color: var(--white);
  opacity: 1;
}

.mobile-nav-ctas {
  margin-top: auto;
  padding-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================
   HERO
   ========================================================== */

.hero {
  position: relative;
  background-color: var(--beige);
  overflow: hidden;
  padding: 68px 0 80px;
}

.hero-bg-logo {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 75vw;
  max-width: 720px;
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (max-width: 640px) {
  .hero-bg-logo {
    right: auto;
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
    width: 360px;
  }
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 22px;
}

.hero-headline {
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 28px;
}

.hl-thin    { font-weight: 300; }
.hl-bold    { font-weight: 700; }
.hl-regular {
  font-weight: 400;
  display: block;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* Trust-Anker */
.hero-trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid var(--border-mid);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 28px;
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  align-self: stretch;
  background-color: var(--border-mid);
  margin-right: 28px;
  flex-shrink: 0;
}

.trust-num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.trust-num sup {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 500;
}

.trust-label,
.trust-caption {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.trust-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}


/* ==========================================================
   SEKTIONEN (gemeinsam)
   ========================================================== */

.section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--off-white);
}

.section-beige {
  background-color: var(--beige);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 44px;
}

.section-header h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
}

.section-header--sub {
  margin-top: 68px;
  margin-bottom: 28px;
}

.section-header--sub h2 {
  font-size: clamp(1.3125rem, 3vw, 1.75rem);
}

/* ==========================================================
   FÜR WEN
   ========================================================== */

.fuer-wen-body {
  max-width: var(--max-w-text);
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.condition-list {
  margin-bottom: 40px;
}

.condition-list li {
  position: relative;
  padding: 13px 0 13px 22px;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-faint);
}

.condition-list li:first-child {
  border-top: 1px solid var(--border-faint);
}

.condition-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green-light);
  flex-shrink: 0;
}

.closing-note {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-soft);
  font-style: italic;
  padding: 18px 20px 18px 24px;
  border-left: 2px solid var(--green-light);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background-color: rgba(130, 163, 124, 0.07);
}

/* ==========================================================
   THERAPIE ZUHAUSE
   ========================================================== */

.therapie-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: var(--max-w-text);
  margin-bottom: 0;
}

.therapie-text p {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--text);
}

.leitsatz {
  padding: 28px 30px;
  border-left: 3px solid var(--orange);
  background-color: rgba(180, 122, 71, 0.07);
  border-radius: 0 var(--r) var(--r) 0;
}

.leitsatz p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--orange);
  font-style: italic;
}

/* ==========================================================
   BEHANDLUNGSSCHWERPUNKTE
   ========================================================== */

.schwerpunkte-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.schwerpunkte-list li {
  padding: 8px 18px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--green);
  background-color: rgba(130, 163, 124, 0.15);
  border-radius: 40px;
  border: 1px solid rgba(130, 163, 124, 0.25);
  line-height: 1.35;
}

/* ==========================================================
   ABLAUF
   ========================================================== */

.ablauf-list {
  max-width: var(--max-w-text);
}

.ablauf-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-faint);
}

.ablauf-list li:first-child {
  border-top: 1px solid var(--border-faint);
}

.step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.68;
}

/* ==========================================================
   KOSTEN & RÜCKERSTATTUNG
   ========================================================== */

.kosten-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 64px;
  align-items: start;
}

.kosten-text {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.kosten-text p + p {
  margin-top: 1.1em;
}

.kosten-netto {
  margin-top: 24px !important;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.kosten-right {
  min-width: 0;
}

.kosten-table {
  margin-bottom: 28px;
}

.kosten-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
}

.kosten-row:first-child {
  border-top: 1px solid var(--border-light);
}

.kosten-dauer {
  font-size: 1rem;
  color: var(--text-soft);
}

.kosten-preis {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
}

.kosten-hinweis {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--text-soft);
  padding: 20px 22px;
  background-color: rgba(38, 94, 57, 0.055);
  border-radius: var(--r);
}

/* ==========================================================
   ÜBER BETTINA
   ========================================================== */

.ueber-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.ueber-text {
  position: relative;
  max-width: var(--max-w-text);
}


.ueber-intro {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--green);
  margin-bottom: 1.2em;
}

.ueber-text p {
  color: var(--text-soft);
}

.ueber-werdegang {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.werdegang-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
}

.werdegang-list {
  display: flex;
  flex-direction: column;
}

.werdegang-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-faint);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.werdegang-list li:first-child {
  border-top: 1px solid var(--border-faint);
}

.werdegang-year {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-light);
  flex-shrink: 0;
  padding-top: 1px;
  white-space: nowrap;
}

.zusatz-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zusatz-list li {
  padding: 5px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  background-color: var(--beige);
  border-radius: 40px;
  border: 1px solid var(--border-light);
}

/* ==========================================================
   KONTAKT
   ========================================================== */

.section-kontakt {
  background-color: var(--green);
  padding: 80px 0 76px;
}

.section-kontakt *:not(.btn-primary-inverse) {
  color: var(--white);
}

.kontakt-top {
  margin-bottom: 52px;
}

.kontakt-top h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.625rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.kontakt-intro {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  max-width: 480px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.kontakt-phone {
  display: block;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  transition: opacity 180ms var(--ease);
}

.kontakt-phone:hover {
  opacity: 0.82;
}

.kontakt-email {
  display: block;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  transition: color 180ms var(--ease);
}

.kontakt-email:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.kontakt-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vcard-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 180ms var(--ease);
}

.vcard-download svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.vcard-download:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.vcard-download:hover svg {
  opacity: 1;
}

.kontakt-address {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
}

.kontakt-address strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.kontakt-address span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.58);
}

.kontakt-gebiet {
  margin-top: 10px;
  font-size: 0.8125rem !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38) !important;
  letter-spacing: 0.04em;
}

/* ==========================================================
   CONTACT MODAL
   ========================================================== */

.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 38, 24, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.contact-modal-box {
  position: relative;
  background: var(--white);
  border-radius: calc(var(--r) * 1.5);
  padding: 44px 40px 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  animation: modal-in 220ms var(--ease) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 150ms var(--ease), color 150ms var(--ease);
}

.contact-modal-close:hover {
  background-color: var(--beige);
  color: var(--green);
}

.contact-modal-close:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.modal-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 28px;
  line-height: 1.25;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r);
  text-decoration: none;
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease);
}

.modal-option:hover {
  border-color: var(--green-light);
  background-color: rgba(130, 163, 124, 0.06);
}

.modal-option:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.modal-option-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.modal-option-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.modal-option-body strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green);
}

.modal-option-body span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .contact-modal-box {
    padding: 36px 24px 28px;
  }
}

/* ==========================================================
   IMPRESSUM
   ========================================================== */

.impressum-inner {
  max-width: 680px;
}

.impressum-hero {
  padding-top: 60px;
  padding-bottom: 52px;
}

.impressum-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green-light);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 160ms var(--ease);
}

.impressum-back:hover {
  color: var(--green);
  opacity: 1;
}

.impressum-h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.1;
  margin: 0;
}

.impressum-body {
  padding-top: 56px;
  padding-bottom: 80px;
}

.impressum-block {
  margin-bottom: 36px;
}

.impressum-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}

.impressum-block address,
.impressum-block p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
}

.impressum-block a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--green-light);
  text-underline-offset: 3px;
}

.impressum-block a:hover {
  color: var(--green-light);
  opacity: 1;
}

.impressum-rule {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 44px 0;
}

.impressum-note {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
  background-color: #1c4829;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-info p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 180ms var(--ease);
}

.footer-info a:hover {
  color: rgba(255, 255, 255, 0.88);
  opacity: 1;
}

.footer-legal {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.6;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.38);
  transition: color 180ms var(--ease);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* --- Tablet: ab 640px --- */
@media (min-width: 640px) {
  .hero-trust {
    flex-wrap: nowrap;
  }

  .therapie-body {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .kontakt-grid {
    grid-template-columns: 1fr auto;
    gap: 60px;
  }

  .kontakt-address {
    border-top: none;
    padding-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 48px;
    min-width: 200px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .footer-legal {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
  }
}

/* --- Desktop: ab 900px --- */
@media (min-width: 900px) {
  body {
    font-size: 1.125rem;  /* 18px */
  }

  .section {
    padding: 104px 0;
  }

  .hero {
    padding: 100px 0 116px;
  }

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

  .hero-sub {
    font-size: 1.125rem;
  }

  .hero-ornament {
    right: -10px;
    width: 210px;
  }

  .section-header {
    margin-bottom: 52px;
  }

  .ueber-body {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .section-kontakt {
    padding: 104px 0 96px;
  }
}

/* --- Mobile: max 767px — Desktop-Nav ausblenden --- */
@media (max-width: 767px) {
  .main-nav,
  .btn-header {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .kosten-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --- Kleines Mobile: Trust-Bar umbruch-sicher --- */
@media (max-width: 540px) {
  .hero-trust {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .trust-sep {
    display: none;
  }

  .trust-item {
    padding-right: 0;
    min-width: 140px;
  }
}

/* ==========================================================
   ACCESSIBILITY UTILITIES
   ========================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fokus-Sichtbarkeit für Tastaturnutzer */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}
