:root{
  --container: 1240px;
  --container-wide: 1520px; /* noch breiter als vorher */
  --gutter: 22px;

  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #f2f4f7;
  --text: #1f2937;
  --muted: #4b5563;
  --border: #d6dbe3;

  --primary: #0b5cab;
  --primary-2: #083e73;
  --focus: #f59e0b;

  --radius: 14px;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a{ color: var(--primary); text-decoration: none; }
a:hover{ text-decoration: underline; }
a:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 8px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide{
  max-width: var(--container-wide);
}

.pad-y-sm{ padding-top: 14px; padding-bottom: 14px; }

.section{
  padding: 34px 0;
}
.section--tight{ padding: 22px 0; }
.section--alt{
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__title{
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: 0.2px;
}
.section__lead{
  margin: 0 0 18px;
  max-width: 95ch;
  color: var(--muted);
}
.section__head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

#site-header, #site-footer{ width: 100%; }

/* Fallback include notice */
.notice{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.notice__icon{
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: #fff;
}
.notice__icon img{
  width: 28px; height: 28px;
  object-fit: contain;
}
.notice__body p{
  margin: 4px 0 0;
  color: var(--muted);
}

/* Topbar (header.html) */
.topbar{
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.topbar__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand:hover{ text-decoration: none; }
.brand__logo{ width: 44px; height: 44px; object-fit: contain; }
.brand__name{ font-weight: 900; letter-spacing: 0.2px; }
.brand__tag{ color: var(--muted); font-size: 0.92rem; }

.nav{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nav a{
  color: #0f172a;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  text-decoration: none;
  background: #f3f6fb;
}
.nav__cta{
  border: 1px solid var(--border);
  background: #f8fafc;
}
.navbtn{
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 800;
}

/* HERO */
.hero{
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--border);
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 26px 0 28px;
  align-items: stretch;
}
.agency{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.agency__mark{ width: 52px; height: 52px; object-fit: contain; }
.agency__title{ font-weight: 900; letter-spacing: 0.2px; }
.agency__sub{ color: var(--muted); font-size: 0.95rem; }

.hero__headline{
  margin: 10px 0 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.hero__lead{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 92ch;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  cursor: pointer;
}
.btn:hover{ text-decoration: none; border-color: #b9c3d4; }
.btn--primary{
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn--primary:hover{
  background: var(--primary-2);
  border-color: var(--primary-2);
}
.btn--ghost{ background: #fff; }

.info-strip{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 6px solid var(--primary);
  border-radius: var(--radius);
  padding: 12px;
}
.info-strip__icon{
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}
.info-strip__icon img{ width: 22px; height: 22px; object-fit: contain; }
.info-strip__text{ color: var(--muted); }
.info-strip__text strong{ color: var(--text); }

.hero__media{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* image placeholder */
.img-placeholder{
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 2px dashed #cbd5e1;
  color: #64748b;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #f8fafc;
}
.img-placeholder--sm{
  min-height: 54px;
  height: 54px;
  font-size: 0.72rem;
}

/* Partners */
.partners{
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
}
.partners__label{
  font-weight: 900;
  margin-bottom: 10px;
}
.partners__logos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.partner{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: #fbfdff;
}
.partner img{
  width: 64px;
  height: 44px;
  object-fit: contain;
}
.partner__name{
  font-weight: 800;
  color: #0f172a;
}

/* Link grid */
.link-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.link-card{
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  color: inherit;
}
.link-card:hover{ border-color: #b9c3d4; text-decoration: none; }
.link-card__title{ font-weight: 900; margin: 0 0 6px; }
.link-card__desc{ margin: 0; color: var(--muted); font-size: 0.98rem; }

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.card__top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.card__icon{ width: 28px; height: 28px; object-fit: contain; }
.card__title{ margin: 0; font-size: 1.05rem; }
.card__text{ margin: 0; color: var(--muted); }

/* Panels */
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.panel{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.panel__title{ margin: 0 0 6px; font-size: 1.05rem; font-weight: 900; }
.panel__text{ margin: 0; color: var(--muted); }

/* Quote cards */
.quote-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.quote-card__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  margin-bottom: 10px;
}
.quote-card__brand img{ width: 28px; height: 28px; object-fit: contain; }
.quote-card__quote{
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #0f172a;
  margin-bottom: 6px;
}
.quote-card__sub{ color: var(--muted); }

/* Contact grid */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Video */
.video-controls{ display: flex; gap: 10px; flex-wrap: wrap; }
.video-shell{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}
.video{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12p

/* footer */
