/* Albellus Software AG - Website Stylesheet */
/* Kein Google Fonts (DSGVO) - self-hosted Open Sans statt CDN */

@font-face{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/open-sans-v44-latin-400.woff2') format('woff2');
}
@font-face{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('fonts/open-sans-v44-latin-600.woff2') format('woff2');
}
@font-face{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/open-sans-v44-latin-700.woff2') format('woff2');
}

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

:root{
  --orange:#ee7100;
  --orange-dark:#C96316;
  --hover-brown:#96490D;
  --dark:#1f2226;
  --text:#333333;
  --muted:#6b6b6b;
  --border:#e4e4e4;
  --bg:#ffffff;
  --bg-soft:#f7f7f7;
  --bg-card:#F2EDE6;
  --bg-situation:#F7F4F1;
  --font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --content-width: 900px;
}

html{ scroll-behavior:smooth; height:100%; font-size:17px; overflow-y:scroll; }

body{
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-top: 65px;
}

.container{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

a{ color: var(--orange); text-decoration: none; }
a:hover{ color: var(--hover-brown); text-decoration: underline; }

img{ max-width: 100%; display: block; }

h1, h2, h3{ color: var(--dark); font-weight: 500; line-height: 1.25; }
h1{ font-size: 1.8rem; margin-bottom: 1rem; }
h2{ font-size: 1.6rem; margin-bottom: 1rem; }
h3{ font-size: 1.15rem; margin-bottom: .5rem; }

p{ margin-bottom: 1.25rem; }
p:last-child{ margin-bottom: 0; }

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

/* COOKIE-BANNER */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--dark);
  color: #ffffff;
  padding: 18px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
.cookie-banner.is-visible{ display: flex; }
.cookie-banner-text{
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
  max-width: 640px;
  flex: 1 1 320px;
}
.cookie-banner-text a{ color: var(--orange); text-decoration: underline; }
.cookie-banner-text a:hover{ color: var(--orange-dark); }
.cookie-banner-actions{
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}
.cookie-banner-btn{
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  border: 2px solid var(--orange);
  cursor: pointer;
  min-width: 130px;
}
.cookie-banner-btn.is-accept{
  background: var(--orange);
  color: #ffffff;
}
.cookie-banner-btn.is-accept:hover{ background: var(--hover-brown); border-color: var(--hover-brown); }
.cookie-banner-btn.is-decline{
  background: transparent;
  color: #ffffff;
}
.cookie-banner-btn.is-decline:hover{ background: rgba(255,255,255,.1); }

@media (max-width: 600px){
  .cookie-banner{ justify-content: flex-start; padding: 16px; }
  .cookie-banner-actions{ width: 100%; }
  .cookie-banner-btn{ flex: 1 1 0; min-width: 0; }
}

/* NAVIGATION - sticky */
.site-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid #9c8f82;
}
.nav-inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
}
.nav-logo{ display:flex; align-items:center; }
.nav-logo img{ height: 51px; width: auto; }
.nav-links{
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-left: 5rem;
}
.nav-right{
  display:flex;
  align-items:center;
  gap: 1.4rem;
}
.nav-link{
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--muted);
  white-space: nowrap;
}
.nav-link:hover{ color: var(--hover-brown); text-decoration: underline; }
.nav-link.is-active{ color: var(--orange); }
.nav-link.is-active:hover{ color: var(--hover-brown); text-decoration: underline; }
.nav-link.is-multiline{ white-space: normal; line-height: 1.15; text-align: center; }
.nav-cta{
  display:inline-block;
  background: #fff;
  color: var(--orange);
  border: none;
  padding: 5px 13px;
  border-radius: 3px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.nav-cta:hover{ color: var(--hover-brown); text-decoration:none; }
.service-footer-row .nav-cta:hover{ text-decoration: underline; }

.nav-contact-link{
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--orange);
  white-space: nowrap;
}
.nav-contact-link:hover{ color: var(--hover-brown); text-decoration: underline; }
.nav-contact-line{
  font-size: 17px;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-hamburger{
  display:none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span{
  display:block; width:22px; height:2px; background: var(--dark);
}
.mobile-nav{
  display:none;
  flex-direction: column;
  gap: 2px;
  padding: .5rem 24px 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.is-open{ display:flex; }
.mobile-nav .nav-link{ padding: 10px 0; font-size: 1rem; }

@media (max-width: 720px){
  .nav-links{ display:none; }
  .nav-hamburger{ display:flex; }
}

/* NAV DROPDOWN - "Leistungen" */
/* "Leistungen" ist ein echter Link (Navigation zu leistungen.html); das
   Untermenue wird ueber den separaten Caret-Button auf-/zugeklappt, damit
   beide Aktionen unabhaengig voneinander funktionieren. */
.nav-dropdown{ position:relative; display:flex; align-items:center; font-size:17px; line-height:1.2; }
.nav-dropdown-toggle{
  display:inline-flex;
  align-items:center;
  font-weight: 400;
  color: var(--muted);
}
.nav-dropdown-toggle:hover{ color: var(--hover-brown); text-decoration: underline; }
.nav-dropdown-toggle.is-active{ color: var(--orange); }
.nav-dropdown-toggle.is-active:hover{ color: var(--hover-brown); text-decoration: underline; }
.nav-dropdown-toggle-group{
  background:none;
  border:none;
  padding:0;
  margin:0;
  font-family:inherit;
  cursor:pointer;
  gap:5px;
}
.nav-dropdown-toggle-group .nav-caret{ color:inherit; }
.nav-dropdown-caret{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:none;
  border:none;
  padding:4px;
  margin-left:1px;
  font-family:inherit;
  color: var(--muted);
  cursor:pointer;
}
.nav-dropdown-caret:hover{ color: var(--hover-brown); }
.nav-dropdown-toggle.is-active + .nav-dropdown-caret{ color: var(--orange); }
.nav-caret{
  width:9px; height:9px;
  flex-shrink:0;
  transition: transform .2s ease;
}
.nav-dropdown.is-open .nav-caret{ transform: rotate(180deg); }

.nav-dropdown-menu{
  display:none;
  position:absolute;
  top: calc(100% + 14px);
  left:0;
  min-width: 300px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:6px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  padding:.4rem;
  z-index: 200;
}
.nav-dropdown.is-open .nav-dropdown-menu{ display:flex; flex-direction:column; }
.nav-dropdown-link{
  display:block;
  padding:.65rem .8rem;
  border-radius:4px;
  font-size:17px;
  font-weight:400;
  color: var(--text);
  white-space:nowrap;
}
.nav-dropdown-link:hover{ color: var(--hover-brown); text-decoration:underline; }

/* Mobile: Dropdown als Akkordeon statt Ueberlagerung */
@media (max-width: 720px){
  .mobile-nav .nav-dropdown{
    width:100%;
    justify-content:space-between;
  }
  .mobile-nav .nav-dropdown-toggle{
    padding:10px 0;
    font-size:1rem;
  }
  .mobile-nav .nav-dropdown-caret{
    padding:10px 4px 10px 12px;
  }
  .mobile-nav .nav-dropdown-toggle-group{
    width:100%;
    justify-content:space-between;
  }
  .mobile-nav .nav-dropdown-menu{
    position:static;
    display:none;
    min-width:0;
    border:none;
    box-shadow:none;
    padding:0 0 .5rem 1rem;
  }
  .mobile-nav .nav-dropdown.is-open .nav-dropdown-menu{ display:flex; }
  .mobile-nav .nav-dropdown-link{ padding:.55rem 0; white-space:normal; }
}

/* HERO */
.hero{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3.5rem 24px 2.5rem;
}
.hero h1{ max-width: 640px; }
.hero-lead{
  font-size: 1.15rem;
  color: var(--text);
  max-width: 620px;
  margin-bottom: 2.25rem;
  font-weight: 700;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-link{
  font-size: 1.05rem;
  font-weight: 700;
}
.hero-link-orange{ color: var(--orange); }
.hero-link-orange:hover{ color: var(--hover-brown); text-decoration:none; }
.hero-link-dark{ color: var(--dark); }
.hero-link-dark:hover{ color: var(--hover-brown); text-decoration:none; }

/* CTA BUTTON */
.btn-primary{
  display:inline-block;
  background: var(--orange);
  color:#fff;
  padding: 14px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1rem;
}
.btn-primary:hover{ background: var(--hover-brown); text-decoration:none; }
.btn-white{
  display:inline-block;
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 14px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1rem;
}
.btn-white:hover{ background: var(--orange); color:#fff; text-decoration:none; }
.btn-secondary-link{
  font-size: 1.15rem;
  color: var(--dark);
}
.btn-secondary-link:hover{ color: var(--hover-brown); text-decoration:none; }

/* SECTIONS - Leistungen */
.section{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 4.5rem 24px;
}
.section-left{
  margin-left: 0;
  margin-right: auto;
}
.leistungen-section{
  padding: 3.5rem 24px 2rem;
  max-width: var(--content-width);
}
.leistungen-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.leistungen-grid .leistung:last-child{
  grid-column: 1 / -1;
  max-width: calc(50% - .625rem);
  margin: 0 auto;
}
.leistung{
  border: 2px solid #9c8f82;
  border-radius: 6px;
  padding: 1.25rem 1.25rem 1rem;
  background: #fff;
  display:flex;
  flex-direction:column;
  color: inherit;
  text-decoration: none;
  transition: border-color .15s ease;
}
.leistung:hover{ border-color: var(--orange); text-decoration: none; }
.leistung:hover h2{ color: var(--orange); }
.leistung-header{ margin-bottom: 1.1rem; }
.leistung-header img{ height: 1.8rem; width: auto; }
.leistung-header h2{ font-size: 1.05rem; margin-bottom: 0; }
.leistung p{
  max-width: none;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: .6rem;
}
.leistung .link-teaser{ margin-top: auto; margin-bottom: 0; font-size: .85rem; color: var(--dark); text-decoration: none; }
.leistung:hover .link-teaser{ color: var(--dark); text-decoration: underline; }
.leistung .link-teaser:hover{ color: var(--orange); text-decoration: underline; }

@media (max-width: 900px){
  .leistungen-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .leistungen-grid{ grid-template-columns: 1fr; }
  .leistungen-grid .leistung:last-child{ max-width: none; }
}

/* Platzhalter-Download-Link (Leistungen 2-6) */
.link-placeholder{
  display:inline-block;
  font-size: .9rem;
  color: var(--muted);
  border-bottom: 1px dashed var(--border);
  cursor: default;
}
.link-placeholder:hover{ text-decoration:none; }

.download-link{
  display:inline-block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.download-link:hover{ color: var(--hover-brown); text-decoration:underline; }

.link-teaser{
  display:inline-block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

/* Grafiken ACUTIO-Seite */
.figure-block{
  margin: 2.5rem 0;
  padding: 1.5rem;
  border-radius: 6px;
}
.figure-block img{ margin: 0 auto; }
.figure-caption{
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
  margin-bottom: 0;
}

/* Interaktives Chart - Platzhalter */
.chart-placeholder{
  margin: 2.5rem 0;
  padding: 2.5rem 1.5rem;
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: 6px;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}

/* Impressum / Datenschutz - Definitionsliste statt Tabelle */
.info-block{ margin-bottom: 2rem; }
.info-row{
  display:flex;
  gap: 1.5rem;
  padding: .5rem 0;
  border-bottom: none;
}
.info-row dt{
  flex: 0 0 220px;
  font-weight: 600;
  color: var(--dark);
}
.info-row dd{ color: var(--text); }
dl{ margin: 0 0 2rem 0; }

/* FOOTER */
.site-footer{
  background: var(--bg);
  padding: 1.25rem 0;
  margin-top: auto;
  border-top: 1px solid #9c8f82;
}
.footer-inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: .4rem;
  min-height: 51px;
  font-size: .82rem;
}
.footer-links{
  display:flex;
  gap: 2rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.footer-links a{ color: var(--muted); }
.footer-links a:hover{ color: var(--orange-dark); }
.footer-brand{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: center;
}
.footer-brand img{ height: 51px; width: auto; }
.footer-meta{ color: var(--muted); }

@media (max-width: 900px){
  .footer-inner{
    row-gap: .6rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .footer-links{
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
  }
  .footer-brand{
    flex-wrap: wrap;
    white-space: normal;
  }
}

/* ===================================================== */
/* ACUTIO-Seite (acutio.html) - Struktur wie v2-Referenz, */
/* aber hell statt dunkel, ohne hr, ohne externe Icon-CDN */
/* ===================================================== */

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  background: #fdece0;
  border: 1px solid var(--orange);
  border-radius: 3px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.hero-split{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items:start;
}
.hero-text-col .hero-lead{ margin-bottom:0; }
@media (max-width: 700px){
  .hero-split{ grid-template-columns: 1fr; }
  .hero-split > div:last-child, .hero-split > a.hero-graphic-box{ order: -1; max-width: 320px; margin: 0 auto 1.5rem; }
}
.hero-graphic-box{
  display:block;
  position:relative;
  background: #fff;
  border-top: 1px solid #9c8f82;
  border-right: 1px solid #9c8f82;
  border-radius: 0 6px 0 0;
  padding: 1.5rem;
  margin-top: .5rem;
  text-decoration:none;
  aspect-ratio: 1;
  overflow: hidden;
}
.hero-graphic-box img{
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.hero-split h1 .accent{ color: var(--orange); }
.hero-text-col{ margin-top: .8rem; }
.hero-split .hero-lead strong{ color: var(--dark); }
.accent{ color: var(--orange); }

.stats{ display:flex; flex-direction:column; gap:10px; }
.stat-card{
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 20px;
  display:flex;
  align-items:center;
  gap: 16px;
  background: #fff;
}
.stat-card.hi{ background: #fdece0; border-color: var(--orange); }
.stat-num{ font-size: 1.7rem; font-weight:700; color: var(--orange); min-width: 64px; line-height:1; }
.stat-text strong{ display:block; font-size:.92rem; color: var(--dark); margin-bottom:2px; }
.stat-text span{ font-size:.8rem; color: var(--muted); line-height:1.4; }

/* Ablauf-Band - hell statt dunkel */
.band-light{
  padding: 3.5rem 24px;
  margin: 1rem 0;
}
.band-light-inner{ max-width: calc(var(--content-width) - 48px); margin:0 auto; }
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.steps.cols-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){
  .steps{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .steps{ grid-template-columns: 1fr; }
}
.step{ background:#fff; padding: 1.5rem 1.25rem; border: none; min-height: 11.5rem; }
.band-light-inner .steps.cols-2{ grid-template-columns: 1.1fr 1fr; column-gap: 2.5rem; }
.band-light-inner .steps.cols-2 .step{ padding-left: 0; }
.step-week{ font-size:.75rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color: var(--orange); margin-bottom:.4rem; }
.step h3{ font-size:1.15rem; margin-bottom:.5rem; }
.step p{ font-size:1.15rem; color: var(--text); margin-bottom:0; line-height:1.5; hyphens: auto; -webkit-hyphens: auto; }

/* Ablauf-Zeitleiste: 4 kompakte Wochensegmente + 1 optionales Segment */
.timeline-weeks{
  display:flex;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.timeline-week{
  flex:1;
  height: 6px;
  background: var(--orange);
  border-radius: 3px;
}
.timeline-week.is-optional{
  background: #9c8f82;
}
.timeline-content{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.timeline-main{
  border: 2px solid var(--orange);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  background: #fff;
}
.timeline-optional{
  border: 2px solid #9c8f82;
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  background: #fff;
}
.timeline-optional .step-week{ color: #9c8f82; }
.optional-link{ color: var(--dark); }
.optional-link:hover{ color: var(--hover-brown); text-decoration: underline; }
@media (max-width: 600px){
  .timeline-content{ grid-template-columns: 1fr; }
}
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.split{ display:grid; grid-template-columns:1.1fr 1fr; gap:2.5rem; align-items:stretch; }
@media (max-width: 700px){
  .split{ grid-template-columns: 1fr; }
}

.card, .prob{
  border: 2px solid var(--orange);
  border-radius: 6px;
  padding: 1.5rem;
  background:#fff;
}
.card.hi{ background:#fdece0; border-color: var(--orange); }
.card h3, .prob h3{ font-size:1rem; margin-bottom:.5rem; }
.card p, .prob p{ font-size:.9rem; color: var(--muted); margin-bottom:0; }
a.card{ display:block; color: inherit; text-decoration:none; transition: border-color .15s ease; }
a.card:hover{ border-color: var(--orange); text-decoration:none; }
a.card:hover h3{ color: var(--orange-dark); }

@media (max-width: 900px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .grid-4{ grid-template-columns: 1fr; }
}

.facts{ display:flex; flex-direction:column; gap: 1rem; }
.fact{
  border: 2px solid #9c8f82;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  background:#fff;
}
.fact strong{ display:block; font-size:.92rem; color: var(--dark); }
.fact span{ font-size:.82rem; color: var(--muted); }

.fragen{ display:flex; flex-direction:column; gap: .9rem; }
.frage{ font-size:1rem; color: var(--text); }
.frage .arrow{ color: var(--orange); font-weight:700; margin-right:.5rem; }

.cta-block{
  max-width: var(--content-width);
  margin: 1rem auto 0;
  padding: 3.5rem 24px 1.7rem;
  text-align:left;
}
.cta-block h2 .accent{ color: var(--orange); }
.cta-sub{ font-size:.9rem; color: var(--muted); margin-top:1rem; }

.cta-contact-line{
  font-size: 17px;
  color: var(--dark);
}
.cta-email-link{
  color: var(--orange);
  text-decoration: none;
}
.cta-email-link:hover{ color: var(--hover-brown); }

.placeholder-text{
  color: var(--muted);
  font-style: italic;
}

/* ===================================================== */
/* Team-Seite (ueber-uns.html)                            */
/* ===================================================== */
.crew-list{ display:flex; flex-direction:column; gap: 1.25rem; }
.crew{
  display:flex;
  gap: 1.75rem;
  align-items:flex-start;
  border: none;
  border-radius: 6px;
  padding: 1.5rem;
  background:#fff;
}
.crew-photo{
  width: 190px; height: 238px; /* ca. 4:5 Hochformat */
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--bg-card);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
  overflow: hidden;
}
.crew-photo.has-image{ background: none; }
.crew-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  display: block;
}
.crew-body{ flex: 1; }
.crew-body h3{ font-size: 1.1rem; margin-bottom: .3rem; }
.crew-role{
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .65rem;
}
.crew-body p{ font-size: .92rem; color: var(--dark); line-height: 1.65; margin-bottom: 0; }

@media (max-width: 600px){
  .crew{ flex-direction: column; }
  .crew-photo{ width: 160px; height: 213px; margin: 0 auto; }
}

/* ===================================================== */
/* Eyebrow - Kategorie-Label ueber Seitentiteln (alle Seiten) */
/* ===================================================== */
/* ===================================================== */
/* Service-Box - Rahmen oben+rechts wie Leistungen-Kacheln */
/* (Problem/Loesung/Erfahrung-Abschnitte auf Unterseiten)  */
/* ===================================================== */
.service-box{
  border-top: 1px solid #9c8f82;
  border-right: 1px solid #9c8f82;
  border-radius: 0 6px 0 0;
  padding: 1.25rem 1.25rem 1rem;
  transition: border-color .15s ease;
}
.service-box:hover{ border-color: var(--orange); }

.acutio-block{
  border-top: 1px solid #9c8f82;
  border-right: 1px solid #9c8f82;
  border-radius: 0 6px 0 0;
  padding-left: 1.25rem;
  transition: border-color .15s ease;
}
.acutio-block:hover{ border-color: var(--orange); }

.eyebrow{
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}

/* ===================================================== */
/* Info-Callout - Hinweisbox (z.B. Standort auf netzwerk.html) */
/* ===================================================== */
.info-callout{
  margin-top: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

/* ===================================================== */
/* Methodik-Text neben Facts-Liste (z.B. acutio.html, .split) */
/* ===================================================== */
.methodik-body p{ color: var(--text); line-height: 1.7; hyphens: auto; -webkit-hyphens: auto; }

/* ===================================================== */
/* Team-Box (ueber-uns.html) - Rahmen um Methodik-Team-Bereich */
/* Rein statisch, kein Hover (kein klickbares Angebot)      */
/* ===================================================== */
.team-box{
  border-top: 1px solid #9c8f82;
  border-right: 1px solid #9c8f82;
  border-radius: 0 6px 0 0;
  padding: 1.5rem 1.5rem 1rem;
  margin-top: 2rem;
}
.team-box .crew-list{ margin-top: 2rem; }

/* ===================================================== */
/* Partner-Box (ueber-uns.html) - Netzwerkpartner unter dem Team */
/* Rein statisch, kein Hover (kein klickbares Angebot)      */
/* ===================================================== */
.partner-box{
  margin-top: 2.5rem;
  border-top: 1px solid #9c8f82;
  border-right: 1px solid #9c8f82;
  border-radius: 0 6px 0 0;
  padding: 1.5rem 1.5rem 1rem;
}
.partner-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.partner-item{
  border: none;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  display:flex;
  flex-direction:column;
  gap: .35rem;
}
.partner-item strong{ font-size:.95rem; color: var(--dark); }
.partner-item span{ font-size:.92rem; color: var(--dark); }
.partner-item a{ font-size:.85rem; }
@media (max-width: 600px){
  .partner-grid{ grid-template-columns: 1fr; }
}

/* ===================================================== */
/* Ressourcen-Liste (download.html) - 1:1 im Stil der Team-Karten, nur Text */
/* ===================================================== */
.resource-list{ display:flex; flex-direction:column; gap: 1.25rem; margin-top:2rem; }
.resource-card{
  display:block;
  border: 2px solid var(--orange);
  border-radius: 6px;
  padding: 1.5rem;
  background:#fff;
  color: inherit;
  text-decoration:none;
  transition: border-color .15s ease;
}
.resource-card:hover{ border-color: var(--orange); text-decoration:none; }
.resource-card:hover h3{ color: var(--orange-dark); }
.resource-card h3{ font-size: 1.1rem; margin-bottom: .3rem; }
.resource-card .resource-role{
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .65rem;
}
.resource-card p{ font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: .65rem; }
.resource-link{ font-size:.85rem; font-weight:700; color: var(--orange); }

/* ===================================================== */
/* Situationen-Akkordeon (situationen.html) - Story je Kasten */
/* ===================================================== */
.situation-details{
  margin-top: 1rem;
}
.situation-details summary{
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  list-style: none;
  line-height: 1.5;
}
.situation-details summary:hover{
  color: var(--hover-brown);
  text-decoration: underline;
}
.situation-details summary::-webkit-details-marker{ display:none; }
.situation-details summary::before{
  content: "\00a0+\00a0";
  font-weight: 700;
}
.situation-details[open] summary::before{
  content: "\00a0\2212\00a0";
}
.situation-details[open] summary{ color: var(--orange-dark); }
.situation-details .situation-story{
  margin-top: .6rem;
  margin-bottom: .6rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.15;
}
#situation-1, #situation-2, #situation-3, #situation-4, #situation-5, #situation-6{
  background: none;
  border-top: 1px solid #9c8f82;
  border-right: 1px solid #9c8f82;
  border-bottom: none;
  border-left: none;
  border-radius: 0 6px 0 0;
  transition: border-color .15s ease;
}
#situation-1:hover, #situation-2:hover, #situation-3:hover, #situation-4:hover, #situation-5:hover, #situation-6:hover{
  border-color: var(--orange);
}
.situation-arrow-link::after{
  content: " \2192";
}

/* 6 gleich grosse Kacheln auf situationen.html - Zentrierungs-Regel fuer
   letztes Kind (gedacht fuer ungerade Anzahl) hier bewusst aufgehoben,
   damit Kasten 6 regulaer in Zeile 3 rechts unter Kasten 4 steht. */
#situation-6{
  grid-column: auto;
  max-width: none;
  margin: 0;
}

.situationen-grid{
  grid-template-columns: 1fr;
}
.situationen-grid .leistung-header h2{
  font-size: 1.3rem;
}
.situationen-intro{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin: 1.25rem 0 1.75rem;
  padding: 0 1.25rem;
}
@media (max-width:700px){
  .situationen-intro{ grid-template-columns: 1fr; gap: 1rem; }
}
.situationen-intro p{
  hyphens: auto;
  -webkit-hyphens: auto;
}
.situationen-toc{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .3rem;
  height: 100%;
  margin: 0;
}
.situationen-toc-item{
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
}
.situationen-toc-item:hover{ color: var(--hover-brown); text-decoration: underline; }
.situationen-toc-item .situation-number{
  font-size: 1.15rem;
  margin-right: 4ch;
}
.situationen-legend{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  color: var(--dark);
}
.situationen-legend-item{
  display: flex;
  align-items: center;
  gap: .5rem;
}
.situationen-legend-item{ cursor: default; }
.situationen-legend-item:hover{ color: var(--orange); }
.situationen-legend-item:hover svg{ color: var(--orange); }
.situ-service-link{ color: var(--orange); }
.situ-service-link:hover{ color: var(--hover-brown); text-decoration: underline; }
.situationen-toc-item.is-legend-active,
.situationen-toc-item.is-legend-active .situation-number,
.leistung.is-legend-active .situation-number,
.leistung.is-legend-active .leistung-header h2,
.situ-service-link.is-legend-active{
  color: var(--orange);
}
.situ-service-link.is-legend-active{
  font-weight: 700;
}
.situationen-legend-item svg{
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--dark);
}
.situation-icon-row{
  display: flex;
  align-items: center;
  margin-bottom: .75rem;
}
.situation-icon-row h2{
  margin: 0 .75rem 0 0;
}
.situation-number{
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-right: 4ch;
}
.situation-icon-row svg{
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--dark);
}
.situation-icon-row svg + svg{
  margin-left: .6rem;
}
.situation-arrow-row{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  line-height: 1.5;
}
.leistung p.situation-arrow-row{
  margin-bottom: 0;
}
.situation-back-link{
  margin-top: 1rem;
}
.situation-arrow-row svg{
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--dark);
}
.situation-arrow-row:has(.link-teaser:hover) svg{
  color: var(--orange);
}
.situationen-grid p[style="line-height:1.15;"]{
  font-size: 1.15rem;
  line-height: 1.5 !important;
  color: var(--dark) !important;
}
.situationen-grid .situation-story{
  font-size: 1.15rem;
  line-height: 1.5 !important;
  color: var(--dark) !important;
}
.situationen-grid .situation-arrow-link{
  font-weight: 400 !important;
}
.situationen-grid p[style="font-weight:700; line-height:1.15; color:#9c8f82;"]{
  font-size: 1.15rem;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  color: var(--dark) !important;
  margin-bottom: 0;
}

/* Sprungmarken-Anker vor jedem Situations-Kasten: erzeugt Leerzeile
   und dient als Ziel fuer die Nav-Links, damit die Sticky-Nav (64px)
   den Kasten nach dem Sprung nicht ueberdeckt. */
.situation-anchor{
  height: 1.7rem;
  scroll-margin-top: 80px;
}

/* Anker fuer den Sprung zurueck an den Seitenanfang (#top): braucht
   keine zusaetzliche Leerzeile vor dem Eyebrow, nur das Scroll-Offset. */
.page-top-anchor{
  scroll-margin-top: 80px;
}

/* Zweispaltiges Layout innerhalb eines Situations-Kastens (Probe Kasten 1):
   links Fliesstext/Kennzahl, rechts Studien-Details, CTA und Rueck-Link. */
.situation-columns{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items:start;
  margin-top: .75rem;
}
.situation-col-left{
  hyphens: auto;
  -webkit-hyphens: auto;
}
.situation-col-right > .situation-arrow-row:first-child{
  margin-top: 4px;
}
.no-hyphens{
  hyphens: none;
  -webkit-hyphens: none;
}
@media (max-width: 700px){
  .situation-columns{ grid-template-columns: 1fr; }
}
.situation-back-link{
  font-size: .9rem;
  color: var(--muted);
}
.situation-back-link:hover{ color: var(--hover-brown); text-decoration: underline; }

/* ===================================================== */
/* Startseite (index.html) - Zahlenblock, Kern-Karte,     */
/* Outline-Button                                         */
/* ===================================================== */
.btn-outline{
  display:inline-block;
  background: transparent;
  color: var(--text);
  border: 2px solid #9c8f82;
  padding: 12px 26px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1rem;
}
.btn-outline:hover{ border-color: var(--orange); color: var(--orange); text-decoration:none; }

.home-hero .hero-split{ grid-template-columns: 1fr; }
.home-hero h1{ max-width: none; font-weight: 500; }
.home-hero .hero-lead{ max-width: none; }
.home-hero{ padding: 3.75rem 24px .5rem; max-width: 1300px; }

.home-service-boxes{
  display:flex;
  flex-direction:column;
  gap: 1.25rem;
  max-width: 852px;
  margin-left: auto;
  margin-right: auto;
}
.home-service-box{
  background:#fff;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  border-radius: 0 6px 0 0;
  padding: 1.25rem 1.25rem 1rem;
}
.home-service-box-head{
  display: flex;
  align-items: center;
  margin-bottom: .6rem;
}
.home-service-box-icon{
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--dark);
  margin-right: .9rem;
}
.home-service-box-title{
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0;
}
.home-service-box-text{
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0;
}
.home-service-box-proof{
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.4;
  margin-top: .75rem;
  margin-bottom: 0;
}

.home-hero-title{
  font-size: 2.04rem;
  color: var(--orange);
  text-align: center;
}

.home-hero-label{
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  text-align: center;
  margin-top: 0;
  margin-bottom: .75rem;
}

.home-stats{
  background: var(--bg-card);
  border: 2px solid var(--orange);
  border-radius: 6px;
  padding: 2rem 2.5rem;
}
.home-stats-numbers{
  display:flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}
.home-stats-numbers-line{
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.3;
}
.home-stats-numbers-line .home-stat-num{
  font-size: 1.3rem;
  vertical-align: -1px;
}
.home-stat-num{
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.home-stat-label{
  font-size: 1.15rem;
  color: var(--dark);
  margin-top: .4rem;
  line-height: 1.15;
}
.home-stats-source{
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.15;
}
.acutio-cluster-tags{
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .7rem;
}
.acutio-cluster-tag{
  background: #fff;
  color: var(--dark);
  font-size: .8rem;
  font-weight: 400;
  padding: .25rem .6rem;
  border-radius: 3px;
  line-height: 1.3;
}

.home-leistungen-row1 .leistung,
.home-leistungen-row2 .leistung{
  background: none;
  border-top: 1px solid #9c8f82;
  border-right: 1px solid #9c8f82;
  border-bottom: none;
  border-left: none;
  border-radius: 0 6px 0 0;
  transition: border-color .15s ease;
}
.home-leistungen-row1 .leistung:hover,
.home-leistungen-row2 .leistung:hover{
  border-color: var(--orange);
}

.home-leistungen-row1 .leistung-header h2,
.home-leistungen-row2 .leistung-header h2,
.home-leistungen-row1 .leistung p,
.home-leistungen-row2 .leistung p{
  font-size: 1.15rem;
  color: var(--dark);
}
.home-leistungen-row1 .leistung-header h2,
.home-leistungen-row2 .leistung-header h2{
  color: var(--orange);
}
.home-leistungen-row1 .leistung:hover .leistung-header h2,
.home-leistungen-row2 .leistung:hover .leistung-header h2{
  color: var(--hover-brown);
  text-decoration: underline;
}

.home-leistungen-row1{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.leistung-header-icon-row{
  display: flex;
  align-items: center;
  gap: .9rem;
}
.leistung-icon{
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--dark);
}
.leistung-icon-stacked{
  margin-bottom: .6rem;
}
.home-leistungen-row2{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px){
  .home-leistungen-row1{ grid-template-columns: 1fr; }
  .home-leistungen-row2{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .home-leistungen-row2{ grid-template-columns: 1fr; }
}

.service-footer-row{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.service-footer-question{
  font-size: 17px;
  color: var(--dark);
}

.service-footer-back{
  margin-top: 1rem;
}

.home-service-links a{ color: var(--dark); }
.home-service-links a:hover{ color: var(--hover-brown); text-decoration: underline; }

