/*
Theme Name: Litara Healing
Theme URI: https://litara.com
Author: Litara Healing Wien
Description: LITARA® Healing – Regenerative Medizin & Ozon
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: litara
*/

/* =====================================================
   CSS VARIABLES & RESET
   ===================================================== */
:root {
  --color-primary:    rgba(207, 152, 125, 1);
  --color-secondary1: rgba(202, 232, 226, 1);
  --color-secondary2: rgba(110, 143, 142, 1);
  --color-secondary3: rgba(28, 28, 40, 1);
  --color-secondary4: rgba(255, 255, 255, 1);
  --color-teal:       rgba(74, 115, 116, 1);
  --color-teal-dark:  rgba(85, 109, 109, 1);
  --color-text:       rgba(106, 106, 106, 1);
  --color-bg-mint:    rgba(203, 231, 226, 0.8);
  --color-bg-header:  rgba(202, 232, 226, 0.8);
  --font-main:        'Open Sans', Arial, sans-serif;
  --max-width:        1300px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 18px;
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================================================
   LAYOUT CONTAINERS
   ===================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1 {
  font-family: var(--font-main);
  font-size: 48px;
  line-height: 1.1em;
  color: var(--color-teal);
  letter-spacing: 1px;
  text-align: center;
}
h2 {
  font-family: var(--font-main);
  font-size: 46px;
  line-height: 1.2em;
  color: var(--color-teal-dark);
  text-align: center;
}
h3 {
  font-family: var(--font-main);
  font-size: 36px;
  line-height: 1.2em;
  color: var(--color-teal-dark);
}
h4 {
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 1.2em;
  color: var(--color-teal-dark);
}
h5 {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.2em;
  color: var(--color-secondary3);
}
p {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.6em;
  color: var(--color-text);
}
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; color: var(--color-teal); }
  h3 { font-size: 22px; color: var(--color-teal); }
  h4 { font-size: 18px; color: var(--color-teal); }
  p  { font-size: 16px; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 17px;
  padding: 20px 40px;
  border: 1px solid var(--color-secondary2);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary2);
  transition: left 0.3s ease;
  z-index: -1;
}
.btn:hover::before { left: 0; }
.btn:hover { color: #fff !important; }

.btn-teal {
  color: var(--color-teal);
  background: #fff;
}
.btn-teal-outline {
  color: var(--color-teal);
  background: transparent;
  border: 2px solid var(--color-teal-dark);
}
.btn-mint {
  color: #000;
  background: rgba(209, 232, 227, 1);
  border-color: var(--color-secondary2);
  font-size: 17px;
  padding: 20px 40px;
  border-radius: 3px;
  border: 1px solid var(--color-secondary2);
}
/* Hover-Verhalten wie im Easy2-Original:
   Hintergrund sweept auf weiß, Schriftfarbe bleibt unverändert */
.btn-mint::before { background: #fff; }
.btn-mint:hover { color: #000 !important; }

.btn-phone {
  color: #000;
  background: rgba(209, 232, 227, 1);
  border-color: var(--color-secondary2);
}
.btn-phone::before { background: #fff; }
.btn-phone:hover { color: #000 !important; }

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.site-header {
  background: var(--color-bg-header);
  border-bottom: 1px solid rgba(233, 233, 233, 1);
  position: static;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px 35px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-logo img { max-height: 40px; width: auto; }
.site-logo span {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 1px;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav ul { display: flex; align-items: center; gap: 0; }
.main-nav ul li { position: relative; }
.main-nav ul li > a {
  display: block;
  padding: 16px;
  font-size: 16px;
  color: var(--color-text);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav ul li > a:hover { color: var(--color-secondary2); }

/* Underline hover effect */
.main-nav ul li::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-secondary2);
  transition: width 0.3s ease, left 0.3s ease;
}
.main-nav ul li:hover::before { left: 25%; width: 50%; }

/* Dropdown */
.main-nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #3e3e3e;
  min-width: 220px;
  z-index: 200;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.main-nav ul li:hover .dropdown { display: block; }
.main-nav ul li .dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  color: #6a6a6a;
  transition: color 0.2s;
}
.main-nav ul li .dropdown li a:hover { color: var(--color-secondary2); }

/* Header CTA Button */
.header-cta {
  margin-left: 33px;
  display: inline-block;
  font-size: 14px;
  color: var(--color-teal);
  font-family: var(--font-main);
  background: transparent;
  border: 2px solid var(--color-teal-dark);
  padding: 15px 30px;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  font-size: 14px;
  font-family: var(--font-main);
}
.lang-switcher .lang-link {
  color: var(--color-text);
  padding: 4px 6px;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}
.lang-switcher .lang-link:hover { color: var(--color-secondary2); }
.lang-switcher .lang-link.active {
  color: var(--color-teal);
  font-weight: 700;
  border-bottom: 2px solid var(--color-secondary2);
}
.lang-switcher .lang-sep {
  color: var(--color-text);
  opacity: 0.4;
  user-select: none;
}
@media (max-width: 1024px) {
  .lang-switcher { margin: 15px 0 0 0; }
}
.header-cta::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary2);
  transition: left 0.3s ease;
  z-index: -1;
}
.header-cta:hover::before { left: 0; }
.header-cta:hover { color: #fff; }

/* Burger Menu */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

/* Mobile Nav */
@media (max-width: 1024px) {
  .burger-btn { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-header);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; }
  .main-nav ul li > a { padding: 12px 0; font-size: 16px; }
  .main-nav ul li .dropdown {
    position: static;
    border: none;
    box-shadow: none;
    display: block;
    padding-left: 20px;
  }
  .header-cta { margin: 15px 0 0 0; }
}

/* =====================================================
   HERO / SECTION 1 – VITALITY TAGLINE
   ===================================================== */
.section-hero {
  position: relative;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    url('images/leonhard-niederwimmer-9mjZaMgNSZI-unsplash.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  padding: 140px 40px;             /* mehr Höhe für Bildwirkung */
  text-align: center;
}
@media (max-width: 768px) {
  .section-hero {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
      url('images/leonhard-niederwimmer-9mjZaMgNSZI-unsplash.jpg');
    background-position: center top;
    padding: 80px 20px;
  }
}
.section-hero h1 {
  margin-bottom: 20px;
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-teal);
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.section-hero p {
  text-align: center;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* =====================================================
   SECTION 2 – IM HERZEN WIENS
   ===================================================== */
.section-heart {
  background: var(--color-bg-mint);
  padding: 75px 40px 4.6%;          /* 20mm oben → exakt 20mm über dem Video */
}
.section-heart-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.section-heart h2 {
  text-align: left;
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 400;
  color: var(--color-teal);
}
.section-heart .heart-text {
  margin-top: -37px;             /* 10mm nach oben relativ zur Mittel-Ausrichtung */
}
.section-heart p { margin-top: 20px; }
.section-heart .video-wrap {
  display: flex;
  justify-content: center;
}
.section-heart iframe {
  max-width: 100%;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .section-heart-inner { grid-template-columns: 1fr; }
}

/* =====================================================
   SECTION 3 – LITARA HEALING CONCEPT
   ===================================================== */
.section-concept {
  background: #fff;
  padding: 75px 40px 4.6%;          /* 20mm oben */
  text-align: center;
}
.section-concept h2 {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 400;
  color: var(--color-teal);
}
.section-concept .subtitle { line-height: 2; margin-top: 15px; }

.concept-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 75px;                /* 20mm Space unter "Ein ganzheitlicher Ansatz..." */
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.concept-cols h3 {
  margin-bottom: 20px;
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 400;
  color: rgba(74, 115, 116, 1);
}
@media (max-width: 768px) {
  .concept-cols { grid-template-columns: 1fr; gap: 40px; }
}

/* =====================================================
   SECTION 4 – MEDIZINISCHE LEISTUNGEN
   ===================================================== */
.section-leistungen {
  background: var(--color-bg-mint);
  padding: 75px 40px 4.5%;           /* 20mm oben */
}
.section-leistungen .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-leistungen .section-header h2 {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 400;
  color: var(--color-teal);
}
.section-leistungen .section-header p { margin-top: 15px; line-height: 2; }

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.leistung-card {
  background: transparent;
  border: 1px solid rgba(204, 204, 204, 1);
  display: flex;
  flex-direction: column;
}
.leistung-card img {
  width: 100%;
  aspect-ratio: 97/57;
  object-fit: cover;
}
.leistung-card-body {
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.leistung-card-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-teal-dark);
}
.leistung-card-body p { font-size: 18px; }
.leistung-card-body .btn {
  margin-top: auto;
  font-size: 17px;
}

.leistungen-footer {
  text-align: center;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .leistungen-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SECTION 5 – PHILOSOPHIE
   ===================================================== */
.section-philosophie {
  background: #fff;
  padding: 75px 40px 75px;           /* 20mm oben + 20mm unten */
  text-align: center;
}
.section-philosophie h2 {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 400;
  color: var(--color-teal);
}
.section-philosophie .subtitle { margin-top: 10px; line-height: 2; }
.section-philosophie .body-text {
  max-width: 860px;
  margin: 30px auto 0;
  text-align: center;
  line-height: 2;
}

/* =====================================================
   SECTION 6 – CTA / TERMIN
   ===================================================== */
.section-cta {
  background: var(--color-secondary2);
  padding: 75px 40px 0.4%;
  text-align: center;
}
.section-cta h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
}
.section-cta p { color: #fff; margin-bottom: 45px; }
.section-cta .cta-buttons {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* =====================================================
   SECTION 7 – KONTAKTFORMULAR (Modal Dialog)
   ===================================================== */

/* ── Modal Dialog ──────────────────────────────────────── */
.contact-dialog {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  margin: auto;
  color: #fff;
}
.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.contact-dialog[open] {
  animation: dialogFadeIn 0.2s ease-out;
}
@keyframes dialogFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-dialog-inner {
  background: var(--color-secondary2);
  padding: 50px 40px 40px;
  border-radius: 6px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.contact-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.contact-dialog-close:hover,
.contact-dialog-close:focus {
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.contact-dialog-title {
  color: #fff;
  text-align: center;
  margin: 0 0 30px;
  font-weight: 400;
  font-size: 28px;
  font-family: var(--font-main);
}

@media (max-width: 600px) {
  .contact-dialog { width: 95%; }
  .contact-dialog-inner { padding: 50px 20px 25px; }
  .contact-dialog-title { font-size: 22px; }
}

.contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 14px;
  color: #fff;
  font-family: var(--font-main);
}
.form-group label .required { color: var(--color-primary); }
.form-group input,
.form-group textarea {
  font-family: var(--font-main);
  font-size: 16px;
  color: #666;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-secondary2); }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit {
  width: 100%;
  font-size: 20px;
  padding: 20px 40px;
  background: rgba(209, 232, 227, 1);
  color: #000;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 15px;
}
.form-submit:hover { background: #fff; }

.form-success {
  display: none;
  background: rgba(209, 232, 227, 1);
  color: var(--color-teal);
  padding: 20px;
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
  border-radius: 3px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--color-secondary2);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 40px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}
.footer-divider {
  border: none;
  border-top: 1px solid var(--color-secondary1);
  margin-bottom: 15px;
}
.footer-col p,
.footer-col a {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  display: block;
}
.footer-col a { padding: 8px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--color-secondary1); }

/* Google-Bewertungs-Box (eine Box, zwei Zeilen)
   Achtung: höhere Spezifität als .footer-col a, sonst greift dort display:block */
.footer-col .review-box {
  display: inline-flex;
  flex-direction: column;
  background: var(--color-bg-header); /* mint, wie Header */
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 10px;
  font-family: var(--font-main);
  width: fit-content;
  max-width: 260px;
}

.footer-col .review-box-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  text-decoration: none;
  line-height: 1.2;
  color: var(--color-secondary3);
  cursor: pointer;
  transition: background 0.15s;
  flex-wrap: nowrap;
  min-width: 0;
}
.footer-col .review-box-row:hover {
  background: rgba(255,255,255,0.35);
  color: var(--color-secondary3);
}

.footer-col .review-box-rating {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}

.review-box-logo {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.review-box-score {
  font-size: 14px;
  font-weight: 700;
}
.review-box-stars {
  color: #d4961c;
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-col .review-box-write {
  font-size: 13px;
  color: var(--color-secondary3);
  text-decoration: underline;
  justify-content: center;
}

.footer-bottom {
  background: var(--color-secondary2);
  text-align: center;
  padding: 20px 40px;
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.525);
}

.footer-logo-wrap {
  background: var(--color-secondary2);
  text-align: center;
  padding: 30px 40px 0;
}
.footer-logo {
  max-width: 144px;
  width: 100%;
  height: auto;
  display: inline-block;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 20px; }
  .section-hero { padding: 60px 20px; }
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-secondary2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
  z-index: 999;
  border: 2px solid var(--color-secondary2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.scroll-top:hover,
.scroll-top:focus {
  background: var(--color-secondary2);
  color: #fff;
  outline: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* =====================================================
   GOOGLE MAPS
   ===================================================== */
.map-wrap {
  width: 100%;
  height: 350px;
  background: #e0e0e0;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =====================================================
   AOS-like fade-in animation
   ===================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   Legal pages (Impressum, Datenschutz)
   ===================================================== */
.legal-page {
  background: #fff;
  color: var(--color-secondary3);
}

/* Weißer Header-Block, H1 vertikal zentriert (gleicher Abstand oben/unten) */
.legal-header {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}
.legal-header h1 {
  font-size: 46px;
  color: var(--color-teal);
  margin: 0;
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
}

/* Mint-grüner Inhaltsblock, linksbündig */
.legal-container {
  background: var(--color-bg-mint);
  max-width: none;
  margin: 0;
  padding: 60px 40px 80px;
  line-height: 1.7;
  color: var(--color-text);
}
.legal-container > * {
  max-width: 780px;
}
.legal-container h2 {
  font-size: 18px;
  color: rgba(85, 85, 85, 1);
  margin: 28px 0 6px;
  line-height: 1.3;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-main);
  letter-spacing: 0;
}
.legal-container h2.legal-subtitle {
  font-size: 18px;
  color: rgba(85, 85, 85, 1);
  margin: 0 0 30px;
  line-height: 1.3;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-main);
  letter-spacing: 0;
}
.legal-container p {
  font-size: 17px;
  margin: 0 0 14px;
  color: var(--color-text);
  font-weight: 400;
}
.legal-container a {
  color: var(--color-primary);
  text-decoration: underline;
}
.legal-container a:hover {
  color: var(--color-teal);
}
.legal-address {
  font-style: normal;
  font-size: 17px;
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--color-text);
  font-weight: 400;
}
.legal-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 16px;
  margin: 0 0 14px;
  font-size: 17px;
  color: var(--color-text);
}
.legal-list dt {
  font-weight: 400;
  color: var(--color-text);
}
.legal-list dd {
  margin: 0;
}

/* =====================================================
   Impressum – nach rechts eingerückt (analog Alt-App)
   Schmaler Block (~600px), links eingerückt auf ~13%,
   großer rechter Außenabstand für optisches Gegengewicht.
   Die Doppel-Selektor-Variante .legal-container.imp-container
   wird zusätzlich für h2 verwendet, damit die Spezifität die
   bestehende .legal-container h2.legal-subtitle-Regel schlägt.
   ===================================================== */
.legal-container.imp-container > *,
.legal-container.imp-container > h2.legal-subtitle {
  max-width: 600px;
  margin-left: 13%;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .legal-container.imp-container > *,
  .legal-container.imp-container > h2.legal-subtitle {
    margin-left: 8%;
  }
}

@media (max-width: 600px) {
  .legal-header { padding: 50px 16px 24px; }
  .legal-header h1 { font-size: 32px; }
  .legal-container { padding: 40px 20px 60px; }
  .legal-container h2 { font-size: 17px; }
  .legal-container p,
  .legal-container .legal-address,
  .legal-list { font-size: 16px; }
  .legal-list { grid-template-columns: 1fr; gap: 0; }
  .legal-list dt { margin-top: 8px; }
  /* Auf Mobile: Einrückung aufheben, voller Inhalt */
  .legal-container.imp-container > *,
  .legal-container.imp-container > h2.legal-subtitle {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

/* =====================================================
   intl-tel-input – an Litara-Form-Optik anpassen
   ===================================================== */
.iti {
  width: 100%;
  display: block;
}
.iti__tel-input,
.iti input[type="tel"] {
  width: 100%;
}
.contact-form .iti--separate-dial-code .iti__selected-flag {
  background: rgba(255,255,255,0.08);
}
/* Dropdown der Länderliste */
.iti__dropdown-content {
  z-index: 1000;
}

/* =====================================================
   Kontakt-Seite – Layout
   ===================================================== */

/* Subtitle unter H1 im weißen Header-Block */
.legal-header .legal-subtitle-center {
  font-size: 18px;
  color: var(--color-text);
  margin: 16px 0 0;
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
}

/* Kontakt-Container ist WEISS und hebt 780px-Beschränkung auf */
.legal-container.kt-container {
  background: #fff;
  padding: 60px 40px 80px;
}
.legal-container.kt-container > * {
  max-width: none;
}

/* Block-Abstand */
.kt-block {
  margin: 0 auto 60px;
}
.kt-block:last-child { margin-bottom: 0; }

/* H2-Überschriften auf Kontakt-Seite GROß (nicht legal-CSS-klein) */
.kt-container h2 {
  font-size: 46px;
  color: var(--color-teal);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: 0;
  font-family: var(--font-main);
}

/* Zentrierte Sektionen (Termin) */
.kt-block-centered {
  max-width: 600px;
  text-align: center;
}
.kt-block-centered h2,
.kt-block-centered p {
  text-align: center;
}

/* Buttons mittig */
.kt-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
  justify-content: center;
}

/* Öffnungszeiten = mint-Block, Inhalt zentriert, volle Breite */
.kt-block-hours {
  background: var(--color-bg-mint);
  max-width: none;
  margin-left: -40px;
  margin-right: -40px;
  padding: 60px 40px;
  text-align: center;
}
.kt-block-hours h2,
.kt-block-hours p {
  text-align: center;
}
.kt-hours {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  gap: 4px 20px;
  margin: 14px auto;
  text-align: left;
  font-size: 17px;
  color: var(--color-text);
}
.kt-hours dt {
  font-weight: 400;
  color: var(--color-text);
}
.kt-hours dd {
  margin: 0;
}
.kt-hours-note {
  font-size: 15px;
  margin-top: 14px !important;
  color: var(--color-text);
}

/* 3-Spalten-Grid (Zahlung, Barrierefreiheit, Anreise) — weiß */
.kt-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  text-align: left;
}
.kt-col h2 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 400;
}
.kt-col p {
  margin-bottom: 12px;
}

/* Subheadings in Anreise-Spalte */
.legal-container h3.kt-subheading {
  font-size: 17px;
  color: rgba(85, 85, 85, 1);
  margin: 14px 0 4px;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-main);
  letter-spacing: 0;
}

/* Mobile-Anpassungen */
@media (max-width: 800px) {
  .kt-grid-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kt-container h2 { font-size: 28px; }
  .kt-col h2 { font-size: 24px; }
}
@media (max-width: 600px) {
  .legal-header .legal-subtitle-center { font-size: 16px; }
  .legal-container.kt-container { padding: 40px 20px 60px; }
  .kt-block-centered { max-width: 100%; }
  .kt-block-hours {
    margin-left: -20px;
    margin-right: -20px;
    padding: 40px 20px;
  }
  .kt-container h2 { font-size: 24px; }
  .kt-hours { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .kt-hours dt { margin-top: 6px; font-weight: 600; }
}

/* =====================================================
   Über uns – Layout
   ===================================================== */

/* Header-Override für Über-uns: Symmetrische Abstände
   100px (≈20mm) oben → Header padding-bottom + Intro padding-top = 100px */
.legal-page.ab-page .legal-header {
  padding-bottom: 38px;
}

/* Bereich 1: Intro – weißer Hintergrund, 62% der Container-Breite (Goldener Schnitt) */
.ab-intro-wrap {
  background: #fff;
  padding: 62px 40px 90px;
}
.ab-intro {
  max-width: 1300px;
  width: 62%;
  margin: 0 auto;
  text-align: center;
}
.ab-intro p {
  font-size: 17px;
  line-height: 2;
  margin: 0 0 20px;
  color: var(--color-text);
}

/* Bereich 2: Ärztliche Leitung – mint-Hintergrund, volle Breite */
.ab-lead-wrap {
  background: var(--color-bg-mint);
  padding: 80px 40px 90px;
}
.ab-lead-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading "Ärztliche Leitung":
   80px (=16mm) oben → margin-bottom 130px (=26mm, ×1.62 Goldener Schnitt) */
.ab-lead-heading {
  font-size: 46px;
  color: var(--color-teal);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 130px;
  text-align: center;
  letter-spacing: 0;
  font-family: var(--font-main);
}

/* 50/50 Grid: Text links, Foto rechts */
.ab-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Foto: 86×108 mm wie in Alt-App
   (Pixelwerte für deine Display-Skalierung kalibriert) */
.ab-lead-photo {
  width: 460px;
  margin: 100px 0 0 auto;
  background: rgba(255,255,255,0.5);
  border-radius: 0;
  overflow: hidden;
}
.ab-lead-photo img {
  width: 460px;
  height: 578px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ab-lead-text h3.ab-lead-name {
  font-size: 28px;
  color: var(--color-teal);
  font-weight: 400;
  margin: 0 0 6px;
  letter-spacing: 0;
  font-family: var(--font-main);
  text-align: left;
}
.ab-lead-text .ab-lead-role {
  font-size: 16px;
  color: var(--color-secondary2);
  font-weight: 600;
  margin: 0 0 22px;
}
.ab-lead-text p {
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: var(--color-text);
}

/* Mobile */
@media (max-width: 800px) {
  .legal-page.ab-page .legal-header {
    padding-bottom: 80px;
  }
  .ab-lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-lead-photo {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
  .ab-lead-photo img {
    width: 100%;
    height: auto;
  }
  .ab-lead-heading { font-size: 32px; margin-bottom: 50px; }
  .ab-lead-text h3.ab-lead-name { font-size: 24px; }
  .ab-lead-wrap { padding: 50px 20px 60px; }
}
@media (max-width: 600px) {
  .ab-intro-wrap { padding: 50px 20px 60px; }
  .ab-intro { width: 100%; }
  .ab-intro p,
  .ab-lead-text p { font-size: 16px; }
}

/* =====================================================
   Datenschutz-Seite – Lesbarkeit
   ===================================================== */

/* Header-Override für Datenschutz: symmetrische Abstände
   100px oben → 100px unten (gleicher Abstand vor und nach "Datenschutz") */
.legal-page.ds-page .legal-header {
  padding-bottom: 100px;
}

.ds-container {
  background: var(--color-bg-mint);
  padding: 60px 40px 80px;
}
.ds-container > * {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.ds-container h2 {
  font-size: 24px;
  color: rgb(85, 109, 109);
  font-weight: 400;
  margin: 40px auto 12px;
  text-align: left;
  letter-spacing: 0;
  font-family: var(--font-main);
  line-height: 1.3;
}
.ds-container h2:first-child {
  margin-top: 0;
}
.ds-container h3 {
  font-size: 18px;
  color: rgba(85, 85, 85, 1);
  font-weight: 600;
  margin: 24px auto 8px;
  font-family: var(--font-main);
  letter-spacing: 0;
}
.ds-container p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 12px;
  color: var(--color-text);
}
.ds-container ul,
.ds-container ol {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  padding-left: 24px;
  margin-bottom: 14px;
}
.ds-container li { margin-bottom: 6px; }
.ds-container a {
  color: var(--color-primary);
  text-decoration: underline;
}
.ds-container a:hover { color: var(--color-teal); }

@media (max-width: 600px) {
  .ds-container { padding: 40px 20px 60px; }
  .ds-container h2 { font-size: 21px; }
  .ds-container p,
  .ds-container ul,
  .ds-container ol { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   BEHANDLUNGSSEITEN
   Layout 1:1 nachgebaut aus Alt-App (litara.com/ozontherapie):
   - Alle Sektionen weißer Hintergrund (kein Wechsel weiß/mint)
   - H2 zentriert, H3 linksbündig
   - Karten: mint Hintergrund (--color-bg-mint), keine Border-Top
   - 3-Spalten-Grid bei Karten
   ═══════════════════════════════════════════════════════════════════════ */

.treatment-page {
  background: #fff;
  color: var(--color-text);
}

/* ── Hero-Block (weiß, zentriert) ─────────────────────────────── */
.treatment-hero {
  background: #fff;              /* secondary4 = weiß */
  padding: 75px 20px 75px;       /* 20mm oben/unten (vereinheitlicht über alle Seiten) */
  text-align: center;
}
.treatment-hero h1 {
  font-size: 48px;               /* Easy2 global h1 = 48px */
  color: var(--color-teal);
  margin: 0 0 12px;              /* Easy2 widget-gap H1→Subtitle: ~12px */
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
.treatment-hero-sub {
  font-size: 18px;               /* Easy2 body default: 18px */
  color: var(--color-text);
  margin: 0 auto 36px;           /* mehr Abstand zum Button: ~36px */
  max-width: 800px;
  line-height: 2;
  font-weight: 400;
  text-align: center;
}
.treatment-hero-cta {
  margin: 0;
  text-align: center;
}

/* Outline-Teal-Button (analog Alt-App: weißer Hintergrund, Teal-Border + Teal-Text) */
.btn-outline-teal {
  display: inline-block;
  background: #fff;
  color: var(--color-teal);
  border: 1px solid var(--color-secondary2);
  border-radius: 3px;                /* Easy2: leicht runde Ecken */
  padding: 20px 40px;
  font-size: 17px;
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.2;                  /* Easy2 Button-Default, nicht body-line-height */
  text-decoration: none;
  letter-spacing: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-outline-teal:hover,
.btn-outline-teal:focus {
  background: var(--color-secondary2);
  color: #fff;
  text-decoration: none;
}

/* ── Inhalts-Sektionen ─────────────────────────────────────────── */
.treatment-section {
  background: #fff;          /* Standard: weiß */
  padding: 70px 0;
}
.treatment-section[data-bg="mint-soft"] {
  /* Sektion 1 Alt-App: rgba(218, 235, 232, 1) — sehr helles mint */
  background: rgba(218, 235, 232, 1);
}
.treatment-section[data-bg="mint"] {
  /* Sektion 3 Alt-App: rgba(203, 231, 226, 0.8) = --color-bg-mint */
  background: var(--color-bg-mint);
}

.treatment-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* H2 zentriert – Easy2: text-widget h2 = 28px */
.treatment-section .treatment-h2 {
  font-size: 28px;
  color: var(--color-teal);
  font-weight: 400;
  margin: 0 0 24px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0;
}
/* Größere H2-Variante – Easy2 inline-style 46px (z.B. "Was ist bioidentische Hormontherapie") */
.treatment-section .treatment-h2--large {
  font-size: 46px;
}

/* H3 linksbündig – Easy2: text-widget h3 = 22px, font-weight normal */
.treatment-section h3 {
  font-size: 36px;
  color: rgba(74, 115, 116, 1);
  font-weight: 400;
  margin: 40px 0 14px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}

/* H4 in Karten – Easy2: 24px */
.treatment-section h4 {
  font-size: 24px;
  color: var(--color-teal);
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: 0;
}

/* Fließtext – Easy2 body default: 18px */
.treatment-section p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 14px;
  color: var(--color-text);
}

/* Lead-Paragraph unter H2 – Easy2: 18px, margin-bottom 2.72727% ≈ 39px */
.treatment-section .treatment-lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 39px;
  text-align: center;
  color: var(--color-text);
}
/* Kleinere Lead-Variante – Easy2: 18px / line-height 1.6 (Sub-Zeile Hormontherapie) */
.treatment-section .treatment-lead--sm {
  font-size: 18px;
  line-height: 1.6;
}

/* Sub-Zeile: 20mm Padding oben + unten (vereinheitlicht) */
/* Sub-Zeile: 20mm oben, 20mm unten (vereinheitlicht) */
.treatment-section--sub {
  padding: 75px 0 75px;
}
.treatment-section--s2 {
  padding: 75px 0 56px;
}
.treatment-section--s2 .treatment-h2 {
  margin-top: 0;
}
.treatment-section--s2 .treatment-lead {
  margin-bottom: 75px;
}
.treatment-section--block {
  padding: 0 0 56px;
}
/* 20mm Abstand wenn zwei Blocks direkt aufeinander folgen (z.B. Hormontherapie B1 + B2);
   padding-top statt margin damit der mint-Hintergrund durchgeht */
.treatment-section--block + .treatment-section--block {
  padding-top: 75px;
}
/* Dasselbe Prinzip wenn ein Block direkt nach einer S2-Sektion folgt
   (z.B. Neuromodulation: "Ihr Weg..." (S2) + "Ganzheitliches Konzept" (Block 3)) */
.treatment-section--s2 + .treatment-section--block {
  padding-top: 75px;
}
/* Dasselbe Prinzip wenn zwei alt-rows innerhalb einer Section direkt aufeinander folgen
   (z.B. me2vie: "Unser medizinischer Ansatz" + "Bei LITARA Healing") */
.treatment-section .alt-row + .alt-row {
  margin-top: 75px;
}
/* Sektion 3 "Anwendungsgebiete": 20mm oben + 20mm unten */
.treatment-section--s3 {
  padding: 75px 0 75px;
}
.treatment-section--s3 .treatment-lead {
  margin-bottom: 90px;
}
.treatment-section--block .alt-row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ═══ INFUSIONSTHERAPIE ═══════════════════════════════════════════
   Sub-Zeile "Unser Ansatz" – Bild links, Text rechts (50/50)
   ═══════════════════════════════════════════════════════════════ */
.treatment-section--inf-sub {
  padding: 56px 0 56px;
}
.treatment-section--inf-sub .alt-row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  align-items: center;
}
/* H2 darf in alt-row linksbündig stehen (nicht zentriert) */
.alt-row-h2 {
  text-align: left !important;
  margin: 0 0 24px !important;
  max-width: none !important;
}

/* Block "Synergistische Kombinationstherapie" – Text links 56%, Bild rechts 44% */
.alt-row-5644 {
  grid-template-columns: 56% 44% !important;
}
/* Bild rechts 20% kleiner darstellen, in der Spalte zentriert */
.alt-row-5644 .alt-row-media img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Sektion 3 Infusion – Zusatz-Hinweistext, weiß
   vertikal mittig: gleiches padding oben/unten */
.treatment-section--inf-s3 {
  padding: 50px 0 100px;
}
.treatment-section--inf-s3 .treatment-lead {
  margin: 0 auto;
  font-size: 18px;
  max-width: 900px;
}

/* Final CTA-Block */
.treatment-section--inf-cta {
  padding: 86px 0 100px;
  text-align: center;
}
.treatment-section--inf-cta .treatment-lead {
  margin-bottom: 36px;
}

  max-width: 900px;
  margin: 0 auto;
}
.treatment-prose h3:first-child { margin-top: 0; }

/* 2-Spalten-Prose-Grid (Sektion 2: 4 H3-Blöcke in 2x2-Anordnung) */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px;
  max-width: 100%;
  margin: 30px auto 0;
}
.prose-col h3:first-child { margin-top: 0; }
.prose-col p:last-child { margin-bottom: 0; }

/* Zentriertes Bild unter prose-grid (z.B. me2.vie Sektion 2) */
.treatment-image-wrap {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: center;
}
.treatment-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Footnote am Ende einer Sektion */
.treatment-section .treatment-footnote {
  font-size: 16px;
  font-style: italic;
  text-align: center;
  margin: 50px auto 0;
  max-width: 900px;
  color: var(--color-text);
}

/* ── Alt-Row: Text + Medien (Bild oder Video) nebeneinander ────── */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}
.alt-row-reverse .alt-row-media  { order: 1; }
.alt-row-reverse .alt-row-text   { order: 2; }

.alt-row-text h3 { margin-top: 0; }

.alt-row-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Bild ohne Rahmen / Schatten – verschmilzt mit dem Sektion-Hintergrund.
   Verwendet wenn das Bild selbst einen passenden Hintergrund hat. */
.alt-row-media img.treatment-img-borderless {
  border-radius: 0;
  box-shadow: none;
}
/* Bild auf mintgrünem Hintergrund (passt zu data-bg="mint" Sektionen).
   Achtung: Die Sektion verwendet rgba(203,231,226,0.8) über weißem Body –
   die TATSÄCHLICH sichtbare Farbe ist rgb(213,236,232). Diese verwenden
   wir hier ohne Transparenz, sonst wird das Bild zu dunkel. */
.alt-row-media img.treatment-img-bg-mint {
  background-color: rgb(213, 236, 232);
}

/* Bild mit fester Größe (~490px), zentriert in der Spalte.
   Für quadratische Illustrationen, die nicht die volle Spaltenbreite füllen sollen. */
.alt-row-media img.treatment-img-fixed {
  width: 490px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

/* Video-Wrap mit 16:9-Aspect-Ratio (analog Front-Page-Heart) */
.alt-row-media .video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Hochformat-Variante (9:16, typisch für Shorts/Reels).
   Analog zur Alt-App: iframe nutzt seine eigenen fixen Pixel-Maße
   (siehe Template: width="315" height="560"), kein Aspect-Ratio-
   Container nötig. Wrap ist nur für Schatten + Border-Radius da. */
.alt-row-media .video-wrap.video-portrait {
  padding-bottom: 0;
  height: auto;
  width: auto;
  max-width: 100%;
  display: inline-block;
}
.alt-row-media .video-wrap.video-portrait iframe {
  position: static;
  width: 315px;
  height: 560px;
  max-width: 100%;
  display: block;
}
/* Center den inline-block-Wrap in seiner Spalte */
.alt-row-media:has(.video-portrait) {
  text-align: center;
}
.alt-row-media .video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Landscape (16:9) ist Default – nur explizite Klasse zur Verdeutlichung */
.alt-row-media .video-wrap.video-landscape { /* identisch zu .video-wrap */ }

/* ── Karten-Grid ────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 30px;
  margin: 30px 0 0;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Karten Standard: mint-Hintergrund auf weißer Sektion */
.treatment-card {
  background: var(--color-bg-mint);
  padding: 30px 28px;
  border-radius: 8px;
}
/* In mint-Sektionen: Karten weiß-transparent, damit sie sich vom Hintergrund abheben */
.treatment-section[data-bg="mint"] .treatment-card,
.treatment-section[data-bg="mint-soft"] .treatment-card {
  background: rgba(255, 255, 255, 0.6);
}
.treatment-card h4 {
  margin-top: 0;
}
.treatment-card p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .treatment-hero { padding: 70px 20px 60px; }
  .treatment-hero h1 { font-size: 28px; }
  .treatment-hero-sub { font-size: 16px; line-height: 1.7; }

  .treatment-section { padding: 50px 0; }
  .treatment-section .container { padding: 0 20px; }
  .treatment-section .treatment-h2 { font-size: 24px; }
  .treatment-section .treatment-h2--large { font-size: 30px; }
  .treatment-section h3 { font-size: 20px; }
  .treatment-section h4 { font-size: 20px; }
  .treatment-section p { font-size: 16px; }
  .treatment-section .treatment-lead { font-size: 16px; line-height: 1.6; }

  .alt-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }
  /* Auf Mobile: Medien immer ZUERST, Text danach (egal ob alt-row-reverse) */
  .alt-row-media   { order: 1 !important; }
  .alt-row-text    { order: 2 !important; }

  /* Fixed-Size-Bild auf Mobile: leicht kleiner, weiterhin zentriert */
  .alt-row-media img.treatment-img-fixed {
    width: 460px;
  }

  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .prose-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .btn-outline-teal {
    padding: 16px 30px;
    font-size: 16px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
