/* Pfoten verbinden — Vereinsseite concept · design tokens + components
   Direction B "Calm Care" · teal-led, sage for sensitive, yellow accent · Lora + Source Sans 3 */

:root{
  --teal:#21576C; --teal-700:#1C4B5E; --teal-800:#163A49; --teal-50:#EAF1F4;
  --sage:#7E9A86; --sage-600:#4F6B57; --sage-50:#EAF0EC;
  --yellow:#FCD257; --yellow-600:#E6B83C; --yellow-50:#FFF8E6;
  --cream:#FEFDF9; --ink:#1B2A30; --muted:#5A6B73; --neutral:#55616A;
  --line:rgba(27,42,48,.12);
  --head:'Lora',Georgia,serif; --body:'Source Sans 3',system-ui,sans-serif;
  --wrap:1140px; --r:10px;
  --shadow:0 12px 40px rgba(22,58,73,.10);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--body);color:var(--ink);background:var(--cream);line-height:1.65;font-size:17px;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:var(--teal);text-decoration:none}
h1,h2,h3,h4{font-family:var(--head);color:var(--teal);line-height:1.12;font-weight:600}
h1{font-size:clamp(2.1rem,5vw,3.5rem)}
h2{font-size:clamp(1.7rem,3.6vw,2.6rem)}
h3{font-size:clamp(1.2rem,2.2vw,1.5rem)}
p{color:#33444c}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px}
.kicker{font-weight:700;font-size:.82rem;letter-spacing:.16em;text-transform:uppercase;color:var(--sage-600)}
.section{padding:clamp(56px,8vw,104px) 0}
.section--cream{background:var(--cream)} .section--white{background:#fff}
.section--teal{background:var(--teal);color:#fff} .section--teal h2,.section--teal h3{color:#fff} .section--teal p{color:#d7e4ea}
.section--sage{background:linear-gradient(180deg,var(--sage-50),#fff)}
.lead{font-size:1.18rem;color:var(--muted);max-width:62ch}
.center{text-align:center;margin-inline:auto}

/* buttons */
.btn{display:inline-flex;align-items:center;gap:8px;font-family:var(--body);font-weight:700;font-size:1rem;
     padding:13px 26px;border-radius:999px;border:2px solid transparent;cursor:pointer;transition:.15s;white-space:nowrap}
.btn--accent{background:var(--yellow);color:var(--ink)} .btn--accent:hover{background:var(--yellow-600)}
.btn--teal{background:var(--teal);color:#fff} .btn--teal:hover{background:var(--teal-700)}
.btn--sage{background:var(--sage-600);color:#fff} .btn--sage:hover{background:#3F5746}
.btn--ghost{background:transparent;color:var(--teal);border-color:var(--teal)} .btn--ghost:hover{background:var(--teal);color:#fff}
.btn--ghost-w{background:transparent;color:#fff;border-color:#fff} .btn--ghost-w:hover{background:#fff;color:var(--teal)}
.btn--sm{padding:9px 18px;font-size:.92rem}

/* header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(254,253,249,.92);backdrop-filter:blur(8px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:20px;height:72px}
.brand{display:flex;align-items:center;gap:10px;font-family:var(--head);font-weight:700;color:var(--teal);font-size:1.15rem}
.brand img{height:38px;width:auto}
.nav-links{display:flex;align-items:center;gap:26px;list-style:none}
.nav-links a{color:var(--teal-800);font-weight:600;font-size:.98rem}
.nav-links a:hover{color:var(--teal)}
.nav-cta{display:flex;align-items:center;gap:12px}
.nav-toggle,.nav-check{display:none}
@media(max-width:880px){
  .nav-links{position:absolute;top:72px;left:0;right:0;flex-direction:column;gap:0;background:var(--cream);
             border-bottom:1px solid var(--line);max-height:0;overflow:hidden;transition:max-height .3s}
  .nav-links li{width:100%;border-top:1px solid var(--line)}
  .nav-links a{display:block;padding:16px 24px}
  .nav-check:checked ~ .nav-links{max-height:420px}
  .nav-toggle{display:flex;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
  .nav-toggle span{width:24px;height:2px;background:var(--teal);border-radius:2px}
  .nav-cta .btn--ghost{display:none}
}

/* hero */
.hero{position:relative;min-height:clamp(440px,70vh,640px);display:flex;align-items:center;color:#fff;overflow:hidden}
.hero__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 42%}
.hero__scrim{position:absolute;inset:0;background:linear-gradient(100deg,rgba(22,58,73,.88) 0%,rgba(22,58,73,.6) 48%,rgba(22,58,73,.15) 100%)}
.hero__inner{position:relative;padding:64px 0;max-width:640px}
.hero h1{color:#fff;margin:14px 0 16px}
.hero p{color:#e6eef1;font-size:1.2rem;max-width:48ch;margin-bottom:26px}
.hero .kicker{color:var(--yellow)}
.hero__cta{display:flex;gap:14px;flex-wrap:wrap}
.hero>.wrap{width:100%}

/* säulen */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:42px}
.pillar{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:30px;box-shadow:var(--shadow)}
.pillar .ic{width:54px;height:54px;border-radius:50%;background:var(--teal-50);display:flex;align-items:center;justify-content:center;color:var(--teal);margin-bottom:16px}
.pillar:nth-child(2) .ic{background:var(--sage-50);color:var(--sage)}
.pillar:nth-child(3) .ic{background:var(--yellow-50);color:var(--yellow-600)}
.pillar h3{margin-bottom:8px}
.pillar p{font-size:.98rem}
svg.ic-svg{width:28px;height:28px}

/* split (about/care) */
.split{display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(28px,5vw,64px);align-items:center}
.split__media img{border-radius:var(--r);box-shadow:var(--shadow);width:100%;aspect-ratio:4/3;object-fit:cover}
.split--rev .split__media{order:2}
.team-thumbs{display:flex;gap:16px;margin-top:22px;flex-wrap:wrap}
.thumb{text-align:center}
.thumb img,.thumb .ph{width:84px;height:84px;border-radius:50%;object-fit:cover;border:3px solid #fff;box-shadow:0 4px 14px rgba(0,0,0,.12)}
.thumb .ph{background:var(--teal-50);display:flex;align-items:center;justify-content:center;font-family:var(--head);color:var(--teal);font-size:1.5rem}
.thumb span{display:block;font-size:.8rem;color:var(--muted);margin-top:8px;font-weight:600}

/* dogs list (no cards, no filter) */
.dogs{margin-top:36px;border-top:1px solid var(--line)}
.dog-row{display:grid;grid-template-columns:120px 1fr auto;gap:24px;align-items:center;padding:20px 0;border-bottom:1px solid var(--line)}
.dog-row img{width:120px;height:120px;border-radius:var(--r);object-fit:cover}
.dog-row h3{margin-bottom:4px}
.dog-row .meta{font-size:.9rem;color:var(--neutral);margin-bottom:8px}
.tag{display:inline-block;font-size:.74rem;font-weight:700;background:var(--sage-50);color:var(--sage-600);padding:4px 10px;border-radius:999px;margin-right:6px}
.tag--status{background:var(--teal-50);color:var(--teal)}

/* leistungen bands */
.bands{margin-top:44px;display:flex;flex-direction:column;gap:20px}
.band{display:grid;grid-template-columns:auto 1fr auto;gap:24px;align-items:center;background:#fff;border:1px solid var(--line);
      border-radius:var(--r);padding:26px 30px;box-shadow:0 1px 3px rgba(22,58,73,.05)}
.band.is-sensitive{background:linear-gradient(180deg,var(--sage-50),#fff)}
.band__ic{width:52px;height:52px;border-radius:14px;background:var(--teal-50);color:var(--teal);display:flex;align-items:center;justify-content:center}
.band:nth-child(2) .band__ic,.band.is-sensitive .band__ic{background:var(--sage-50);color:var(--sage)}
.band:nth-child(3) .band__ic{background:var(--yellow-50);color:var(--yellow-600)}
.band h3{margin-bottom:3px} .band p{font-size:.96rem}

/* helfen cards */
.helfen{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:42px}
.hcard{background:var(--cream);border:1px solid var(--line);border-radius:var(--r);padding:30px;display:flex;flex-direction:column}
.hcard h3{margin-bottom:8px} .hcard p{font-size:.96rem;flex:1;margin-bottom:18px}
.section--teal .hcard{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.18)}
.section--teal .hcard h3{color:#fff} .section--teal .hcard p{color:#cfe0e6}

/* donate strip (footer) + sticky */
.donate-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px}
.donate-chip{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.22);
             color:#fff;border-radius:999px;padding:10px 18px;font-weight:600;font-size:.92rem}
.sticky-donate{position:fixed;right:18px;bottom:18px;z-index:60;box-shadow:0 10px 30px rgba(0,0,0,.25)}

/* footer */
.footer{background:var(--teal-800);color:#cddde4;padding:64px 0 28px;font-size:.95rem}
.footer .fcol{color:#fff;font-family:var(--body);font-weight:700;font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;margin-bottom:16px}
.footer a{color:#cddde4} .footer a:hover{color:#fff}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px}
.footer ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.footer__brand img{height:54px;margin-bottom:14px}
.footer__legal{border-top:1px solid rgba(255,255,255,.14);margin-top:40px;padding-top:20px;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:.85rem;color:#9fbac6}
.note{font-size:.8rem;color:var(--neutral);font-style:italic}

/* team cards (deck-style) */
.team-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:38px}
.tcard{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column}
.tcard__img{height:200px;background:var(--teal-50);position:relative}
.tcard__img img{width:100%;height:100%;object-fit:cover;object-position:50% 28%}
.tcard__img .ph{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-family:var(--head);color:var(--teal);font-size:3rem;opacity:.45}
.tcard__body{padding:22px;display:flex;flex-direction:column;flex:1}
.tcard__body h3{margin-bottom:2px}
.tcard__role{font-size:.78rem;font-weight:700;color:var(--sage-600);text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px}
.tcard__body p{font-size:.95rem;flex:1}
.tcard__body a{margin-top:14px;font-weight:700;font-size:.92rem;color:var(--teal)}

/* help blocks (expandable full text) */
.help-list{margin-top:40px;display:flex;flex-direction:column;gap:18px}
.help-block{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:26px 30px}
.help-head{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;flex-wrap:wrap;margin-bottom:8px}
.help-head h3{margin:0}
.help-block .teaser{color:var(--muted)}
.help-block details{margin-top:6px}
.help-block summary{cursor:pointer;color:var(--teal);font-weight:700;font-size:.95rem;list-style:none;display:inline-flex;align-items:center;gap:7px;padding:8px 0}
.help-block summary::-webkit-details-marker{display:none}
.help-block summary::before{content:"＋";font-size:1.05rem;line-height:1}
.help-block details[open] summary::before{content:"－"}
.help-block .full{padding-top:6px}
.help-block .full p{margin-bottom:12px;font-size:.98rem}
.help-block .full ul{margin:0 0 14px 20px;color:#33444c;font-size:.96rem}

/* freunde + kontakt */
.links-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:14px;margin-top:26px}
.link-chip{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:14px 18px;color:var(--muted);font-size:.92rem;display:flex;align-items:center;gap:8px}
.kontakt-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:clamp(28px,5vw,56px);margin-top:32px;align-items:start}
.form-field{margin-bottom:16px}
.form-field label{display:block;font-weight:600;font-size:.9rem;margin-bottom:6px;color:var(--teal-800)}
.form-field input:not([type=checkbox]):not([type=radio]),.form-field textarea,.form-field select{width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:8px;font-family:inherit;font-size:1rem;background:#fff;color:var(--ink)}
.antrag>summary{list-style:none;cursor:pointer;background:var(--teal);color:#fff;border-radius:8px;padding:16px 22px;display:flex;align-items:center;justify-content:space-between;font-family:var(--head);font-weight:700;font-size:1.3rem}
.antrag>summary::-webkit-details-marker{display:none}
.antrag>summary .chev{transition:transform .2s}
.antrag[open]>summary{border-radius:8px 8px 0 0}
.antrag[open]>summary .chev{transform:rotate(180deg)}
.antrag .antrag-body{border:1px solid var(--line);border-top:none;border-radius:0 0 8px 8px;padding:24px;background:#fff}
.contact-info{background:var(--teal-50);border-radius:var(--r);padding:28px}
.contact-info h4{font-family:var(--head);color:var(--teal);font-size:1.15rem;margin-bottom:10px}

@media(max-width:880px){
  .pillars{grid-template-columns:1fr}
  .split{grid-template-columns:1fr} .split--rev .split__media{order:0}
  .helfen{grid-template-columns:1fr}
  .band{grid-template-columns:1fr;text-align:left}
  .footer-grid{grid-template-columns:1fr 1fr}
  .team-cards{grid-template-columns:1fr}
  .kontakt-grid{grid-template-columns:1fr}
  .help-head{flex-direction:column}
}

/* nav: keep items on one line */
.nav-links a{white-space:nowrap}
@media(min-width:881px){.nav-links{gap:22px}}

/* donate widget (expanding) */
.donate-widget{position:fixed;right:18px;bottom:18px;z-index:70;display:flex;flex-direction:column;align-items:flex-end;gap:10px}
.dw-check{position:absolute;opacity:0;width:0;height:0;pointer-events:none}
.dw-panel{display:none;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:0 16px 44px rgba(0,0,0,.24);padding:16px;width:212px}
.dw-panel .dw-title{font-family:var(--head);color:var(--teal);font-weight:600;font-size:1.05rem;margin-bottom:10px}
.dw-panel .btn{width:100%;justify-content:center;margin-bottom:8px}
.dw-panel .btn:last-child{margin-bottom:0}
.dw-check:checked ~ .dw-panel{display:block}
.dw-toggle{box-shadow:0 10px 30px rgba(0,0,0,.28);cursor:pointer}

/* freunde link cards */
.link-card{display:flex;align-items:center;gap:14px;background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:16px 18px}
.link-card .li{width:40px;height:40px;border-radius:10px;background:var(--teal-50);color:var(--teal);display:flex;align-items:center;justify-content:center;flex:none}
.link-card .li svg{width:20px;height:20px}
.link-card .lt{font-weight:700;color:var(--ink);font-size:.95rem;line-height:1.25}
.link-card .ls{font-size:.8rem;color:var(--neutral)}

/* shared join form */
.form-row{display:flex;gap:22px;flex-wrap:wrap;margin-bottom:18px}
.radio{display:inline-flex;align-items:center;gap:8px;font-weight:600;color:var(--teal-800);cursor:pointer}
.help-block.is-form{background:var(--teal-50);border:1px solid var(--line);border-top:4px solid var(--teal);box-shadow:var(--shadow);padding:34px 36px;margin:16px 0}
.help-block.is-form h3{font-size:1.4rem}
.help-block.is-form .form-field input,.help-block.is-form .form-field textarea{background:#fff}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:600px){.form-grid{grid-template-columns:1fr}}
@media(max-width:560px){
  .dog-row{grid-template-columns:88px 1fr;gap:16px}
  .dog-row img{width:88px;height:88px}
  .dog-row .dog-cta{grid-column:1/-1}
  .footer-grid{grid-template-columns:1fr}
  .hero__scrim{background:linear-gradient(180deg,rgba(22,58,73,.55),rgba(22,58,73,.9))}
}

/* ── hero centered variant ── */
.hero--center .hero__inner{max-width:780px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center}
.hero--center .hero__cta{justify-content:center}
.hero--center .hero p{max-width:48ch;text-align:center}
.hero--center .hero__scrim{background:linear-gradient(180deg,rgba(22,58,73,.42),rgba(22,58,73,.82))}

/* ── pillar option A: deck columns ── */
.col-pillars{display:flex;gap:38px;align-items:stretch;padding:22px 14px 26px}
.col-pillar{flex:1;position:relative;margin:20px 0 24px;background:var(--teal-50);background-image:repeating-linear-gradient(90deg,rgba(33,87,108,.06) 0 2px,transparent 2px 24px);display:flex;flex-direction:column;align-items:center;text-align:center;padding:42px 20px 28px}
.col-pillar::before{content:"";position:absolute;top:-20px;left:-13px;right:-13px;height:16px;background:var(--teal)}
.col-pillar::after{content:"";position:absolute;bottom:-24px;left:-19px;right:-19px;height:20px;background:var(--teal)}
.col-pillar:nth-child(2){background-color:var(--sage-50);background-image:repeating-linear-gradient(90deg,rgba(126,154,134,.12) 0 2px,transparent 2px 24px)}
.col-pillar:nth-child(2)::before,.col-pillar:nth-child(2)::after{background:var(--sage)}
.col-pillar:nth-child(3){background-color:var(--yellow-50);background-image:repeating-linear-gradient(90deg,rgba(230,184,60,.16) 0 2px,transparent 2px 24px)}
.col-pillar:nth-child(3)::before,.col-pillar:nth-child(3)::after{background:var(--yellow-600)}
.col-pillar .capic{width:56px;height:56px;border-radius:50%;background:#fff;border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:var(--teal);margin-bottom:18px}
.col-pillar:nth-child(2) .capic{color:var(--sage)} .col-pillar:nth-child(3) .capic{color:var(--yellow-600)}
.col-pillar h3{font-size:1.12rem;line-height:1.2} .col-pillar p{font-size:.92rem;margin-top:10px}
@media(max-width:760px){.col-pillars{flex-direction:column;gap:44px}}

/* ── leistungen option B: cards ── */
.leist-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:40px}
.lcard{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:28px;border-top:4px solid var(--teal);box-shadow:var(--shadow);display:flex;flex-direction:column}
.lcard.is-sensitive{border-top-color:var(--sage);background:linear-gradient(180deg,var(--sage-50),#fff)}
.lcard .ic{width:48px;height:48px;border-radius:12px;background:var(--teal-50);color:var(--teal);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.lcard.is-sensitive .ic{background:var(--sage-50);color:var(--sage)}
.lcard h3{font-size:1.1rem;margin-bottom:8px} .lcard p{font-size:.94rem;flex:1}
.lcard a{margin-top:14px;font-weight:700;font-size:.9rem;color:var(--teal)}
@media(max-width:760px){.leist-cards{grid-template-columns:1fr}}

/* contact CTA band */
.cta-band{display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap}
.cta-band .cta-actions{display:flex;gap:14px;flex-wrap:wrap}

/* ── subpages ── */
.page-hero{background:var(--teal);color:#fff;padding:clamp(40px,6vw,68px) 0}
.page-hero.sage{background:linear-gradient(120deg,var(--sage-600),var(--sage))}
.page-hero .crumb{font-size:.85rem;color:#b3cdd5;margin-bottom:10px}
.page-hero .crumb a{color:#cddde4}
.page-hero h1{color:#fff}
.page-hero .sub{color:#d7e4ea;font-size:1.15rem;margin-top:10px;max-width:60ch}
.prose{max-width:68ch;font-size:1.06rem;line-height:1.78}
.prose p{margin-bottom:18px} .prose h2{font-size:1.35rem;margin:30px 0 10px} .prose h3{margin:30px 0 10px} .prose ul{margin:0 0 18px 22px} .prose ul li{margin-bottom:8px}
.prose .fn{font-size:.85rem;color:var(--neutral);font-style:italic;border-top:1px solid var(--line);padding-top:14px;margin-top:26px}
.person-layout{display:grid;grid-template-columns:300px 1fr;gap:clamp(32px,5vw,56px);align-items:start}
.person-layout .portrait{position:sticky;top:96px}
.person-layout .portrait img,.person-layout .portrait .ph{width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:var(--r);box-shadow:var(--shadow)}
.person-layout .portrait .ph{background:var(--teal-50);display:flex;align-items:center;justify-content:center;font-family:var(--head);color:var(--teal);font-size:4.5rem}
.person-layout .role{color:var(--sage-600);font-weight:700;text-transform:uppercase;letter-spacing:.06em;font-size:.8rem;margin-top:14px}
.person-layout .quals{margin-top:18px;padding-top:16px;border-top:1px solid var(--line)}
.person-layout .quals .qt{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--neutral);margin-bottom:12px}
.person-layout .qual-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.person-layout .qual-list li{display:flex;gap:9px;align-items:flex-start;font-size:.92rem;line-height:1.3;color:var(--ink);font-weight:600}
.person-layout .qual-list li::before{content:"✓";flex:none;display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;background:var(--teal);color:#fff;font-size:.66rem;font-weight:700;margin-top:1px}
@media(max-width:760px){.person-layout{grid-template-columns:1fr}.person-layout .portrait{position:static;max-width:260px}}
.dog-detail{display:grid;grid-template-columns:1.1fr 1fr;gap:clamp(28px,5vw,52px);align-items:start}
.dog-detail .gallery img{width:100%;border-radius:var(--r);box-shadow:var(--shadow);aspect-ratio:4/3;object-fit:cover}
.dog-detail .facts{list-style:none;margin:18px 0}
.dog-detail .facts li{display:flex;justify-content:space-between;padding:11px 0;border-bottom:1px solid var(--line);font-size:.98rem}
.dog-detail .facts li b{color:var(--teal)}
@media(max-width:760px){.dog-detail{grid-template-columns:1fr}}
.dog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:36px}
.dgrid-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow)}
.dgrid-card img{width:100%;height:200px;object-fit:cover}
.dgrid-card .b{padding:18px} .dgrid-card h3{margin-bottom:4px}
@media(max-width:760px){.dog-grid{grid-template-columns:1fr}}
/* konzept */
.kz-top{background:var(--teal-800);color:#fff;padding:14px 0;position:sticky;top:0;z-index:50}
.kz-top .wrap{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.kz-top .l{font-family:var(--head);font-weight:700;display:flex;align-items:center;gap:9px}
.kz-top .l img{height:30px}
.kz-top .s{font-size:.85rem;color:#cddde4}
.design-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(232px,1fr));gap:16px;margin-top:10px}
.dcard{display:block;background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:20px;box-shadow:var(--shadow);transition:.15s}
.dcard:hover{transform:translateY(-2px);border-color:var(--teal)}
.dcard .n{font-family:var(--head);color:var(--teal);font-weight:600;font-size:1.08rem;margin-bottom:4px}
.dcard .d{font-size:.86rem;color:var(--muted)}
.dcard .go{display:inline-block;margin-top:10px;font-weight:700;color:var(--teal);font-size:.85rem}
.ktable{width:100%;border-collapse:collapse;margin-top:22px;font-size:.95rem}
.ktable th,.ktable td{text-align:left;padding:11px 14px;border-bottom:1px solid var(--line)}
.ktable th{background:var(--teal-50);color:var(--teal)}
.b-ok{color:var(--sage-600);font-weight:700} .b-open{color:var(--yellow-600);font-weight:700}
.tree{display:flex;flex-direction:column;align-items:center;gap:6px;margin-top:24px}
.tree .lvl{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.tree .box{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:12px 18px;text-align:center;box-shadow:var(--shadow);font-weight:600;color:var(--teal)}
.tree .box.root{background:var(--teal);color:#fff}
.tree .box small{display:block;font-weight:400;color:var(--neutral);font-size:.78rem}
.tree .box.root small{color:#cfe0e6}
.tree .arr{color:var(--neutral)}
.approve{list-style:none;margin-top:20px}
.approve li{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-bottom:1px solid var(--line)}
.approve .appitem{display:flex;gap:12px;align-items:flex-start;cursor:pointer;width:100%}
.approve .cb{width:20px;height:20px;accent-color:var(--teal);flex:none;margin-top:2px;cursor:pointer}
.flink-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:34px}
@media(max-width:820px){.flink-grid{grid-template-columns:1fr 1fr}}@media(max-width:560px){.flink-grid{grid-template-columns:1fr}}
.flink-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:22px 24px 8px;box-shadow:var(--shadow)}
.flink-head{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.flink-head .li{width:42px;height:42px;border-radius:11px;background:var(--teal-50);color:var(--teal);display:flex;align-items:center;justify-content:center;flex:none}
.flink-head .li svg{width:22px;height:22px}
.flink-head h3{font-size:1.06rem;margin:0}
.flink-card:nth-child(3n+2) .li{background:var(--sage-50);color:var(--sage-600)}
.flink-card:nth-child(3n) .li{background:var(--yellow-50);color:var(--yellow-600)}
.flink-card ul{list-style:none;margin:0;padding:0}
.flink-card li{border-top:1px solid var(--line)}.flink-card li:first-child{border-top:0}
.flink-card a{display:flex;justify-content:space-between;align-items:center;gap:10px;padding:11px 2px;color:var(--teal-800);font-size:.93rem;font-weight:600;line-height:1.35}
.flink-card a:hover{color:var(--teal)}
.flink-card a .ext{flex:none;color:var(--sage);opacity:.55;transition:.15s}.flink-card a .ext svg{width:14px;height:14px;display:block}
.flink-card a:hover .ext{opacity:1;transform:translate(1px,-1px)}
.qbox{background:var(--yellow-50);border:1px solid var(--yellow);border-radius:var(--r);padding:24px;margin-top:24px}
.qbox h3{color:var(--teal)} .qbox ol{margin:12px 0 0 20px} .qbox li{margin-bottom:10px}

/* tiergestützte settings cards (Franzi & Vilma) */
.tg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:36px 0 0}
@media(max-width:820px){.tg-grid{grid-template-columns:1fr}}
.tg-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:28px 26px;box-shadow:var(--shadow);display:flex;flex-direction:column}
.tg-card .tg-ic{width:50px;height:50px;border-radius:14px;background:var(--sage-50);color:var(--sage-600);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.tg-card .tg-ic svg{width:25px;height:25px}
.tg-card h3{font-size:1.2rem;margin-bottom:9px}
.tg-card>p{font-size:.95rem;color:#33444c}
.tg-list{list-style:none;margin-top:auto;padding-top:18px;margin-bottom:0;border-top:1px solid var(--line);display:grid;gap:10px}
.tg-list li{position:relative;padding-left:28px;font-size:.9rem;font-weight:600;color:var(--teal-800);line-height:1.3}
.tg-list li::before{content:"";position:absolute;left:0;top:-1px;width:19px;height:19px;border-radius:50%;background:var(--sage-50)}
.tg-list li::after{content:"";position:absolute;left:5.5px;top:4px;width:7px;height:4px;border-left:2px solid var(--sage-600);border-bottom:2px solid var(--sage-600);transform:rotate(-45deg)}
.tg-abgrenzung{background:linear-gradient(180deg,var(--sage-50),#fff);border:1px solid var(--sage);border-radius:var(--r);padding:30px 34px;margin:36px 0 0;box-shadow:var(--shadow)}
.tg-abgrenzung__head{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.tg-abgrenzung__head .ic{width:46px;height:46px;border-radius:12px;background:#fff;border:1px solid var(--sage);color:var(--sage-600);display:flex;align-items:center;justify-content:center;flex:none}
.tg-abgrenzung__head .ic svg{width:24px;height:24px}
.tg-abgrenzung__head h3{margin:0}
.tg-abgrenzung p{font-size:.96rem;margin-bottom:9px;color:#33444c}
.tg-claim{font-family:var(--head);color:var(--sage-600);font-size:1.12rem;font-style:italic;text-align:center;margin:16px 0 4px;padding-top:16px;border-top:1px solid rgba(79,107,87,.25)}

/* patenschaften (accent per Säule via --accent / --accent-bg inline vars) */
.paten-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
@media(max-width:820px){.paten-grid{grid-template-columns:1fr}}
.paten-card{background:#fff;border:1px solid var(--line);border-top:4px solid var(--accent,var(--teal));border-radius:var(--r);padding:30px 28px;box-shadow:var(--shadow);display:flex;flex-direction:column}
.paten-card .pic{width:54px;height:54px;border-radius:14px;background:var(--accent-bg,var(--teal-50));color:var(--accent,var(--teal));display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.paten-card .pic svg{width:27px;height:27px}
.paten-card h3{margin-bottom:4px;min-height:2.24em}
.paten-card .ptag{font-size:.82rem;font-weight:700;color:var(--accent,var(--teal));text-transform:uppercase;letter-spacing:.04em;margin-bottom:12px;line-height:1.3;min-height:2.6em}
.paten-card>p{font-size:.95rem;color:#33444c}
.paten-card>p:first-of-type{min-height:9.4em}
.paten-card>p:nth-of-type(2){min-height:3.1em}
.paten-list{list-style:none;margin:10px 0 0;padding:0;display:grid;gap:9px}
.paten-list li{position:relative;padding-left:22px;font-size:.9rem;font-weight:600;color:var(--teal-800);line-height:1.34}
.paten-list li::before{content:"";position:absolute;left:0;top:8px;width:8px;height:8px;border-radius:50%;background:var(--accent,var(--teal))}
.paten-cta{display:flex;align-items:center;justify-content:space-between;gap:22px;flex-wrap:wrap;margin-top:38px;background:var(--teal-50);border:1px solid var(--line);border-radius:var(--r);padding:22px 28px}
.paten-cta strong{display:block;font-family:var(--head);color:var(--teal);font-size:1.15rem}
.paten-cta span{color:var(--muted);font-size:.98rem}

/* einblicke bento mosaic */
.bento{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:180px;gap:14px;margin-top:34px}
.bento img{width:100%;height:100%;object-fit:cover;border-radius:var(--r);box-shadow:var(--shadow);display:block}
.bento .big{grid-column:span 2;grid-row:span 2}
.bento .tall{grid-row:span 2}
@media(max-width:760px){
  .bento{grid-template-columns:1fr 1fr;grid-auto-rows:auto;gap:12px}
  .bento img{height:auto}
  .bento .big,.bento .tall{grid-column:auto;grid-row:auto}
}
@media(max-width:440px){.bento{grid-template-columns:1fr}}
