/* =========================
   Förderverein Gymnasium am Oelberg – Stylesheet
   ========================= */

/* Farb- & Typo-Variablen: hier später an fvgao.de feinjustieren */
:root{
  --bg: #ffffff;
  --text: #0f172a;          /* slate-900 */
  --muted: #475569;         /* slate-600 */
  --border: #e2e8f0;        /* slate-200 */

  --primary: #1f6fb2;       /* blau */
  --primary-700:#185a90;
  --accent: #2f8f5b;        /* grün */
  --accent-700:#257248;

  --tint: #f5f9ff;          /* leichtes blaues Tint */
  --shadow: 0 12px 30px rgba(2, 8, 23, .10);

  --radius: 16px;
  --radius-sm: 12px;

  --container: 1120px;
  --gap: 18px;

  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left: 1rem; top: 1rem;
  width:auto;height:auto;
  padding:.6rem .9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  z-index: 1000;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: .15rem .55rem;
  border-radius: 999px;
  background: rgba(31,111,178,.10);
  border: 1px solid rgba(31,111,178,.20);
  font-weight: 600;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 0;
  gap: 1rem;
}

.brand{
  display:flex;
  align-items:center;
  gap: .75rem;
  min-width: 230px;
}
.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}
.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand__text span{ font-size:.9rem; color: var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap: 1rem;
  padding: .2rem .4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}
.nav a{
  padding: .45rem .7rem;
  border-radius: 999px;
  color: #0b2340;
  font-weight: 600;
  font-size: .95rem;
}
.nav a:hover{
  background: #eef6ff;
  text-decoration:none;
}

.header__actions{
  display:flex;
  align-items:center;
  gap: .6rem;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary{
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(31, 111, 178, .22);
}
.btn--primary:hover{ background: var(--primary-700); text-decoration:none; }
.btn--ghost{
  background: #fff;
  border-color: var(--border);
}
.btn--ghost:hover{ background:#f8fafc; text-decoration:none; }
.btn--small{ padding: .55rem .85rem; font-size: .95rem; }

/* Hero */
.hero{
  position: relative;
  padding: 3.2rem 0 2.2rem;
  background: radial-gradient(1200px 500px at 20% 20%, rgba(47,143,91,.12), transparent 60%),
              radial-gradient(900px 450px at 80% 10%, rgba(31,111,178,.14), transparent 55%),
              linear-gradient(180deg, #ffffff, #fbfdff);
  border-bottom: 1px solid var(--border);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 2rem;
  align-items: start;
}
.hero h1{
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  margin: 0 0 .8rem;
  letter-spacing: -0.02em;
}
.lead{
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
  max-width: 60ch;
}
.hero__cta{
  display:flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
}

/* Wave (decor) */
.hero__wave{
  position:absolute;
  inset: auto 0 0 0;
  height: 22px;
  background: linear-gradient(90deg, rgba(31,111,178,.16), rgba(47,143,91,.16));
  opacity: .65;
}

/* Sections */
.section{ padding: 2.6rem 0; }
.section--tint{ background: var(--tint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.section__head h2{
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
}
.section__head p{ margin: 0; color: var(--muted); max-width: 70ch; }

/* Grid */
.grid{ display:grid; gap: var(--gap); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }

/* Cards */
.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.card__actions{
  display:flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.muted{ color: var(--muted); }
.small{ font-size: .92rem; }

/* Tags */
.tag{
  display:inline-flex;
  align-items:center;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: #fff;
}
.tag--soft{
  background: #f8fafc;
  color: #0b2340;
}
.tag--active{
  background: rgba(47,143,91,.12);
  border-color: rgba(47,143,91,.22);
  color: var(--accent-700);
}

/* Project card */
.project__top{
  display:flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}
.project h3{ margin: .2rem 0 .45rem; }

.note{
  margin-top: .9rem;
  padding: .85rem .9rem;
  border-radius: var(--radius-sm);
  background: rgba(31,111,178,.08);
  border: 1px solid rgba(31,111,178,.16);
  color: #0b2340;
}

/* Teasers */
.teaser{
  padding: .9rem 0;
  border-top: 1px solid var(--border);
}
.teaser:first-of-type{ border-top: 0; padding-top: .2rem; }
.teaser__meta{
  display:flex;
  gap: .6rem;
  align-items:center;
  color: var(--muted);
  font-size: .92rem;
}
.teaser__title{
  margin: .35rem 0 .25rem;
  font-size: 1.05rem;
}
.link{
  color: var(--primary);
  font-weight: 800;
}
.link:hover{ text-decoration: underline; }

/* Forms (Basisstile für spätere Phase) */
label{ display:grid; gap: .35rem; font-weight: 700; }
input, select{
  width: 100%;
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  outline: none;
  font: inherit;
  background: #fff;
}
input:focus, select:focus{
  border-color: rgba(31,111,178,.5);
  box-shadow: 0 0 0 4px rgba(31,111,178,.12);
}

/* Footer */
.footer{
  background: #081a2e;
  color: rgba(255,255,255,.92);
  padding: 2rem 0;
  margin-top: 1rem;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 1.2rem;
  align-items:start;
}
.brand--footer .brand__text span{ color: rgba(255,255,255,.75); }
.footer__links{
  display:grid;
  gap: .55rem;
}
.footer__links a{ color: rgba(255,255,255,.9); }
.footer__links a:hover{ text-decoration: underline; }
.footer__cta strong{ display:block; margin-bottom: .7rem; }
.footer .btn--ghost{ color: var(--text); }
.footer__buttons{ display:flex; gap: .6rem; flex-wrap:wrap; }

/* Intro & Vision/Mission */
.intro p{
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.vision-mission{ margin-top: var(--gap); }
.vm-card{
  position: relative;
  padding-top: 2.2rem;
}
.vm-card p{
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}
.vm-card__label{
  position: absolute;
  top: -1px;
  left: 1.2rem;
  padding: .25rem .75rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}
.vm-card--vision{ border-top: 3px solid var(--primary); }
.vm-card--vision .vm-card__label{ background: var(--primary); }
.vm-card--mission{ border-top: 3px solid var(--accent); }
.vm-card--mission .vm-card__label{ background: var(--accent); }

.section__intro{
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.4rem;
}

/* Package tiles (Mitmachen) */
.pkg-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: var(--gap);
}
.pkg{
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: box-shadow .15s, border-color .15s;
}
.pkg:hover{
  text-decoration: none;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(31,111,178,.12);
}
.pkg__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1.1rem;
  background: var(--primary);
  color: #fff;
}
.pkg__name{
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pkg__price{
  font-size: .92rem;
  font-weight: 700;
  white-space: nowrap;
}
.pkg__body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem;
}
.pkg__desc{
  margin: 0 0 1rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.pkg__link{
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
}
.pkg:hover .pkg__link{ text-decoration: underline; }

/* Featured package */
.pkg--featured{
  border-color: var(--primary);
  box-shadow: var(--shadow);
  position: relative;
}
.pkg--featured .pkg__header{
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
}
.pkg__badge{
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .15rem .5rem;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.3);
}

/* Custom package */
.pkg--custom{
  border-style: dashed;
}
.pkg--custom .pkg__header{
  background: var(--muted);
}

/* Bank details */
.bank-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.bank-item{
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .75rem .85rem;
  border-radius: var(--radius-sm);
  background: var(--tint);
}
.bank-item__label{
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bank-item__value{
  font-size: 1rem;
  font-weight: 600;
}
.bank-item__value--mono{
  font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
  letter-spacing: .03em;
}

/* Spende grid (Bankdaten + GiroCode) */
.spende-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.spende-grid h3{
  margin: 0 0 .8rem;
  font-size: 1.1rem;
}
.spende-grid__qr{
  text-align: center;
}
.girocode__img{
  width: 180px;
  height: 180px;
}
.girocode__hint{
  margin: .6rem 0 0;
  font-size: .85rem;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.4;
}

.intro-closing{
  margin-top: var(--gap);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}

/* Person cards (Vorstand) */
.person{ text-align: center; }
.person__photo{
  width: 120px;
  height: 120px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  background: var(--tint);
}
.person__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person__name{
  margin: 0 0 .2rem;
  font-size: 1.1rem;
}
.person__role{
  margin: 0 0 .5rem;
  font-size: .92rem;
  font-weight: 700;
  color: var(--primary);
}
.person__text{
  margin: 0;
  font-size: .92rem;
}

/* Cluster (Förderschwerpunkte) */
.cluster{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--gap);
}
.cluster:last-child{ margin-bottom: 0; }
.cluster__title{
  margin: 0;
  padding: .85rem 1.2rem;
  font-size: 1.15rem;
  background: var(--primary);
  color: #fff;
}
.cluster__content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.cluster__text{
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.cluster__text p{
  margin: 0 0 .8rem;
  color: var(--muted);
  line-height: 1.6;
}
.cluster__text h4{
  margin: 0 0 .4rem;
  font-size: 1rem;
}
.cluster__list{
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: .95rem;
}
.cluster__list li{ margin: .3rem 0; }
.cluster__note{
  font-size: .92rem;
  color: var(--muted);
  margin: 0 0 .8rem;
  line-height: 1.55;
}
.cluster__actions{
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Carousel */
.carousel{
  position: relative;
  overflow: hidden;
  background: var(--tint);
  min-height: 220px;
  display: flex;
  align-items: center;
}
.carousel__track{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .3s ease;
}
.carousel__slide{
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.carousel__slide img{
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background .15s;
}
.carousel__btn:hover{ background: #fff; }
.carousel__btn--prev{ left: .6rem; }
.carousel__btn--next{ right: .6rem; }

/* Stats grid (Wirkung in Zahlen) */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.stat-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat-card__number{
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: .3rem;
}
.stat-card__label{
  display: block;
  font-size: .95rem;
  color: var(--muted);
}

/* Breadcrumb */
.breadcrumb{
  margin: 0 0 1rem;
  font-size: .95rem;
}
.breadcrumb a{
  color: var(--primary);
  font-weight: 700;
}

/* Goals */
.goals{
  margin-top: var(--gap);
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.goals__title{
  margin: 0 0 .6rem;
  font-size: 1.1rem;
}
.goals__list{
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Project cards (detail page) */
.project-list{
  display: grid;
  gap: var(--gap);
}
.project-card{
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.project-card__image{
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.project-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__body{
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.project-card__head{
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}
.project-card__head h3{
  margin: 0;
  font-size: 1.15rem;
}
.project-card__text{
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

/* Pill variants */
.pill--active{
  background: rgba(47,143,91,.12);
  border-color: rgba(47,143,91,.22);
  color: var(--accent-700);
}
.pill--done{
  background: rgba(31,111,178,.10);
  border-color: rgba(31,111,178,.20);
  color: var(--primary);
}
.pill--planned{
  background: rgba(245,158,11,.12);
  border-color: rgba(245,158,11,.22);
  color: #92400e;
}

/* Project detail page */
.meta-box{
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--gap);
}
.meta-box__item{
  display: flex;
  align-items: center;
  gap: .5rem;
}
.meta-box__label{
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.meta-box__value{
  font-size: 1rem;
  font-weight: 700;
}

.carousel--hero{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: 300px;
}
.carousel--hero .carousel__slide img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 0;
}
.carousel__dots{
  position: absolute;
  bottom: .8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
}
.carousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 0;
}
.carousel__dot--active{
  background: #fff;
  border-color: #fff;
}

.detail-content{
  max-width: 780px;
}
.detail-block{
  margin-bottom: 1.8rem;
}
.detail-block:last-child{ margin-bottom: 0; }
.detail-block h2{
  font-size: 1.25rem;
  margin: 0 0 .5rem;
}
.detail-block p{
  margin: 0 0 .6rem;
  color: var(--muted);
  line-height: 1.65;
}
.detail-block ul{
  margin: 0 0 .6rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}
.detail-block ul li{ margin: .25rem 0; }
.detail-block--cta{
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.detail-block__actions{
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}

/* News cards */
.news-list{
  display: grid;
  gap: var(--gap);
}
.news-card{
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.news-card__image{
  background: var(--tint);
  min-height: 200px;
}
.news-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__body{
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.news-card__meta{
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .6rem;
}
.news-card__date{
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-size: .88rem;
  color: var(--muted);
}
.news-card__day{
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
}
.news-card__mon{
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.news-card__title{
  margin: 0 0 .5rem;
  font-size: 1.2rem;
}
.news-card__text{
  margin: 0 0 .8rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

/* Hero image */
.hero__image{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

/* Ticker (Testimonials + Trust) */
.ticker{
  overflow: hidden;
  padding: .85rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.ticker__track{
  display: flex;
  width: max-content;
  animation: ticker-scroll 50s linear infinite;
}
.ticker__track:hover{
  animation-play-state: paused;
}
.ticker__item{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  font-size: .95rem;
  margin-right: 2.5rem;
}
.ticker__item--quote{
  padding: .35rem .85rem;
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.ticker__author{
  color: var(--muted);
  font-size: .85rem;
  margin-left: .2rem;
}
.ticker__item--fact{
  color: var(--muted);
}

@keyframes ticker-scroll{
  0%  { transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .ticker__track{
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .ticker__item{ margin-right: 0; margin: .3rem .4rem; }
}

/* Spotlight */
.spotlight{
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spotlight__image{
  min-height: 260px;
  background: var(--tint);
}
.spotlight__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spotlight__content{
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .6rem;
}
.spotlight__content h3{
  margin: 0;
  font-size: 1.35rem;
}
.spotlight__content p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA block */
.section--cta{
  background: linear-gradient(135deg, rgba(31,111,178,.07), rgba(47,143,91,.07));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-block{
  text-align: center;
  max-width: 600px;
}
.cta-block h2{
  margin: 0 0 .5rem;
  font-size: 1.65rem;
}
.cta-block .lead{
  margin: 0 0 1.2rem;
  max-width: none;
}
.cta-block__actions{
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-block__link{
  margin-top: .9rem;
}

/* Cluster preview (Startseite) */
.cluster-preview{
  display: flex;
  flex-direction: column;
}
.cluster-preview__list{
  margin: 0 0 .4rem;
  padding-left: 1.1rem;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.cluster-preview__list li{ margin: .2rem 0; }

/* Burger button */
.burger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.burger span{
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger--open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger--open span:nth-child(2){ opacity: 0; }
.burger--open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav{
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  overflow-y: auto;
}
.mobile-nav--open{ display: flex; }
.mobile-nav nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  width: 100%;
  max-width: 320px;
}
.mobile-nav nav a{
  display: block;
  width: 100%;
  text-align: center;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.mobile-nav nav a:hover{
  background: var(--tint);
  text-decoration: none;
}
.mobile-nav__actions{
  display: flex;
  flex-direction: column;
  gap: .6rem;
  width: 100%;
  max-width: 320px;
}
.mobile-nav__actions .btn{
  width: 100%;
  justify-content: center;
}
.mobile-nav__actions .btn--ghost{
  border-color: var(--primary);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .nav{ display: none; }
  .header__actions{ display: none; }
  .burger{ display: flex; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .pkg-grid{ grid-template-columns: 1fr; }
  .bank-grid{ grid-template-columns: 1fr; }
  .spende-grid{ grid-template-columns: 1fr; }
  .cluster__content{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .spotlight{ grid-template-columns: 1fr; }
  .news-card{ grid-template-columns: 1fr; }
  .project-card{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
}
