/* =========================================================
   Lernkompass – COMPLETE CSS (Pastell-Theme Update)
   - Neues Farbdesign: warmes Creme/Beige, weiches Teal, warmes Orange
   - Brand-Orange bleibt als Akzent, wirkt aber “sanfter”
   ========================================================= */

/* =========================
   THEME TOKENS (NEU)
   ========================= */
:root{
  /* Brand */
  --brand: #047FA7;
  --brand-2: #02688D;
  --brand-3: #16A0C2;

  /* Accents */
  --leaf: #37A068;
  --mint: #69D58E;
  --lime: #AED661;

  --sun: #EBD570;
  --sun-2: #CBD234;

  /* Surfaces */
  --bg: #E6EFEB;
  --paper: #E6EFEB;
  --card: #FFFFFF;

  /* Lines */
  --border: #CFDBDB;
  
    /* Radius */
  --r-sm: 14px;
  --r-md: 16px;
  --r-lg: 18px;

  /* Text */
  --text: #0F172A;
  --text-muted: rgba(15,23,42,0.75);

  /* Shadows (passt zu deinem Stil) */
  --shadow: 0 18px 50px rgba(15,23,42,0.08);

  /* Helpers */
  --white: #ffffff;
  --muted: rgba(15,23,42,0.72);

  /* Warm Accent (aus dem Logo – Kompass/Sonne) */
  --accent: #EBD570;
  --accent-2: #CBD234;
  --accent-soft: rgba(235,213,112,0.22);
}

html, body{
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Optional: global background */
body{
  background: var(--paper);
  color: var(--text);
}

/* =========================
   HERO (clean: topcenter + mock)
   ========================= */

.hero{
  position: relative;
  height: 100dvh;
  overflow: hidden;
}

.hero__slides{
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide{
  position: absolute;
  inset: 0;
  background: var(--bg) center / cover no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 900ms ease, visibility 0s linear 700ms;
}

.hero__slide.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transform: scale(1);
  transition: opacity 700ms ease, transform 900ms ease;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 35%, rgba(255,255,255,0.12), rgba(255,255,255,0) 60%),
    linear-gradient(90deg, rgba(15,23,42,.35), rgba(15,23,42,.08));
}

/* Base container used by topcenter/mock */
.hero__content{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Badge */
.hero__badge{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.78);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,23,42,0.10);
}

/* Logo */
.hero__logo{
  display: block;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.18));
}

/* Extra big logo (Slide 1) */
.hero__logo--big{
  width: clamp(260px, 22vw, 440px);
  margin: 10px auto 6px;
}

/* Typography (shared) */
.hero__title{
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: clamp(34px, 3.2vw, 52px);
}

.hero__subtitle{
  margin: 0;
  line-height: 1.55;
  font-size: clamp(15px, 1.2vw, 18px);
  opacity: .95;
}

.hero__subtitle--small{
  font-size: clamp(14px, 1.05vw, 16px);
  opacity: .9;
  max-width: 52ch;
}

.hero__actions{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Slide 1: TOPCENTER (alles untereinander mittig)
   ========================= */
.hero__content--topcenter{
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 0 18px;
}

.hero__content--topcenter .hero__title{
  color: rgba(255,255,255,0.96);
font-size: clamp(44px, 5.2vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: 0 16px 46px rgba(0,0,0,.42);
}

.hero__content--topcenter .hero__subtitle{
  color: rgba(255,255,255,0.92);
 font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.5;
  text-shadow: 0 12px 34px rgba(0,0,0,.35);
}

/* =========================
   Slides 2/3: MOCK (Text frei auf Bild + Bullets)
   ========================= */
.hero__content--mock{
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-top: clamp(40px, 6vh, 90px);
  color: #fff;
}

.hero__content--mock h2{
  margin: 0 0 10px 0;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: 0 16px 46px rgba(0,0,0,.42);
  max-width: 18ch;
}

.hero__content--mock p{
  margin: 0 0 16px 0;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.5;
  opacity: 0.95;
  text-shadow: 0 12px 34px rgba(0,0,0,.35);
  max-width: 52ch;
}

.hero__content--mock .hero__actions{
  margin: 4px 0 14px 0;
  justify-content: flex-start;
}

/* Bullets */
.hero__bullets{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 12px;
}

.hero__bullets li{
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.96);
  font-weight: 800;
}

.hero__bullets li::before{
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(4,127,167,0.92);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.25),
    0 0 0 4px rgba(4,127,167,0.18);
  font-size: 14px;
  line-height: 1;
}

/* =========================
   Dots
   ========================= */
.hero__dots{
  position: absolute;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.45);
  cursor: pointer;
}

.hero__dot.is-active{
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.95);
}

/* =========================
   Mobile: kompakter Hero
   - Slide 2/3 nutzen mobil Bild von Slide 1
   - Mock-Card kleiner und kompakter
   ========================= */
@media (max-width: 900px){
  /* Mobile: Slide 2 + 3 bekommen das gleiche Bild wie Slide 1 */
  .hero__slide:nth-child(2),
  .hero__slide:nth-child(3){
    background-image: url("assets/1.png") !important;
  }

  .hero__dots{
    bottom: 42px;
  }

  /* Slide 1: etwas kompakter */
  .hero__content--topcenter{
    gap: 6px;
    padding: 0 16px;
  }

  .hero__logo.hero__logo--big{
    width: clamp(220px, 52vw, 360px);
    height: auto;
    transform: none;
    filter: drop-shadow(0 18px 46px rgba(0,0,0,.20));
  }

  .hero__title{
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1;
  }

  .hero__subtitle{
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__subtitle--small{
    font-size: 13px;
    line-height: 1.35;
  }

  /* Slides 2/3: kompakte Card */
  .hero__content--mock{
    min-height: unset;
    padding-top: 0;

    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    width: fit-content;
    max-width: calc(100% - 28px);

    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(15,23,42,0.10);
    box-shadow: 0 12px 34px rgba(15,23,42,0.14);

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 84px;
  }

  .hero__content--mock h2{
    margin: 0;
    font-size: clamp(24px, 6.4vw, 40px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    max-width: 8ch;
  }

  .hero__content--mock p{
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    max-width: 24ch;
  }

  .hero__content--mock h2,
  .hero__content--mock p,
  .hero__bullets li{
    color: rgba(15,23,42,0.90);
    text-shadow: none;
  }

  .hero__content--mock .hero__actions{
    justify-content: flex-start;
    margin: 4px 0 0;
    width: 100%;
  }

  .hero__content--mock .btn{
    width: 100%;
    min-width: 0;
    padding: 13px 16px;
    font-size: 14px;
  }

  /* Bullets auf Mobile ausblenden */
  .hero__bullets{
    display: none;
  }
}

/* =========================
   BOTTOM NAV (Pastell Update)
   ========================= */
.bottomnav{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: var(--r-lg);
  z-index: 50;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);

transition:
  background .25s ease,
  border-color .25s ease,
  box-shadow .25s ease;
}

.bottomnav__links{
  display: flex;
  gap: 8px;
  align-items: center;
}

.bottomnav a{
  color: rgba(255,255,255,.94);
  text-decoration: none;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background .2s ease;
  font-size: 14px;
}
.bottomnav a:hover{
  background: rgba(255,255,255,.14);
}

/* Active nav item underline (weiß) */
.bottomnav a.is-active,
.bottomnav a[aria-current="page"],
.bottomnav a[aria-current="true"]{
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255,255,255,0.95); /* <-- weiß */
}

/* default (nicht sticky): brand underline */
.bottomnav:not(.is-sticky) a[aria-current="page"]{
  text-decoration-color: var(--brand-2);
}

/* sticky: weiß underline */
.bottomnav.is-sticky a[aria-current="page"]{
  text-decoration-color: rgba(255,255,255,0.95);
}

/* optional: leichte Hervorhebung */
.bottomnav a[aria-current="page"],
.bottomnav a.is-active{
  background: rgba(255,255,255,0.10);
}

/* Hover */
.bottomnav a:hover{
  text-decoration-thickness: 2px;
}

/* Sticky Navbar bleibt blau (wie bei dir) */
.bottomnav.is-sticky{
  position: fixed;
  left: 50%;
  top: 12px;
  bottom: auto;
  transform: translateX(-50%);
  padding: 10px 12px;
  border-radius: var(--r-lg);

  background: linear-gradient(90deg, rgba(4,127,167,0.92), rgba(2,104,141,0.88));
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 12px 34px rgba(15,23,42,0.22);
}

/* =========================
   BOTTOM NAV — Mobile Dropdown (Overrides only)
   ========================= */
.bottomnav__brand,
.bottomnav__toggle{ display: none; } /* Desktop: versteckt */

@media (max-width: 720px){

  /* Topbar */
  .bottomnav{
    position: fixed;
    left: 12px;
    right: 12px;
    top: 12px;
    bottom: auto;
    transform: none;

    justify-content: space-between;
    gap: 10px;

    padding: 10px 12px;
    border-radius: 18px;

    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15,23,42,0.10);
    box-shadow: 0 14px 44px rgba(15,23,42,0.16);
    backdrop-filter: blur(14px);
  }

  /* Sticky bleibt blau, Größe bleibt identisch */
  .bottomnav.is-sticky{
    left: 12px;
    right: 12px;
    top: 12px;
    transform: none;
    padding: 10px 12px;
    border-radius: 18px;
  }

  /* Brand sichtbar */
  .bottomnav__brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
  }

  .bottomnav__brandLogo{
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.12));
  }

  .bottomnav__brandText{
    font-weight: 900;
    letter-spacing: -0.01em;
    font-size: 14px;
    color: rgba(15,23,42,0.92);
    white-space: nowrap;
  }

  /* Wenn sticky/blau: Brand Text hell */
  .bottomnav.is-sticky .bottomnav__brandText{
    color: rgba(255,255,255,0.92);
  }

  /* Toggle sichtbar */
  .bottomnav__toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,0.10);
    background: rgba(255,255,255,0.60);
    cursor: pointer;
    transition: transform .12s ease, background .2s ease, border-color .2s ease;
  }

  .bottomnav__toggle:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,0.78);
    border-color: rgba(15,23,42,0.14);
  }

  .bottomnav.is-sticky .bottomnav__toggle{
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.22);
  }

  /* Burger Icon */
  .bottomnav__burger{
    width: 18px;
    height: 2px;
    background: rgba(15,23,42,0.85);
    border-radius: 999px;
    position: relative;
    display: block;
  }
  .bottomnav__burger::before,
  .bottomnav__burger::after{
    content:"";
    position:absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: rgba(15,23,42,0.85);
    border-radius: 999px;
    transition: transform .18s ease, top .18s ease, opacity .18s ease;
  }
  .bottomnav__burger::before{ top: -6px; }
  .bottomnav__burger::after{ top: 6px; }

  /* Sticky/blau: Burger hell */
  .bottomnav.is-sticky .bottomnav__burger,
  .bottomnav.is-sticky .bottomnav__burger::before,
  .bottomnav.is-sticky .bottomnav__burger::after{
    background: rgba(255,255,255,0.92);
  }

  /* Open anim: X */
  .bottomnav.is-open .bottomnav__burger{ background: transparent; }
  .bottomnav.is-open .bottomnav__burger::before{ top: 0; transform: rotate(45deg); }
  .bottomnav.is-open .bottomnav__burger::after{ top: 0; transform: rotate(-45deg); }

  /* Links werden Dropdown Panel */
  .bottomnav__links{
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);

    display: grid;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;

    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15,23,42,0.10);
    box-shadow: 0 20px 60px rgba(15,23,42,0.18);
    backdrop-filter: blur(14px);

    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .bottomnav.is-open .bottomnav__links{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Links im Dropdown */
  .bottomnav__links a{
    color: rgba(15,23,42,0.90);
    font-size: 14px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(248,246,240,0.70);
    border: 1px solid rgba(15,23,42,0.06);
  }

  .bottomnav__links a:hover{
    background: rgba(4,127,167,0.10);
    border-color: rgba(4,127,167,0.18);
  }

  /* Active state mobile */
  .bottomnav__links a[aria-current="page"],
  .bottomnav__links a.is-active{
    text-decoration: none;
    background: rgba(4,127,167,0.12);
    border-color: rgba(4,127,167,0.22);
  }
}

@media (max-width: 720px){
  .bottomnav__links{ display:none; }
  .bottomnav.is-open .bottomnav__links{ display:grid; }
}

/* =========================
   BOTTOM NAV – Mobile Brand + Dropdown (Slide Down)
   ========================= */

.bottomnav__brand{ display:none; } /* Desktop: aus */

/* Mobile Layout */
@media (max-width: 720px){
  .bottomnav{
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;

    padding: 10px 12px;
  }

  /* Brand block */
  .bottomnav__brand{
    display:flex;
    align-items:center;
    gap: 10px;
    text-decoration:none;
    color: rgba(255,255,255,0.95);
    min-width: 0; /* wichtig für ellipsis */
  }

  .bottomnav__brandLogo{
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
  }

  .bottomnav__brandText{
    display:grid;
    gap: 1px;
    min-width: 0;
    line-height: 1.1;
  }

  .bottomnav__brandTitle{
    font-weight: 950;
    letter-spacing: -0.01em;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bottomnav__brandSub{
    font-weight: 800;
    font-size: 11px;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Toggle button */
  .bottomnav__toggle{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
  }

  .bottomnav__toggle:hover{ transform: translateY(-1px); }
  .bottomnav__toggle:active{ transform: translateY(0); }

  /* Burger (3 Linien) */
  .bottomnav__burger{
    position: relative;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.92);
    border-radius: 999px;
    transition: background .2s ease;
  }
  .bottomnav__burger::before,
  .bottomnav__burger::after{
    content:"";
    position:absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.92);
    border-radius: 999px;
    transition: transform .22s ease, top .22s ease, opacity .2s ease;
  }
  .bottomnav__burger::before{ top: -6px; }
  .bottomnav__burger::after{ top: 6px; }

  /* Open -> X */
  .bottomnav.is-open .bottomnav__burger{ background: transparent; }
  .bottomnav.is-open .bottomnav__burger::before{
    top: 0;
    transform: rotate(45deg);
  }
  .bottomnav.is-open .bottomnav__burger::after{
    top: 0;
    transform: rotate(-45deg);
  }

  /* Links container becomes dropdown */
  .bottomnav__links{
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;

    /* closed state */
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    pointer-events: none;

    transition:
      max-height .35s cubic-bezier(.22,.61,.36,1),
      opacity .22s ease,
      transform .22s ease;
  }

  /* open state */
  .bottomnav.is-open .bottomnav__links{
    max-height: 520px;          /* groß genug für alle Links */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 8px;
  }

  /* Link styling in dropdown */
  .bottomnav__links a{
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
  }
  .bottomnav__links a:hover{
    background: rgba(255,255,255,0.14);
  }
}

/* Mobile: Toggle/Icon dark (damit es auf hellem Glas sichtbar ist) */
@media (max-width: 720px){
  .bottomnav__toggle{
    border-color: rgba(15,23,42,0.14);
    background: rgba(255,255,255,0.65);
  }

  .bottomnav__burger,
  .bottomnav__burger::before,
  .bottomnav__burger::after{
    background: rgba(15,23,42,0.92); /* schwarz/dunkel */
  }

  /* Optional: Hover etwas klarer */
  .bottomnav__toggle:hover{
    background: rgba(255,255,255,0.78);
    border-color: rgba(15,23,42,0.20);
  }
}

/* =========================
   ABOUT (Bild links, Text rechts) – KOMPAKT (Desktop + Mobile)
   ========================= */
.about{
  background: var(--paper);
  padding: 56px 20px; /* kleiner als vorher */
}

.about__wrap{
  max-width: 1000px; /* kleiner als 1100 */
  margin: 0 auto;
}

.about__grid{
  display: grid;
  grid-template-columns: 360px 1fr; /* Bildspalte kleiner */
  gap: 14px;                        /* enger */
  align-items: stretch;             /* beide Cards gleich hoch */
}
.about__quote{
  font-style: italic;
  color: rgba(15,23,42,0.78);
  line-height: 1.65;
  padding-left: 14px;
  border-left: 3px solid rgba(4,127,167,0.35); /* brand */
  margin: 0; /* damit es nicht extra Abstand macht */
}

.about__quote::before{
  content: "„";
  margin-right: 4px;
  color: rgba(4,127,167,0.55);
  font-weight: 900;
}
.about__quote::after{
  content: "“";
  margin-left: 4px;
  color: rgba(4,127,167,0.55);
  font-weight: 900;
}

/* =========================
   Bild-Card
   ========================= */
.about__mediaCard{
  background: rgba(255,255,255,0.70);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
  border: 1px solid rgba(15,23,42,0.08);
  backdrop-filter: blur(10px);

  height: 100%;
  max-height: 680px; /* Desktop-Limit gegen „zu groß“ */
  display: flex;
  flex-direction: column;
}

.about__media{
  width: 100%;
  background: rgba(15,23,42,0.04);
  flex: 1;
  min-height: 0; /* wichtig, damit flex korrekt funktioniert */
}

.about__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__slogan{
  padding: 10px 12px; /* kompakter */
  text-align: center;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: 0.2px;
  background: rgba(242,239,233,0.55);
  border-top: 1px solid rgba(15,23,42,0.06);
  line-height: 1.25;
  font-size: 13px;
}

/* =========================
   Text-Card
   ========================= */
.about__card{
  position: relative;
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  padding: 16px; /* fix: nicht auto */
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

/* Blob oben rechts */
.about__card::after{
  content:"";
  position:absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  background: rgba(4,127,167,0.12);
  border-radius: 58% 42% 55% 45% / 45% 58% 42% 55%;
  transform: rotate(10deg);
  pointer-events: none;
}

/* Inhalt über Blob */
.about__header,
.about__text,
.about__actionsCard{
  position: relative;
  z-index: 1;
}

.about__header h2{
  margin: 0 0 6px 0;
  font-size: clamp(22px, 2.2vw, 30px); /* kompakter */
  letter-spacing: -0.02em;
  color: var(--text);
}

.about__lead{
  margin: 0;
  color: rgba(15,23,42,0.84);
  line-height: 1.55;
  font-size: 14px;
  max-width: 85ch;
}

/* Textblöcke enger + keine "Verteilung" über die Card-Höhe */
.about__text{
  margin-top: 8px;
  display: grid;
  gap: 6px;
  align-content: start;
  grid-auto-rows: min-content;
  max-width: 95ch;
}

.about__text p{
  margin: 0;
  line-height: 1.55;
  color: rgba(15,23,42,0.80);
  font-size: 14px;
}

/* Actions-Card unten */
.about__actionsCard{
  margin-top: auto;
  padding: 14px; /* kompakter */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 16px;
  background: rgba(242,239,233,0.65);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 14px 40px rgba(15,23,42,0.06);
  overflow: hidden;
}

.about__actionsBlob{
  position: absolute;
  right: -60px;
  top: -60px;
  width: 190px;
  height: 170px;
  background: rgba(4,127,167,0.14);
  border-radius: 58% 42% 55% 45% / 45% 58% 42% 55%;
  transform: rotate(10deg);
  pointer-events: none;
}

.about__actionsCard .btn{
  position: relative;
  z-index: 1;
  min-width: 200px; /* vorher 220 */
  justify-content: center;
  border-radius: var(--r-md);
  padding: 11px 14px;
}

.about__actionsCard .btn--ghost{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.12);
  color: rgba(15,23,42,0.92);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .about{
    padding: 44px 16px;
  }

  .about__wrap{
    max-width: 1100px;
  }

  .about__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about__mediaCard{
    max-height: 520px;
    overflow: hidden;
    padding: 12px;
  }

  .about__media{
    aspect-ratio: auto;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about__media img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 720px){
  .about{
    padding: 34px 14px;
  }

  .about__mediaCard,
  .about__card{
    border-radius: 16px;
  }

  .about__mediaCard{
    max-height: 420px;
    padding: 10px;
  }

  .about__media{
    aspect-ratio: auto;
    height: 420px;
  }

  .about__card{
    padding: 14px;
  }

  .about__header h2{
    font-size: 22px;
  }

  .about__lead,
  .about__text p{
    font-size: 14px;
    line-height: 1.55;
  }

  .about__actionsCard{
    margin-top: 14px;
    padding: 12px;
    gap: 10px;
    justify-content: stretch;
  }

  .about__actionsCard .btn{
    width: 100%;
    min-width: 0;
  }

  .about__media img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 420px){
  .about__mediaCard{
    max-height: 340px;
    padding: 8px;
  }

  .about__media{
    aspect-ratio: auto;
    height: 340px;
  }

  .about__media img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

/* ===== Referenzen Layout im Dialog ===== */
.modal__intro{
  margin: 0 0 12px 0;
}

.refs-grid{
  display: grid;
  gap: 10px;
}

/* Ein Item: links Bild, rechts Titel */
.refs-item{
  width: 100%;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;

  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 16px;
  padding: 10px;

  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.refs-item:hover{
  transform: translateY(-1px);
  border-color: rgba(4,127,167,0.28);
  box-shadow: 0 14px 34px rgba(15,23,42,0.10);
}

.refs-thumb{
  width: 110px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(230,239,235,0.6);
  display: block;
}

.refs-title{
  font-weight: 900;
  color: rgba(15,23,42,0.88);
  line-height: 1.25;
  font-size: 14px;
}

/* Mobile: untereinander, Bild oben, Text unten */
@media (max-width: 520px){
  .refs-item{
    grid-template-columns: 1fr;
  }
  .refs-thumb{
    width: 100%;
    height: 160px;
  }
}

/* ===== Zoom Dialog ===== */
.modal--zoom{
  width: min(980px, calc(100% - 24px));
}

.modal__card--zoom{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(15,23,42,0.28);
  overflow: hidden;
  position: relative;
  padding: 10px;
}

.modal__close--zoom{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}

.refs-zoomimg{
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  background: rgba(230,239,235,0.35);
}

/* =========================
   MODAL (Refs) – passend zum Website-Design
   nutzt: --brand, --paper, --white, --text
   ========================= */

/* Dialog itself */
.modal{
  width: min(760px, calc(100% - 24px));
  border: 0;
  padding: 0;
  background: transparent;
}

/* Backdrop */
.modal::backdrop{
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(6px);
}

/* Card */
.modal__card{
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(15,23,42,0.28);
  overflow: hidden;
}

/* Blob oben rechts */
.modal__card::after{
  content:"";
  position:absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 200px;
  background: rgba(4,127,167,0.14);
  border-radius: 58% 42% 55% 45% / 45% 58% 42% 55%;
  transform: rotate(10deg);
  pointer-events: none;
}

/* Head */
.modal__head{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 16px;
  background: rgba(242,239,233,0.65);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.modal__head h3{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.92);
}

/* Close button */
.modal__close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  font-weight: 900;
  color: rgba(15,23,42,0.85);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.modal__close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 10px 22px rgba(15,23,42,0.10);
}

/* Body */
.modal__body{
  position: relative;
  z-index: 1;
  padding: 16px 16px 10px;
  color: rgba(15,23,42,0.82);
  line-height: 1.7;
  font-size: 14px;
}

.modal__body p{
  margin: 0 0 10px 0;
}

/* List */
.modal__list{
  margin: 10px 0 0 18px;
  padding: 0;
  line-height: 1.75;
  color: rgba(15,23,42,0.80);
}
.modal__list li{
  margin: 6px 0;
}

/* Note */
.modal__note{
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(235,213,112,0.18);
  border: 1px solid rgba(203,210,52,0.26);
  color: rgba(15,23,42,0.84);
}

/* Actions */
.modal__actions{
  position: relative;
  z-index: 1;
  padding: 12px 16px 16px;
  display:flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.60);
}

/* Focus ring */
.modal button:focus-visible{
  outline: 3px solid rgba(4,127,167,0.30);
  outline-offset: 2px;
}

/* Mobile */
@media (max-width: 560px){
  .modal__actions{
    justify-content: stretch;
  }
  .modal__actions .btn{
    width: 100%;
  }
}

/* =========================
   OFFERS (Angebote) – Website Design
   ========================= */

.offers{
  background: var(--paper);
  padding: 76px 20px;
}

.offers__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.offers__head{
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.offers__head h2{
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--text);
}

.offers__head p{
  margin: 0;
  color: rgba(15,23,42,0.82);
  line-height: 1.6;
  max-width: 80ch;
}

.offers__grid{
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(3, minmax(0,1fr));
   align-items: stretch;
}

/* Card */
.offer-card{
  position: relative;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offer-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(15,23,42,0.12);
  border-color: rgba(15,23,42,0.12);
}

.offer-card h3{
  margin: 0 0 8px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.92);
  position: relative;
  z-index: 2;
}

.offer-card p{
  margin: 0 0 12px 0;
  color: rgba(15,23,42,0.78);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  max-width: 60ch;
}

.offer-card ul{
  margin: 0 0 14px 18px;
  padding: 0;
  color: rgba(15,23,42,0.78);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.offer-card__list{ /* falls du die Klasse nutzt */
  margin: 0 0 14px 18px;
  padding: 0;
  color: rgba(15,23,42,0.78);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Actions */
.offer-card__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: auto;          /* schiebt Actions nach unten */
  padding-top: 14px;         /* kleiner Abstand zum Inhalt */
}

/* Buttons (nur falls du sie hier gezielt „verstärken“ willst) */
.offers .btn{
  font-weight: 800;
  border-radius: 16px;
}

.offers .btn--primary{
  box-shadow: 0 14px 34px rgba(4,127,167,0.22);
}

.offers .btn--ghost{
  background: rgba(242,239,233,0.72);
  border: 1px solid rgba(15,23,42,0.10);
  color: rgba(15,23,42,0.90);
}

/* =========================
   BLOBS – “random” Positionen
   (wir nutzen EIN Blob-SVG, aber verteilen Position/Größe/Opacity)
   ========================= */

/* Base blob */
.offer-card__blob{
  position: absolute;
  height: 220px;
  z-index: 1;
  pointer-events: none;

  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* “Random” Varianten + lokale SVGs (ROOT-relative) */
.offer-card__blob--a{
  right:-90px; top:-90px; width:260px; opacity:.18; transform: rotate(8deg);
  background-image: url("assets/blobs/blob-a-16a0c2.svg");
}
.offer-card__blob--b{
  left:-110px; top:-80px; width:300px; opacity:.14; transform: rotate(-10deg);
  background-image: url("assets/blobs/blob-b-ebd570.svg");
}
.offer-card__blob--c{
  right:-100px; bottom:-110px; width:290px; opacity:.16; transform: rotate(14deg);
  background-image: url("assets/blobs/blob-a-047fa7.svg");
}
.offer-card__blob--d{
  left:-90px; bottom:-120px; width:280px; opacity:.15; transform: rotate(-14deg);
  background-image: url("assets/blobs/blob-c-02688d.svg");
}
.offer-card__blob--e{
  right:-120px; top:40px; width:270px; opacity:.13; transform: rotate(18deg);
  background-image: url("assets/blobs/blob-d-7ac4bf.svg");
}
.offer-card__blob--f{
  left:-120px; top:60px; width:260px; opacity:.14; transform: rotate(-6deg);
  background-image: url("assets/blobs/blob-a-16a0c2.svg");
}

/* Responsive */
@media (max-width: 1100px){
  .offers__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px){
  .offers__grid{
    grid-template-columns: 1fr;
  }
  .offer-card__blob{
    opacity: .14;
  }
}

/* =========================
   KURSE (Cards + Kalender) – CLEAN / FIXED
   ========================= */

.courses{
  background: var(--paper);
  padding: 76px 20px;
}

.courses__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.courses__head{
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.courses__head h2{
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--text);
}

.courses__head p{
  margin: 0;
  color: rgba(15,23,42,0.82);
  line-height: 1.6;
  max-width: 80ch;
}

/* Layout */
.courses__grid{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: stretch; /* beide gleich hoch */
}

/* ===== Card base (für beide Cards nutzbar) ===== */
.courses__card{
  position: relative;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;

  /* wichtig: Flex-Column + Start oben => keine “Lücke” */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding: 18px;
}

/* rechte Card bekommt gleichen Grundaufbau */
.courses__calendarCard{
  position: relative;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding: 18px;
}

/* ===== Blobs ===== */
.courses__blob{
  position: absolute;
  width: 340px;
  height: 220px;
  opacity: 0.10;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(12deg);
  z-index: 0;
}

.courses__blob--a{
  right: -180px;
  top: 440px;
  background-image: url("assets/blobs/blob-d-7ac4bf.svg");
}

.courses__blob--b{
  left: 300px;
  top: -80px;
  transform: rotate(-10deg);
  opacity: 0.12;
  background-image: url("assets/blobs/blob-c-02688d.svg");
}

/* Inhalt über Blob: statt “alle direkten Kinder” sauber via helper */
.courses__content{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== Typo / Content links ===== */
.courses__card h3{
  margin: 0 0 2px 0;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.92);
}

.courses__muted{
  margin: 0;
  color: rgba(15,23,42,0.76);
  line-height: 1.6;
  font-size: 14px;
}

.courses__meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 2px;
}

.courses__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(242,239,233,0.70);
  border: 1px solid rgba(15,23,42,0.08);
  font-size: 13px;
  color: rgba(15,23,42,0.86);
  font-weight: 800;
}

.courses__pillDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.courses__pillDot--course{
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(4,127,167,0.12);
}
.courses__pillDot--info{
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(235,213,112,0.14);
}

.courses__section{
  margin-top: 6px;
}

.courses__section h4{
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 900;
  color: rgba(15,23,42,0.90);
}

.courses__list{
  margin: 0 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(15,23,42,0.80);
  line-height: 1.6;
  font-size: 14px;
}

/* Button unten fix */
.courses__actions{
  margin-top: auto; /* drückt Button nach unten */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
}

/* ===== Kalender rechts ===== */
.courses__calHead{
  display: grid;
  gap: 6px;
  margin: 0 0 12px 0; /* kein großer Abstand */
  position: relative;
  z-index: 1;
}

.courses__calTitle{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.92);
}

.courses__calendar{
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  padding: 12px;
}

.courses__dow{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(15,23,42,0.70);
  font-weight: 900;
  font-size: 12px;
  text-align: center;
}

.courses__days{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.courses__day{
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(248,246,240,0.78);
  border-radius: 12px;
  padding: 10px 0;
  font-weight: 900;
  font-size: 13px;
  color: rgba(15,23,42,0.86);
  cursor: default;
  text-align: center;
  position: relative;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.courses__day:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,0.12);
  box-shadow: 0 10px 22px rgba(15,23,42,0.08);
}

.courses__day.is-empty{
  border: 0;
  background: transparent;
  pointer-events: none;
}

/* Markierungen */
.courses__day.is-course{
  background: rgba(4,127,167,0.12);
  border-color: rgba(4,127,167,0.22);
  color: rgba(2,104,141,0.95);
  box-shadow: 0 10px 24px rgba(4,127,167,0.10);
}

.courses__day.is-info{
  background: rgba(235,213,112,0.18);
  border-color: rgba(203,210,52,0.26);
  color: rgba(15,23,42,0.90);
}

.courses__day.is-course::after,
.courses__day.is-info::after{
  content:"";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.courses__day.is-course::after{ background: var(--brand); }
.courses__day.is-info::after{ background: var(--sun); }

/* Legende UNTER dem Kalender */
.courses__legend--below{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 12px;
}

.courses__legendItem{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,0.72);
  background: rgba(242,239,233,0.62);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 999px;
  padding: 6px 10px;
}

.courses__legendDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.courses__legendDot--course{ background: var(--brand); }
.courses__legendDot--info{ background: var(--sun); }

.courses__fineprint{
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  color: rgba(15,23,42,0.70);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .courses{ padding: 56px 16px; }
  .courses__grid{ grid-template-columns: 1fr; }
  .courses__legend--below{ justify-content: flex-start; }
}

@media (max-width: 520px){
  .courses__blob{ opacity: 0.07; }
}

/* Kurs-Anmeldung: Layout im Dialog */
.course-signup__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.course-signup__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 12px;
}

@media (max-width: 720px){
  .course-signup__row{ grid-template-columns: 1fr; }
  .course-signup__actions{ justify-content: stretch; }
  .course-signup__actions .btn{ width: 100%; }
}

/* Month Tabs (Sep/Okt) */
.courses__monthTabs{
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(242,239,233,0.62);
  border: 1px solid rgba(15,23,42,0.08);
}

.courses__monthTab{
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(15,23,42,0.72);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.courses__monthTab:hover{
  background: rgba(255,255,255,0.65);
  border-color: rgba(15,23,42,0.08);
}

.courses__monthTab.is-active{
  background: rgba(4,127,167,0.12);
  border-color: rgba(4,127,167,0.22);
  color: rgba(2,104,141,0.95);
}

/* Panels */
.courses__monthPanel[hidden]{ display:none; }

/* =========================
   COURSES Accordion (Details/Summary)
   ========================= */
.courses__accordion{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.acc{
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  overflow: hidden;
}

.acc__sum{
  list-style: none;
  cursor: pointer;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  font-weight: 900;
  color: rgba(15,23,42,0.90);
  background: rgba(242,239,233,0.55);
}

.acc__sum::-webkit-details-marker{ display:none; }

.acc__title{
  font-size: 14px;
  letter-spacing: -0.01em;
}

.acc__chev{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.72);
  position: relative;
  flex: 0 0 auto;
}

.acc__chev::before{
  content:"";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(2,104,141,0.95);
  border-bottom: 2px solid rgba(2,104,141,0.95);
  transform: rotate(45deg);
  top: 4px;
}

.acc[open] .acc__chev::before{
  transform: rotate(-135deg);
  top: 7px;
}

.acc__body{
  padding: 12px 12px 14px;
  color: rgba(15,23,42,0.80);
  line-height: 1.6;
  font-size: 14px;
}

.acc__body p{ margin: 0; }

/* Kleine optische Hover-Feedbacks */
.acc__sum:hover{
  background: rgba(4,127,167,0.10);
}

/* =========================
   JOURNEY (Option C: Sticky Menü + normaler Content)
   - links: sticky Menü mit Linie + Icons
   - rechts: Content-Panel, das per JS umgeschaltet wird
   - Desktop: zwei Spalten
   - Mobile: Menü oben, Content darunter
   ========================= */

.journey{
  background: var(--paper);
  padding: 76px 20px;
}

.journey__wrap{ max-width: 1100px; margin: 0 auto; }

.journey__head{
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.journey__head h2{
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
}

.journey__head p{
  margin: 0;
  color: rgba(15,23,42,0.82);
  line-height: 1.6;
  max-width: 80ch;
}

/* Layout */
.journey__grid{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  align-items: start;
}

/* Reverse (Legasthenie): Content links, Menü rechts */
.journey--reverse .journey__grid{
  grid-template-columns: 1fr 340px;
}

.slogan--soft{
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 10px 0 0;
  padding: 10px 14px;
  border-radius: 999px;

  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;

  /* gleiche Blau-Optik wie Menü */
  background: rgba(4,127,167,0.08);
  border-color: rgba(4,127,167,0.16);
  border: 1px solid rgba(4,127,167,0.30);
}

/* =========================
   Menü (links)
   ========================= */
.journey__menu{
  position: sticky;
  top: 92px;
  align-self: start;
}

.journey__menuCard{
  position: relative;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
  padding: 14px;
}

/* Titel optional (wenn du ihn nutzt) */
.journey__menuTitle{
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 900;
  color: rgba(15,23,42,0.82);
  letter-spacing: 0.01em;
}

.journey__menuLine{
  position: absolute;
  left: 28px;
  top: 18px;
  bottom: 18px;
  width: 2px;

  background: linear-gradient(
    to bottom,
    rgba(4,127,167,0.16),
    rgba(22,160,194,0.16)
  );

  border-radius: 99px;
  overflow: hidden;
}

.journey__menuLine::after{
  content:"";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: auto;         /* wichtig */
  top: 0;               /* startet oben */
  height: calc(var(--journey-progress, 0) * 100%);
  background: linear-gradient(
    to bottom,           /* war "to top" */
    rgba(4,127,167,0.95),
    rgba(22,160,194,0.80),
    );

  background: linear-gradient(
    to top,
    rgba(4,127,167,0.95),
    rgba(22,160,194,0.80)
  );

  border-radius: 99px;
  transition: height .35s cubic-bezier(.22,.61,.36,1);
}

/* Menu Item als Button */
.journey__menuItem{
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  gap: 12px;
  align-items: center;

  padding: 12px 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(15,23,42,0.06);

  background: rgba(248,246,240,0.58);
  color: rgba(15,23,42,0.88);
  font-weight: 900;
  text-align: left;

  cursor: pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.journey__menuItem + .journey__menuItem{ margin-top: 10px; }

.journey__menuItem:hover{
  background: rgba(4,127,167,0.08);
  border-color: rgba(4,127,167,0.16);
  transform: translateY(-1px);
}

/* Icon Kreis */
.journey__menuIcon{
  position: relative;
  border-radius: 999px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  transform: translateX(20px);

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

/* kleiner Dot links an der Linie */
.journey__menuIcon::before{
  content: "";
  position: absolute;
  left: -25.5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(4,127,167,0.16);
  border: 2px solid rgba(4,127,167,0.26);       
  width: 9px;
  height: 9px;
}

/* Pfeil */
.journey__menuItem::after{
  content: "›";
  justify-self: end;
  color: rgba(15,23,42,0.45);
  font-size: 18px;
  line-height: 1;
}

/* Active */
.journey__menuItem.is-active{
  background: rgba(4,127,167,0.08);
  border-color: rgba(4,127,167,0.18);
  box-shadow: 0 14px 34px rgba(15,23,42,0.10);
}

.journey__menuItem.is-active .journey__menuIcon{
  border-color: rgba(4,127,167,0.22);
}

.journey__menuItem.is-active .journey__menuIcon::before{
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 6px rgba(4,127,167,0.10);
}

/* SVG im Kreis kleiner halten */
.journey__menuIcon svg{
  width: 16px;
  height: 16px;
  display: block;
}

/* =========================
   Content (rechts)
   ========================= */
 .journey__content{
   position: relative;
   background: rgba(255,255,255,0.76);
   border: 1px solid var(--border);
   border-radius: var(--r-lg);
   box-shadow: var(--shadow);
   backdrop-filter: blur(12px);
   overflow: hidden;
   padding: 18px 18px;
 }

 /* Blob-Layer ("random" Look via Varianten pro Section + optional data-blob) */
 .journey__content::before,
 .journey__content::after{
   content: "";
   position: absolute;
   width: 360px;
   height: 320px;
   opacity: 0.14;
   pointer-events: none;
   background-repeat: no-repeat;
   background-size: contain;
   filter: blur(0px);
   transform: rotate(10deg);
 }

 /* Default Blob (warm) */
 .journey__content::before{
   right: -130px;
   top: -140px;
   background-image: url("assets/blobs/blob-a-16a0c2.svg");
 }

 /* Secondary Blob (teal) */
 .journey__content::after{
   left: -160px;
   bottom: -150px;
   opacity: 0.12;
   transform: rotate(-8deg);
   background-image: url("assets/blobs/blob-b-ebd570.svg");
 }

 /* Inhalt immer über den Blobs */
 .journey__panel,
 .journey__panel *{
   position: relative;
   z-index: 2;
 }

 /* Varianten pro Journey (wirken "random" ohne JS) */
 .journey--dys .journey__content::before{
   right: -150px;
   top: -150px;
   opacity: 0.16;
 }
 .journey--dys .journey__content::after{
   left: -170px;
   bottom: -140px;
   opacity: 0.10;
 }

 .journey--leg .journey__content::before{
   left: -150px;
   top: -140px;
   transform: rotate(-12deg);
   opacity: 0.15;
 }
 .journey--leg .journey__content::after{
   right: -160px;
   bottom: -150px;
   transform: rotate(9deg);
   opacity: 0.11;
 }

 /* Optional: per HTML steuerbar, z.B. <section class='journey ...' data-blob='b'> */
 .journey[data-blob='b'] .journey__content::before{
   background-image: url("assets/blobs/blob-c-02688d.svg");
 }
 .journey[data-blob='c'] .journey__content::after{
   background-image: url("assets/blobs/blob-d-7ac4bf.svg");
 }

.journey__panel{
  display: none;
}

.journey__panel.is-active{
  display: block;
  animation: journeyFade .22s ease;
}

@keyframes journeyFade{
  from{ opacity: 0; transform: translateY(6px); }
  to{ opacity: 1; transform: translateY(0); }
}

.journey__panel h3{
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.journey__panel p{
  margin: 0 0 10px 0;
  color: rgba(15,23,42,0.80);
  line-height: 1.75;
}

.journey__panel p:last-child{ margin-bottom: 0; }

.journey__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* =========================
   Mobile: Menü oben, Content darunter
   ========================= */
@media (max-width: 980px){
  .journey{ padding: 56px 16px; }

  .journey__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .journey__menu{
    position: relative;
    top: auto;
  }

  .journey__menuLine{
    left: 26px;
    top: 52px;
    bottom: 14px;
  }

  .journey--reverse .journey__grid{
    grid-template-columns: 1fr;
  }

  .journey__content::before,
  .journey__content::after{
    width: 300px;
    height: 260px;
  }
}

/* =========================
   COOKIE BANNER + DIALOG (Pastell)
   ========================= */
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

.cookiebar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999;

  background: rgba(255,255,255,0.90);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 18px 60px rgba(15,23,42,0.18);
  backdrop-filter: blur(12px);

  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}
.cookiebar.is-open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookiebar__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.cookiebar__text strong{
  display:block;
  font-weight: 900;
  color: rgba(15,23,42,0.92);
  margin-bottom: 4px;
}
.cookiebar__text p{
  margin: 0;
  color: rgba(15,23,42,0.78);
  line-height: 1.55;
  max-width: 70ch;
  font-size: 14px;
}
.cookiebar__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookiebar__btn{
  padding: 10px 14px;
  border-radius: var(--r-sm);
}
@media (max-width: 860px){
  .cookiebar__inner{ grid-template-columns: 1fr; }
  .cookiebar__actions{ justify-content: flex-start; }
}

/* Dialog */
.dlg{
  width: min(720px, calc(100% - 24px));
  border: none;
  padding: 0;
  background: transparent;
}
.dlg::backdrop{
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(4px);
}
.dlg-card{
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 22px 70px rgba(15,23,42,0.22);
  overflow: hidden;
}
.dlg-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 16px;
  font-weight: 900;
  color: rgba(15,23,42,0.92);
  border-bottom: 1px solid var(--border);
  background: rgba(248,246,240,0.75);
}
/* verhindert Background-Scroll wenn ein Dialog offen ist */
body.is-dialog-open{
  overflow: hidden;
  touch-action: none; /* wichtig für iOS */
}

.xbtn{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  font-weight: 900;
}
.xbtn:hover{ background: rgba(255,255,255,0.98); }
.dlg-body{
  padding: 14px 16px 16px;
  color: rgba(15,23,42,0.80);
  line-height: 1.65;
  font-size: 14px;
}
.cookie-prefs{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.cookie-pref{
  background: rgba(248,246,240,0.78);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--r-md);
  padding: 12px;
}
.cookie-pref-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cookie-pref-hint{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(15,23,42,0.72);
}
.cookie-badge{
  background: rgba(4,127,167,0.10);
  border: 1px solid rgba(4,127,167,0.22);
  color: var(--brand-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  white-space: nowrap;
}

/* Switch */
.cookie-switch{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cookie-switch input{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.cookie-slider{
  width: 46px;
  height: 28px;
  background: rgba(15,23,42,0.18);
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  position: relative;
  transition: background .2s ease;
}
.cookie-slider::after{
  content:"";
  position:absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  transition: transform .2s ease;
}
.cookie-switch input:checked + .cookie-slider{
  background: rgba(4,127,167,0.35);
}
.cookie-switch input:checked + .cookie-slider::after{
  transform: translateX(18px);
}
.cookie-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookiebar button:focus-visible,
.dlg button:focus-visible{
  outline: 3px solid rgba(4,127,167,0.30);
  outline-offset: 2px;
}

/* =========================
   CONTACT (Brand Theme – clean & consistent)
   ========================= */
.contact{
  background: var(--paper);
  padding: 76px 20px;
}

.contact__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.contact__head{
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.contact__head h2{
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact__head p{
  margin: 0;
  color: rgba(15,23,42,0.82);
  line-height: 1.6;
  max-width: 80ch;
}

/* Layout */
.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 16px;
  align-items: start;
}

/* Cards */
.contact__card{
  position: relative;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.contact__card::after{
  content:"";
  position:absolute;
  right:-90px;
  top:-80px;
  width: 240px;
  height: 240px;
  background: rgba(4,127,167,0.14);
  border-radius: 58% 42% 55% 45% / 45% 58% 42% 55%;
  transform: rotate(12deg);
  pointer-events: none;
}

.contact__card > *{
  position: relative;
  z-index: 1;
}

.contact__card h3{
  margin: 0 0 6px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.92);
}

.contact__muted{
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Info list */
.contact__list{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.contact__item{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;

  padding: 10px 10px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,23,42,0.08);
}

.contact__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  color: var(--brand);
}

.contact__note{
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--r-md);
  background: rgba(235,213,112,0.16);
  border: 1px solid rgba(203,210,52,0.22);
  color: rgba(15,23,42,0.86);
  line-height: 1.6;
  font-size: 14px;
}

/* =========================
   Form
   ========================= */
.contact__form{
  display: grid;
  gap: 12px;
}

.contact__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field{
  display: grid;
  gap: 6px;
}

.field__label{
  font-weight: 900;
  font-size: 13px;
  color: rgba(15,23,42,0.86);
}

.field__input,
.field__textarea{
  width: 100%;
  border-radius: var(--r-sm);
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.92);
  padding: 11px 12px;
  font-size: 14px;
  color: rgba(15,23,42,0.92);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}

.field__input:hover,
.field__textarea:hover{
  border-color: rgba(4,127,167,0.22);
}

.field__input:focus,
.field__textarea:focus{
  border-color: rgba(4,127,167,0.45);
  box-shadow: 0 0 0 4px rgba(4,127,167,0.14);
}

.field__textarea{
  resize: vertical;
  min-height: 140px;
}

/* =========================
   Checkbox (Confirmation)
   ========================= */
.contact__check{
  display: flex;
  gap: 10px;
  align-items: flex-start;

  padding: 10px 10px;
  border-radius: var(--r-sm);

  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,23,42,0.08);
}

.contact__checkInput{
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
}

.contact__checkText{
  font-size: 13px;
  line-height: 1.5;
  color: rgba(15,23,42,0.80);
  font-weight: 700;
}

.contact__check:has(.contact__checkInput:focus-visible){
  outline: 3px solid rgba(4,127,167,0.25);
  outline-offset: 2px;
}

/* Actions */
.contact__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.contact__fineprint{
  margin: 6px 0 0 0;
  font-size: 12px;
  color: rgba(15,23,42,0.68);
  line-height: 1.6;
}

/* =========================
   CONTACT – Mobile kompakter
   ========================= */
@media (max-width: 980px){
  .contact{
    padding: 42px 16px !important;
  }

  .contact__grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact__card{
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }

  .contact__title,
  .contact__card h3{
    font-size: 22px !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
  }

  .contact__muted{
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  .contact__list{
    gap: 8px !important;
  }

  .contact__item{
    display: grid !important;
    grid-template-columns: 38px 1fr !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 8px 0 !important;
  }

  .contact__icon{
    width: 38px !important;
    height: 38px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 38px !important;
  }

  .contact__row{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .contact__form{
    display: grid !important;
    gap: 10px !important;
  }

  .field__label{
    font-size: 13px !important;
    margin-bottom: 5px !important;
  }

  .field__input,
  .field__textarea{
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    border-radius: 14px !important;
  }

  .field__textarea{
    min-height: 120px !important;
  }

  .contact__check{
    margin-top: 4px !important;
  }

  .contact__checkText{
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .contact__actions{
    margin-top: 6px !important;
  }

  .contact__actions .btn{
    width: 100% !important;
    min-width: 0 !important;
  }

  .contact__map{
    margin-top: 12px !important;
    min-height: 220px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .contact__map iframe{
    min-height: 220px !important;
    width: 100% !important;
  }

  .contact__mapPlaceholder{
    padding: 16px 14px !important;
  }

  .contact__mapActions{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .contact__mapActions .btn{
    width: 100% !important;
  }

  .contact__mapHint{
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-top: 10px !important;
  }
}

@media (max-width: 720px){
  .contact{
    padding: 34px 14px !important;
  }

  .contact__card{
    padding: 16px 14px !important;
    border-radius: 16px !important;
  }

  .contact__title,
  .contact__card h3{
    font-size: 20px !important;
  }

  .contact__muted,
  .contact__mapHint,
  .contact__checkText{
    font-size: 13px !important;
  }

  .contact__map,
  .contact__map iframe{
    min-height: 200px !important;
  }
}

/* =========================================================
   FOOTER – Layout wie Screenshot (Brand/Glass)
   ========================================================= */

.site-footer{
  position: relative;
  overflow: hidden;
  padding: 18px 20px 18px;
  border-top: 1px solid var(--border);
  background: var(--paper);
}

/* Hintergrundbild Platzhalter: ersetzt du später mit deinem Bild */
.site-footer__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,23,42,.44), rgba(15,23,42,.14)),
    url("assets/footerimage.png"); /* <— Platzhalter */
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  transform: scale(1.02);
  z-index: 0;
}

/* leichter Glass-Glow für Lesbarkeit */
.site-footer::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 50% 30%, rgba(255,255,255,0.10), rgba(255,255,255,0) 60%);
  z-index: 0;
}

.site-footer__wrap{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

/* Top-Row: alles mittig in einer Reihe */
.site-footer__top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

/* Copyright weiß */
.site-footer__copyright{
  margin: 0;
  color: rgba(255,255,255,0.92);
}

/* Links inline */
.site-footer__links{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

/* Punkte zwischen den Link-Items (nur zwischen, nicht am Ende) */
.site-footer__links > *{
  position: relative;
}

.site-footer__links > *:not(:last-child)::after{
  content: "•";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.60);
  font-weight: 900;
}

/* Mobile etwas kompakter */
@media (max-width: 520px){
  .site-footer__top{ gap: 10px; }
  .site-footer__links{ gap: 10px; }
  .site-footer__links > *:not(:last-child)::after{ right: -8px; }
}

/* =========================================================
   FOOTER – Link-Buttons wie "Mirounias Dev Labs"
   ========================================================= */

/* Button-Links im Footer: wirken wie Link (nicht wie Pill-Button) */
.site-footer__linkbtn{
  /* kill button look */
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;

  /* link look */
  color: rgba(255,255,255,0.92) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  text-decoration: none !important;

  /* underline like MDL */
  border-bottom: 2px solid rgba(4,127,167,0.28); /* brand underline */
  padding-bottom: 2px !important;

  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

/* Hover: Blau + stärker unterstrichen */
.site-footer__linkbtn:hover{
  color: rgba(4,127,167,1) !important;                 /* brand blue */
  border-bottom-color: rgba(4,127,167,0.85) !important; /* strong underline */
  transform: translateY(-1px);
}

/* Keyboard focus (wichtig) */
.site-footer__linkbtn:focus-visible{
  outline: 3px solid rgba(4,127,167,0.35);
  outline-offset: 3px;
  border-bottom-color: rgba(4,127,167,0.85) !important;
}

/* Optional: Abstand in der Links-Reihe (falls zu eng) */
.site-footer__links{
  gap: 14px;
}

/* CENTER: alles zentriert untereinander */
.site-footer__center{
  display:grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  padding-top: 4px;
}

.site-footer__follow{
  margin: 0;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
  text-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

/* Instagram Kreis-Button im Glass Look */
.site-footer__insta{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  text-decoration:none;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 50px rgba(0,0,0,0.20);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, background .2s ease, border-color .2s ease;
}

.site-footer__insta:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}

.site-footer__instaIcon{
  width: 26px;
  height: 26px;
  color: rgba(255,255,255,0.92);
}

.site-footer__socialRow{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.site-footer__ig{
  background:
    radial-gradient(18px 18px at 25% 25%, rgba(255,255,255,0.18), rgba(255,255,255,0) 60%),
    linear-gradient(135deg,
      rgba(235,213,112,0.18),   /* sun */
      rgba(22,160,194,0.16),    /* brand-3 */
      rgba(105,213,142,0.14)    /* mint */
    );
  border-color: rgba(255,255,255,0.22);
}

/* Hover: etwas „Insta“-Punch, aber immer noch passend zur Seite */
.site-footer__ig:hover{
  transform: translateY(-2px);
  background:
    radial-gradient(18px 18px at 25% 25%, rgba(255,255,255,0.22), rgba(255,255,255,0) 60%),
    linear-gradient(135deg,
      rgba(235,213,112,0.28),
      rgba(22,160,194,0.24),
      rgba(105,213,142,0.20)
    );
  border-color: rgba(235,213,112,0.35);
}

/* Icon: leicht warm/neutral statt hartweiß */
.site-footer__ig .site-footer__instaIcon{
  color: rgba(255,255,255,0.94);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.20));
}

/* Optional: WhatsApp leicht mint-tinted, bleibt aber im Stil */
.site-footer__wa{
  background: rgba(105,213,142,0.12);
  border-color: rgba(105,213,142,0.28);
}
.site-footer__wa:hover{
  background: rgba(105,213,142,0.16);
  border-color: rgba(105,213,142,0.38);
}

.blue-heart{
  display:inline-block;
  transform: translateY(1px);
  margin: 0 4px;
}

/* Made-with Zeile komplett weiß */
.site-footer__made{
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 11px;
}

/* Link in der Made-with-Zeile ebenfalls weiß */
.site-footer__made .site-footer__linkbtn{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
  font-size: 11px;
}

/* Hover: blaue Unterstreichung (Brand) */
.site-footer__made .site-footer__linkbtn:hover{
  border-bottom-color: var(--brand);
}

/* Mobile: top row wird gestapelt, rechts-links bleibt aber „wie Screenshot“ */
@media (max-width: 720px){
  .site-footer__top{
    flex-direction: column;
    align-items: center;
  }
  .site-footer__links{
    justify-content: center;
  }
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: var(--r-md);
  text-decoration:none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover{ transform: translateY(-1px); }

.btn--primary{
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(4,127,167,0.22);
}

.btn--primary:hover{
  box-shadow: 0 18px 44px rgba(4,127,167,0.28);
}

.btn--ghost{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,23,42,0.12);
  color: rgba(15,23,42,0.92);
}

/* =========================
   LOCAL FONTS (assets/fonts)
   ========================= */

/* Merriweather */
@font-face{
  font-family: "Merriweather";
  src: url("Merriweather-Regular.woff2") format("woff2"),
       url("Merriweather-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Merriweather";
  src: url("Merriweather-Italic.woff2") format("woff2"),
       url("Merriweather-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face{
  font-family: "Merriweather";
  src: url("Merriweather-Bold.woff2") format("woff2"),
       url("Merriweather-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Playfair Display */
@font-face{
  font-family: "Playfair Display";
  src: url("PlayfairDisplay-Regular.woff2") format("woff2"),
       url("PlayfairDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Playfair Display";
  src: url("PlayfairDisplay-Bold.woff2") format("woff2"),
       url("PlayfairDisplay-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Quicksand */
@font-face{
  font-family: "Quicksand";
  src: url("Quicksand-Regular.woff2") format("woff2"),
       url("Quicksand-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Quicksand";
  src: url("Quicksand-Medium.woff2") format("woff2"),
       url("Quicksand-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Quicksand";
  src: url("Quicksand-SemiBold.woff2") format("woff2"),
       url("Quicksand-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Quicksand";
  src: url("Quicksand-Bold.woff2") format("woff2"),
       url("Quicksand-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   DEFAULT TYPO (Site)
   ========================= */

/* Fließtext */
body{
  font-family: "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Headlines */
h1, h2, h3, h4{
  font-family: "Playfair Display", "Merriweather", Georgia, serif;
}

/* Optional: längere Texte/Artikel schöner lesbar */
.prose, .content, .journey__panel, .about__text{
  font-family: "Merriweather", Georgia, serif;
}

/* =========================
   REVEAL (nur rein animieren)
   - default: von unten
   - left: von links
   - right: von rechts
   ========================= */

[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .45s cubic-bezier(.22,.61,.36,1),
    transform .55s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="left"]{
  transform: translateX(-22px);
}

[data-reveal="right"]{
  transform: translateX(22px);
}

/* wenn im View => sichtbar */
[data-reveal].is-inview{
  opacity: 1;
  transform: translate(0,0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce){
  [data-reveal]{
    transition: none;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============ CONTACT (Info-Card wie deine bestehenden Cards) ============ */

/* Info-Card: gleicher Look wie Journey/Offers */
.contact__card--info{
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

/* Optional: Titelzeile mit Icon, ohne farbigen Header */
.contact__title{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 0 0 8px 0;
}

.contact__titleIcon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  color: var(--brand);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

/* Items: gleicher “kleine Card”-Stil wie bei dir */
.contact__item{
  background: rgba(248,246,240,0.58);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: var(--r-md);
  padding: 12px 12px;
}

/* Icon: Brand-farbig, wie restliche UI */
.contact__icon{
  color: var(--brand);                 /* SVG nutzt currentColor */
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

/* Map: wie eine normale Card, eingebettet */
.contact__map{
  margin-top: 12px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 40px rgba(15,23,42,0.06);
}

.contact__map iframe{
  width: 100%;
  right: 240px;
  border: 0;
  display:block;
}

/* Hinweistext klein, unaufdringlich */
.contact__mapHint{
  margin: 10px 0 0 0;
  font-size: 12px;
  color: rgba(15,23,42,0.62);
  line-height: 1.55;
}

.contact__map{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.78);
}

.contact__map iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.contact__mapPlaceholder{
  padding: 16px;
  text-align: center;
}

.contact__mapPlaceholder p{
  margin: 8px 0 12px;
  color: var(--text-muted);
}

.contact__mapActions{
  display:flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   CONTACT – rechte Card gleich hoch + saubere Felder
   ========================= */

/* Beide Spalten sollen in einer Zeile gleich hoch sein */
.contact__grid{
  align-items: stretch; /* statt start */
}

/* Cards dürfen die volle Zeilenhöhe nutzen */
.contact__card{
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Falls du eine spezielle Klasse fürs Formular-Card hast, optional:
.contact__card--form{ height:100%; }
*/

/* Form-Layout sauber */
.contact__form{
  display: grid;
  gap: 12px;
  width: 100%;
}

/* Grid-Zeilen für 2 Spalten: kein Überlappen */
.contact__row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  width: 100%;
}

/* Wichtig gegen Overflow in Grid/Flex */
.field{
  min-width: 0;
}

/* Inputs/Textareas dürfen niemals "rausdrücken" */
.field__input,
.field__textarea{
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Mobile: alles untereinander */
@media (max-width: 980px){
  .contact__row{
    grid-template-columns: 1fr;
  }
}
/* Buttons immer unten in der Card */
.contact__actions{
  margin-top: auto;
}
/* Head außerhalb der Cards (wie Angebote) */
.about__sectionHead{
  max-width: 1100px;
  margin: 0 auto 18px;
}
.about__sectionTitle{
  margin: 0 0 8px 0;
  font-size: clamp(34px, 4vw, 52px); /* wie Angebote-Headline */
  letter-spacing: -0.02em;
  color: var(--text);
}
.about__sectionSub{
  margin: 0;
  max-width: 80ch;
  color: rgba(15,23,42,0.78);
  line-height: 1.7;
  font-size: 16px;
}

/* rechte Card: mehr Innenabstand + sauberer Text-Rand */
.about__card{
  padding: 26px 26px 18px;   /* mehr Abstand zum Rand */
}

/* Lead/Text etwas ruhiger und enger zusammen */
.about__lead{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.about__text{
  margin-top: 12px;
  gap: 10px;                 /* weniger „Luft“ zwischen Absätzen */
}
.about__text p{
  line-height: 1.75;
}

/* Mobile: Headline Abstände */
@media (max-width: 980px){
  .about__sectionHead{ margin-bottom: 14px; }
}

/* Forms Formular */
#contactStatus[data-type="success"]{ color: rgba(15,23,42,0.9); }
#contactStatus[data-type="error"]{ color: #b00020; }
#contactStatus[data-type="info"]{ color: rgba(15,23,42,0.75); }

/* =========================================================
   MOBILE COMPACT PACK (≤ 720px)
   - macht Sections, Cards, Typo, Grids kompakter
   - ans ENDE deiner style.css setzen
   ========================================================= */
@media (max-width: 720px){

  /* ---------- Globale Abstände ---------- */
  section{
    scroll-margin-top: 84px; /* falls Sticky Nav oben */
  }

  /* Buttons etwas kompakter */
  .btn{
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  /* Headlines generell etwas kleiner */
  h2{
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.05;
  }
  h3{
    font-size: 18px;
    line-height: 1.15;
  }
  p{
    font-size: 14px;
    line-height: 1.55;
  }

  /* ---------- BOTTOMNAV (Mobile) enger ---------- */
  .bottomnav{
    left: 12px;
    right: 12px;
    transform: none;
    border-radius: 18px;
    padding: 10px 10px;
  }
  .bottomnav__brandSub{ display: none; } /* Subtitle aus, spart Platz */
  .bottomnav__brandTitle{ font-size: 16px; }
  .bottomnav__brandLogo{ width: 34px; height: 34px; }

  /* Dropdown Links: weniger Padding */
  .bottomnav__links a{
    padding: 10px 12px;
    font-size: 14px;
  }

@media (max-width: 720px){

  /* ABOUT Text generell kompakter */
  .about__card{
    padding: 14px;
  }

  .about__text{
    gap: 8px;                 /* weniger Luft zwischen Absätzen */
    margin-top: 8px;
  }

  .about__text p{
    font-size: 13.5px;        /* etwas kleiner */
    line-height: 1.45;        /* enger */
    margin: 0;                /* kein Standard-Margin */
  }

  /* Quote kompakter */
  .about__quote{
    font-size: 13px;
    line-height: 1.45;
    padding: 10px 12px;
  }

  /* Buttons/Card unten weniger hoch */
  .about__actionsCard{
    padding: 10px;
    gap: 10px;
    margin-top: 12px;
  }

  .about__actionsCard .btn{
    padding: 10px 12px;
    border-radius: 14px;
  }
}
  
@media (max-width: 720px){
  .about__text--collapsible{
    max-height: 180px;        /* sichtbar: ca. 2–3 Absätze */
    overflow: hidden;
    position: relative;
  }

  .about__text--collapsible::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.92));
    pointer-events:none;
  }

  .about__text--collapsible.is-open{
    max-height: none;
  }
  .about__text--collapsible.is-open::after{
    display:none;
  }

  .about__more{
    margin: 8px 0 0;
    width: 100%;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,0.10);
    background: rgba(255,255,255,0.75);
    font-weight: 900;
    color: rgba(2,104,141,.95);
  }
}
  
  /* ---------- MODALS / DIALOGS kompakter ---------- */
  .modal__card,
  .dlg-card{
    width: min(94vw, 560px);
    border-radius: 18px;
  }

  .modal__body,
  .dlg-body{
    padding: 14px;
    font-size: 14px;
  }

  .refs-grid{
    gap: 10px;
  }


  /* ---------- COURSES kompakter ---------- */
  .courses{ padding: 44px 14px; }
  .courses__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .courses__card,
  .courses__calendarCard{
    padding: 14px;
    border-radius: 16px;
  }
  .courses__meta{
    gap: 8px;
    margin: 10px 0 12px;
  }
  .courses__pill{
    padding: 7px 9px;
    font-size: 12px;
  }

  /* Accordion kompakter */
  .acc__sum{
    padding: 10px 12px;
  }
  .acc__body{
    padding: 10px 12px 12px;
  }

  /* Kalender kompakter */
  .courses__calendar{ padding: 10px; }
  .courses__dow{ gap: 6px; }
  .courses__days{ gap: 6px; }
  .courses__day{
    border-radius: 10px;
    padding: 9px 0;
    font-size: 12px;
  }

  /* ---------- COOKIEBAR kompakter ---------- */
  .cookiebar{
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookiebar__inner{
    padding: 12px;
    gap: 10px;
  }
  .cookiebar__actions{
    gap: 8px;
    flex-wrap: wrap;
  }
  .cookiebar__btn{
    width: 100%;
  }

/* =========================================================
   FOOTER – MOBILE KOMPAKT (nur mobil)
   ========================================================= */
@media (max-width: 720px){

  .site-footer{
    padding: 16px 12px;              /* weniger Außenabstand */
  }

  .site-footer__wrap{
    gap: 10px;                        /* weniger Innenabstand zwischen Blöcken */
  }

  .site-footer__top{
    gap: 8px;
    padding-bottom: 8px;
  }

  .site-footer__copyright{
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
  }

  .site-footer__links{
    gap: 8px;
    flex-wrap: wrap;                  /* falls es bricht, bricht es „kurz“ */
  }

  .site-footer__linkbtn{
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 999px;
  }

  .site-footer__center{
    gap: 8px;
    margin-top: 6px;
  }

  .site-footer__follow{
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
    max-width: 38ch;                  /* verhindert 3–4 Zeilen */
  }

  .site-footer__socialRow{
    gap: 10px;
    margin: 2px 0;
  }

  .site-footer__insta{
    width: 44px;                      /* kleiner */
    height: 44px;                     /* kleiner */
    border-radius: 16px;
  }

  .site-footer__instaIcon{
    width: 20px;                      /* Icon kleiner */
    height: 20px;
  }

  .site-footer__made{
    font-size: 11px;
    line-height: 1.35;
    margin: 0;
  }

  /* optional: Hintergrund/Overlay etwas ruhiger (wirkt "leichter") */
  .site-footer__bg{
    opacity: 0.55;
  }
}

/* EXTRA KLEINE PHONES */
@media (max-width: 380px){
  .site-footer__follow{
    max-width: 30ch;                  /* noch kürzer */
  }
  .site-footer__insta{
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}
}

/* "Mehr anzeigen" nur auf Mobile */
.about__more{ display:none; }

@media (max-width: 720px){
  .about__more{ display:inline-flex; }
}

/* =========================================
   JOURNEY: rechte Card gleich hoch wie Menü
   ========================================= */

/* Wichtig: beide Spalten strecken */
.journey__grid--menu{
  align-items: stretch;
}

/* Menü-Card füllt Höhe */
.journey__menuCard{
  height: 100%;
}

/* Rechte Seite: Card als Container (füllt Höhe) */
.journey__contentCard{
  position: relative;
  height: 100%;
  min-height: 100%;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 18px;
}

/* Optionaler Blob rechts (wie im restlichen Design) */
.journey__contentBlob{
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  background: rgba(4,127,167,0.12);
  border-radius: 58% 42% 55% 45% / 45% 58% 42% 55%;
  transform: rotate(10deg);
  pointer-events: none;
}

/* Panel nimmt volle Card-Höhe ein, damit Layout stabil bleibt */
.journey__contentCard .journey__panel{
  height: 100%;
  position: relative;
  padding: 0;           /* wir steuern innen mit .journey__body */
}

/* Illustration: klein + passend, sitzt „in der Ecke“ */
.journey__illus{
  position: absolute;
  right: 14px;
  bottom: 14px;         /* oder top:14px, wenn du es oben willst */
  width: min(200px, 28%);
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 12px 26px rgba(15,23,42,0.16));
}

/* Textbereich mit Platz für Illustration */
.journey__body{
  position: relative;
  z-index: 1;
  max-width: 78%;
  padding-right: 8px;
}

/* Mobile: Bild ausblenden, Text volle Breite */
@media (max-width: 980px){
  .journey__illus{
    display: none;
  }

  .journey__body{
    max-width: 100%;
    padding-right: 0;
  }
}

/* Sehr kleine Phones: Illustration ausblenden, um Platz zu sparen */
@media (max-width: 420px){
  .journey__illus{ display: none; }
}

.journey__panel{
  display: none;
  position: relative;
  z-index: 2;
  height: 100%;
  opacity: 0;
  transform: translateY(-22px);
}

.journey__panel.is-active{
  display: block;
  animation: journeySlideDown .38s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes journeySlideDown{
  from{
    opacity: 0;
    transform: translateY(-22px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   FUNDING NOTE / HINWEISBANNER
   ========================= */
.funding-note{
  background: var(--paper);
  padding: 8px 20px 56px;
}

.funding-note__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.funding-note__card{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;

  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
}

.funding-note__card::after{
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  background: rgba(4,127,167,0.08);
  border-radius: 58% 42% 55% 45% / 45% 58% 42% 55%;
  transform: rotate(10deg);
  pointer-events: none;
}

.funding-note__icon{
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--brand);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.funding-note__content{
  position: relative;
  z-index: 1;
}

.funding-note__content h3{
  margin: 0 0 6px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,0.92);
}

.funding-note__content p{
  margin: 0;
  color: rgba(15,23,42,0.78);
  line-height: 1.65;
  font-size: 14px;
  max-width: 90ch;
}

@media (max-width: 720px){
  .funding-note{
    padding: 4px 14px 34px;
  }

  .funding-note__card{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .funding-note__icon{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .funding-note__content h3{
    font-size: 16px;
  }

  .funding-note__content p{
    font-size: 13px;
    line-height: 1.55;
  }
}