:root{
  --bg: #f3f7ff;
  --text: #111111;
  --muted: #5c5c5c;
  --accent: #99cc66;
  --accent-strong: #74994f;
  --card-bg: #ffffff;
  --border: #e9e9ee;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius: 14px;
  --container: 1100px;
}

*,
*::before,
*::after{ box-sizing: border-box; }

html:focus-within{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  background: #f3f7ff;   
  color: var(--text);
}


img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

.container{
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus{ left: 0; }



.hero{
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 220px at 50% 0%, color-mix(in srgb, var(--accent) 18%, #fff), transparent 60%),
    linear-gradient(#fff, #fff);
}

.hero-inner{ padding: 2.5rem 0 2rem; }

.hero-content{ max-width: 720px; }

.hero h1{
  margin: 0 0 .75rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.hero p{
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}



.section{ padding: 3rem 0 4rem; }

.section-title{
  text-align: center;
  margin: 0 0 2rem;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  letter-spacing: .8px;
  font-weight: 900;
}



.cards{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
}

@media (min-width: 760px){
  .cards{
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
}

.card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  max-width: 400px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card-img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .25s ease;
}

.card-body{
  padding: 1.1rem 1.1rem 1.3rem;
  text-align: center;
}

.card-title{
  margin: .25rem 0 .6rem;
  font-weight: 900;
  letter-spacing: .6px;
}

.card-text{
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .98rem;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,.14);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.card:hover .card-img{ transform: scale(1.03); }

.card:focus-within{
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,.14);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
}



.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 1.35rem;     
  font-size: 1.05rem;        

  border-radius: 999px;
  font-weight: 800;
  background: var(--accent);
  color: #000;
  border: 2px solid transparent;
  transition: transform .06s ease, background .15s ease, border-color .15s ease;
  margin: 0 auto;
}


.btn:hover{ background: var(--accent-strong); }

.btn:active{ transform: translateY(1px); }

.btn:focus-visible{
  outline: none;
  border-color: #000;
}

.btn-small{
  padding: .65rem 1.25rem;
  min-width: 120px;
}

.btn-ghost{
  background: transparent;
  border-color: color-mix(in srgb, var(--accent) 55%, #fff);
  color: var(--text);
}

.btn-ghost:hover{
  background: color-mix(in srgb, var(--accent) 16%, #fff);
}

.card .btn{ margin: 0 auto; }

.btn-large{
  padding: 1.1rem 1.6rem;
  font-size: 1.1rem;
}


.about-preview{
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.about-grid{ display: block; }

.about-image{
  float: left;
  max-width: 320px;
  margin: 0 1.5rem 1rem 0;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
}

.about-image img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-content{
  width: 100%;
  max-width: none;
  text-align: left;
}

.about-title{
  margin: 0 0 .75rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: .3px;
}

.about-text{
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-btn{
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
  clear: both;
}

.about-preview{
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--accent) 18%, #ffffff);
  border-radius: var(--radius);
}


@media (max-width: 700px){
  .about-image{
    float: none;
    max-width: 100%;
    margin: 0 0 1.25rem 0;
  }

  .about-btn{
    justify-content: center;
  }
}



.partner-section{
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.partner-inner{ text-align: center; }

.partner-title{
  margin: 0 0 2.25rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .8px;
}

.partner-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.partner-img{
  width: min(260px, 85%);
  height: auto;
  display: block;
  object-fit: contain;
}

.partner-btn{ margin: 0 auto; }



.about-split-grid{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.about-img1,
.about-img2{
  width: 100%;
  max-width: 420px;
  justify-self: center;
}

.about-split-grid img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px){
  .about-split-grid{
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas:
      "img1  text1"
      "text2 img2";
    align-items: start;
  }

  .about-img1{ grid-area: img1; }
  .about-text1{ grid-area: text1; }
  .about-text2{ grid-area: text2; }
  .about-img2{ grid-area: img2; }
}

.about-text1,
.about-text2{ text-align: center; }

.about-text1 .about-page-text,
.about-text2 .about-page-text{
  max-width: 560px;
  margin: 0 auto 1rem;
}

.about-page-title{
  margin: 0 0 1rem;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.about-page-text{
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.about-page-actions{
  margin-top: 1.5rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cert-img{
  object-fit: contain !important;
  background: #fff;
  padding: 10px;
}



.service-grid{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
}

.service-grid-3{ grid-template-columns: 1fr; }

@media (min-width: 900px){
  .service-grid-3{ grid-template-columns: repeat(3, 1fr); }
}

.service-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.service-title{
  margin: 0 0 .75rem;
  font-weight: 900;
  letter-spacing: .3px;
}

.service-sub{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.service-subtitle{
  margin: 0 0 .5rem;
  font-weight: 900;
  font-size: 1rem;
}

.service-list{
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-note{
  margin: 1rem 0 0;
  color: var(--muted);
  text-align: center;
}

.service-note-inline{
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.muted{ color: var(--muted); }

.price-table-wrap{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-table{
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td{
  padding: .9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--border);
}

.price-table thead th{
  border-top: 0;
  font-weight: 900;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
}

.price-table tbody th{
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 700px){
  .price-table,
  .price-table thead{ display: none; }
}

.service-cta{
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.split-feature{
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.split-feature-grid{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px){
  .split-feature-grid{
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.split-box{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.single-box{
  max-width: 900px;
  margin: 0 auto;
}

.price-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .9rem;
}

.price-list li{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.price-list li:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.price-list span{ font-weight: 700; }

.price-list strong{
  font-weight: 900;
  color: var(--text);
}



.legal-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.legal-title{
  margin: 0 0 1.25rem;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 900;
}

.legal-grid{
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.legal-block h3{
  margin: 0 0 .35rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .2px;
}

.legal-block p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-block a{
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-actions{
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px){
  .legal-grid{ grid-template-columns: 1fr 1fr; }
}


.contact-hero{
  background: color-mix(in srgb, var(--accent) 35%, #fff);
  padding: 4rem 0 5rem;
}

.contact-hero-inner{ max-width: 980px; }

.contact-hero-title{
  text-align: center;
  margin: 0 0 1.75rem;
  font-weight: 900;
  letter-spacing: .6px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-panel{
  background: transparent;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-panel-head{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-pin{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2f49ff;
}

.contact-pin-icon{
  width: 22px;
  height: 22px;
  fill: #fff;
}

.contact-panel-kicker{
  margin: 0;
  font-weight: 900;
}

.contact-panel-body{ color: var(--text); }

.contact-line{
  margin: .35rem 0;
  color: color-mix(in srgb, var(--text) 80%, #000);
}

.contact-link{
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid color-mix(in srgb, var(--accent) 60%, #000);
}

.contact-link:hover{ border-bottom-color: var(--accent-strong); }

.contact-spacer{ height: 1rem; }

.contact-actions{
  margin-top: 1.75rem;
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}



.donation-box{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  max-width: 980px;
  margin: 0 auto 2rem;
}

.donation-title{
  margin: 0 0 .6rem;
  font-weight: 900;
  letter-spacing: .4px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
}

.donation-text{
  margin: 0 auto 1.2rem;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.donation-actions{
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.intro-grid{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 980px;
  margin: 0 auto 2.25rem;
}

@media (min-width: 900px){
  .intro-grid{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.donation-feature{
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

@media (min-width: 900px){
  .donation-feature{
    grid-template-columns: 1.1fr .9fr;
    padding: 1.9rem;
  }
}

.donation-image img{
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

@media (max-width: 520px){
  .donation-image img{
    height: auto;
    max-height: 200px;
  }
}

.donation-info{ text-align: left; }

.donation-text{
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 50ch;
  text-align: left;
}

.donation-actions{
  display: flex;
  gap: .75rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 700px){
  .donation-info{ text-align: center; }

  .donation-text{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .donation-actions{ justify-content: center; }
}



.region-banner{
  padding: 2.5rem 0;
}

.region-banner-inner{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  grid-template-columns: 1fr;
  text-align: center;
}

.region-banner-media img{
  width: min(240px, 90%);
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.region-banner-title{
  margin: 0 0 1rem;
  font-weight: 900;
  letter-spacing: .4px;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.2;
}

.region-banner-btn{ margin: 0 auto; }

@media (min-width: 900px){
  .region-banner-inner{
    grid-template-columns: 1fr 1.4fr 1fr;
    text-align: center;
    padding: 1.9rem;
  }

  .region-banner-media img{ width: 260px; }
}


.tri-section{
  padding: 3rem 0 4rem;
}

.tri-grid{
  display: grid;
  gap: 1.5rem;
  align-items: start;
  grid-template-columns: 1fr;
}

.tri-text{
  text-align: left;
}

.tri-title{
  margin: 0 0 .75rem;
  font-weight: 900;
  letter-spacing: .3px;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.2;
}

.tri-copy{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

.tri-img{
  width: 100%;
  max-width: 340px;      
  justify-self: center;
}

.tri-img img{
  width: 100%;
  height: 260px;        
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;    
}


.tri-actions{
  display: flex;
  justify-content: center;
}

@media (min-width: 900px){
  .tri-img{
    max-width: 700px;   
  }

  .tri-img img{
    height: 440px;
  }
}

@media (min-width: 900px){
  .tri-grid{
    grid-template-columns: 1.15fr .85fr;
    grid-template-areas:
      "text top"
      "bottomLeft bottomRight";
    align-items: start;
  }

  .tri-text{ grid-area: text; }
  .tri-img-top{ grid-area: top; }
  .tri-img-bottom-left{ grid-area: bottomLeft; }
  .tri-img-bottom-right{ grid-area: bottomRight; }
}


/* =========================
   ÜBER UNS CBF – NEUER BEREICH
========================= */

.uberunscbf-section{
  padding: 3.5rem 0 4rem;
}

.uberunscbf-title{
  margin: 0 auto 2.25rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: .3px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  max-width: 32ch;
}

.uberunscbf-stack{
  display: grid;
  gap: 2.5rem;
}

.uberunscbf-row{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 0;
  border-radius: var(--radius);
}

.uberunscbf-row--accent{
  background: color-mix(in srgb, var(--accent) 20%, #ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.uberunscbf-media{
  display: flex;
  justify-content: center;
}

.uberunscbf-media img{
  width: min(420px, 100%);
  height: 280px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
}

.uberunscbf-content{
  max-width: 68ch;
}

.uberunscbf-content p{
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.7;
}

.uberunscbf-content p:last-child{
  margin-bottom: 0;
}

@media (min-width: 900px){
  .uberunscbf-row{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .uberunscbf-content{
    max-width: none;
  }

  .uberunscbf-media img{
    height: 450px;
  }
}

@media (max-width: 700px){
  .uberunscbf-content{
    margin: 0 auto;
  }

  .uberunscbf-row--accent{
    padding: 1.5rem;
  }
}


.uberunscbf-extra{
  padding: 2.5rem 0 4rem;
}

.uberunscbf-divider{
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0 0 2rem;
}


.uberunscbf-extra-row{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.uberunscbf-extra-media img{
  width: min(420px, 100%);
  height: 450px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}


.uberunscbf-extra-title{
  margin: 0 0 .75rem;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.uberunscbf-extra-content p{
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--muted);
}


.uberunscbf-extra-gallery{
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.uberunscbf-extra-gallery img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}

@media (min-width: 900px){

  .uberunscbf-extra-row{
    grid-template-columns: 1fr 1.2fr;
  }

  .uberunscbf-extra-gallery{
    grid-template-columns: 1fr 1fr; 
  }
}

.uberunscbf-extra{
  background: color-mix(in srgb, var(--accent) 20%, #ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: var(--radius);  
  margin: 2rem auto;               
  max-width: 1100px;              
}

/* =========================
   ABSCHLUSS-BEREICH UNTEN
========================= */

.uberunscbf-outro{
  padding: 3rem 0 4rem;
}

.uberunscbf-outro-grid{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.uberunscbf-outro-title{
  margin: 0 0 .75rem;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.uberunscbf-outro-content p{
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.uberunscbf-outro-media img{
  width: min(420px, 100%);
  height: 600px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}

@media (min-width: 900px){
  .uberunscbf-outro-grid{
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .uberunscbf-outro-media{
    display: flex;
    justify-content: flex-end;
  }
}

@media (max-width: 700px){
  .uberunscbf-outro-content{
    margin: 0 auto;
    text-align: left;
  }

  .uberunscbf-outro-media{
    display: flex;
    justify-content: center;
  }
}



.cbf-section{
  padding: 3.5rem 0 4rem;
}

.cbf-title{
  margin: 0 auto 2.25rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: .3px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  max-width: 32ch;
}

.cbf-stack{
  display: grid;
  gap: 2.5rem;
}

.cbf-row{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
  border-radius: var(--radius);
}

.cbf-row--accent{
  background: color-mix(in srgb, var(--accent) 20%, #ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.cbf-media{
  display: flex;
  justify-content: center;
}

.cbf-media img{
  width: min(420px, 100%);
  height: 280px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
}

.cbf-content{
  max-width: 68ch;
}

.cbf-row-title{
  margin: 0 0 .75rem;
  font-weight: 900;
  letter-spacing: .2px;
  text-align: center; /* only the title centered */
}

.cbf-content p{
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.cbf-list{
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.cbf-strong{
  margin-top: .25rem;
}

@media (min-width: 900px){
  .cbf-row{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .cbf-content{
    max-width: none;
  }

  .cbf-media img{
    height: 450px;
  }
}

@media (max-width: 700px){
  .cbf-content{
    margin: 0 auto;
  }

  .cbf-row--accent{
    padding: 1.5rem;
  }
}


.engagierte-section{
  padding: 3.5rem 0 4rem;
}

.engagierte-title{
  margin: 0 auto 2.25rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: .3px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  max-width: 34ch;
}

.engagierte-stack{
  display: grid;
  gap: 2.5rem;
}

.engagierte-row{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
  border-radius: var(--radius);
}

.engagierte-row--accent{
  background: color-mix(in srgb, var(--accent) 20%, #ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.engagierte-media{
  display: flex;
  justify-content: center;
}

.engagierte-media img{
  width: min(420px, 100%);
  height: 280px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
}

.engagierte-content{
  max-width: 68ch;
}

.engagierte-content p{
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.engagierte-content p:last-child{
  margin-bottom: 0;
}


.engagierte-boxed{
  max-width: 1100px;
  margin: 2rem auto;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 20%, #ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.engagierte-divider{
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0 0 2rem;
}

.engagierte-boxed-grid{
  display: grid;
  gap: 2rem;
}

.engagierte-boxed-row{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.engagierte-boxed-media img{
  width: min(420px, 100%);
  height: 450px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}

.engagierte-boxed-title{
  margin: 0 0 .75rem;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.engagierte-boxed-content p{
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.engagierte-boxed-gallery{
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.engagierte-boxed-gallery img{
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}


.engagierte-outro{
  padding: 3rem 0 4rem;
}

.engagierte-outro-grid{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.engagierte-outro-title{
  margin: 0 0 .75rem;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.engagierte-outro-content p{
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.engagierte-outro-media{
  display: flex;
  justify-content: center;
}

.engagierte-outro-media img{
  width: min(420px, 100%);
  height: 450px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}


.engagierte-cta{
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.engagierte-cta-inner{
  text-align: center;
}

.engagierte-cta-title{
  margin: 0 0 2rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .8px;
}

.engagierte-cta-card{
  display: flex;
  justify-content: center;
}

@media (min-width: 900px){
  .engagierte-row{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .engagierte-content{
    max-width: none;
  }

  .engagierte-media img{
    height: 320px;
  }

  .engagierte-boxed-row{
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .engagierte-boxed-gallery{
    grid-template-columns: 1fr 1fr;
  }

  .engagierte-outro-grid{
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .engagierte-outro-media{
    justify-content: flex-end;
  }
}


@media (max-width: 700px){
  .engagierte-row--accent,
  .engagierte-boxed{
    padding: 1.5rem;
  }

  .engagierte-content{
    margin: 0 auto;
  }
}



.cbf-contact{
  background: color-mix(in srgb, var(--accent) 20%, #ffffff);  
  min-height: 90vh;        
  display: flex;
  align-items: center;
}

.cbf-contact-inner{
  width: 100%;
}

.cbf-contact-title{
  text-align: center;
  margin: 0 0 1.75rem;
  font-weight: 900;
  letter-spacing: .6px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cbf-contact-panel{
  background: transparent;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cbf-contact-head{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cbf-contact-pin{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2f49ff;
}

.cbf-contact-pin-icon{
  width: 22px;
  height: 22px;
  fill: #fff;
}

.cbf-contact-kicker{
  margin: 0;
  font-weight: 900;
}

.cbf-contact-body{
  color: var(--text);
}

.cbf-contact-line{
  margin: .35rem 0;
  color: color-mix(in srgb, var(--text) 80%, #000);
}

.cbf-contact-link{
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid color-mix(in srgb, var(--accent) 60%, #000);
}

.cbf-contact-link:hover{
  border-bottom-color: var(--accent-strong);
}

.cbf-contact-spacer{
  height: 1rem;
}

.cbf-contact-actions{
  margin-top: 1.75rem;
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}


.btn-large{
  padding: 1rem 1.4rem;
  font-size: 1.05rem;
}

html, body{
  height: 100%;
}

body{
  display: flex;
  flex-direction: column;
}

main{
  flex: 1;
}


/* =========================
   Full-Width Hero – MITTIG
========================= */

.hero-image{
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}

.hero-image-bg{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
}

.hero-image-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;   
  display: block;
}


.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;   
  text-align: center;      
}


.hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
}


.hero-content{
  max-width: 720px;
  margin: 0 auto;            
  color: #ffffff;
}

.hero-actions{
  justify-content: center;   
}

.hero-content h1{
  padding-top: 10rem;
  margin: 0 0 .75rem;
  font-size: clamp(2rem, 4vw, 3rem);   
  line-height: 1.1;
}

.hero-content p{
  margin: 0 0 1.4rem;
  font-size: 1.15rem;              
}

.hero-actions .btn{
  font-size: 1.05rem;               
  padding: .9rem 1.2rem;               
}
.hero-content h1{
  white-space: nowrap;  
}

/* =========================
   Kontakt
========================= */


.cbf-contact{
  background: #f3f7ff;      
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}


.cbf-contact-panel{
  max-width: 720px;
  margin: 0 auto;
   background: color-mix(in srgb, var(--accent) 20%, #ffffff);  
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  text-align: center;
  color: #000;           
}


.cbf-contact-intro,
.cbf-contact-note{
  color: #1f2b15;          
}


.cbf-contact-link{
  color: #0b2d00;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid #0b2d00;
}

.cbf-contact-link:hover{
  border-bottom-color: #000;
}


.cbf-contact-title{
  text-align: center;
  margin-bottom: 1.2rem;
}
