@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
  --blue:    #1d4e7a;
  --blue2:   #163d61;
  --sky:     #e8f1f8;
  --rust:    #c04b1e;
  --sand:    #f9f7f4;
  --white:   #ffffff;
  --text:    #222222;
  --soft:    #5a6472;
  --border:  #dde3ea;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ─── HEADER ─── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  background: var(--blue);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  padding: 8px 11px;
  line-height: 1;
}
.logo-text .name {
  display: block;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}
.logo-text .ort {
  display: block;
  font-size: .68rem;
  color: var(--soft);
  letter-spacing: .06em;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--soft);
  text-decoration: none;
  transition: color .2s;
}
nav a:hover,
nav a.active { color: var(--blue); }
.nav-cta {
  background: var(--rust);
  color: var(--white) !important;
  padding: 8px 16px;
  font-size: .76rem !important;
  font-weight: 600 !important;
  letter-spacing: .08em;
  transition: background .2s !important;
}
.nav-cta:hover { background: #a33d18 !important; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--blue);
  padding: 56px 6%;
}
.page-hero .eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  max-width: 680px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--sky);
  padding: 11px 6%;
  border-bottom: 1px solid var(--border);
  font-size: .77rem;
  color: var(--soft);
}
.breadcrumb a { color: var(--soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 8px; color: var(--border); }

/* ─── INFO BAND ─── */
.info-band {
  background: var(--sky);
  padding: 13px 6%;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.info-band-item {
  font-size: .77rem;
  color: var(--soft);
}
.info-band-item strong { color: var(--blue); font-weight: 600; }
.info-band-sep { color: var(--border); }

/* ─── CONTENT WRAP ─── */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 6%;
}
.content-wrap.narrow { max-width: 820px; }

/* ─── SECTION UTILS ─── */
.sec-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 28px;
}
.sec-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ─── TWO COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: start;
}

/* ─── INFO CARDS ─── */
.info-card {
  background: var(--sky);
  border-left: 4px solid var(--blue);
  padding: 22px 20px;
  margin-bottom: 14px;
}
.info-card .ic-label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 5px;
}
.info-card .ic-val {
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ─── LEISTUNGEN GRID ─── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.lst-card {
  background: var(--white);
  padding: 30px 26px;
  transition: background .2s;
}
.lst-card:hover { background: var(--sky); }
.lst-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--rust);
  margin-bottom: 12px;
}
.lst-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.35;
}
.lst-card p {
  font-size: .86rem;
  color: var(--soft);
  line-height: 1.7;
}

/* ─── PROSE ─── */
.prose p {
  font-size: .95rem;
  color: #3a3a3a;
  line-height: 1.82;
  margin-bottom: 16px;
}
.prose h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text);
  margin: 28px 0 10px;
}

/* ─── REGION STATS ─── */
.region-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rstat {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px 18px;
}
.rstat .rv {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
}
.rstat .rl {
  font-size: .74rem;
  color: var(--soft);
  line-height: 1.4;
}

/* ─── KONTAKT FORM ─── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: span 2; }
.f-row label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 6px;
}
.f-row input,
.f-row textarea {
  width: 100%;
  background: var(--sky);
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s;
}
.f-row input:focus,
.f-row textarea:focus { border-color: var(--blue); background: var(--white); }
.f-row textarea { height: 110px; resize: none; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 13px 36px;
  font-family: 'Inter', sans-serif;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover { background: var(--blue2); }

/* ─── IMPRESSUM / DATENSCHUTZ ─── */
.imp-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.imp-block:last-child { border-bottom: none; }
.imp-block h3 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sky);
}
.imp-block p,
.imp-block address {
  font-size: .93rem;
  color: #3a3a3a;
  line-height: 1.8;
  font-style: normal;
}
.imp-block a { color: var(--rust); text-decoration: none; }
.imp-block a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
footer {
  background: var(--blue2);
  padding: 0 6%;
}
.footer-main {
  padding: 48px 0 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .fb-mark {
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  padding: 6px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.footer-brand .fb-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .fb-sub {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: .84rem;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: .67rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: .84rem;
  color: rgba(255,255,255,.48);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: .74rem;
  color: rgba(255,255,255,.28);
}
.footer-bottom a {
  font-size: .74rem;
  color: rgba(255,255,255,.28);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
}
@media (max-width: 600px) {
  nav ul { display: none; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .info-band { flex-direction: column; gap: 8px; }
}
