:root {
  --swap-duration: 0.6s;
}
body {
  background-color: #ffffff;
  color: #000000;
  transition: background-color var(--swap-duration) ease, color var(--swap-duration) ease;
}
.is-safari body{
  transition: background-color .40s linear, color .40s linear !important;
}

body.dark-mode-active {
  background-color: #000;
  color: #fff;
}

/* Optional: Sektionen leicht abdunkeln */
body.dark-mode-active section:not(.options-section) {
  opacity: 0.85;
  transition: opacity 0.6s ease;
}

:root {
  --brand: #49a5a2;           /* Primärfarbe – bei Bedarf seitenweise ändern */
  --ink-h: #3c3c3c;           /* Überschriften */
  --ink-t: #4a4a4a;           /* Fließtext */
  --muted: #6b7280;           /* sekundärer Text */
  --bg: #ffffff;              /* Standard-Hintergrund */
  --card-bg: #ffffff;
  --border: rgba(0, 0, 0, .08);

  /* --------- Typografie-Skala --------- */
  /* Basis: mobil-first, wächst fluid */
  --fs-body: clamp(1rem, 0.95rem + 0.2vw, 1.05rem);
  --lh-body: 1.6;
  --lh-title: 1.25;

  /* Headings */
  --fs-h1: clamp(2.2rem, 1.4rem + 2.5vw, 3.2rem);
  --fs-h2: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem);
  --fs-h3: clamp(1.35rem, 1.05rem + 1.2vw, 1.8rem);
  --fs-h4: clamp(1.15rem, 1.0rem + 0.6vw, 1.35rem);

  /* Section title + body tokens (unified) */
  --fs-h2: clamp(1.6rem, 3.0vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2.4vw, 1.6rem);
  --fs-lead: clamp(1rem, 1.6vw, 1.08rem);           /* Intro text under h2 */
  --fs-info: clamp(13px, 1.5vw, 17px);              /* Information text size */

  /* Hero-Text (hell auf dunklem Hintergrund) */
  --hero-h1-size: clamp(2rem, 5.4vw, 3.2rem);
  --hero-h1-weight: 400;
  --hero-h1-color: #ffffff;
  --hero-p-size: clamp(1rem, 1.2vw, 1.1rem);
  --hero-p-weight: 100;
  --hero-p-color: #ffffff;
  --hero-eyebrow-color: #d6d6d6;

  /* Eyebrows (Standard / nicht Hero) */
  --eyebrow-color: var(--brand);
  --eyebrow-size: clamp(0.9rem, 1.6vw, 1.1rem);
  --eyebrow-letterspace: .12em;

  /* Cards */
  --card-title-size: clamp(1.5rem, 1.8vw, 1.6rem);
  --card-title-weight: 300;
  --card-title-color: var(--ink-h);
  --card-text-size: clamp(.98rem, 1.2vw, 1.05rem);
  --card-text-weight: 200;
  --card-text-color: var(--ink-t);
  --card-lineheight: 1.65;

  /* --------- Font Weights --------- */
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* --------- Spacing & Radius --------- */
  --space-2: .5rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-14: clamp(2.5rem, 2rem + 2vw, 4rem);
  --radius-l: 1rem;
   --radius-small: 8px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .06);
}

/* =========================================
   Globale Grundtypografie (optional)
   Greift automatisch, wenn du willst.
   ========================================= */
body {
  color: var(--ink-t);
  background: var(--bg);
  font-weight: var(--fw-400);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

h1, h2, h3, h4 {
  color: var(--ink-h);
  line-height: var(--lh-title);
  font-weight: var(--fw-600);
}

a { color: var(--brand); text-decoration: none; }

/* Eyebrow */
.eyebrow {
  color: var(--eyebrow-color);
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-letterspace);
  font-size: var(--eyebrow-size);
  font-weight: var(--fw-500);
}

/* Hero-Spezialfälle */
.hero h1 {
  font-size: var(--hero-h1-size);
  font-weight: var(--hero-h1-weight);
  color: var(--hero-h1-color);
}

.hero p {
  font-size: var(--hero-p-size);
  line-height: var(--lh-body);
  color: var(--hero-p-color);
  font-weight: var(--hero-p-weight);
}

/* Cards */
.card .title {
  font-size: var(--card-title-size);
  font-weight: var(--card-title-weight);
  color: var(--card-title-color);
}

.card p {
  font-size: var(--card-text-size);
  font-weight: var(--card-text-weight);
  line-height: var(--card-lineheight);
  color: var(--card-text-color);
}

:root{
  /* Brand & Text */
  --brand: #3aa6a0;           /* Haupt-Brand --gecko) */
  --gecko: var(--brand); 
  --ink: #111111;             /* Primärtext */
  --muted: #4a4a4a;           /* Sekundärtext */

  /* Oberflächen & Linien */
  --surface: #ffffff; 
  --light: #f7f7f8;
  --line: #e5e7eb; 

  /* Komponenten-Style */
  --radius: 14px;
  --shadow: 0 12px 24px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);

  /* Glass-UI */
  --glass-bg: rgba(255,255,255,0.17);
  --glass-blur: 12px;

  /* Layout-Helper */
  --panelW: min(540px, 92%);
  --tabOffset: 120px;
}


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

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Extra Condensed", sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, a, button, input {
  font-family: "Noto Sans Extra Condensed", sans-serif;}


/* ================================
   HERO – Parallax (Startseite)
================================ */

:root{
  --brand:#49a5a2;
  --hero-accent:#49a5a2;
  --hero-padX: clamp(24px, 20vw, 220px);
  --header-bar-w:min(1240px,94%);
  --panelW:min(540px,92%);
}

/* === HERO – Unified Animated Version (Text + Highlight Path) === */

:root{ --tt-gradient: linear-gradient(90deg, var(--brand) 0%, #ffffff 100%); }

.hero-parallax {
  --p: 0;
  --shift: calc(14px * var(--p));
  --zoom: calc(1 + 0.22 * var(--p));
  --scale: calc(1 - 0.040 * var(--p));
  --radius: calc(26px * var(--p));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: min(100svh, 100vh);
  min-height: min(100svh, 100vh);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  transform: scale(var(--scale));
  transform-origin: center top;
  will-change: transform, border-radius;
  z-index: 0;
}

.hero-parallax .hero-media {
  position: absolute;
  inset: 0;
  background: var(--hero-img) center/cover no-repeat;
  transform: translateY(calc(var(--shift) * -1)) scale(var(--zoom));
  transform-origin: center;
  will-change: transform;
  transition: transform .1s linear;
  pointer-events: none;
  z-index: 0;
}

.hero-parallax .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 70%, rgba(0,0,0,0) 100%);
  transform: translateY(calc(var(--shift) * -1)) scale(var(--zoom));
  transform-origin: center;
  will-change: transform;
  transition: transform .1s linear;
  z-index: 1;
}

/* subtle grain texture */
.hero-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/ui/grain-128.png");
  background-repeat: repeat;
  background-size: 140px 140px;
  opacity: .12;
  pointer-events: none;
  z-index: 1;
}

/* unified fade & scale */
.hero-parallax .hero-top {
  opacity: calc(1 - 0.9 * var(--p));
  transform: translateY(calc(-12px * var(--p))) scale(var(--scale));
  transition: opacity .1s linear, transform .1s linear;
  z-index: 2;
}

/* HERO TEXT + ANIMATED PATH EFFECT */
.hero-parallax .hero-top {
  position: absolute;
  top: clamp(100px, 20vh, 400px);
  left: var(--hero-padX);
  max-width: min(740px, 92vw);
  text-align: left;
  transform-origin: center top;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .45);
  animation: top-in .8s ease-out both;
  padding-right: 6px;
}

.hero-parallax .hero-tag {
  margin: 0 0 6px 0;
  font-size: clamp(.78rem, 1.1vw, 1rem);
  font-weight: 200;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(225,225,225,.92);
}

/* === Inline Word Animation === */
.hero-parallax .top-title {
  margin: 6px 0 0;
  font-weight: 300;
  font-size: clamp(2.8rem, 3.2vw, 4rem);
  line-height: 1.2;
  letter-spacing: .005em;
  color: #fff;
  text-shadow: 0 6px 22px rgba(0,0,0,.45);
  position: relative;
}

.hero-parallax .top-title .tt-word{
  position: relative;
  display: inline-block;
  padding: 0 .10em;
  --hl: rgba(73,165,162,.45);
}


/* spell effect */
.hero-parallax .top-title .tt-word .tt-spell{
  display:inline-block;
  /* Gradient text color */
  background: var(--tt-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  /* Spell-in mask */
  -webkit-mask: linear-gradient(#000 0 0) left / 0% 100% no-repeat;
          mask: linear-gradient(#000 0 0) left / 0% 100% no-repeat;
  animation: tt-spell-in 900ms steps(22) both;
}

/* Keep words visible (no pop/fade/translate on the word wrappers) */
.hero-parallax .top-title .tt-word{
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger the spell-in only via delays on the inner span */
.hero-parallax .top-title .tt-immobilien .tt-spell{ animation-delay: 0ms; }
.hero-parallax .top-title .tt-versicherungen .tt-spell{ animation-delay: 120ms; }
.hero-parallax .top-title .tt-baufinanzierung .tt-spell{ animation-delay: 240ms; }
@keyframes tt-spell-in { to { -webkit-mask-size:100% 100%; mask-size:100% 100%; } }

.tt-immobilien      { --hl: rgba(73,165,162,.50); }
.tt-versicherungen  { --hl: rgba(73,165,162,.50); }
.tt-baufinanzierung { --hl: rgba(73,165,162,.50); }


/* hide legacy pinboard & chips */
.hero-parallax .hero-pinboard,
.hero-parallax .pin-labels,
.hero-parallax .chip,
.hero-parallax .pin-stem,
.hero-parallax .pin-dot,
.hero-parallax .pin-seed {
  display: none !important;
}

/* ============================================================
   CTA-BUTTONS – FINAL MIT SHRINK-HOVER
   ============================================================ */

/* Basis für beide Buttons */
/* Basis für beide Buttons */
.cta-beratung,
.cta-call {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 18px 40px !important;
  margin-top: 40px !important;
  margin-right: 16px !important;
  border-radius: 999px !important;

  font-size: 1.05rem !important;
  font-weight: 200 !important;
  text-decoration: none !important;
  color: #fff !important;

  transform: scale(1) !important;
  transition: transform .18s cubic-bezier(.25,.75,.35,1) !important;
}

/* SHRINK-HOVER */
.cta-beratung:hover,
.cta-call:hover {
  transform: scale(0.96) !important;
}

/* Individuelle Styles (ohne Hover!) */
.cta-beratung {
  background: #49a5a2b4 !important;
  /* kein border, keine farbänderung, kein shadow-hover */
}

.cta-call {
  background: rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(12px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25) !important;
}


@media (prefers-reduced-motion: reduce){
  .hero-cta{ transition:none; transform:none !important; }
  .hero-cta:hover .cta-arrow{ animation:none; }
}



@keyframes dot-pop{ 0%{transform:translateX(-50%) scale(.3);opacity:0;} 60%{transform:translateX(-50%) scale(1.18);opacity:1;} 100%{transform:translateX(-50%) scale(1);} }
@keyframes ripple{ 0%{transform:scale(.6);opacity:.9;} 80%{transform:scale(1.9);opacity:0;} 100%{opacity:0;} }




/* ---------- Responsive (cleaned for inline word animation; chips/pinboard removed) ---------- */
@media (max-width:1199px){
  .hero-parallax .hero-top{
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: clamp(120px, 28vh, 360px);
    max-width: min(720px, calc(100vw - 72px));
    width: 100%;
    padding-inline: 16px;
    text-align: left;
    animation: top-in .7s ease-out both;
  }

  .hero-parallax .top-title{
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    line-height: 1.16;
    font-weight: 300; /* leichter als Desktop */
  }

  .hero-parallax .hero-tag{
    font-size: clamp(.8rem, 1.4vw, 1rem);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 400;
  }
}

@media (max-width:767px){
  /* HERO CTA – Mobile Layout Fix */
  .hero-parallax .hero-top {
    display: flex;
    flex-direction: column;
    gap: 14px !important;
  }

  .hero-parallax .hero-top .cta-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px !important;
    align-items: center;
    justify-content: flex-start;
  }

  .cta-beratung,
  .cta-call {
    margin-top: 0 !important;
    padding: 12px 22px !important;
    font-size: .95rem !important;
    flex: 0 0 auto !important;
  }

  /* Mobile: noch etwas weiter runter, größer, dünner */
  .hero-parallax .hero-top{
    top: clamp(110px, 30vh, 320px);
    max-width: min(560px, calc(100vw - 40px));
    padding-inline: 12px;
    text-align: left;
  }

  .hero-parallax .top-title{
    font-size: clamp(1.8rem, 7.2vw, 2.6rem);
    line-height: 1.18;
    font-weight: 300; /* vorher 600/700 wegen Chips -> runter */
    margin-top: 4px;
  }

  .hero-parallax .hero-tag{
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 400;
  }
}

/* Motion-Respect: nur notwendige Elemente */
@media (prefers-reduced-motion: reduce){
  .hero-parallax .hero-media,
  .hero-parallax .hero-overlay{
    transform: none !important;
    transition: none !important;
  }
  .hero-parallax .hero-top{
    opacity: 1 !important;
    transform: none !important;
  }
}








/* Call-to-Action Cards unter dem Startbereich */
  :root{
    /* Breite des Balkens einfach hier ändern */
    --header-bar-w: min(94vw, 1240px);
    --glass-bg: rgba(24,24,24,.38);
    --glass-brd: rgba(255,255,255,.16);
    --glass-shadow: 0 14px 40px rgba(0,0,0,.25);
  }

.cta-strip{
  --strip-max: 1100px;
  --radius: 12px;
  --gap: 0;
  --edge-shadow: 0 18px 40px rgba(0,0,0,.16);

  position: relative;
  z-index: 10;
  width: min(100%, var(--strip-max));
  margin-inline: auto;
  margin-top: clamp(-130px, -30vw, -150px);
  padding-inline: clamp(12px, 3vw, 0);
}

.cta-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  background: #fff;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: var(--radius);
  overflow: hidden; 
  border: 1px solid #2d7f7a;
  box-shadow: var(--edge-shadow);
}

/* einzelne Kachel */
.cta-item{
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(18px, 3.4vw, 28px) clamp(12px, 2.4vw, 20px);
  
  color: #ffffff;
  text-decoration: none;
  /* KEIN innerer Schatten → verhindert scheinbare Lücke zum Rahmen */
  box-shadow: none;
  margin: 0;                               /* safety */
  will-change: transform;
  transition: transform .22s ease;         /* nur Bewegung */
}



/* Trennstrich zwischen Kacheln */
.cta-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right: 0px; top: 18%;
  width:1px; height:64%;
  background: rgba(0,0,0,.08);
}

/* Inhalte in der Kachel */
/* Refactored CTA-Icons: fixierte quadratische Box */
.cta-ico {
  width: 56px;
  height: 56px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.cta-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cta-item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.cta-title{
  margin-top: 8px;
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  font-family: "Kaisei Tokumin", serif !important;
  color: #3c3c3c;
}
.cta-sub{
  margin-top: 10px;
  font-size: clamp(12px, 1.2vw, 14px);
  color: #4a4a4a;
  text-align: left;
}

/* Hover: etwas größer, leicht abgedunkelt, mehr Schatten */
.cta-item:hover{
  transform:translateY(-2px);
  z-index: 2;
}

/* OPTIONAL: Text minimal dunkler bei Hover */
.cta-item:hover .cta-sub{ color:#374151; }

/* RESPONSIVE – 2x2, dann gestapelt */
@media (max-width: 980px){
  .cta-row{ grid-template-columns: repeat(2, 1fr); }
  .cta-item:not(:last-child)::after{ display:none; }
}
@media (max-width: 640px){
  .cta-strip{ margin-top: clamp(12px, 4vw, 22px); } /* keine Überlappung mobil */
  .cta-row{ grid-template-columns: 1fr; }
  .cta-item{ transform:none !important; }
}


/* === CTA-Strip: Compact 3-up (Tablet & Mobile) ===================== */
@media (max-width: 1199px){
  /* 3 Spalten erzwingen, 4. Kachel ausblenden */
  .cta-row{
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
  }
  .cta-row .cta-item:nth-child(4){ display: none !important; }

  /* Kacheln kompakt – genug Höhe als Tap-Target */
  .cta-item{
    padding: 10px 6px !important;
    min-height: 56px;               /* gut bedienbar */
    transform: none !important;     /* keine Hover-Vergrößerung auf Touch */
  }

  /* Inhalte: Logo + Titel sichtbar, Subtext ausgeblendet */
  .cta-sub{ display: none !important; }

  /* schlanke Trennlinie zwischen den 3 Kacheln beibehalten */
  .cta-item:not(:last-child)::after{
    display:block !important;
    top: 20%;
    height: 60%;
    background: rgba(0,0,0,.08);
  }

  /* Sicherheitsabstände: kein Überlappen mit Hero */
  .cta-strip{
    margin-top: clamp(-100px, -10vw, -16px) !important;
    padding-inline: clamp(8px, 2vw, 12px) !important;
  }

  /* CTA-Icon + Title kompakt ausrichten und skalieren */
  .cta-item{ row-gap: 6px; }
  .cta-ico{ margin: 0 !important; width: 40px; height: 40px; }
  .cta-ico img{ width: 100%; height: 100%; }
  .cta-title{
    display: block !important;
    font-size: clamp(12px, 1.6vw, 14px) !important;
    font-weight: 600 !important;
    margin: 2px 0 0 0 !important;
    color: #2a2a2a !important;
  }
}

@media (max-width: 1199px){
  .cta-ico{ width: 40px; height: 40px; }
}

/* Handy: gleiche 3-Spalten-Logik auch bei kleinen Breakpoints */
@media (max-width: 980px){
  .cta-row{ grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 640px){
  .cta-row{ grid-template-columns: repeat(3, 1fr) !important; }
  .cta-strip{ padding-inline: 0 !important; } /* kein seitlicher Overflow */
  .cta-item{ min-height: 52px; }
  /* Mobile CTA-Feintuning */
  .cta-ico{ width: 28px; height: 28px; }
  .cta-ico img{ width: 100%; height: 100%; }
  .cta-title{ font-size: 12px !important; }
  .cta-item{ min-height: 58px; padding: 10px 4px !important; }
}

@media (max-width: 640px){
  .cta-ico{ width: 28px; height: 28px; }
}





/* Über UNS / Vorstellung */


.feature-hero {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: 0;
}

/* Compositor hint: keep section fixed and non-draggable */
.feature-hero{
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* --- Feature-Hero: Mobile scroll/drag hardening --- */
@media (max-width: 1199px){
  /* Only vertical scroll gestures; no text drag; stop section-local rubber banding */
  .feature-hero,
  .feature-hero *{
    -webkit-user-select: none;
            user-select: none;
    touch-action: pan-y;
  }
  .feature-hero{ overscroll-behavior: contain; }

  /* Headline block should not capture pointer/drag gestures on touch */
  .feature-hero .fh-head,
  .feature-hero .fh-head *{
    pointer-events: none;
  }
}

/* =========================
   Header: Eyebrow / Titel / Lead / Chips
   ========================= */
.fh-head {
  position: relative;
  z-index: 4;
  text-align: center;
  margin-top: 50px;
}

.fh-eyebrow {
  margin: 0 0 8px 0;
  text-transform: uppercase;
  font-size: var(--eyebrow-size);
  color: var(--brand, #49a5a2 );
  opacity: .9;
  font-weight: 200;
}

.fh-title {
  margin: 0 0 10px 0;
  font-size: var(--fs-h1) !important;
  line-height: var(--lh-title);
  color: var(--ink-h);
  font-family: "Kaisei Tokumin", serif;
  font-weight: var(--fw-500);
}

.fh-lead {
  max-width: 70ch;
  text-align: center;
  margin: 0 auto clamp(22px, 3vw, 34px);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--ink-t);
  font-weight: var(--fw-200);
}

/* Underline in Feature-Hero Section */
.fh-underline-wrap {
  display: block;
  margin-top: 1.2rem;       /* Abstand nach oben, frei anpassbar */
  text-align: center;         /* oder center, wenn mittig */
}

.fh-underline {
  display: inline-block;
  width: clamp(60px, 12vw, 120px);
  height: 2px;
  background: radial-gradient(circle at center, rgba(58,166,160,1) 0%, rgba(58,166,160,0.6) 40%, rgba(58,166,160,0) 100%);
  border-radius: 2px;
}

/* =========================
   Visual-Wrapper
   ========================= */
.fh-visual {
  position: relative;
  z-index: 3;
  margin-top: clamp(24px, 6vw, 48px);
  min-height: 260px;
}

/* Farbklecks als Pseudo-Element (kann nicht „vergessen“ werden) */
.fh-visual::before {

  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
overflow: visible;
  top: -17%;
  left: 50%;
  transform: translateX(-50%);

  width: min(1920px, 120vw);
  height: min(1100px, 110vw);

  background:
    /* zentraler weicher Schein (neutral) */
    radial-gradient(
      60% 60% at 50% 45%,
      rgba(89,255,249,0.50),
      rgba(89,233,255,0.12) 60%,
      rgba(89,222,255,0.00) 90%
    ),
    /* linker Akzent – Spiegel zum rechten */
    radial-gradient(
      40% 45% at 28% 62%,
      rgba(58,166,160,0.22),
      rgba(58,166,160,0.00) 90%
    ),
    /* rechter Akzent */
    radial-gradient(
      40% 45% at 72% 62%,
      rgba(58,166,160,0.22),
      rgba(58,166,160,0.00) 90%
    );

 
}

.feature-hero {
  position: relative;
  overflow: hidden;
}

/* Grain-Layer (z-index:1), oben 10% → unten 100% sichtbar */
.feature-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  /* SVG-Noise als EINZEILIGE Data-URI (seamless) */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  background-repeat: repeat;
  background-size: 160px 160px;

  
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: top;

  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,1) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: top;
}

/* Bild – sitzt optisch auf der Unterkante der Sektion */
.fh-image {
  position: relative;
  z-index: 3;
  display: block;
  width: min(1320px, 78vw);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -100px;
  border-radius: 6px;
  background: #111;
}


/* ========== Feature Hero – Tablet & Mobile Optimierung ========== */


@media (max-width: 1199px){
  .feature-hero{ padding-top: clamp(36px, 6vw, 64px); }

  .fh-head{
    margin-top: 32px;
    padding-inline: 24px;
    max-width: 82ch;
    margin-left: auto;
    margin-right: auto;
  }
  .fh-title{
    line-height: 1.18;
    max-width: 26ch;
    margin-inline: auto;
  }
  .fh-lead{
    max-width: 64ch;
    margin-inline: auto;
    line-height: 1.55;
  }

  .fh-underline{ width: clamp(56px, 8vw, 96px); }

  .fh-visual{ 
    margin-top: clamp(20px, 4vw, 36px); 
    min-height: 300px; 
  }

  .fh-image{
    width: min(1320px, 88vw);
    border-radius: 12px;
    margin-bottom: -80px;
  }
}

/* Phone (≤ 767px): noch schmaler, luftiger, Bild prominent */
@media (max-width: 767px){
  .feature-hero{ 
    padding-top: clamp(28px, 7vw, 48px); 
  }

  .fh-head{
    margin-top: 18px;
    padding-inline: 16px;
    max-width: 72ch;
    text-align: left; /* mobile: left aligned */
  }

  .fh-eyebrow{
    letter-spacing: .16em;
    font-size: .8rem;
  }
  .fh-eyebrow{ text-align: left; }

  .fh-title{
    font-size: clamp(1.8rem, 7.2vw, 2.6rem);
    line-height: 1.18;
    font-weight: 300; 
    margin-top: 4px;
    text-align: left; 
  }

  .fh-lead{
    font-size: 0.9rem;
    font-weight: 300;
    text-align: left; 
    margin-left: 0; 
    margin-right: auto;
  }

  .fh-underline{ 
    display: none;
  }

  .fh-visual{ 
    margin-top: clamp(14px, 5vw, 24px); 
    min-height: 260px; 
  }

  .fh-visual::before{
    top: -14%;
    width: 130vw;
    height: 95vw;
  }

  .fh-image {
    width: min(1100px, 92vw);
    height: clamp(260px, 64vw, 420px); /* taller on mobile */
    object-fit: cover;                 /* keep width, grow height */
    display: block;
    border-radius: 16px;
    margin-bottom: -84px;             /* slight bottom cut like desktop */
  }
}

/* Sehr klein (≤ 360px): Typo minimal kompakter */
@media (max-width: 360px){
}



/* =========================
   Responsive Kleinigkeiten
   ========================= */
@media (max-width: 640px) {
  .fh-visual::before {
    top: -18%;
    width: 120vw;
    height: 85vw;
  }

  .fh-image {
    border-radius: 14px;
  }
}









/* 3. info blöcke */


:root{
  --ink:#111;
  --muted:#6b7280;
  --brand:#3aa6a0;
  --line:#e5e7eb;
  --radius:4px;
}

.services-alt{
  padding: clamp(48px, 8vw, 96px) 0;
  background: #fff;
  color: var(--ink);
}
.services-alt .container{
  width: min(1200px, 92%);
  margin: 0 auto;
}


/* Intro */
.srv-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3rem auto;
  padding: 0 1rem;
  max-width: 960px;
}

.intro-text {
  flex: 1;
  text-align: center;
  margin: 0 auto clamp(22px, 3vw, 34px);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--ink-t);
  font-weight: var(--fw-200);
  opacity: .9;
}

.srv-intro .eyebrow {
  margin: 0 0 8px 0;
  text-transform: uppercase;
  font-size: var(--eyebrow-size);
  color: var(--brand, #49a5a2 );
  opacity: .9;
  font-weight: 200;
  text-align: left;
  margin-left: 180px; 
}

.srv-intro h2 {
  font-size: var(--fs-h1);
  margin: 0;
  font-weight: var(--fw-500);
  line-height: var(--lh-title);
  font-family: "Kaisei Tokumin", serif !important;
  color: var(--ink-h);
}

.srv-intro .intro-underline {
  flex-shrink: 0;
  margin-left: 2rem;
  width: clamp(80px, 12vw, 160px);
  height: 2px;
  background: radial-gradient(circle at center, rgba(58,166,160,1) 0%, rgba(58,166,160,0.6) 40%, rgba(58,166,160,0) 100%);
  border-radius: 2px;
}

/* Row Layout */
.srv-row{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 4vw, 48px);
  align-items:center;
  margin-bottom: clamp(40px, 9vw, 90px);
}
.srv-row.reverse{
  grid-template-columns: 1fr 1.1fr;
}
.srv-row.reverse .srv-media{ order:2; }
.srv-row.reverse .srv-copy{ order:1; }

/* Media */
.srv-media{
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.srv-media img{
  display:block;
  width:100%;
  height: clamp(220px, 36vw, 420px);
  object-fit:cover;
  border-radius: 4px;
}

/* Copy */
.srv-copy{ max-width: 560px; }
.srv-num{
  margin:0 0 8px;
  color:var(--muted);
  font-size:.95rem;
}

.srv-num span{
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight:300;
  margin-right:8px;
}

.srv-copy h3{
  margin:.2rem 0 .6rem;
  font-size: var(--fs-h3);
  font-family: "Kaisei Tokumin", serif !important;
  font-weight: var(--fw-500);
  color: var(--ink-h);
}
.srv-copy p{
  margin:0 0 14px;
  color: var(--ink-t);
  line-height: var(--lh-body);
  font-size: var(--fs-info);
  font-weight: var(--fw-300);
}



/* Outro */
.srv-outro {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  margin: 4rem auto;
  padding: 0 1rem;
  margin-top: clamp(12px, 5vw, 24px);
  padding-top: clamp(16px, 3.5vw, 28px);
  max-width: 820px;
}

.outro-text {
  flex: 1;
}

.srv-outro h4 {
  margin: .2rem 0 .4rem;
  font-weight: 600;
  color: #3c3c3c;
  font-size: clamp(1.6rem, 3.0vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  font-family: "Kaisei Tokumin", serif !important;
}

.srv-outro p {
  margin:0 0 14px;
  color: var(--ink-t);
  line-height: var(--lh-body);
  font-size: var(--fs-info);
  font-weight: var(--fw-300);
}

/* Linie rechts daneben */
.srv-outro .outro-underline {
  flex-shrink: 0;
  margin-left: 2rem;                    
  width: clamp(80px, 12vw, 160px);      
  height: 2px;
  background: radial-gradient(circle at center, rgba(58,166,160,1) 0%, rgba(58,166,160,0.6) 40%, rgba(58,166,160,0) 100%);
  border-radius: 2px;
}



/* Reveal-on-scroll (once) */
.reveal{
  opacity:0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.in-view{
  opacity:1;
  transform: translateY(0);
}




/* Button-Style für "Aktuelle Angebote ansehen" und "Bewertung abgeben" */
/* Updated Button Styles */
.btn-outline,
.srv-link.btn-outline {
  align-self: end;
  display: inline-block;
  background: #49a5a2;
  color: #fff;
  text-decoration: none;
  font-weight: 200 !important;
  font-size: 1rem;
  padding: 12px 45px;
  margin-top: 20px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-outline:hover,
.srv-link.btn-outline:hover {
  background: #2f918b;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}


/* Responsive */
@media (max-width: 900px){
  .srv-row,
  .srv-row.reverse{
    grid-template-columns: 1fr;
  }
  .srv-row.reverse .srv-media{ order:1; }
  .srv-row.reverse .srv-copy{ order:2; }
  .srv-media img{ height: clamp(220px, 55vw, 360px); }
}

/* ===== Intro (Tablet & Mobile) — eyebrow/titel mittig über dem Intro-Text ===== */
@media (max-width: 900px){
  .srv-intro{
    /* statt horizontaler Verteilung jetzt vertikal stapeln */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;

    /* Innenabstände & Breiten für kleinere Screens */
    padding: 0 16px;
    margin: clamp(28px, 6vw, 48px) auto;
    max-width: 760px;
    text-align: center; /* Grundausrichtung */
  }
  .srv-intro .eyebrow{
    margin-left: 0;         /* Desktop-Offset neutralisieren */
    text-align: left;     /* mittig über dem Titel */
  }
  .srv-intro h2{
    text-align: left;
    margin: 2px auto 6px;
    max-width: 28ch;        /* bessere Zeilenlänge mobil */
  }
  .srv-intro .intro-underline{
    display: none;
  }
  .intro-text{
    max-width: 60ch;
    margin: 8px auto clamp(18px, 4vw, 28px);
    text-align: center;
  }
}

/* ===== Phones (≤640px) — etwas kompakter ===== */
@media (max-width: 640px){
  .srv-intro{ gap: 4px; padding: 0 12px; }
  .srv-intro h2{ max-width: 24ch; }
  .intro-text{ max-width: 34ch; }
}





/* ===== Facts / Stats ===== */
.facts{
  position: relative;
  isolation: isolate;
  color: #fff;
  --facts-bg: none;                 /* set via inline style */
  --facts-tint: rgba(0,0,0,.75);   /* overlay */
  --gap: clamp(16px, 3vw, 28px);
  --padX: clamp(16px, 5vw, 64px);
  --padY: clamp(40px, 10vh, 120px);
  background: var(--facts-bg) center/cover no-repeat fixed;
  background-attachment: scroll;
}
.facts__overlay{
  position: absolute; inset: 0;
  background: var(--facts-tint);
  z-index: 0;
}
.facts__inner{
  position: relative; z-index: 1;
  padding: var(--padY) var(--padX);
  max-width: 1200px; margin: 0 auto;
}

/* Header */
.facts__head{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: end;
  gap: var(--gap);
  margin-bottom: clamp(28px, 6vw, 56px);
}
.facts .eyebrow{
  margin: 0 0 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 200;
}
.facts h2{
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  font-family: "Kaisei Tokumin", serif !important;
  color: #fff !important;
}
.facts__intro{
  margin: 0;
  font-size: clamp(.95rem, 1.2vw, 1.00rem);
  opacity: .9;
  font-weight: 200;
}

/* Feature number with rule */
.facts__feature{
  display: flex; align-items: center;
  gap: 12px;
  margin: clamp(10px, 3vw, 24px) 0 clamp(10px, 4vw, 32px);
}
.feature__rule{
  flex: 1 1 auto; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.6);
}
.feature__num{
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .9;
  font-weight: 700;
  opacity: .2;
}

/* Counter grid */
.facts__grid{
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(16px, 3vw, 32px);
}
.facts__item{
  text-align: center;
  padding: clamp(10px, 2.5vw, 18px);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(2px);
}
.facts__value{
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
}
.facts__label{
  margin: 8px 0 0; opacity: .85;
  font-size: clamp(.8rem, 1.0vw, 1rem);
  font-weight: 200;
}

/* Reveal (once) */
.reveal{ opacity: 0; transform: translateY(16px); }
.reveal.is-in{ opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }

@media (prefers-reduced-motion: reduce){
  .facts{ background-attachment: scroll; }
  .reveal, .reveal.is-in{ opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 900px){
  .facts__head{ grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 680px){
  .facts__grid{ grid-template-columns: 1fr; }
}




:root{
  --ps-brand:#3aa6a0;            /* Gecko-Türkis */
  --ps-ink:#1f2226;
  --ps-muted:#6d7178;
  --ps-card:#f6f7f8;
  --ps-radius:16px;
  --ps-shadow:0 14px 34px rgba(0,0,0,.08);

  /* Tunables für Pin & Größe */
  --ps-media-size: clamp(360px, 42vw, 520px); /* Bildgröße (quadratisch) */
  --ps-pin-shift: 0px;                         /* feines Offset, falls nötig */
}

.para-steps{
  --p:0;
  background: transparent;
  color:var(--ps-ink);
  overflow: visible;
}
.ps-wrap{
  width:min(1200px,92%);
  margin:0 auto;
  padding:clamp(36px,6vw,80px) 0;
  overflow: visible;
}
.ps-title{
  margin: 0 0 clamp(22px,3.6vw,30px);
  font-family: "Kaisei Tokumin", serif !important;
  font-weight: var(--fw-500);
  font-size: var(--fs-h1);
  line-height: var(--lh-title);
  color: var(--ink-h);
}

/* Grid: linker Pin + rechte hohe Liste */
.ps-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(26px,3.6vw,44px);
  align-items:start;
  overflow: visible;
}

/* Linkes Bild: sticky + parallax */
.ps-media{
  position: -webkit-sticky;
  position: sticky;
  top: calc(50vh - var(--ps-media-size)/2 + var(--ps-pin-shift));
  align-self:start;
  width: var(--ps-media-size);
  height: var(--ps-media-size);
  border-radius: var(--ps-radius);
  overflow:hidden;
  box-shadow: var(--ps-shadow);
  transform: translateY(calc(var(--p) * -28px)); /* stärkerer Parallax-Shift */
  will-change: transform;
  border: 2px solid #fff;
}
.ps-media img{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* Rechte Liste: groß & hoch, damit wirklich „durchgescrollt“ wird */
.ps-steps{
  display:grid;
  gap: clamp(18px,2.6vw,24px);

}

/* Cards – bewusst höher, damit die Liste viel Platz einnimmt */
.ps-step{
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--ps-card);
  border-radius: 14px;
  border: 2px solid #ffffff;
  padding: clamp(18px,2.6vw,22px) clamp(20px,3vw,26px);
  box-shadow: var(--ps-shadow);

  min-height: clamp(160px, 28vh, 240px);
  opacity: 0;
  transform: translateY(28px) translateX(40px) scale(.985);
  transition: opacity .55s ease, transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.ps-step.is-visible{
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Bullet */
/* PS bullets as image (replaces symbol) */
.ps-bullet {
  display: grid;
  place-items: left;
}

.ps-bullet__img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Copy */
.ps-copy {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
  margin-left: 0;
  margin-top: 36px;
}
.ps-copy h3{
  margin: 0 0 6px;
  font-family: "Kaisei Tokumin", serif !important;
  font-weight: var(--fw-500);
  font-size: var(--fs-h3);
  line-height: var(--lh-title);
  color: var(--ink-h);
  margin-top: 20px;
}
.ps-copy p{
  margin-top: auto;
  margin-bottom: 0;
  margin-top: 35px;
  color: var(--ink-t);
  line-height: var(--lh-body);
  font-size: var(--fs-info);
  font-weight: var(--fw-300);
}

/* Responsive */
@media (max-width: 980px){
  .ps-wrap{
    width:100%;
    max-width:100%;
    margin-inline:auto;
    padding:clamp(36px,6vw,80px) 0;
  }

  .ps-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    max-width:100%;
    margin-inline:auto;
    gap: clamp(20px, 4vw, 32px);
  }

  .ps-media{
    position:sticky;
    top:20px;
    width:min(88vw,360px);
    height:auto;
    aspect-ratio:1/1;
    margin:0 auto;
    transform:none !important;
    border-radius:16px;
    z-index: 3;
  }

  .ps-steps{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    margin:0 auto;
    gap: clamp(14px, 3.5vw, 20px);
    position: relative;
    z-index: 1;
  }

  .ps-step{
    width:min(88vw,360px);
    margin-inline:auto;
    padding:10px 14px;
    border-radius:12px;
    min-height:auto;
    opacity:1;
    transform:none;
  }
}

@media (prefers-reduced-motion: reduce){
  .ps-step{ transition:none; }
  .ps-media{ transform:none !important; }
}

@media (max-width: 420px){
  .ps-step{
    width: 90vw;
    min-height: auto !important;
    padding: 10px 14px;
  }
  .ps-bullet__img{ width: 38px; height: 38px; }
}




/* Immobilien Teaser Section */

.estate-teaser {
  width: 100%;
  max-width: 1400px;
  margin: 80px auto;
  padding-inline: 24px;
  overflow: hidden;
}

.teaser-head {
  text-align: center;
  margin-bottom: 36px;
  margin-top: 100px;
  color: var(--ink-h);
}

.teaser-head h2 {
  font-size: var(--fs-h1);
  line-height: var(--lh-title);
  margin: 0 0 12px;
  color: var(--ink-h);
  font-family: "Kaisei Tokumin", serif !important;
  font-weight: var(--fw-500);
}

.teaser-head p {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto clamp(22px, 3vw, 34px);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--ink-t);
  font-weight: var(--fw-200);
}

/* Grid */
.estate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Immobilien-Teaser: Karte mit Titel an der Bild-Unterkante ===== */

.estate-card {
  --teaserTitleH: 48px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #c3c3c3;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}

.estate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.estate-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin: 0;
}
.estate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.estate-body {
  position: relative;
  padding: 10px 14px 8px;
  background: #fff !important;
  color: #111 !important;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  flex-grow: 1;
}

.estate-body .estate-meta {
  margin-top: auto;
}

.estate-body .estate-loc {
  margin-top: 6px;
}

.estate-body h3 {
  margin: 0 0 2px 0;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.25;
  color: #111;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.6em;
}

/* KPI / Meta Grid */
.estate-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 2px;
  text-align: center;
  padding-bottom: 4px;
  border-bottom: 1px solid #e5e5e5;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.meta-item img {
  width: 20px;
  height: 20px;
  opacity: .85;
  display: block;
}

.meta-item strong {
  font-size: 0.8rem;
  font-weight: 400;
  color: #222;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meta-item small {
  font-size: 0.65rem;
  opacity: .85;
  font-weight: 300;
  color: #555;
  line-height: 1.1;
}

.estate-loc {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 300;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  text-align: left;
}

.estate-loc img {
  width: 14px;
  height: 14px;
  opacity: .7;
  flex: 0 0 auto;
}

.estate-card a {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

.estate-card a:hover {
  text-decoration: none !important;
}

.teaser-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px; 
  text-align: center;
}

.more-btn {
  align-self: end;
  display: inline-block;
  background: #49a5a2;
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  font-size: 1rem;
  padding: 12px 35px;
  border-radius: 999px;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.more-btn:hover {
  background: #2f918b;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}
@media (max-width: 680px){
  .estate-meta{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    text-align: left;
  }
  .meta-item{
    align-items: flex-start;
  }
}





:root {
  --section-bg-dark: #000000;
  --section-text-light: #ffffff;

  --card1: #d8e6b8; /* sanftes Grün */
  --card2: #ffe3b0; /* Beige */
  --card3: #f6dcd0; /* Rose */

  --card-hover-dark: #3c3c3c;
  --card-hover-text: #ffffff;
}

/* =======================
   Grundlayout Sektion
   ======================= */
.options-section {
  position: relative;
  z-index: 5;
  isolation: isolate;
  transition: color var(--swap-duration) ease, background-color var(--swap-duration) ease;
  padding: var(--space-14) 0;
  color: #111111;
}

/* eigener Layer für Hintergrundwechsel */
.options-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #ffffff;
  transition: background-color var(--swap-duration) ease;
}

/* Farbswap */
.options-section.active-dark::before {
  background-color: #000000;
}

/* Textfarbe mitnehmen */
.options-section.active-dark {
  color: #ffffff;
}

.options-section .options-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-500);
  color: inherit;
  margin-bottom: var(--space-14);
  transition: color 0.8s ease;
  font-family: "Kaisei Tokumin", serif !important;
}

.options-section .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: clamp(12px, 3vw, 20px);
}



/* =======================
   Reihenaufbau
   ======================= */
.option-row {
  display: flex;
  align-items: stretch;
  gap: var(--space-4); /* Einheitlicher Abstand horizontal */
  margin-bottom: var(--space-4); /* Gleiches Spaltmaß vertikal */
  min-height: 570px;
}

.option-row:not(.right) .option-card {
  flex: 1;   /* Karte links schmaler */
}
.option-row:not(.right) .option-image {
  flex: 2;   /* Bild rechts breiter */
}

.option-row.right {
  flex-direction: row-reverse;
}

.option-row.right .option-card {
  flex: 2;   /* Karte rechts breiter */
  order: 2;
}

.option-row.right .option-image {
  flex: 1;   /* Bild links schmaler */
  order: 1;
}

/* =======================
   Option Row 2: Spezielles Verhältnis Bild/Karte (mittlere Reihe)
   ======================= */
.option-row:nth-of-type(2) {
  display: flex;
  align-items: stretch;
  gap: var(--space-4);
}

.option-row:nth-of-type(2) .option-card.image-card {
  flex: 2.0; /* Bildkarte breiter */
}

.option-row:nth-of-type(2) .option-card.small-card {
  flex: 1.0; /* Textkarte schmaler */
}

.option-card.image-card {
  cursor: default; /* Mauszeiger kein Klickfinger */
}

.option-card.image-card:hover .overlay {
  background: rgba(0, 0, 0, 0.55);
}

.option-card.image-card:hover .icons {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   Karte
   ======================= */
.option-card {
  flex: 1;
  background: var(--card-bg);
  border-radius: var(--radius-small);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* oben Titel, unten Text + Button */
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Titel bleibt oben */
.option-card h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-400);
  color: var(--ink-h);
  transition: color 0.3s ease;
  margin-bottom: 0.5rem;
}

/* Textabsatz sitzt unten über dem Button */
.option-card p {
  margin-top: auto; /* drückt ihn nach unten */
  margin-bottom: 1rem; /* Abstand zum Button */
  line-height: 1.5;
}

/* Button im linken Drittel platzieren */
.option-card .expand-btn {
  align-self: flex-start;
  transform: translateX(15%);
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

/* =======================
   Bildseite
   ======================= */
/* ========== Bildseite ========== */
.option-image,
.option-card.image-card {
  flex: 2;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-small);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.option-image .overlay,
.option-card.image-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
  transition: background 0.4s ease;
}

.option-image .icons,
.option-card.image-card .icons {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--space-4);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* ========== Hover ========== */
.option-row:hover .option-image .overlay,
.option-row:hover .option-card.image-card .overlay {
  background: rgba(0,0,0,0.55);
}

.option-row:hover .option-image .icons,
.option-row:hover .option-card.image-card .icons {
  opacity: 1;
  transform: translateY(0);
}

.option-image .icon {
  font-size: 1.4rem;
  background: rgba(255,255,255,0.1);
  padding: 0.6rem;
  border-radius: 8px;
}

.option-image .text strong {
  font-weight: var(--fw-500);
  margin-bottom: 0.25rem;
  display: block;
  font-size: 1.1rem;
}

.option-image .text p {
  font-size: var(--fs-info);
  color: rgba(255,255,255,0.9);
}

/* =======================
   Hover-Effekt
   ======================= */
.option-row:hover .option-card,
.option-row.is-active .option-card {
  background: var(--card-hover-dark);
}

.option-row:hover .option-card h3,
.option-row.is-active .option-card h3 {
  color: var(--card-hover-text);
}

.option-row:hover .option-card .circle-btn,
.option-row.is-active .option-card .circle-btn {
  background: var(--card-hover-text);
  color: var(--card-hover-dark);
}

.option-row:hover .option-image .overlay,
.option-row.is-active .option-image .overlay,
.option-row.is-active .option-card.image-card .overlay {
  background: rgba(0, 0, 0, 0.55);
}

.option-row:hover .option-image .icons,
.option-row.is-active .option-image .icons,
.option-row.is-active .option-card.image-card .icons {
  opacity: 1;
  transform: translateY(0);
}


/* BTN */

/* =======================
   Button mit Expand-Effekt
   ======================= */
.expand-btn {
  align-self: flex-end;
  transform: translateX(-25%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1.6rem;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: var(--ink-h);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Text anfangs unsichtbar, nur Icon sichtbar */
.expand-btn .btn-text {
  opacity: 0;
  max-width: 0;
  transform: translateX(-10px);
  white-space: nowrap;
  transition: all 0.4s ease;
}

/* Icon bleibt sichtbar */
.expand-btn .btn-icon {
  font-size: 1.3rem;
  transition: transform 0.4s ease;
}

/* Align expand button with left text edge inside Options cards */
.options-section .option-card .expand-btn{
  align-self: flex-start;
  transform: none;          /* cancel previous translateX */
  margin-left: 0;           /* ensure no extra offset */
}

/* Hover / Card-Hover aktiviert Textausfahrt */
.option-row:hover .expand-btn,
.option-row.is-active .expand-btn {
  background: var(--card-hover-text);
  color: var(--card-hover-dark);
  padding: 0 1.8rem;
}

.option-row:hover .expand-btn .btn-text,
.option-row.is-active .expand-btn .btn-text {
  opacity: 1;
  max-width: 160px;
  transform: translateX(0);
}

.option-row:hover .expand-btn .btn-icon,
.option-row.is-active .expand-btn .btn-icon {
  transform: translateX(4px);
}
/* ============================
   ICON-STYLES (statt Emojis)
   ============================ */

/* Icons innerhalb der Cards (Overlay) */
.option-image .icons img,
.option-card.image-card .icons img {
  width: 55px;             /* gleiche Größe wie frühere Emojis */
  height: 55px;
  object-fit: contain;
  display: block;
  padding: 6px;
  border-radius: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* optional: etwas kleiner auf Mobile */
@media (max-width: 900px) {
  .option-image .icons img,
  .option-card.image-card .icons img {
    width: 36px;
    height: 36px;
    padding: 5px;
  }
}

/* ============================
   BUTTON-PFEIL (SVG)
   ============================ */

.expand-btn .btn-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex-shrink: 0;
  display: block;
}

/* =======================
   Responsive
   ======================= */

/* =======================
   Optionen – Mobile Optimierung
   ======================= */
@media (max-width: 900px) {
  .options-section {
    padding: clamp(48px, 10vw, 80px) 0;
  }

  .options-section .options-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    margin-bottom: clamp(32px, 6vw, 48px);
    text-align: center;
  }

  .options-section .container {
    width: min(94%, 640px);
  }

  .option-row {
    flex-direction: column !important;
    gap: clamp(20px, 4vw, 30px);
    min-height: auto;
  }

  .option-card,
  .option-image,
  .option-card.image-card {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 360px;
  }

  .option-image {
    order: -1;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  .option-card {
    padding: clamp(20px, 5vw, 28px);
    border-radius: 12px;
  }

  .option-card h3 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    line-height: 1.25;
  }

  .option-card p {
    font-size: clamp(0.95rem, 4vw, 1rem);
    line-height: 1.6;
  }

  .option-card .expand-btn {
    align-self: center;
    margin: 12px auto 0;
    transform: none;
    height: 52px;
    padding: 0 1.8rem;
    font-size: 1rem;
  }

}














/* ===== FAQ (scoped) ===== */
.faq{
  --faq-ink: #0f1115;
  --faq-muted:#5d616a;
  --faq-border: rgba(15,17,21,.08);
  --faq-hover:#1b1f24;
  --faq-accent:#3aa6a0;

  background:transparent;
  color:var(--faq-ink);
  padding: clamp(40px, 6vw, 96px) 0;
}
.faq__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}
.faq__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.9rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--faq-muted);
}
.faq__eyebrow::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--faq-ink);
  display:inline-block;
}
.faq__title{
  font-family: "Kaisei Tokumin", serif;
  font-weight:400;
  line-height:1.05;
  letter-spacing:-.01em;
  margin: 12px 0 32px;
  font-size: var(--fs-h1);
}

.faq__list{
  margin: 16px 0 0;
  padding: 0;
  list-style:none;
}
.faq__item{
  border-bottom:1px solid var(--faq-border);
}

.faq__question{
  width:100%;
  background:none;
  border:0;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: clamp(16px, 2.2vw, 22px) 0;
  font: inherit;
  color: var(--faq-ink);
  cursor:pointer;
  transition: transform .22s ease, color .22s ease;
  will-change: transform, color;
}
.faq__question:hover{
  color:var(--faq-hover);
  transform: translateX(10px);
}
.faq__question:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--faq-accent) 60%, #fff);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Plus/Minus Icon */
.faq__icon{
  flex:0 0 auto;
  width:34px; height:34px;
  border-radius:50%;
  background: #f4f6f8;
  position:relative;
  transition: background .2s ease, transform .2s ease;
}
.faq__question:hover .faq__icon{ background:#eef2f4; }
.faq__icon::before,
.faq__icon::after{
  content:"";
  position:absolute;
  top:50%; left:50%;
  width:14px; height:2px;
  background:#0f1115;
  transform: translate(-50%,-50%);
  border-radius:2px;
}
.faq__icon::after{ /* vertikaler Strich → Plus */
  transform: translate(-50%,-50%) rotate(90deg);
}
.faq__question[aria-expanded="true"] .faq__icon::after{
  opacity:0; /* wird zu Minus */
}
.faq__question[aria-expanded="true"] .faq__icon{
  background:#e9f5f3;
}

/* Antwort mit sanfter Höhen-Animation */
.faq__answer{
  overflow:hidden;
  max-height:0;
  transition: max-height .28s ease;
  will-change: max-height;
}
.faq__answer p{
  color:var(--faq-muted);
  line-height:1.7;
  margin: 0 0 clamp(16px,2vw,18px);
  padding-right: clamp(8px,2vw,12px);
  /* zusätzlicher Innenabstand oberhalb */
  padding-top: 4px;
}

/* Offen-State (per JS) */
.faq__item.is-open .faq__answer{
  /* max-height wird inline vom Script gesetzt; diese Klasse dient nur als Hook */
}

/* FAQ Footnote */
.faq__footnote{
  margin: clamp(14px, 2.2vw, 20px) 0 0;
  color: var(--faq-muted);
  line-height: 1.65;
  font-size: .95rem;
}

.faq__footnote a{
  color: var(--faq-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color .2s ease, border-color .2s ease;
}

.faq__footnote a:hover{
  color: var(--faq-ink);
  border-bottom-color: transparent;
}


/* kleinere Screens */
@media (max-width: 640px){
  .faq__title{ font-size: clamp(1.8rem, 8vw, 2.4rem); }
}



/* Google Bewertungen - Bänder */


.reviews-marquee{
  --gap: 18px;
  --card-w: 300px;
  --card-h: 200px;
  --duration: 40s;  
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}

.reviews-marquee{
  /* Stelle hier deine Wunschbreite ein */
  --belt-max: 1200px;
  width: min(100%, var(--belt-max));
  margin-inline: auto;
  position: relative;
  padding-inline: clamp(12px, 3vw, 24px);
}

.reviews-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.reviews-score {
  text-align: center;
  margin-bottom: .5rem;
}

.reviews-score .score-value {
  font-size: clamp(2.4rem, 6vw, 3rem);
  font-weight: 700;
  color: #3c3c3c;
}

.reviews-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews-eyebrow {
  margin-top: 4px;
  font-size: .95rem;
  color: #555;
}

.reviews-score .score-value {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.reviews-eyebrow {
  margin: 0;
  font-size: .95rem; /* Eyebrow-Style */
  letter-spacing: .02em;
  opacity: .85;
  display: inline-flex;
  gap: .5rem;
}

.reviews-stars {
  letter-spacing: .15em;
  color: #f5a623; /* Stern-Gelb */
}
.reviews-marquee .container h2{
  color: #3c3c3c;
  text-align:center;
  margin:0 0 20px; 
  font-size: clamp(1.6rem, 3.0vw, 2.5rem);
  font-family: "Kaisei Tokumin", serif !important;
}

/* Eine „Belt“-Zeile */
.reviews-marquee .belt{ 
  position:relative; 
  height:var(--card-h); 
  overflow:hidden; }

/* === WICHTIG: Track hat KEIN gap ===
   Wir fügen A) lane A, B) einen exakten Spacer und C) lane B ein.
   Distanz = Breite(lane A) + Breite(Spacer) → Frame 0 == Frame N → kein Sprung. */
.reviews-marquee .track{
  position:absolute; inset:0 auto 0 0;
  display:flex; align-items:center; height:100%;
  gap: 0;
  will-change: transform;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
.reviews-marquee .track.ready[data-direction="rtl"]{ animation-name: reviews-rtl; animation-duration: var(--duration); }
.reviews-marquee .track.ready[data-direction="ltr"]{ animation-name: reviews-ltr; animation-duration: var(--duration); }

@keyframes reviews-rtl{ from{transform:translate3d(0,0,0);} to{transform:translate3d(calc(-1 * var(--distance)),0,0);} }
@keyframes reviews-ltr{ from{transform:translate3d(calc(-1 * var(--distance)),0,0);} to{transform:translate3d(0,0,0);} }

/* Eine Lane = Reihe Karten mit gap */
.reviews-marquee .lane{ display:flex; gap: var(--gap); }
/* exakter Abstand zwischen Lane A und Lane B (genau = --gap) */
.reviews-marquee .lane-gap{ flex:0 0 var(--gap); width:var(--gap); height:1px; }

/* Karten – harte Breite, keine Margins (sonst Lücken) */
.reviews-marquee .review-card{
  box-sizing: border-box;
  flex: 0 0 var(--card-w);
  min-width: var(--card-w);
  height: var(--card-h);
  margin: 0 !important;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: grid; grid-template-rows: auto 1fr auto; gap:10px;
}
.reviews-marquee .rev-head{display:flex;align-items:center;gap:10px;}
.reviews-marquee .rev-avatar{width:36px;height:36px;border-radius:50%;background:var(--brand,#3aa6a0);color:#fff;display:grid;place-items:center;font-weight:700;}
.reviews-marquee .rev-name{font-weight:700;color:#1f2937;}
.reviews-marquee .rev-date{font-size:12px;color:#6b7280;white-space:nowrap;}
.reviews-marquee .rev-stars{margin-left:auto;font-size:0;white-space:nowrap;}
.reviews-marquee .rev-stars::before{content:"★★★★★"; font-size:14px; color:#fbbf24;}
.reviews-marquee .rev-text{font-size:.95rem;line-height:1.35;color:#374151;}
.reviews-marquee .rev-link{font-size:13px;color:var(--brand,#3aa6a0);font-weight:700;text-decoration:none;}

.reviews-marquee .edge{position:absolute;top:0;bottom:0;width:150px;pointer-events:none;z-index:2;}
.reviews-marquee .edge-left{left:0;background:linear-gradient(to right,#fff,transparent);}
.reviews-marquee .edge-right{right:0;background:linear-gradient(to left,#fff,transparent);}

/* Hover → Pause */
.reviews-marquee:hover .track{ animation-play-state: paused; }

/* Motion & Responsive */
@media (prefers-reduced-motion: reduce){ .reviews-marquee .track{ animation:none !important; } }
@media (max-width: 900px){ .reviews-marquee{ --card-w: 280px; --card-h: 200px; } }
@media (max-width: 640px){ .reviews-marquee{ --card-w: 240px; --card-h: 190px; } }


.reviews-marquee .track{
  backface-visibility: hidden;
  transform: translateZ(0); /* verhindert Repaint-Jitter am Loop */
}

.belt + .belt{ margin-top:14px; }

/* Mobile Optimierungen für Reviews */
@media (max-width: 767px){
  .reviews-marquee .container h2{
    font-size: clamp(1.4rem, 5vw, 2rem); /* etwas kleiner für mobile */
    margin-bottom: 16px;
  }
  .reviews-marquee{
    --card-w: 180px;   /* schmaler → 2-3 Karten sichtbar */
    --card-h: 160px;   /* etwas kompakter in der Höhe */
    --gap: 14px;
    padding: 28px 0 40px;
  }
  .reviews-marquee .review-card{
    padding: 10px 12px;
    font-size: .9rem;
  }
  .reviews-marquee .rev-text{
    font-size: .85rem;
    line-height: 1.3;
  }
}



/* Mobile ansichten */

/* === Global Anti-Overflow Guard ======================= */
html, body{
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: clip; 
}
@supports not (overflow: clip){
  html, body{ overflow-x: hidden; } 
}

/* Media-specific: keep everything clipped on smaller screens */
@media (max-width: 1199px){
  html, body{ overflow-x: clip; }
}
@media (max-width: 767px){
  html, body{ overflow-x: clip; }
  /* typical offender: hero content & visual layers */
  .hero{ overflow: hidden; } 
  .feature-hero, .slice-hero{ overflow-x: hidden; }
}

/* Assets safety: prevent media from causing overflow */
img, svg, video{
  max-width: 100%;
  height: auto;
}

/* Generic container safety on small screens */
@media (max-width: 767px){
  header, footer, section, .wrap, .container{
    max-width: 100%;
    overflow-x: hidden;
  }
}







/* =========================
   Kontakt-Teaser (Versicherungen)
   1200px breit (zentriert), 800px hoch
   Bild vollflächig, Panel im rechten Drittel auf dem Bild
   ========================= */
.contact-teaser.contact-teaser--overlay{
  padding: clamp(24px, 4vw, 40px) 0;
}

.contact-teaser.contact-teaser--overlay .ct-wrap{
  position: relative;
  width: min(1175px, 90%) !important;
  height: 650px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

/* Bild nimmt die ganze Fläche der Sektion ein */
.contact-teaser.contact-teaser--overlay .ct-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-teaser.contact-teaser--overlay .ct-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Farbpanel obenauf, im rechten Drittel, mit Abstand zum Rand */
.contact-teaser.contact-teaser--overlay .ct-panel{
  position: absolute;
  top: clamp(45px, 2.5vw, 45px);
  right: clamp(45px, 5.2vw, 40px);
  bottom: clamp(45px, 2.5vw, 45px);

  width: 50%; 
  min-width: 420px;
  max-width: 600px;

  background: var(--ct-bg, #b1d7d6);
  color: var(--ct-ink, #1f6e6a);
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
  padding: clamp(24px, 4vw, 48px);
  z-index: 2;
  box-shadow: none;
  outline: 1px solid rgba(0,0,0,.06); 

  /* Hinzugefügt: Grid-Layout für Panel */
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: start;
  justify-items: start;
}

/* Typo im Panel */
.contact-teaser.contact-teaser--overlay .ct-title{
  margin: 0 0 8px 0;
  font-family: "Kaisei Tokumin", serif !important;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  /* Hinzugefügt: Grid-Alignment */
  align-self: start;
  margin-bottom: 0;
  color: #1f6e6a;
}
.contact-teaser.contact-teaser--overlay .ct-lead{
  margin: 0 0 clamp(16px, 2.4vw, 22px) 0;
  font-weight: 300;
  line-height: 1.65;
  color: #1f6e6a;
  max-width: 46ch;
  /* Hinzugefügt: Grid-Alignment */
  align-self: end;
  margin: 0 0 10px 0;
}
/* Button-Styles für Kontakt-Teaser */
.contact-teaser.contact-teaser--overlay .ct-btn{
  align-self: end;
  display: inline-block;
  background: #1f6e6a;
  color: #b1d7d6;
  text-decoration: none;
  font-weight: 200;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-teaser.contact-teaser--overlay .ct-btn:hover{
  background: #2f918b;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}

/* =====================================================
   MOBILE – bis 900px
   Bild oben, Card unten, beide 94% breit, zentriert
   ===================================================== */
@media (max-width: 900px) {

  /* Wrapper komplett neutralisieren */
  .contact-teaser.contact-teaser--overlay .ct-wrap {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 20px !important;
    height: auto !important;
    overflow: visible !important;
    border-radius: 0 !important;
  }

  /* Bild */
  .contact-teaser.contact-teaser--overlay .ct-media {
    width: 94% !important;
    margin: 0 auto !important;
    height: auto !important;
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .contact-teaser.contact-teaser--overlay .ct-media img {
    width: 100% !important;
    height: 220px !important; /* Höhe wie gewünscht kleiner */
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  /* Card */
  .contact-teaser.contact-teaser--overlay .ct-panel {
    width: 94% !important;
    max-width: 94% !important;
    min-width: unset !important;

    position: relative !important;
    inset: auto !important;

    background: var(--ct-bg, #b1d7d6) !important;
    border-radius: 12px !important;

    margin: 0 auto !important;
    padding: 24px 28px !important;
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-rows: auto auto auto !important;
    gap: 16px !important;
  }
}


/* =====================================================
   TABLET – 900px bis 1200px
   Bild oben 94%, Card unten 94%, gleichbreit
   ===================================================== */
@media (min-width: 901px) and (max-width: 1200px) {

  .contact-teaser.contact-teaser--overlay .ct-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 28px !important;
    height: auto !important;
  }

  /* Bild */
  .contact-teaser.contact-teaser--overlay .ct-media {
    width: 94% !important;
    margin: 0 auto !important;
    height: auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .contact-teaser.contact-teaser--overlay .ct-media img {
    width: 100% !important;
    height: 260px !important; /* Tablet etwas höher */
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  /* Card */
  .contact-teaser.contact-teaser--overlay .ct-panel {
    width: 94% !important;
    max-width: 94% !important;
    min-width: unset !important;

    position: relative !important;
    inset: auto !important;

    border-radius: 16px !important;
    padding: 32px !important;
    margin: 0 auto !important;
  }
}




/* BTN */

/* === Unified Button Arrow Animation (global) === */
.btn-outline,
.more-btn,
.ct-btn,
.srv-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 56px 14px 28px; /* Platz für Pfeil */
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.btn-outline .cta-arrow,
.more-btn .cta-arrow,
.ct-btn .cta-arrow,
.srv-link .cta-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(0,-50%);
  opacity: 1;
  transition: opacity .2s ease;
  pointer-events: none;
}

/* Hover-Animation des Pfeils */
.btn-outline:hover .cta-arrow,
.more-btn:hover .cta-arrow,
.ct-btn:hover .cta-arrow,
.srv-link:hover .cta-arrow {
  animation: cta-arrow-loop .45s cubic-bezier(.22,.8,.25,1) both;
}

@keyframes cta-arrow-loop {
  0%   { transform: translate(0,-50%);   opacity: 1; }
  40%  { transform: translate(10px,-70%); opacity: 0; } /* raus */
  50%  { transform: translate(-12px,-30%); opacity: 0; } /* umsetzen */
  100% { transform: translate(0,-50%);    opacity: 1; }  /* rein */
}

/* Bewegungsreduktion respektieren */
@media (prefers-reduced-motion: reduce){
  .btn-outline:hover .cta-arrow,
  .more-btn:hover .cta-arrow,
  .ct-btn:hover .cta-arrow,
  .srv-link:hover .cta-arrow{
    animation: none;
  }
}





