/* ══════════════════════════════════════
   Praxis Sabina Braun — Global Styles
   ══════════════════════════════════════ */

/* ── Fonts (lokal, DSGVO-konform) ── */
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/ubuntu/Ubuntu-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/ubuntu/Ubuntu-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/ubuntu/Ubuntu-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/ubuntu/Ubuntu-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/ubuntu/Ubuntu-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ── */
:root {
  --blau: #6cace4;
  --blau-hell: #c4def4;
  --blau-mittel: #89bde9;
  --anthrazit: #333333;
  --sand-hell: #f7f4f1;
  --sand-mittel: #eeeae3;
  --sand-dunkel: #ddd5c8;
  --weiss: #ffffff;

  --font: 'Ubuntu', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
}

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

/* ── Base ── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.7;
  color: var(--anthrazit);
  background: var(--weiss);
  overflow-x: hidden;
}

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--anthrazit);
  color: var(--weiss);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  opacity: 1;
}


/* ════════════════════════════════════
   MODUL 1: HERO
   ════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.hero-logo img {
  width: clamp(200px, 25vw, 320px);
  height: auto;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.3));
}


/* ════════════════════════════════════
   BURGER MENU BUTTON
   ════════════════════════════════════ */
.burger-btn {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blau);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  transition: background 0.3s ease;
}

.burger-btn:hover {
  background: #5a9ad4;
}

.burger-btn__bar {
  display: block;
  width: 32px;
  height: 4px;
  background: var(--weiss);
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
}

.burger-btn[aria-expanded="true"] .burger-btn__bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.burger-btn[aria-expanded="true"] .burger-btn__bar:nth-child(2) {
  opacity: 0;
}

.burger-btn[aria-expanded="true"] .burger-btn__bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


/* ════════════════════════════════════
   FULLSCREEN NAVIGATION OVERLAY
   ════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--blau);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-overlay__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.nav-overlay__list li {
  margin-bottom: 28px;
}

.nav-overlay__list > li > a {
  font-weight: 700;
  font-size: 30px;
  color: var(--weiss);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 5px 0;
}

.nav-overlay__list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--weiss);
  transition: width 0.3s ease;
}

.nav-overlay__list a:hover::after {
  width: 100%;
}

.nav-overlay__list a:hover {
  opacity: 1;
}

.nav-overlay__sub {
  list-style: none;
  padding: 10px 0 5px 60px;
  margin: 0;
}

.nav-overlay__sub li {
  margin-bottom: 15px;
}

.nav-overlay__sub a {
  font-weight: 700;
  font-size: 30px;
  color: var(--weiss);
  text-decoration: none;
  text-transform: none;
  display: inline-block;
  position: relative;
  padding: 3px 0;
}


/* ════════════════════════════════════
   SECTION HEADLINES (mit Schreibschrift-SVG)
   ════════════════════════════════════ */
.section-headline {
  position: relative;
  padding-top: 3rem;
  padding-bottom: calc(2rem + 30px);
  margin-left: clamp(-50px, calc(640px - 50vw), 0px);
}

.section-headline__script {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(300px, 50vw, 600px);
  height: auto;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0) opacity(0.12);
}

.section-headline__text {
  position: relative;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.2;
  z-index: 1;
}

/* Rechts ausgerichtete Headline (Angebots-Sektionen) */
.section-headline--right {
  text-align: right;
  margin-left: auto;
  margin-right: clamp(-50px, calc(640px - 50vw), 0px);
}

.section-headline__script--right {
  left: auto;
  right: 0;
}

/* Balken mit Headline darin */
.bar {
  position: relative;
}

.bar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.bar .section-headline {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: clamp(-50px, calc(640px - 50vw), 0px);
  position: static;
}

.bar .section-headline--right {
  margin-left: auto;
  margin-right: clamp(-50px, calc(640px - 50vw), 0px);
}

.bar .section-headline__script {
  position: absolute;
  top: 50%;
  left: 2rem;
  right: auto;
  transform: translateY(-50%);
  width: clamp(420px, 55vw, 700px);
}

.bar .section-headline--right .section-headline__script {
  left: auto;
  right: 2rem;
}

.bar--sand-dunkel .section-headline__script {
  width: clamp(300px, 45vw, 550px);
}

.bar .section-headline__text {
  position: relative;
  z-index: 1;
}

/* Overlap: Content ragt leicht in den Balken darueber (~2 Zeilen) */
.angebot-intro--overlap {
  margin-top: calc(-10rem + 5px);
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════════
   GENERIC SECTION STYLES
   ════════════════════════════════════ */
.section {
  padding: 4rem 0;
}

.section--sand-hell {
  background: var(--sand-hell);
}

.section--sand-mittel {
  background: var(--sand-mittel);
}

.section--sand-dunkel {
  background: var(--sand-dunkel);
}

.section--blau-hell {
  background: var(--blau-hell);
}

.section--weiss {
  background: var(--weiss);
}

/* Subline */
.subline {
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

/* Fliesstext */
.fliesstext {
  font-weight: 300;
  font-size: clamp(1.125rem, 1.8vw, 1.5625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.fliesstext strong {
  font-weight: 500;
}

.fliesstext ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.fliesstext ul li {
  margin-bottom: 0.5rem;
}

/* Link-Stil */
.link-bold {
  font-weight: 700;
  text-decoration: none;
}

.no-link {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}


/* ════════════════════════════════════
   TWO COLUMN LAYOUT
   ════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col--align-center {
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ════════════════════════════════════
   MODUL 2: UEBER MICH
   ════════════════════════════════════ */
.ueber-mich__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: calc(3rem + 30px);
}

.ueber-mich__img-wrap {
  overflow: hidden;
}

.ueber-mich__portrait {
  width: 100%;
}

.ueber-mich__img-wrap--right {
  overflow: hidden;
}

#ueber-mich {
  padding-bottom: 2rem;
}

#hilfe-fuer-helfende {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .ueber-mich__row {
    grid-template-columns: 1fr;
  }

  .ueber-mich__img-wrap {
    margin-left: 0;
  }
}


/* ════════════════════════════════════
   MODUL 3-5: ANGEBOTE
   ════════════════════════════════════ */
.angebot-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.angebot-intro--reverse {
  direction: rtl;
}

.angebot-intro--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .angebot-intro {
    grid-template-columns: 1fr;
  }
  .angebot-intro--reverse {
    direction: ltr;
  }
}

/* CTA Box (blau mittel) — 475 x 400 px laut Design-Specs */
/* Kasten-Text: Ubuntu Medium, 40pt */
.cta-box {
  background: var(--blau-mittel);
  color: var(--weiss);
  width: 475px;
  max-width: 90vw;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 3rem;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.3;
  text-align: center;
  transform: translateY(-160px);
}

/* CTA-Balken: 1600 x 400 px sand-mittel mit CTA-Box zentriert darin */
.bar.cta-bar {
  height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

/* Twin CTA-Boxen (zwei nebeneinander) */
.cta-bar--twin {
  height: 25rem;
  margin-top: 120px;
}

.cta-box-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  padding: 0 2rem;
  width: 100%;
  transform: translateY(-160px);
}

.cta-box-twin .cta-box {
  width: 100%;
  min-height: 400px;
  height: auto;
  transform: none;
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  padding: 2rem 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cta-box-twin .cta-box h3 {
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  margin-bottom: 1rem;
}

.cta-box-twin .cta-box ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.cta-box-twin .cta-box li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

#traumasensitives-yoga,
#honorar,
#einblicke,
#kontakt {
  margin-top: 30px;
}

.galerie-grid--overlap {
  margin-top: calc(-10rem + 5px);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-box-twin {
    grid-template-columns: 1fr;
  }
}

/* Bild im Container-Raster */
.container-image {
  margin: 2rem 0;
}

.container-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fullwidth Bild-Trenner */
.fullwidth-image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.fullwidth-image picture,
.fullwidth-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Info-Kaesten nebeneinander */
.info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-box {
  background: var(--blau-mittel);
  color: var(--weiss);
  padding: 2rem;
}

.info-box h3 {
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.info-box ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.info-box li {
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .info-boxes {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════
   MODUL 6: HONORAR
   ════════════════════════════════════ */
.honorar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.honorar-grid h3 {
  font-weight: 500;
  font-size: 1.0625rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.honorar-grid h3:first-child {
  margin-top: 0;
}

.honorar-grid ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.honorar-grid li {
  margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
  .honorar-grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════
   MODUL 7: EINBLICKE (Galerie — Masonry 2-Spalten)
   ════════════════════════════════════ */
.galerie-grid {
  display: flex;
  gap: 0.75rem;
}

.galerie-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.galerie-grid__item picture,
.galerie-grid__item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .galerie-grid {
    flex-direction: column;
  }
}


/* ════════════════════════════════════
   MODUL 8: KONTAKT
   ════════════════════════════════════ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.kontakt-info {
  line-height: 2;
}

.kontakt-info p + p {
  margin-top: 1rem;
}

.hvv-logo {
  height: 30px;
  width: auto;
  display: inline-block;
}

.kontakt-info a {
  font-weight: 700;
}

@media (max-width: 768px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.site-footer {
  background: var(--sand-mittel);
  padding: 2.5rem 0 1.5rem;
}

/* Logos-Reihe: GPTG links, VFP mittig, beide vertikal zentriert */
.footer-content {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 175px;
  margin-bottom: -25px;
  pointer-events: none;
}

.footer-content a {
  pointer-events: auto;
}

.footer-gptg {
  position: absolute;
  left: 85px;
}

.footer-gptg img,
.footer-gptg svg {
  height: 90px;
  width: auto;
}

.footer-vfp {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-vfp img,
.footer-vfp svg {
  height: 185px;
  width: auto;
  display: block;
}

/* Textzeile: Copyright links, Links rechts */
.footer-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--anthrazit);
  padding-top: 0;
}

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

.footer-links a {
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: auto;
    margin-bottom: 0;
  }

  .footer-gptg {
    position: relative;
    right: auto;
  }

  .footer-vfp {
    position: relative;
    left: auto;
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-top: 1rem;
  }
}


/* ════════════════════════════════════
   MODUL 9+10: MODALS (Impressum, Datenschutz)
   ════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--weiss);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2100;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.modal-close svg {
  width: 32px;
  height: 32px;
}

.modal-close line {
  stroke: var(--anthrazit);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.modal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.modal-content h2 {
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.modal-content h3 {
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-content h4 {
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.modal-content p {
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.modal-content a {
  font-weight: 700;
}


/* ════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ════════════════════════════════════ */
.legal-header {
  background: var(--sand-mittel);
  position: relative;
  padding-bottom: 6rem;
}

.legal-header .container {
  position: relative;
}

.legal-header .section-headline {
  margin-left: 0;
}

.legal-header .section-headline__script {
  height: 160px;
  width: auto;
}

.legal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sand-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.legal-close:hover {
  background: #ccc3b2;
}

.legal-close svg {
  width: 28px;
  height: 28px;
}

.legal-close line {
  stroke: var(--weiss);
  stroke-width: 3;
  stroke-linecap: round;
}

/* Name im Inhaltsbereich — gleiche Ebene wie h2 */
.legal-name {
  font-weight: 500;
  font-size: 1.5rem;
  margin-left: 0;
  margin-bottom: 0.5rem;
}

/* Weisser Inhaltsbereich */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.legal-content .container {
  max-width: 100%;
  padding: 0;
}

.legal-content--pull {
  margin-top: -9.5rem;
  position: relative;
  z-index: 1;
}

.legal-content h2 {
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-weight: 500;
  font-size: 1.0625rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  margin-left: 2.5rem;
}

.legal-content h4 {
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  margin-left: 2.5rem;
}

.legal-content p {
  font-weight: 300;
  font-size: clamp(1.125rem, 1.8vw, 1.5625rem);
  margin-bottom: 1rem;
  line-height: 1.8;
  margin-left: 2.5rem;
}

.legal-content a {
  font-weight: 700;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-left: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}


/* ════════════════════════════════════
   COLOR BARS (Trenner zwischen Sektionen)
   ════════════════════════════════════ */
.bar {
  width: 100%;
  height: 25rem;
  display: block;
}

.bar--blau-hell { background: var(--blau-hell); }
.bar--sand-mittel { background: var(--sand-mittel); }
.bar--sand-dunkel { background: var(--sand-dunkel); }

/* Duenne Trennstreifen zwischen Sektionen */
.bar--thin {
  height: 1rem;
}

/* Bars mit Bild */
.bar--image {
  position: relative;
  overflow: hidden;
}

.bar--image picture,
.bar--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 768px) {
  .burger-btn,
  .legal-close {
    width: 50px;
    height: 50px;
    top: 1rem;
    right: 1rem;
  }

  .burger-btn__bar {
    width: 24px;
    height: 3px;
  }

  .burger-btn[aria-expanded="true"] .burger-btn__bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .burger-btn[aria-expanded="true"] .burger-btn__bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-overlay__list > li > a,
  .nav-overlay__sub a {
    font-size: 22px;
  }

  .nav-overlay__sub {
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .bar {
    height: 15rem;
  }

  .bar--thin {
    height: 1rem;
  }
}


/* ════════════════════════════════════
   MOBILE RESPONSIVE (max-width: 768px)
   Desktop bleibt unangetastet!
   ════════════════════════════════════ */
@media (max-width: 768px) {

  /* --- Bars: kleiner auf Mobile --- */
  .bar {
    height: 12rem;
  }

  /* --- Headlines: kein negativer Margin auf Mobile --- */
  .section-headline {
    margin-left: 0;
    padding-top: 2rem;
    padding-bottom: calc(1.5rem + 15px);
  }

  .section-headline--right {
    margin-right: 0;
  }

  .bar .section-headline {
    margin-left: 0;
  }

  .bar .section-headline--right {
    margin-left: auto;
    margin-right: 0;
  }

  /* --- SVG Hintergrund kleiner auf Mobile --- */
  .section-headline__script {
    width: clamp(200px, 70vw, 350px);
  }

  .bar .section-headline__script {
    width: clamp(200px, 65vw, 320px);
  }

  .bar--sand-dunkel .section-headline__script {
    width: clamp(180px, 55vw, 280px);
  }

  /* --- Headline Text kleiner --- */
  .section-headline__text {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  /* --- Overlap reduzieren auf Mobile --- */
  .angebot-intro--overlap {
    margin-top: calc(-5rem);
  }

  .galerie-grid--overlap {
    margin-top: calc(-5rem);
  }

  /* --- CTA-Box auf Mobile --- */
  .cta-box {
    width: 100%;
    max-width: 90vw;
    min-height: auto;
    padding: 2.5rem 2rem;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    transform: translateY(-80px);
  }

  .bar.cta-bar {
    height: 15rem;
    margin-top: 60px;
  }

  /* --- Twin CTA-Boxen untereinander --- */
  .bar.cta-bar.cta-bar--twin {
    height: auto;
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }

  .cta-box-twin {
    transform: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .cta-box-twin .cta-box {
    height: auto;
    min-height: auto;
    padding: 1.5rem;
    font-size: 0.9rem;
  }

  /* --- 30px Abstände reduzieren auf Mobile --- */
  #traumasensitives-yoga,
  #honorar,
  #einblicke,
  #kontakt,
  #hilfe-fuer-helfende {
    margin-top: 15px;
  }

  /* --- Ueber-mich Rows --- */
  .ueber-mich__row {
    margin-bottom: 2rem;
  }

  .ueber-mich__img-wrap {
    margin-left: 0;
  }

  .ueber-mich__img-wrap--right {
    margin-right: 0;
  }

  /* --- Footer --- */
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* --- Subline etwas kleiner --- */
  .subline {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
}
