/* ============================================================
   LEIV BRAUN COACHING – Stylesheet
   ============================================================ */

/* --- Fonts: selbst gehostet, kein externer Request --- */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* --- Design Tokens – Farbpalette Leiv Braun Coaching --- */
:root {
  --deep-ocean:   #31708E;   /* Deep Ocean  – Nav, Footer, Buttons */
  --calm-horizon: #5085A5;   /* Calm Horizon – Hauptsektionen blau  */
  --clear-sky:    #8FC1E3;   /* Clear Sky   – Akzente, Hover       */
  --warm-sand:    #D6C6B0;   /* Warm Sand   – Reserve              */
  --canvas-white: #F7F9FB;   /* Canvas White – helle Sektionen     */

  --blue:         var(--calm-horizon);
  --blue-dark:    var(--deep-ocean);
  --blue-card:    #4a7ea0;
  --blue-btn:     var(--deep-ocean);
  --white:        var(--canvas-white);
  --text-on-blue: rgba(255, 255, 255, 0.95);
  --text-muted:   rgba(255, 255, 255, 0.70);
  --text-dark:    #1e5470;
  --text-body:    #3a6880;
  --font:         'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:        1400px;
  --side-pad:     clamp(1.5rem, 4vw, 5rem);
  --nav-h:        72px;
  --radius:       40px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--deep-ocean);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  width: calc(100% - var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--text-on-blue);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.8; }

.btn-nav {
  background: transparent;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.btn-nav:hover { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,1) !important; opacity: 1 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-header.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--blue-dark);
  padding: 1.5rem 2rem 2rem;
  gap: 1.2rem;
  align-items: flex-start;
}
.nav-header.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-header.open .hamburger span:nth-child(2) { opacity: 0; }
.nav-header.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  margin-top: var(--nav-h);
  min-height: calc(80vh + 50px);
  background-image: url('../../images/hero/gardasee_optimisten_training.JPG.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 50%;
  background-attachment: fixed;
  display: flex;
  align-items: flex-start;
  padding: clamp(3rem, 22vh, 12rem) 0 8vw;
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: var(--max-w);
  width: calc(100% - var(--side-pad) * 2);
  margin: 0 auto;
}
.hero-content {
  max-width: 1100px;
  margin-left: clamp(1rem, 6vw, 5rem);
  transform: translateY(-30px);
}
/* Desktop: Textblock an die linke Bergkante in den hellen Himmel rücken
   (erst ab 1500px, damit die h2 im Bereich 1200–1500px nicht umbricht) */
@media (min-width: 1500px) {
  .hero-content {
    margin-left: clamp(5rem, 16vw, 18rem);
    transform: translate(-60px, -30px);
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}
.hero h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 0.6rem;
  padding-left: clamp(1.5rem, 4.5vw, 4.5rem);
}
.hero p {
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  font-style: italic;
  color: var(--text-body);
  padding-left: clamp(3rem, 8.5vw, 8.5rem);
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  margin-bottom: -2px;
}
.wave svg { display: block; width: 100%; height: auto; }

.wave-hero-to-blue {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.wave-blau-zu-weiss {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  margin-bottom: -1px;
}

.wave-weiss-zu-blau {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  margin-bottom: -1px;
}

.wave-dreieck-blau-zu-weiss {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: -1px;
  width: 100%;
}

.wave-dreieck-weiss-zu-blau {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  margin-bottom: -1px;
}

/* ============================================================
   SEKTIONEN – Basis
   ============================================================ */
.section-blue  { background: var(--blue); }
.section-white { background: var(--white); }

.container {
  max-width: var(--max-w);
  width: calc(100% - var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0;
}

/* ============================================================
   INTRO + COLLAGE
   ============================================================ */
.section-intro { padding: 4rem 0 5rem; min-height: 80vh; display: flex; align-items: center; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}
.intro-text { max-width: 580px; }
.intro-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.intro-text p {
  color: var(--text-on-blue);
  margin-bottom: 1rem;
}
.btn-pill {
  display: inline-block;
  background: var(--white);
  color: var(--text-dark);
  padding: 0.7rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 1rem;
  transition: opacity 0.2s;
}
.btn-pill:hover { opacity: 0.85; }
.btn-pill-dark {
  display: inline-block;
  background: var(--blue-btn);
  color: var(--white);
  padding: 0.75rem 2.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.btn-pill-dark:hover { background: var(--blue-dark); }
.btn-subtext {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

/* Foto-Collage */
.collage-wrapper { position: relative; height: 620px; }
.collage-photo {
  position: absolute;
  width: 27%;
  border: 5px solid var(--white);
  box-shadow: 2px 4px 14px rgba(0,0,0,0.35);
  object-fit: cover;
  aspect-ratio: 1 / 1.1;
}
.collage-photo:nth-child(1)  { top:  4%; left:  0%;  transform: rotate(-9deg);  }
.collage-photo:nth-child(2)  { top:  0%; left: 26%;  transform: rotate(6deg);   }
.collage-photo:nth-child(3)  { top: 18%; left: 54%;  transform: rotate(-4deg);  z-index:1; }
.collage-photo:nth-child(4)  { top:  2%; left: 73%;  transform: rotate(11deg);  }
.collage-photo:nth-child(5)  { top: 41%; left:  4%;  transform: rotate(4deg);   z-index:1; }
.collage-photo:nth-child(6)  { top: 27%; left: 28%;  transform: rotate(-11deg); z-index:2; }
.collage-photo:nth-child(7)  { top: 34%; left: 57%;  transform: rotate(7deg);   z-index:1; }
.collage-photo:nth-child(8)  { top: 20%; left: 72%;  transform: rotate(-5deg);  }
.collage-photo:nth-child(9)  { top: 63%; left:  1%;  transform: rotate(-7deg);  z-index:1; }
.collage-photo:nth-child(10) { top: 54%; left: 27%;  transform: rotate(9deg);   z-index:2; }
.collage-photo:nth-child(11) { top: 66%; left: 55%;  transform: rotate(-8deg);  z-index:1; }
.collage-photo:nth-child(12) { top: 48%; left: 72%;  transform: rotate(4deg);   }

/* ============================================================
   WARUM ICH VERSTEHE
   ============================================================ */
.section-warum { padding: clamp(3rem, 4vw, 5rem) 0; }
.section-warum .container { width: calc(100% - var(--side-pad) * 2); }
.warum-header  { margin-bottom: 2rem; }
.warum-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
}
.warum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.warum-text p { margin-bottom: 1.2rem; color: var(--text-body); font-size: clamp(0.95rem, 1.4vw, 1.05rem); line-height: 1.7; }
.checklist { display: flex; flex-direction: column; gap: 2.2rem; }
.check-item { display: flex; gap: 1rem; align-items: flex-start; }
.check-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-top: 0.15rem;
  font-weight: 700;
}
.check-item p   { color: var(--text-body); margin: 0; font-size: clamp(0.95rem, 1.4vw, 1.05rem); line-height: 1.7; }
.check-item strong { color: var(--text-dark); font-style: italic; }

/* ============================================================
   CAROUSEL – Coaching-Themen
   ============================================================ */
.section-carousel { padding: clamp(2rem, 3vw, 3.5rem) 0 calc(clamp(3rem, 4vw, 5rem) + 50px); }
.carousel-header  { max-width: var(--max-w); width: calc(100% - var(--side-pad) * 2); margin: 0 auto; margin-bottom: 2.5rem; }
.carousel-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
}
.carousel-outer  { position: relative; }
.carousel-track  {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 2rem 1rem;
  align-items: stretch;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  flex: 0 0 clamp(200px, 18vw, 320px);
  display: flex;
  flex-direction: column;
}
.carousel-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.carousel-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  flex-shrink: 0;
}
.carousel-card p {
  font-size: 0.85rem;
  color: var(--text-on-blue);
  text-align: center;
  line-height: 1.6;
  flex: 1;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  background: rgba(49, 112, 142, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
}
.carousel-btn:hover {
  background: rgba(49, 112, 142, 0.95);
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.carousel-outer::before,
.carousel-outer::after,
.testimonials-outer::before,
.testimonials-outer::after {
  content: '';
  position: absolute;
  top: 0.5rem; bottom: 1rem;
  width: 60px;
  pointer-events: none;
  z-index: 4;
}
.carousel-outer::before,
.testimonials-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--calm-horizon), transparent);
}
.carousel-outer::after,
.testimonials-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--calm-horizon), transparent);
}

/* ============================================================
   SO ARBEITEN WIR ZUSAMMEN
   ============================================================ */
.section-prozess { padding: clamp(3rem, 4vw, 5rem) 0 clamp(5rem, 8vw, 9rem); }
.section-prozess h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
}
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.prozess-card {
  background: var(--blue-card);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.prozess-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.prozess-card p  { font-size: 0.92rem; color: var(--text-on-blue); line-height: 1.7; margin-bottom: 0.8rem; }
.prozess-card small { font-size: 0.78rem; font-style: italic; color: rgba(255,255,255,0.65); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials { padding: 5rem 0; min-height: 80vh; }
.testimonials-header  { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; margin-bottom: 2.5rem; }
.testimonials-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
}
.testimonials-outer { position: relative; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 2rem 1rem;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 320px; padding-right: 1rem; }
.testimonial-card p  { font-size: 0.9rem; color: var(--text-on-blue); line-height: 1.75; margin-bottom: 1rem; }
.testimonial-author  { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ============================================================
   CTA – BEREIT FÜR DEINEN ERSTEN SCHRITT
   ============================================================ */
.section-cta { padding: 6rem 0 5rem; min-height: auto; text-align: center; display: flex; align-items: center; }
.section-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.section-cta .cta-subtitle {
  font-style: italic;
  color: var(--text-dark);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.contact-buttons { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.contact-btn { cursor: default; }
.contact-btn img { height: 52px; width: auto; border-radius: var(--radius); }
.cta-hint { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--deep-ocean); padding: 2.5rem 0 2rem; }
.footer-inner {
  max-width: var(--max-w);
  width: calc(100% - var(--side-pad) * 2);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
}
.footer-logo img { height: 40px; width: auto; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  color: var(--text-on-blue);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 1; }
.footer-bottom { width: 100%; padding: 0 var(--side-pad); }
.footer-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-align: center; }

/* ============================================================
   ÜBER LEIV
   ============================================================ */
/* --- Hero: farbiges Band, Portrait + Einstieg --- */
.ueber-hero {
  margin-top: var(--nav-h);
  background: var(--calm-horizon);
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
}
.ueber-hero-inner {
  max-width: var(--max-w);
  width: calc(100% - var(--side-pad) * 2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 400px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.ueber-hero-photo { margin: 0; }
.ueber-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  filter: grayscale(100%);
  box-shadow: 0 18px 45px rgba(20, 50, 70, 0.28);
}
.ueber-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.9rem;
}
.ueber-hero-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.ueber-hero-intro p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ueber-hero-intro p:last-child { margin-bottom: 0; }

/* --- Weißer Body --- */
.ueber-body { background: var(--canvas-white); }

/* --- Credentials + Logos --- */
.ueber-credentials {
  max-width: var(--max-w);
  width: calc(100% - var(--side-pad) * 2);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.ueber-credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.ueber-cred {
  border-left: 2px solid var(--calm-horizon);
  padding-left: 1.1rem;
}
.ueber-cred-value {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 300;
  color: var(--deep-ocean);
  line-height: 1.05;
  margin-bottom: 0.45rem;
}
.ueber-cred-label {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}
.ueber-logos {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(49, 112, 142, 0.15);
}
.ueber-logos-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--text-body);
  opacity: 0.75;
  margin-bottom: 1.1rem;
}
.ueber-logos-row {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  flex-wrap: wrap;
}
.ueber-logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.ueber-logos-row img {
  width: auto;
  filter: grayscale(100%);
  opacity: 0.72;
  mix-blend-mode: multiply;
  transition: opacity 0.2s, filter 0.2s;
}
.ueber-logo-link:hover img { opacity: 1; filter: grayscale(0%); }

/* Optische Größe: breite Wortmarken kleiner, runde Siegel größer */
.logo-wordmark { height: 46px; }
.logo-badge    { height: 80px; }

/* Tooltip mit Organisationsname */
.ueber-logo-link::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--deep-ocean);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 5;
}
.ueber-logo-link::before {
  content: '';
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: var(--deep-ocean);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 5;
}
.ueber-logo-link:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.ueber-logo-link:hover::before { opacity: 1; }

/* --- Story: Lesespalte --- */
.ueber-story {
  max-width: 680px;
  width: calc(100% - var(--side-pad) * 2);
  margin: 0 auto;
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}
.ueber-story p {
  color: var(--text-body);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.8;
  margin-bottom: 1.3rem;
}
.ueber-emph em { color: var(--text-dark); font-style: italic; }
.ueber-pullquote {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.55;
  text-align: center;
  margin: 0 0 2.5rem;
  padding: 0 1rem;
}
.ueber-pullquote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--calm-horizon);
  opacity: 0.5;
  margin-bottom: 1rem;
}
.ueber-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(49, 112, 142, 0.15);
}
.ueber-story .ueber-cta-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.section-deep { background: var(--deep-ocean); }

/* ============================================================
   KONTAKT
   ============================================================ */
.page-kontakt {
  margin-top: var(--nav-h);
  padding: clamp(4rem, 8vw, 8rem) var(--side-pad);
  background: var(--canvas-white);
  text-align: center;
}
.page-kontakt-inner { max-width: 680px; margin: 0 auto; }
.page-kontakt h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.page-kontakt .kontakt-subtitle {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.kontakt-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(49,112,142,0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.kontakt-fact {
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(49,112,142,0.2);
}
.kontakt-fact:last-child { border-right: none; }
.kontakt-fact-label {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.35rem;
}
.kontakt-fact-value {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ============================================================
   IMPRESSUM / DATENSCHUTZ
   ============================================================ */
.page-text { margin-top: var(--nav-h); padding: 5rem 2rem 6rem; background: var(--white); }
.page-text-inner { max-width: 780px; margin: 0 auto; }
.page-text h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--text-dark); margin-bottom: 2rem; }
.page-text h2 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-top: 2rem; margin-bottom: 0.6rem; }
.page-text h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-top: 1.5rem; margin-bottom: 0.4rem; }
.page-text p  { color: var(--text-body); margin-bottom: 0.8rem; line-height: 1.75; }
.page-text a  { color: var(--blue); text-decoration: underline; }
.page-text ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.8rem; }
.page-text ul li { color: var(--text-body); margin-bottom: 0.3rem; }

/* Hilfsklassen für Inline-Style-Ersatz */
.wave-bg-white { background: var(--canvas-white); }
.wave-bg-calm  { background: var(--calm-horizon); }
.btn-subtext-body { color: var(--text-body); }
.kontakt-img {
  display: block;
  margin: 0.3rem 0;
}
.kontakt-combined-img {
  max-width: 340px;
  height: auto;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .intro-grid     { grid-template-columns: 1fr; }
  .warum-grid     { grid-template-columns: 1fr; }
  .prozess-grid   { grid-template-columns: 1fr; }
  .ueber-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .collage-wrapper { height: 300px; }
  .collage-photo   { width: 22%; }
  .ueber-hero-photo { max-width: 340px; margin: 0 auto; }
  /* Parallax deaktivieren auf Tablet & Mobile */
  .hero { background-attachment: scroll; background-position: center top; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hero h2, .hero p { padding-left: 0; }
  .hero-content { margin-left: 0; transform: none; }
  /* Carousel & Testimonials */
  .carousel-card    { flex: 0 0 75vw; }
  .testimonial-card { flex: 0 0 calc(100vw - 8rem); }
  .testimonials-track { padding-inline: 4rem; }
  .testimonials-outer .carousel-btn.prev { left: 0; }
  .testimonials-outer .carousel-btn.next { right: 0; }
  .testimonials-outer::before,
  .testimonials-outer::after { width: 24px; }
  /* Zusammenarbeit: mehr Luft zur Wave */
  .section-prozess { padding-bottom: 6rem; }
  .contact-buttons  { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  /* Collage ausblenden bevor Gesichter unkenntlich werden */
  .collage-wrapper { display: none; }
  .ueber-credentials-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .kontakt-facts { grid-template-columns: 1fr; }
  .kontakt-fact { border-right: none; border-bottom: 1px solid rgba(49,112,142,0.2); }
  .kontakt-fact:last-child { border-bottom: none; }
}
