html{scroll-behavior:smooth; scroll-padding-top: 84px;}
:root{
  --bg-1:#e7e2d6;
  --bg-2:#d9d2c3;
  --ink:#1d2420;
  --muted:#47584f;

  --card:#f4efe5;
  --card-2:#efe8da;
  --stroke:rgba(0,0,0,.18);
  --shadow: 0 18px 30px rgba(0,0,0,.18);
  --shadow-soft: 0 10px 18px rgba(0,0,0,.14);

  --green-1:#2f4a36;
  --green-2:#3f5b3f;

  --accent:#b08a3a;
  --accent-2:#8d6f2e;

  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:12px;

  --max: 1100px;
  --brand-script: "Great Vibes", cursive;
}

/* ---------------- Local Fonts (WOFF2) ---------------- */
@font-face{
  font-family:"Playfair Display";
  src:url("assets/fonts/playfair-display-v40-latin-regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Playfair Display";
  src:url("assets/fonts/playfair-display-v40-latin-600.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Playfair Display";
  src:url("assets/fonts/playfair-display-v40-latin-700.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Nunito";
  src:url("assets/fonts/nunito-v32-latin-regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Nunito";
  src:url("assets/fonts/nunito-v32-latin-600.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Nunito";
  src:url("assets/fonts/nunito-v32-latin-700.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Cormorant Garamond";
  src:url("assets/fonts/cormorant-garamond-v21-latin-regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Cormorant Garamond";
  src:url("assets/fonts/cormorant-garamond-v21-latin-600.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Cormorant Garamond";
  src:url("assets/fonts/cormorant-garamond-v21-latin-700.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(1200px 600px at 30% 0%, rgba(255,255,255,.45), transparent 60%),
    radial-gradient(900px 500px at 70% 10%, rgba(255,255,255,.25), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
}

/* subtle paper texture */
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.35;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}

a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px;}

/* Header / Nav */
header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(28,40,32,.58), rgba(28,40,32,.35));
  border-bottom: 1px solid rgba(255,255,255,.12);

  /* WICHTIG: Dropdown darf nicht abgeschnitten werden */
  overflow: visible;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
  flex-wrap:nowrap;

  /* WICHTIG: Dropdown darf nicht abgeschnitten werden */
  overflow: visible;
  position: relative;
}

/* Header-Logo (TR) */
.brand{
  display:flex;
  align-items:center;
  min-width: unset;              /* falls du noch min-width:200px drin hast */
}

.brand-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 4px 6px;              /* etwas Klickfläche */
  border-radius: 12px;
}

.brand-logo{
  height: 46px;                  /* <<< größer machen (z.B. 36–44px) */
  width: auto;
  display:block;
}

/* Responsive: auf Mobile noch etwas größer, aber nicht riesig */
@media (max-width: 980px){
  .brand-logo{ height: 40px; }
}
@media (max-width: 420px){
  .brand-logo{ height: 38px; }
}

/* Typewriter Animation (Header Logo) */
.typewrite{
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid rgba(255,255,255,.75);
  width: 0;
  animation: tr-typing 2.1s steps(12, end) .25s forwards, tr-caret .8s step-end infinite;
  line-height: 1.15;
  padding: 6px 0;
  padding-bottom: .14em;
}
@keyframes tr-typing{
  from{ width: 0; }
  to{ width: 12ch; }
}
@keyframes tr-caret{
  50%{ border-color: transparent; }
}
.typewrite.is-done{
  border-right-color: transparent;
  animation: none;
  width: auto;
}
.typewrite-wrap{
  width: 100%;
  display:flex;
  justify-content:center;
  overflow:hidden;
  padding: .46em 0 .56em;
}

/* Mobile/kleine Höhen: Content bleibt mittig sichtbar */
@media (max-width: 560px){
  .hero-overlay{
    padding: 78px 16px 92px;
  }
}

nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
  justify-content:flex-end;
  margin-left:auto;
  overflow: visible; /* wichtig */
  scrollbar-width: none;
}
nav::-webkit-scrollbar{display:none;}

.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  transition:.2s ease;
}
.menu-toggle:hover{background: rgba(0,0,0,.18)}
.menu-toggle .ico{width:20px;height:20px}

/* Nav-Link Basis */
.navlink{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 8px;
  border-radius:999px;
  color: rgba(255,255,255,.86);
  font-size:12px;
  line-height:1;
  white-space:nowrap;
  transition:.2s ease;
  position:relative;
}
.navlink:hover{background:rgba(255,255,255,.10)}
.navlink .ico{width:16px;height:16px;opacity:.95}

/* FIX: hier dürfen keine \" im CSS stehen */
.navlink::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:3px;
  height:2px;
  background: var(--accent);
  border-radius:999px;
  transform: scaleX(0);
  transform-origin:left;
  opacity:.95;
  transition: transform .22s ease;
}
.navlink.active{color: rgba(255,255,255,.98);}
.navlink.active::after{transform: scaleX(1);}

/* damit Buttons im Nav exakt wie Links aussehen */
nav button.navlink{
  border:0;
  background:transparent;
  font:inherit;
  color:inherit;
  -webkit-appearance: none;
  appearance: none;
}

/* Actions */
.actions{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 200px;
  justify-content:flex-end;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
  color: rgba(255,255,255,.88);
  font-size:12px;
  gap:8px;
  cursor:pointer;
  transition:.2s ease;
  user-select:none;
}
.pill:hover{background: rgba(0,0,0,.18)}
.pill .ico{width:16px;height:16px}

/* Hero */
.hero {
  height: 100vh;
  margin-top: 0;
  background: url('assets/hero_image.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

/* Hero Titel: Druckschrift (nicht geschwungen) */
.hero-logo{
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* Header: exakt wie Footer (heller + deckend) */
header{
  backdrop-filter: none !important;
  background: linear-gradient(180deg, rgba(28,40,32,.92), rgba(28,40,32,.78)) !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

/* Header bleibt beim Scrollen gleich (nicht wieder transparent) */
header.is-scrolled{
  background: linear-gradient(180deg, rgba(28,40,32,.92), rgba(28,40,32,.78)) !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hero-inner{
  padding:54px 0 26px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
  min-height: 520px;
}

.hero-card{
  max-width: 640px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  padding: 14px 0;
}

.hero-kicker{
  font-family:"Cormorant Garamond", serif;
  font-size:34px;
  font-weight:600;
  opacity:.92;
  margin:0;
}

.hero-title{
  font-size:72px;
  margin:0;
  line-height:.95;
}

.hero-sub{
  font-size:18px;
  opacity:.92;
  margin:0;
}

.hero-text{
  max-width: 520px;
  font-size:14px;
  line-height:1.6;
  opacity:.88;
  margin:0 0 18px;
}

.cta{
  margin-top: 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.26);
  background: linear-gradient(180deg, rgba(68,92,74,.95), rgba(46,68,54,.95));
  color: rgba(255,255,255,.94);
  box-shadow: 0 12px 20px rgba(0,0,0,.28);
  font-weight:700;
  letter-spacing:.2px;
  transition:.2s ease;
}
.cta:hover{transform: translateY(-1px); filter: brightness(1.03);}

.hero-right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  gap:12px;
}

.hero-props{
  width: 100%;
  max-width: 420px;
  height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    radial-gradient(800px 300px at 50% 0%, rgba(255,255,255,.12), transparent 60%);
  box-shadow: 0 18px 30px rgba(0,0,0,.28);
  overflow:hidden;
  position:relative;
}

.hero-props:before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.9;
  background:
    radial-gradient(700px 260px at 70% 10%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.35));
  mix-blend-mode: overlay;
}

.down{
  display:flex;
  justify-content:center;
  padding: 10px 0 18px;
}
.down button{
  width:42px;height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.16);
  color: rgba(255,255,255,.9);
  cursor:pointer;
  transition:.2s ease;
}
.down button:hover{background: rgba(0,0,0,.25)}

/* Section base */
section{
  padding: 38px 0;
  scroll-margin-top: 84px;
}

.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin: 0 0 18px;
  font-family:"Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  color: rgba(28,40,32,.92);
}
.section-title:before,
.section-title:after{
  content:"";
  height:2px;
  flex: 1;
  max-width: 260px;
  background: linear-gradient(90deg, transparent, rgba(28,40,32,.35), transparent);
}

/* ---------------------------------------------------
   Header: Kurse Dropdown (FIXED)
   - Toggle sieht 1:1 aus wie .navlink
   - Button Defaults entfernt
   - Dropdown nicht abgeschnitten und klickbar
--------------------------------------------------- */
.nav-dd{
  position:relative;
  display:flex;
  align-items:center;
  overflow: visible;
}

/* Wichtig: Toggle IMMER wie .navlink behandeln */
.nav-dd-toggle{
  border:0;
  background:transparent;
  font:inherit;
  cursor:pointer;
  user-select:none;

  -webkit-appearance: none;
  appearance: none;

  /* Exakt Navlink-Look */
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 8px;
  border-radius:999px;
  color: rgba(255,255,255,.86);
  font-size:12px;
  line-height:1;
  white-space:nowrap;
  transition:.2s ease;
  position:relative;
}
.nav-dd-toggle:hover{background:rgba(255,255,255,.10);}

/* gleiche Unterline-Mechanik wie navlink */
.nav-dd-toggle::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:3px;
  height:2px;
  background: var(--accent);
  border-radius:999px;
  transform: scaleX(0);
  transform-origin:left;
  opacity:.95;
  transition: transform .22s ease;
}
/* Optional: wenn du dem Toggle per JS mal .active gibst */
.nav-dd-toggle.active::after{transform: scaleX(1);}

.nav-dd-caret{
  margin-left:6px;
  width:12px;
  height:12px;
  opacity:.8;
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.nav-dd.is-open .nav-dd-caret{
  transform: rotate(180deg);
}

.nav-dd-menu{
  position:absolute;
  top: calc(100% + 10px);
  right:0;
  min-width: 250px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(28,40,32,.86);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  display:none;
  flex-direction:column;
  gap:6px;
  z-index: 999;            /* FIX: über allem */
  pointer-events: auto;
}
.nav-dd.is-open .nav-dd-menu{ display:flex; }

.nav-dd-item{
  /* all:unset bleibt ok, aber font-family/size etc. wieder sauber setzen */
  all:unset;
  font: inherit;
  cursor:pointer;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.90);
  font-size: 14px;
  line-height: 1.2;
  display:block;
}
.nav-dd-item:hover{
  background: rgba(255,255,255,.10);
}

/* Kurse-Dropdown im mobilen Menü: Menü soll im Flow aufklappen */
header.is-menu-open .nav-dd{ width: 100%; }
header.is-menu-open .nav-dd-toggle{ width: 100%; justify-content: space-between; }
header.is-menu-open .nav-dd-toggle::after{left:12px; right:12px; bottom:6px;}

header.is-menu-open .nav-dd-menu{
  position: static;
  width: 100%;
  transform: none;
  margin-top: 6px;
  box-shadow: none;
}

/* Mobile: Dropdown Menü soll innerhalb des aufgeklappten Navs erscheinen */
@media (max-width: 980px){
  .nav-dd{ width:100%; }
  .nav-dd-menu{
    position:static;
    min-width: unset;
    margin-top: 6px;
    border-radius: 16px;
  }
}

/* Kurs-Dialog */
.course-dlg-intro{
  margin: 0 0 12px;
  color: rgba(29,36,32,.78);
  line-height: 1.6;
}

.course-book-btn{
  width: 100%;
  margin-top: 10px;
  justify-content:center;
}

.course-sessions-title{
  margin: 14px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(28,40,32,.92);
}

.course-intro .course-lead{
  margin: 0 0 6px;
  color: rgba(29,36,32,.82);
  line-height: 1.55;
}
.course-intro .course-lead-strong{ margin: 0 0 10px; }

.course-highlights{
  margin: 0 0 12px;
  padding-left: 18px;
  color: rgba(29,36,32,.84);
  line-height: 1.55;
}

.course-facts{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.45);
}
.course-fact .k{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
}
.course-fact .v{
  font-weight: 800;
  margin-top: 2px;
}

/* Buchungsdialog */
.booking-top{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.booking-k{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
  margin-top: 8px;
}
.booking-k:first-child{ margin-top: 0; }
.booking-v{
  font-weight: 800;
  margin-top: 2px;
}

/* Cards (services) */
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}

.tile{
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.18));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  position:relative;
}
.tile .band{
  height: 70px;
  background: linear-gradient(180deg, rgba(58,86,66,.95), rgba(40,64,50,.95));
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color: rgba(255,255,255,.92);
  font-weight:800;
  letter-spacing:.2px;
}
.tile .band.alt1{ background: linear-gradient(180deg, rgba(92,114,62,.95), rgba(62,82,42,.95)); }
.tile .band.alt2{ background: linear-gradient(180deg, rgba(164,128,46,.95), rgba(124,92,26,.95)); }
.tile .band.alt3{ background: linear-gradient(180deg, rgba(86,78,62,.95), rgba(52,46,36,.95)); }

.tile .body{
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, rgba(244,239,229,.92), rgba(232,224,208,.92));
  min-height: 96px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:800;
  color: rgba(28,40,32,.90);
  border-top: 1px solid rgba(0,0,0,.10);
}
.tile .body small{
  display:block;
  margin-top:4px;
  font-weight:700;
  color: rgba(28,40,32,.70);
}

/* Info cards */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.info{
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.18));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.info .head{
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  background: linear-gradient(180deg, rgba(58,86,66,.92), rgba(40,64,50,.92));
  color: rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:.2px;
}
.info .head.alt{
  background: linear-gradient(180deg, rgba(86,78,62,.92), rgba(52,46,36,.92));
}
.info .content{
  padding:14px 16px 18px;
  background: linear-gradient(180deg, rgba(244,239,229,.92), rgba(232,224,208,.92));
  color: rgba(29,36,32,.86);
  line-height:1.6;
  font-size:14px;
  border-top: 1px solid rgba(0,0,0,.10);
  min-height: 104px;
}

/* About */
.about{
  background: linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,.18));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:0;
}
.about .photo{
  overflow: hidden;
  border-radius: 22px;
}
.about .photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about .pane{
  padding:18px 18px 20px;
  background: linear-gradient(180deg, rgba(244,239,229,.92), rgba(232,224,208,.92));
}
.about h3{
  margin: 0 0 6px;
  font-family:"Cormorant Garamond", serif;
  font-size: 30px;
  color: rgba(28,40,32,.92);
}
.quote{
  margin: 0 0 12px;
  font-weight:800;
  color: rgba(28,40,32,.72);
  font-style: italic;
}
.about p{
  margin:0 0 14px;
  color: rgba(29,36,32,.82);
  line-height:1.65;
  font-size:14px;
}

.btn-secondary{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.18);
  background: linear-gradient(180deg, rgba(74,104,82,.95), rgba(46,68,54,.95));
  color: rgba(255,255,255,.94);
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 10px 16px rgba(0,0,0,.20);
  transition:.2s ease;
}
.btn-secondary:hover{transform: translateY(-1px); filter: brightness(1.03);}

/* =========================
   Kooperation – Card Styling
   ========================= */

/* Card-Hintergrund exakt wie "Über mich":
   -> Wir nehmen einfach denselben Look wie .pane (falls vorhanden).
   Wenn deine .pane anders heißt, sag kurz die Klasse, dann passe ich’s exakt an. */
.coop-card{
  /* gleiche Optik wie Card/Panes */
  background: rgb(230,220,205) !important;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);

  padding: 18px 18px;
  margin-top: 14px;

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

.coop-card p{
   margin:0 0 14px;
  color: rgba(29,36,32,.82);
  line-height:1.65;
  font-size:14px;
}
.coop-card h3{
  margin: 0 0 6px;
  font-family:"Cormorant Garamond", serif;
  font-size: 20px;
  color: rgba(28,40,32,.92);
}

.coop-kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgb(180,201,65) !important;
  border-color: rgba(0,0,0,.10); /* optional, kann bleiben */
  color: rgba(0,0,0,.85);        /* gute Lesbarkeit auf Grün */
  margin-bottom: 8px;
}

/* Überschrift „Kooperation“ + Titel */
.coop-title{
  margin: 0 0 6px;
  font-weight: 700;
}

.coop-text{
  margin: 0;
  opacity: .95;
  max-width: 72ch;
}

/* Logo rechts größer */
.coop-logo{
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.coop-logo img{
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
}

/* Responsive: untereinander */
@media (max-width: 780px){
  .coop-card{
    grid-template-columns: 1fr;
  }
  .coop-logo{
    width: 110px;
    height: 110px;
    justify-self: start;
  }
}

/* =========================
   Reveal Animation (Fade-Up)
   ========================= */
.reveal-up{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: transform, opacity;
}

.reveal-up.is-visible{
  opacity: 1;
  transform: translateY(0);
}
footer{
  padding: 24px 0 36px;
  margin-top: 26px;
  background: linear-gradient(180deg, rgba(28,40,32,.92), rgba(28,40,32,.78));
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -14px 28px rgba(0,0,0,.14);
  color: rgba(255,255,255,.82);
  text-align:center;
  font-size:13px;
  position: relative;
  z-index: 1;
}

/* Dialogs */
dialog{
  width: min(720px, calc(100% - 28px));
  max-height: 88vh;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
  background: var(--card);

  /* WICHTIG: nicht alles abschneiden */
  overflow: visible;
}
dialog::backdrop{
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}
.dlg-head{
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background: linear-gradient(180deg, rgba(58,86,66,.95), rgba(40,64,50,.95));
  color: rgba(255,255,255,.92);
  font-weight:900;
}
.dlg-body{
  padding: 14px 16px 18px;
  background: linear-gradient(180deg, rgba(244,239,229,.95), rgba(232,224,208,.95));
  color: rgba(29,36,32,.86);
  line-height: 1.65;
  font-size: 14px;

  /* ✅ Scrollbarer Bereich */
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  /* ✅ Body darf nur innerhalb des Dialogs scrollen */
  max-height: calc(88vh - 64px); /* 64px ≈ Headerhöhe */
}
.xbtn{
  all:unset;
  cursor:pointer;
  width:34px;height:34px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.18);
}
.xbtn:hover{background: rgba(0,0,0,.22)}
dialog{
  max-height: 88dvh; /* neue Viewport-Einheit (Mobile-freundlich) */
}
.dlg-body{
  max-height: calc(88dvh - 64px);
}
.dlg-head{
  position: sticky;
  top: 0;
  z-index: 2;
}
/* Scroll Lock wenn Dialog offen ist */
body.no-scroll{
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr; min-height: unset; padding:44px 0 18px;}
  .hero-right{justify-content:flex-start}
  .grid-4{grid-template-columns: repeat(2, 1fr);}
  .faq-row{grid-template-columns: repeat(2, 1fr);}
  .about{grid-template-columns: 1fr;}
  .about .photo{border-right:none; border-bottom: 1px solid rgba(0,0,0,.10); min-height: 240px;}
  .brand, .actions{min-width: unset;}
}
@media (max-width: 980px){
  nav{display:none;}
  .menu-toggle{display:inline-flex;}
  .topbar{position:relative;}
  header.is-menu-open nav{
    display:flex;
    position:absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(28,40,32,.86);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 30px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
    z-index: 999; /* mobile menu über content */
  }
  header.is-menu-open .navlink{
    width:100%;
    justify-content:flex-start;
    font-size: 14px;
    padding: 10px 12px;
  }
  header.is-menu-open .navlink::after{left:12px; right:12px; bottom:6px;}

  .hero-title{font-size:50px;}
  .grid-4{grid-template-columns: 1fr;}
  .grid-2{grid-template-columns: 1fr;}
  .faq-row{grid-template-columns: 1fr;}
}

/* Script font helper */
.script{font-family:"Great Vibes", cursive;}

/* Hero (Centered) */
.hero-overlay{
  position:relative;
  z-index:2;
  width: 100%;
  max-width: 860px;
  height: 100%;
  margin: 0 auto;
  padding: 84px 18px 96px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap: clamp(10px, 2.2vh, 18px);
  transform: translateY(-48px);
}

.hero-kicker{color: rgba(255,255,255,.92);}
.hero-title{color: rgba(255,255,255,.98);}
.hero-sub{
  color: #fff;
  font-size: clamp(1.05rem, 1.1vw + 0.9rem, 1.35rem);
  line-height: 1.35;
}
.cta{ margin-top: 10px; }

.scroll-arrow{
  position:absolute;
  left:50%;
  bottom:10px;
  width:46px;height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.14);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  display:grid;
  place-items:center;
  animation: bobBottom 1.4s ease-in-out infinite;
  transform: translateX(-50%);
}
.scroll-arrow:hover{background: rgba(0,0,0,.22)}
@keyframes bobBottom{
  0%,100%{transform: translateX(-50%) translateY(0)}
  50%{transform: translateX(-50%) translateY(8px)}
}

/* FAQ */
.faq-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top: 14px;
}
.faq-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.18));
}
.faq-head{
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  background: linear-gradient(180deg, rgba(58,86,66,.92), rgba(40,64,50,.92));
  color: rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:.2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}
.faq-head.alt{
  background: linear-gradient(180deg, rgba(86,78,62,.92), rgba(52,46,36,.92));
}
.faq-body{
  padding:14px 16px 18px;
  background: linear-gradient(180deg, rgba(244,239,229,.92), rgba(232,224,208,.92));
  border-top: 1px solid rgba(0,0,0,.10);
}
.acc{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.55);
  padding: 0;
  overflow:hidden;
  margin: 10px 0;
}
.acc summary{
  list-style:none;
  cursor:pointer;
  padding: 12px 12px;
  font-weight: 700;
  color: rgba(29,36,32,.88);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.acc summary::-webkit-details-marker{display:none;}
.acc summary:after{
  content:"+";
  font-weight:900;
  color: var(--accent-2);
}
.acc[open] summary:after{content:"–";}
.acc .acc-body{
  padding: 0 12px 12px;
  color: rgba(29,36,32,.82);
  line-height: 1.6;
  font-size: 14px;
}

/* Contact form */
.contact-form .field{display:flex; flex-direction:column; gap:6px; margin: 10px 0;}
.contact-form label{font-weight:700; color: rgba(29,36,32,.84);}
.contact-form input,
.contact-form textarea{
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.72);
  padding: 10px 12px;
  font: inherit;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(176,138,58,.6);
  box-shadow: 0 0 0 4px rgba(176,138,58,.18);
}
.form-actions{display:flex; gap:10px; justify-content:flex-end; margin-top: 12px; flex-wrap:wrap;}
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 14px;
  border-radius: 12px;
  border:1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(176,138,58,.98), rgba(141,111,46,.98));
  color: white;
  font-weight: 800;
  cursor:pointer;
}
.btn-primary:hover{filter: brightness(1.04); transform: translateY(-1px);}
.form-hint{margin: 10px 0 0; font-size: 12px; color: rgba(29,36,32,.70);}

/* Values card */
.values-card{
  margin-top: 16px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.18));
  padding: 0;
}
.values-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  background: linear-gradient(180deg, rgba(58,86,66,.92), rgba(40,64,50,.92));
  color: rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:.2px;
}
.values-head .ico{width:18px;height:18px;}
.values-body{
  padding:14px 16px 18px;
  background: linear-gradient(180deg, rgba(244,239,229,.92), rgba(232,224,208,.92));
  color: rgba(29,36,32,.86);
  line-height:1.6;
  font-size:14px;
  border-top: 1px solid rgba(0,0,0,.10);
}
.values-list{margin: 0; padding-left: 18px; color: rgba(29,36,32,.84); line-height:1.65;}
.values-list li{margin: 0 0 8px;}

.hero-title.script{ font-family: var(--brand-script); font-weight: 400; }

@media (max-width: 720px){
  .hero-overlay{transform: translateY(-30px); gap:16px;}
  .hero-title{font-size:56px;}
  .logo{font-size:28px;}
}
@media (max-width: 420px){
  .hero-overlay{transform: translateY(-22px); gap:14px;}
  .hero-kicker{font-size:26px;}
  .hero-title{font-size:52px;}
}


/* Footer links */
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.footer-links{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.footer-link{
  color: rgba(255,255,255,.82);
  font-weight:800;
  text-decoration:none;
  position:relative;
  padding:2px 2px;
  transition: .2s ease;
}
.footer-link:hover{color: rgba(255,255,255,.95);}
.footer-link::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-2px;
  height:2px;
  background: var(--accent);
  border-radius:999px;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}
.footer-link:hover::after{transform: scaleX(1);}
.footer-sep{opacity:.45}

/* Footer Social */
.footer-social{
  flex-basis:100%;
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
  margin-top: 10px;
}

.footer-coop{
  margin: 0 0 8px;
  font-size: 12px;
  opacity: .88;
  text-align: center;
}
.footer-coop-link{
  font-weight: 900;
  text-decoration: none;
  position: relative;
  color: rgba(255,255,255,.92);
}
.footer-coop-link:hover{ color: rgba(255,255,255,1); }
.footer-coop-link::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-2px;
  height:2px;
  background: var(--accent);
  border-radius:999px;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}
.footer-coop-link:hover::after{ transform: scaleX(1); }

.ig-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  transition: .2s ease;
  text-decoration:none;
}
.ig-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
}
.ig-link svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-ig-text{
  margin: 0;
  font-size: 12px;
  opacity: .85;
}
.footer-ig-spacer{height: 10px;}

.footer-made{
  margin: 10px 0 0;
  font-size: 12px;
  opacity: .88;
  text-align: center;
}
.blue-heart{
  display:inline-block;
  transform: translateY(1px);
  margin: 0 4px;
}
.footer-made-link{
  font-weight: 900;
  text-decoration: none;
  position: relative;
  color: rgba(255,255,255,.92);
}
.footer-made-link:hover{ color: rgba(255,255,255,1); }
.footer-made-link::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-2px;
  height:2px;
  background: var(--accent);
  border-radius:999px;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}
.footer-made-link:hover::after{ transform: scaleX(1); }

/* Legal dialog text */
.legal p{margin: 0 0 12px;}
.legal .legal-hint{
  margin-top: 10px;
  font-size: 12px;
  opacity: .75;
}

/* Optional alternate dialog header */
.dlg-head.alt{
  background: linear-gradient(180deg, rgba(86,78,62,.95), rgba(52,46,36,.95));
}

/* ----------------------------
   Kontakt-Section (Layout Fix)
----------------------------- */
#kontakt .contact-tile .body.contact-body{
  display:block;
  text-align:left;
  min-height: unset;
}

#kontakt .contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
#kontakt .contact-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
#kontakt .contact-list .mini-ico{
  width:20px;
  height:20px;
  flex:0 0 20px;
  margin-top:2px;
  opacity:.9;
}
#kontakt .contact-list .k{
  font-weight:900;
  font-size:12px;
  color: rgba(29,36,32,.62);
  text-transform:uppercase;
  letter-spacing:.6px;
  line-height:1.15;
  margin-bottom: 2px;
}
#kontakt .contact-list .v{
  font-weight:800;
  color: rgba(29,36,32,.88);
  text-decoration:none;
}
#kontakt .contact-list a.v:hover{
  text-decoration: underline;
  text-decoration-color: rgba(176,138,58,.75);
  text-underline-offset: 3px;
}

#kontakt .map-embed{
  margin-top: 14px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}
#kontakt .map-embed iframe{
  width:100%;
  height: 220px;
  border:0;
  display:block;
  filter: saturate(.95) contrast(.95);
}
#kontakt .contact-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(29,36,32,.62);
}

#kontakt .contact-form label{ text-align:left; }
#kontakt .form-actions{ justify-content:flex-start; }

#kontakt .contact-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
#kontakt .contact-form .form-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 620px){
  #kontakt .contact-form .form-grid2{grid-template-columns: 1fr;}
}
#kontakt .contact-form .field-label{
  display:block;
  font-weight:900;
  color: rgba(29,36,32,.82);
  margin: 0 0 6px;
}
#kontakt .contact-form input[type="text"],
#kontakt .contact-form input[type="email"],
#kontakt .contact-form textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  font: inherit;
  color: rgba(29,36,32,.90);
}
#kontakt .contact-form textarea{
  min-height: 160px;
  resize: vertical;
}
#kontakt .contact-form input:focus,
#kontakt .contact-form textarea:focus{
  outline:none;
  border-color: rgba(176,138,58,.55);
  box-shadow: 0 0 0 4px rgba(176,138,58,.14), inset 0 1px 0 rgba(255,255,255,.65);
}
#kontakt .contact-form .checkrow{
  display:flex;
  gap:10px;
  align-items:flex-start;
  text-align:left;
  color: rgba(29,36,32,.78);
  font-weight:700;
}
#kontakt .contact-form .checkrow input{
  width:18px;
  height:18px;
  margin-top: 2px;
  accent-color: var(--accent);
}
#kontakt .form-actions button{
  border: 1px solid rgba(0,0,0,.18);
}

/* Cookie Banner */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  z-index: 9999;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.cookie-card{
  pointer-events: auto;
  margin: 0 auto;
  width: min(960px, calc(100% - 8px));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(28,40,32,.95), rgba(28,40,32,.86));
  box-shadow: 0 -18px 34px rgba(0,0,0,.22);
  padding: 14px 14px 12px;
  color: rgba(255,255,255,.90);
}
.cookie-title{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 6px;
}
.cookie-text{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.84);
}
.cookie-actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-actions--dlg{
  justify-content: flex-start;
  margin-top: 12px;
}
.cookie-btn{white-space: nowrap;}

.cookie-prefs{margin-top: 12px; display: grid; gap: 10px;}
.cookie-pref{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.35);
  padding: 12px 12px;
}
.cookie-pref-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cookie-pref-hint{font-size: 12px; opacity: .78; margin-top: 2px; line-height: 1.45;}
.cookie-badge{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(58,86,66,.18);
  border: 1px solid rgba(0,0,0,.10);
  white-space: nowrap;
}

/* Toggle switch */
.cookie-switch{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.cookie-switch input{position:absolute; opacity:0; width:1px; height:1px;}
.cookie-slider{
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(28,40,32,.22);
  border: 1px solid rgba(0,0,0,.12);
  position: relative;
  transition: .2s ease;
  flex: none;
}
.cookie-slider::after{
  content:"";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  transition: .2s ease;
}
.cookie-switch input:checked + .cookie-slider{
  background: rgba(58,86,66,.42);
}
.cookie-switch input:checked + .cookie-slider::after{
  left: 21px;
}

/* SR only */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

@media (max-width: 520px){
  .cookie-actions{justify-content: stretch;}
  .cookie-actions .cookie-btn{flex: 1;}
}

/* --- Kurse-Teaser (unter Leistungen) --- */
.courses-teaser{
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;

  /* ✅ wie deine Cards/Tiles (neutral, passend zur Seite) */
  background: var(--panel, rgba(255,255,255,.10));
  border: 1px solid var(--line, rgba(255,255,255,.16));
  box-shadow: var(--shadow, 0 18px 45px rgba(0,0,0,.18));

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Optional: wenn du KEIN Glas-Effekt willst */
.courses-teaser{
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.courses-teaser-left{ min-width: 0; }

.courses-teaser-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;

  /* Akzent-Gold / passend zu deinem Design */
  background: rgba(189, 149, 62, .18);
  border: 1px solid rgba(189, 149, 62, .35);
}

.courses-teaser-title{
  margin-top: 10px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
}

.courses-teaser-sub{
  margin-top: 6px;
  opacity: .9;
  max-width: 58ch;
}

.courses-teaser-btn{
  white-space: nowrap;
  border-radius: 14px;
  padding: 12px 16px;
}

/* Mobile: Button unter Text */
@media (max-width: 760px){
  .courses-teaser{
    flex-direction: column;
    align-items: stretch;
  }
  .courses-teaser-btn{
    width: 100%;
  }
}

/* Leistungen: Coverflow-Carousel */
.services-carousel{
  position: relative;
}
.services-coverflow{
  padding: 18px 0 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28,40,32,.10), rgba(232,224,208,.18));
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.services-track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 14px 18px 18px;
  margin: 0;
  scroll-padding: 50%;
  justify-content: flex-start;
  perspective: 900px;
}
/* Scrollbar/Strich im Leistungen-Carousel ausblenden (Dots bleiben) */
.services-track{
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* old Edge/IE */
}
.services-track::-webkit-scrollbar{
  width: 0;
  height: 0;
}
.services-track::-webkit-scrollbar-thumb{
  background: transparent;
}
.services-track::-webkit-scrollbar-track{
  background: transparent;
}
#leistungen .tile{
  flex: 0 0 min(680px, 78vw);
  scroll-snap-align: center;
  position: relative;
  opacity: .35;
  transform: translateZ(-10px) scale(.92);
  filter: saturate(.85) contrast(.95);
  transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}
#leistungen .tile::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(244,239,229,.55);
  opacity: .55;
  pointer-events: none;
  transition: opacity .28s ease;
}
#leistungen .tile.is-active{
  opacity: 1;
  transform: translateZ(0) scale(1);
  filter: none;
  z-index: 2;
}
#leistungen .tile.is-active::after{opacity: 0;}
#leistungen .tile.is-active .tile-inner{
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
#leistungen .tile .body{min-height: 170px;}

/* Pfeil-Buttons */
.car-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(28,40,32,.92), rgba(28,40,32,.80));
  color: rgba(255,255,255,.92);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  z-index: 3;
}
.car-btn:hover{ filter: brightness(1.06); }
.car-btn:disabled{ opacity: .35; cursor: default; }
.car-prev{ left: -10px; }
.car-next{ right: -10px; }

/* Dots */
.car-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.car-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(28,40,32,.26);
  background: rgba(28,40,32,.12);
  opacity: .75;
  cursor: pointer;
}
.car-dot.is-active{
  width: 22px;
  opacity: 1;
  background: rgba(28,40,32,.32);
  border-color: rgba(28,40,32,.40);
}
@media (max-width: 980px){
  .car-btn{ display: none; }
}
/* Dots: Progress-Fill (läuft nur beim aktiven Dot) */
.car-dot{
  position: relative;
  overflow: hidden;
}

/* Füll-Layer */
.car-dot::after{
  background: var(--green-1);
  content:"";
  position:absolute;
  inset: 1px;                 /* innen, damit Rand sichtbar bleibt */
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  opacity: .55;
}

/* Animation nur, wenn aktiv + is-progress */
.car-dot.is-active.is-progress::after{
  animation: carDotFill var(--car-auto-ms, 10000ms) linear forwards;
  opacity: .85;
}

@keyframes carDotFill{
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Reveal Animations */
[data-reveal]{
  opacity: 0;
  transform: translateX(var(--reveal-x, -36px)) translateY(14px);
  transition:
    opacity 1.75s ease,
    transform 2.10s cubic-bezier(.18,.95,.18,1);
  will-change: transform, opacity;
}
#ueber [data-reveal]{
  --reveal-x: 0px;
  transform: translateY(36px);
}
#ueber [data-reveal].is-in{ transform: translateY(0); }

[data-reveal].is-in{
  opacity: 1;
  transform: translateX(0) translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.services-track [data-reveal],
.services-track [data-reveal].is-in{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

#ziele .values-card[data-reveal]{
  --reveal-x: 0px;
  transform: translateY(36px);
}
#ziele .values-card[data-reveal].is-in{
  transform: translateY(0);
}
/* Ziele & Werte: "Wofür ich stehe" im Akzent-Gelb */
.values-card .values-head{
  background: linear-gradient(180deg, rgba(176,138,58,.98), rgba(141,111,46,.98));
  color: rgba(255,255,255,.95);
}
.values-card .values-head .ico{
  color: rgba(255,255,255,.95);
}

.hero-cta{
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .2px;
  transform: translateY(26px);
  opacity: 0;
  animation: hero-cta-rise 4.2s cubic-bezier(.18,.95,.18,1) 1.5s forwards;
}
@keyframes hero-cta-rise{
  to{ transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce){
  .hero-cta{ animation: none; transform: none; opacity: 1; }
}

/* Kurse-Button exakt wie Navlinks */
nav button.navlink.nav-dd-toggle{
  color: rgba(255,255,255,.86);
}
nav button.navlink.nav-dd-toggle:hover{
  background: rgba(255,255,255,.10);
}

/* Infos-Accordion: Listen sauber formatieren */
#informationen .acc-body ul{
  margin: 8px 0 0;
  padding-left: 18px;
}
#informationen .acc-body li{
  margin: 0 0 6px;
}

/* Scroll-Spy Marker (1px) */
.spy-marker{
  display:block;
  height:1px;
  width:1px;
}

.hero-greet{
  margin: -6px 0 0;
  font-size: 16px;
  opacity: .92;
  color: rgba(255,255,255,.92);
  letter-spacing: .2px;
}
@media (max-width: 560px){
  .hero-greet{ font-size: 20px; }
}
/*Checkline Forms Kursbuchen */
.checkline{
  display:flex;
  gap:10px;
  align-items:flex-start;
  text-align:left;
  color: rgba(29,36,32,.78);
  font-weight:700;
  margin-top: 10px;
}
.checkline input{
  width:18px;
  height:18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

/* ----------------------------------------
   Booking Dialog – Look & Feel (wie Website)
----------------------------------------- */
#dlg-book .dlg-body{
  background: linear-gradient(180deg, rgba(244,239,229,.96), rgba(232,224,208,.96));
}

#dlg-book .dlg-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

#dlg-book .dlg-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Back-Button zunächst versteckt (JS zeigt ihn bei Bedarf) */
#bkBackBtn{ display:none; }

/* "Icon Buttons" im Header etwas edler */
#dlg-book .xbtn{
  width:44px;
  height:44px;
  border-radius:14px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
#dlg-book .xbtn:hover{
  background: rgba(0,0,0,.18);
}

/* Booking Summary Card oben */
#dlg-book .booking-top{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  padding: 14px 14px;
  margin-bottom: 16px;
}

#dlg-book .booking-k{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .70;
}

#dlg-book .booking-v{
  font-weight: 900;
  font-size: 18px;
  margin: 4px 0 10px;
  color: rgba(28,40,32,.90);
}

/* Formular Grid: 2 Spalten, auf Mobile 1 */
#dlg-book .booking-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

#dlg-book .booking-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 720px){
  #dlg-book .booking-grid{ grid-template-columns: 1fr; }
}

/* Fields im Dialog passend zu deinem Kontaktformular */
#dlg-book .field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

#dlg-book label{
  font-weight: 900;
  color: rgba(29,36,32,.82);
}

#dlg-book input[type="text"],
#dlg-book input[type="email"],
#dlg-book input[type="tel"],
#dlg-book textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  font: inherit;
  color: rgba(29,36,32,.90);
}

#dlg-book textarea{ min-height: 120px; resize: vertical; }

#dlg-book input:focus,
#dlg-book textarea:focus{
  outline:none;
  border-color: rgba(176,138,58,.55);
  box-shadow: 0 0 0 4px rgba(176,138,58,.14), inset 0 1px 0 rgba(255,255,255,.65);
}

/* Checkbox-Zeile schöner */
#dlg-book .checkline{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.40);
  color: rgba(29,36,32,.84);
  line-height: 1.5;
  font-weight: 700;
}

#dlg-book .checkline input{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}

/* Actions: Button rechts, aber nicht so "verloren" */
#dlg-book .form-actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top: 6px;
}