:root{
  /* Hell & freundlich */
  --bg: #f7f9fc;
  --paper: #ffffff;

  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.10);

  /* Logo-nahe Akzente (dezent, nicht zu bunt) */
  --brandBlue: #2d3f79;     /* nahe an "Loris" Schrift */
  --brandBlueSoft: rgba(45,63,121,0.10);
  --brandGreen: rgba(47,154,116,0.75);
  --brandAmber: rgba(240,163,59,0.78);

  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --max: 1120px;
  --header-h: 124px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  padding-top: 100px;
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 560px at 10% 6%, rgba(47,111,180,0.08), transparent 60%),
    radial-gradient(900px 560px at 92% 16%, rgba(47,154,116,0.08), transparent 62%),
    radial-gradient(980px 680px at 55% 95%, rgba(240,163,59,0.08), transparent 62%),
    var(--bg);
    background-repeat: no-repeat;
  line-height: 1.55;
}

a{ color: var(--brandBlue); text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width: 100%; display:block; }

.container{
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
}

/* Header */
.header{
  /* position: sticky;
  top:0;
  z-index:9999; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(247, 249, 252, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.brand-logo{
  height: 100px;
  width: auto;
  object-fit: contain;
}

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  padding:8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(15, 23, 42, 0.04);
  text-decoration:none;
  color: var(--text);
}

/* Hero */
.hero{
  padding: 54px 0 24px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap:22px;
  align-items:stretch;
}

.eyebrow{
  margin:0 0 8px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.80rem;
}
.hero h1{
  margin:0 0 12px;
  font-size: clamp(2.0rem, 3.3vw, 3.0rem);
  line-height: 1.10;
  letter-spacing: -0.03em;
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 6px 0 14px;
}
.badge{
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(15,23,42,0.08);
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.90rem;
}
.initial{
  display:inline-block;
  font-weight: 900;
  color: var(--brandBlue);
  margin-right: 1px;
}

.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 68ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 6px 0 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  text-decoration:none;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }

.btn.primary{
  background: var(--brandBlue);          /* einfarbig */
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(45,63,121,0.20);
}
.btn.secondary{
  background: rgba(15,23,42,0.04);
  border-color: rgba(15,23,42,0.10);
  color: var(--text);
}
.btn.ghost{
  background: transparent;
  border-color: rgba(15,23,42,0.14);
  color: var(--muted);
}

.fine-note{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Card */
.hero-card .card{
  height:100%;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brandBlue);
  margin-bottom: 12px;
}
.kv{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:10px 12px;
  font-size: 0.96rem;
}
.k{ color: var(--muted); font-weight: 700; }
.v{ color: var(--text); font-weight: 700; }
.note{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,0.10);
}

/* Sections (keine weißen Balken: transparent, nur spacing) */
.section{
  padding: 40px 0;
}
.section-head{
  margin-bottom: 16px;
}
.section-head h2{
  margin:0 0 6px;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}
.section-head p{
  margin:0;
  color: var(--muted);
  max-width: 88ch;
}
section[id]{
  scroll-margin-top: var(--header-h);
}

/* Layout */
.grid{
  display:grid;
  gap:16px;
}
.grid.two{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.one{
  grid-template-columns: 1fr;
}

/* Panels */
.panel{
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
  padding: 18px;
}
.panel h3{
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}
.panel p{
  margin: 0 0 12px;
  color: var(--muted);
}
.panel-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brandBlueSoft);
  border: 1px solid rgba(45,63,121,0.18);
  color: var(--brandBlue);
  font-weight: 900;
  font-size: 0.80rem;
  white-space: normal;
  line-height: 1.2;
}

@media (max-width: 480px){
  .brand-row{
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}

/* Markenlogos */
.brand-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap: wrap; 
}
.brand-mark{
  height: 80px;          /* länglich / horizontal */
  width: auto;
  object-fit: contain;
  filter: saturate(0.95); /* minimal weniger "bunt" */
}

/* Values */
.value{
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  padding: 16px;
}
.value.subtle{
  background: rgba(255,255,255,0.62);
}
.value-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 6px;
}
.value-dot{
  width:10px; height:10px;
  border-radius: 999px;
}
.dot-blue{ background: rgba(47,111,180,0.82); }
.dot-green{ background: var(--brandGreen); }
.dot-amber{ background: var(--brandAmber); }
.value h3{
  margin:0;
  letter-spacing: -0.02em;
}
.value p{
  margin: 8px 0 0;
  color: var(--muted);
}

/* News */
.news{
  display:grid;
  gap:14px;
}
.news-item{
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  padding: 18px;
}
.news-meta{
  display:flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.sep{ opacity: 0.6; }
.news-item h3{
  margin: 8px 0 8px;
  letter-spacing: -0.02em;
}
.news-item p{
  margin:0;
  color: var(--muted);
}

/* Contact */
.contact{
  margin-top: 10px;
  display:grid;
  gap:10px;
}
.contact-row{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap:12px;
  align-items:baseline;
}
.contact-label{
  color: var(--muted);
  font-weight: 900;
  font-size: 0.92rem;
}
.contact-value a{
  font-weight: 800;
}
.fine{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(15,23,42,0.08);
  padding: 18px 0 30px;
  background: rgba(255,255,255,0.55);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-brand{
  font-weight: 900;
  color: var(--text);
}
.footer-note{
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-links{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.footer-links a{
  color: var(--muted);
  font-weight: 800;
}
.footer-links a:hover{
  color: var(--text);
  text-decoration:none;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid.three{ grid-template-columns: 1fr; }
  .grid.two{ grid-template-columns: 1fr; }
  .kv{ grid-template-columns: 1fr; }
  .contact-row{ grid-template-columns: 1fr; }
  .nav{ gap:8px; }
}

/* Pagination */
.pagination{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
  margin-top: 14px;
}

.page-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.14);
  background: rgba(255,255,255,0.72);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, background-color .12s ease;
}

.page-btn:hover{ transform: translateY(-1px); }
.page-btn:disabled{
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.page-indicator{
  color: var(--muted);
  font-weight: 800;
  padding: 0 4px;
}

@media (max-width: 480px){
  .page-btn{ padding: 10px 10px; }
}

.news-media{
  margin: 10px 0 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.6);
}

.news-media img{
  /* width: 100%; */
  max-height: 100px;
  height: auto;
  display: block;
  /* wirkt ruhig/hochwertig */
  object-fit: cover;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 14px;
}

.news-media img{
  filter: saturate(0.95) contrast(0.98);
}

/* =========================
   Local Google Font: Inter
   ========================= */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter/Inter-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/inter/Inter-ExtraBold.woff2') format('woff2');
}

.badge-image {
  max-width: 200px;
  height: auto;
  /* align-self: center; */
  margin: 0 auto;
  margin-bottom: 12px;
}