/* =============================================================
   IBHW – Unternehmenswebsite
   ============================================================= */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); }
.section--light { background: var(--c-light); }
.section--tight { padding-top: 3rem; }

.section-title { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-title h2 { font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.4rem); margin-bottom: 0.75rem; }
.section-title p { color: var(--c-muted); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms, box-shadow 150ms;
}
.btn--primary { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.btn--primary:hover { background: var(--c-primary-dk); border-color: var(--c-primary-dk); }
.btn--secondary { background: #fff; color: var(--c-text); border-color: var(--c-border); }
.btn--secondary:hover { border-color: var(--c-text); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.9rem; }

/* =============================================================
   Header
   ============================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 4.5rem; }
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-mark { width: 2.75rem; height: 2.75rem; }
.brand-text { line-height: 1.15; }
.brand-name { display: block; font-weight: 800; font-size: 1.35rem; letter-spacing: 0.04em; line-height: 1; }
.brand-sub { display: block; font-size: 0.72rem; color: var(--c-muted); margin-top: 0.2rem; }
.nav ul { display: flex; gap: 1.75rem; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--c-text); transition: color 150ms; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--c-primary); }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.header-tel { font-weight: 600; font-size: 0.95rem; color: var(--c-text); white-space: nowrap; }
.header-tel:hover { color: var(--c-primary); }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--c-primary); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; }
.nav-toggle {
  display: none; width: 2.6rem; height: 2.6rem; padding: 0;
  border: 1px solid var(--c-border); border-radius: 8px; background: #fff; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 1.1rem; height: 2px; margin-inline: auto; background: var(--c-text); border-radius: 2px; transition: transform 200ms, opacity 150ms; }
@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--c-border); box-shadow: var(--shadow); }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding: 0.5rem var(--pad) 1rem; }
  .nav a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--c-border); }
  .nav li:last-child a { border-bottom: 0; }
  .header-actions .btn, .header-tel { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =============================================================
   Hero – vollflächiges Foto
   ============================================================= */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: clamp(520px, 68vh, 720px);
  padding: 4.5rem 0;
  background: var(--c-navy);
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: saturate(0.85) brightness(0.92); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,16,45,0.96) 0%, rgba(10,16,45,0.88) 30%, rgba(10,16,45,0.6) 62%, rgba(10,16,45,0.4) 100%),
    linear-gradient(180deg, rgba(10,16,45,0.35) 0%, rgba(10,16,45,0.05) 35%, rgba(10,16,45,0.55) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 42rem; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 1.4rem + 3vw, 3.7rem); line-height: 1.12; margin-bottom: 1.25rem; }
.hero-text { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 36rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn--ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.92rem; color: rgba(255,255,255,0.8); }
.hero-facts li { display: flex; align-items: center; gap: 0.5rem; }
.hero-facts li::before { content: ""; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--c-primary); }

/* Kennzahlen – ragen ins Hero */
.stats-wrap { position: relative; z-index: 2; margin-top: -3.5rem; }
/* Kennzahlen */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 1.75rem 1rem; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); box-shadow: var(--shadow); }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--c-primary); line-height: 1.1; margin-bottom: 0.35rem; }
.stat-label { font-size: 0.9rem; color: var(--c-muted); }

/* =============================================================
   Leistungen
   ============================================================= */
.cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr)); }
.card {
  display: grid; grid-template-columns: 3.25rem 1fr; grid-template-rows: auto auto 1fr; column-gap: 1.5rem; row-gap: 0; align-items: start;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 2rem 2rem 1.9rem; box-shadow: var(--shadow);
  transition: box-shadow 200ms, transform 200ms;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-icon {
  grid-row: 1 / span 3;
  width: 3.25rem; height: 3.25rem; border-radius: 12px;
  background: #FDECE8; color: var(--c-primary);
  display: grid; place-items: center;
}
.card-icon svg { width: 1.6rem; height: 1.6rem; }
.card h3 { grid-column: 2; font-size: 1.25rem; margin: 0.35rem 0 0.5rem; }
.card p { grid-column: 2; color: var(--c-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.card ul { grid-column: 2; align-self: end; display: grid; gap: 0.4rem; font-size: 0.92rem; color: var(--c-text); }
.card li { padding-left: 1.4rem; position: relative; }
.card li::before { content: "✓"; position: absolute; left: 0; color: var(--c-primary); font-weight: 700; }
@media (max-width: 480px) {
  .card { grid-template-columns: 1fr; padding: 1.5rem; }
  .card-icon { grid-row: auto; margin-bottom: 1rem; }
  .card h3, .card p, .card ul { grid-column: 1; }
}
.cards-note { text-align: center; margin-top: 2rem; color: var(--c-muted); font-size: 0.95rem; }

/* =============================================================
   Über uns
   ============================================================= */
.about-grid { display: grid; gap: 2.25rem; align-items: stretch; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }
.about-img { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; height: 0; min-height: 100%; }
.about-img img { width: 100%; height: 100%; min-height: 0; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 959px) { .about-img { height: clamp(300px, 60vw, 460px); min-height: 0; } }
.about h2 { font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.4rem); margin-bottom: 0.9rem; }
.about p { color: var(--c-muted); }
.checklist { display: grid; gap: 0.7rem; margin-top: 1.5rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; }
.checklist svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--c-primary); margin-top: 0.2rem; }

/* =============================================================
   Referenzen
   ============================================================= */
.refs { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(min(18rem, 100%), 1fr)); }
.ref {
  display: block; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 200ms, transform 200ms;
}
.ref:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.ref img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ref-body { padding: 1.15rem 1.25rem 1.3rem; }
.ref-cat {
  display: inline-block; padding: 0.28rem 0.7rem; border-radius: 999px;
  background: #FDECE8; color: var(--c-primary-dk);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1.3;
  margin-bottom: 0.65rem;
}
.ref h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.ref p { font-size: 0.88rem; color: var(--c-muted); }
.refs-more { text-align: center; margin-top: 2.5rem; }
.group-title { font-size: 1.15rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--c-border); }

/* =============================================================
   Kontakt
   ============================================================= */
.contact-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; } }
.contact-list { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list svg { flex-shrink: 0; width: 1.35rem; height: 1.35rem; color: var(--c-primary); margin-top: 0.15rem; }
.contact-list strong { display: block; font-size: 0.85rem; color: var(--c-muted); font-weight: 500; }
.contact-list span, .contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--c-primary); }
.contact-note { margin-top: 1.5rem; font-size: 0.9rem; color: var(--c-muted); }

.form { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-size: 0.88rem; font-weight: 600; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--c-text);
  padding: 0.7rem 0.9rem; border: 1px solid var(--c-border); border-radius: 8px; background: #fff;
  transition: border-color 150ms, box-shadow 150ms;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(217, 35, 0, 0.12); }
.field textarea { min-height: 8rem; resize: vertical; }
.check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--c-muted); margin: 0.25rem 0 1.25rem; }
.check input { margin-top: 0.25rem; accent-color: var(--c-primary); }
.check a { text-decoration: underline; }
.hp { position: absolute; left: -9999px; }
.form-status { margin-top: 1rem; padding: 0.85rem 1rem; border-radius: 8px; font-size: 0.92rem; display: none; }
.form-status.ok { display: block; background: #E8F6EC; color: #1E6B35; }
.form-status.err { display: block; background: #FDECE8; color: #9A1B00; }

/* =============================================================
   Footer
   ============================================================= */
.footer { background: var(--c-navy); color: rgba(255,255,255,0.75); padding-top: 4rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; } }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(255,255,255,0.6); }
.footer-about { margin-top: 1.25rem; font-size: 0.92rem; max-width: 30rem; }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.6rem; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 2rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.25rem; }

/* Unterseiten */
.page-head { background: var(--c-light); padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.page-head h1 { font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.8rem); margin-bottom: 0.75rem; }
.page-head p { color: var(--c-muted); font-size: 1.05rem; max-width: 40rem; }
.prose p { color: var(--c-muted); }
.prose strong { color: var(--c-text); }
.prose h2 { font-size: 1.2rem; margin: 2rem 0 0.5rem; }
.prose address { font-style: normal; }
.prose a { color: var(--c-primary); }
.prose a:hover { text-decoration: underline; }

/* Hero-Container auf volle Breite, damit der Text am Seitenraster steht */
.hero > .container { width: 100%; }

/* =============================================================
   Referenzen – Übersicht
   ============================================================= */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.filter-btn {
  padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--c-border);
  background: #fff; color: var(--c-text); font: inherit; font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.filter-btn:hover { border-color: var(--c-text); }
.filter-btn[aria-pressed="true"] { background: var(--c-text); border-color: var(--c-text); color: #fff; }
.ref.is-hidden { display: none; }
.ref-img { position: relative; overflow: hidden; }
.ref-img img { transition: transform 400ms ease; }
.ref:hover .ref-img img { transform: scale(1.04); }
.ref-place { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 0.4rem; }
.ref-link { display: inline-block; margin-top: 0.6rem; font-size: 0.88rem; font-weight: 600; color: var(--c-primary); }
.ref-link::after { content: " →"; }

.featured {
  display: grid; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); margin-bottom: 3rem;
}
@media (min-width: 900px) { .featured { grid-template-columns: 1.15fr 1fr; } }
.featured img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.featured-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.featured-body .ref-cat { margin-bottom: 0.5rem; }
.featured-body h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.featured-body p { color: var(--c-muted); }
.featured-facts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.featured-facts li strong { display: block; font-size: 0.78rem; color: var(--c-muted); font-weight: 500; }

.more-title { font-size: 1.25rem; margin: 3.5rem 0 1rem; }
.table { width: 100%; border-collapse: collapse; font-size: 0.95rem; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--c-border); vertical-align: top; }
.table th { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-muted); background: var(--c-light); font-weight: 600; }
.table tr:last-child td { border-bottom: 0; }
.table td:first-child { font-weight: 600; }
@media (max-width: 640px) { .table th:nth-child(2), .table td:nth-child(2) { display: none; } }

/* =============================================================
   Referenz – Detailseite
   ============================================================= */
.breadcrumb { font-size: 0.88rem; color: var(--c-muted); margin-bottom: 0.75rem; }
.breadcrumb a:hover { color: var(--c-primary); }
.page-head .ref-cat { margin-bottom: 0.75rem; }
.project-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.project-img img { width: 100%; height: clamp(260px, 42vw, 560px); object-fit: cover; }
.project-grid { display: grid; gap: 2.5rem; align-items: start; margin-top: 3rem; }
@media (min-width: 960px) { .project-grid { grid-template-columns: 1.5fr 0.8fr; gap: 4rem; } }
.project-body h2 { font-size: 1.35rem; margin: 1.75rem 0 0.6rem; }
.project-body h2:first-child { margin-top: 0; }
.project-body p { color: var(--c-muted); }
.project-body ul { display: grid; gap: 0.45rem; margin: 0.25rem 0 0.5rem; }
.project-body li { padding-left: 1.4rem; position: relative; }
.project-body li::before { content: "✓"; position: absolute; left: 0; color: var(--c-primary); font-weight: 700; }
.facts-box { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.facts-box h3 { font-size: 1rem; margin-bottom: 1rem; }
.facts-box dl { display: grid; gap: 0; }
.facts-box dl > div { display: grid; grid-template-columns: 7.5rem 1fr; gap: 0.75rem; padding: 0.65rem 0; border-top: 1px solid var(--c-border); font-size: 0.92rem; }
.facts-box dt { color: var(--c-muted); }
.facts-box dd { margin: 0; font-weight: 500; }
.facts-box .btn { width: 100%; margin-top: 1.25rem; }
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin-top: 1rem; }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.gallery figcaption { padding-top: 0.45rem; font-size: 0.85rem; color: var(--c-muted); }
.project-nav { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; }

/* Über uns / Kontakt – Unterseiten */
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr)); }
.card--plain { display: block; padding: 1.75rem; }
.card--plain h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.card--plain p { margin: 0; }
.phases { display: grid; gap: 0.5rem; margin-top: 1rem; }
.phases li { display: flex; gap: 0.85rem; align-items: center; font-size: 0.95rem; }
.phases li span { flex-shrink: 0; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: #FDECE8; color: var(--c-primary-dk); font-weight: 700; font-size: 0.82rem; display: grid; place-items: center; }
.contact-teaser { max-width: 60rem; margin-inline: auto; }
.contact-list--row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr)); gap: 1.5rem; margin-top: 0; }
.map-note { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 1.5rem; color: var(--c-muted); font-size: 0.95rem; }
.map-note strong { color: var(--c-text); }
.tlink { color: var(--c-primary); font-weight: 600; }
.tlink::after { content: " →"; }
.tlink:hover { color: var(--c-primary-dk); text-decoration: underline; }

/* Über uns – Fakten, Zweispalter, Icon-Listen */
.facts-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--c-border); }
.facts-inline dt { font-size: 0.8rem; color: var(--c-muted); margin-bottom: 0.15rem; }
.facts-inline dd { margin: 0; font-weight: 600; }
.split-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 900px) { .split-grid { grid-template-columns: 0.8fr 1.2fr; gap: 4rem; } }
.split-grid h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem); margin-bottom: 0.75rem; }
.split-grid > div > p { color: var(--c-muted); }
.feature-list { display: grid; gap: 0; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem; padding: 1.4rem 1.6rem; border-top: 1px solid var(--c-border); align-items: start; }
.feature-list li:first-child { border-top: 0; }
.feature-icon { width: 3rem; height: 3rem; border-radius: 10px; background: #FDECE8; color: var(--c-primary); display: grid; place-items: center; }
.feature-icon svg { width: 1.45rem; height: 1.45rem; }
.feature-list h3 { font-size: 1.05rem; margin: 0.35rem 0 0.35rem; }
.feature-list p { margin: 0; font-size: 0.95rem; color: var(--c-muted); }

.facts-inline--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .facts-inline--3 { grid-template-columns: 1fr 1fr; } }

/* Zwischenüberschriften: einheitlicher Abstand zum Fließtext */
.about-grid h2, .split-grid h2, .contact-grid h3, .project-body h2 { margin-bottom: 1rem; }
.about h2 { margin-bottom: 1rem; }
.page-head h1 { margin-bottom: 0.9rem; }

/* Footer – Marke in Negativ-Variante */
.footer .brand { color: #fff; }
.footer .brand-mark { width: 2.75rem; height: 2.75rem; }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(255,255,255,0.6); }
.footer-company { margin-top: 1.25rem; font-size: 0.88rem; line-height: 1.5; color: rgba(255,255,255,0.6); }
.footer-col li { color: rgba(255,255,255,0.75); }

/* Team – Personenkarten */
.team { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }
.person { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 2rem 1.5rem 1.75rem; text-align: center; box-shadow: var(--shadow); }
.avatar { width: 7rem; height: 7rem; border-radius: 50%; margin: 0 auto 1.1rem; background: linear-gradient(180deg, #EEF1F5 0%, #E2E6EC 100%); border: 1px solid var(--c-border); color: #B4BAC6; display: grid; place-items: center; object-fit: cover; }
.avatar svg { width: 3rem; height: 3rem; }
.person h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.person .role { font-size: 0.9rem; color: var(--c-muted); margin: 0 0 0.9rem; min-height: 2.7em; }
.person-contact { display: grid; gap: 0.35rem; justify-items: center; margin: 0; font-size: 0.88rem; }
.person-contact a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--c-text); }
.person-contact a:hover { color: var(--c-primary); }
.person-contact svg { width: 1rem; height: 1rem; color: var(--c-primary); flex-shrink: 0; }

/* Für wen wir planen – Kacheln */
.tiles { display: grid; gap: 1.25rem; grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .tiles { grid-template-columns: 1fr; } }
.tile { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 1.4rem 1.2rem; box-shadow: var(--shadow); }
.tile .feature-icon { margin-bottom: 1rem; }
.tile h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.tile p { font-size: 0.86rem; color: var(--c-muted); margin: 0; }

/* Leistungsphasen – Ablauf */
.stepper { position: relative; display: grid; grid-template-columns: repeat(9, 1fr); gap: 0.5rem; margin: 0; padding: 0; list-style: none; }
.stepper::before { content: ""; position: absolute; left: 5.5%; right: 5.5%; top: 1.25rem; height: 2px; background: var(--c-border); }
.stepper li { position: relative; text-align: center; }
.step-no { position: relative; z-index: 1; display: grid; place-items: center; width: 2.5rem; height: 2.5rem; margin: 0 auto 0.6rem; border-radius: 50%; background: var(--c-primary); color: #fff; font-weight: 700; font-size: 0.95rem; box-shadow: 0 0 0 4px #fff; }
.stepper li:nth-child(n+8) .step-no { background: var(--c-navy); }
.step-label { display: block; font-size: 0.82rem; line-height: 1.3; color: var(--c-text); font-weight: 500; }
.stepper-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.sg { padding: 0.9rem 1rem; border-radius: 10px; background: var(--c-light); border: 1px solid var(--c-border); font-size: 0.85rem; color: var(--c-muted); }
.sg strong { display: block; color: var(--c-text); margin-bottom: 0.15rem; }
@media (max-width: 960px) {
  .stepper { grid-template-columns: repeat(3, 1fr); row-gap: 1.5rem; }
  .stepper::before { display: none; }
  .stepper-groups { grid-template-columns: 1fr; }
}

/* Abschluss-Band */
.cta-band { background: var(--c-navy); color: #fff; border-radius: var(--radius); padding: 2.5rem 2.5rem; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 860px) { .cta-band { grid-template-columns: 1.4fr auto; gap: 3rem; padding: 2.75rem 3rem; } }
.cta-band h2 { color: #fff; font-size: 1.6rem; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; max-width: 34rem; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.cta-tel { font-weight: 600; color: #fff; white-space: nowrap; }
.cta-tel:hover { text-decoration: underline; }

.map-note .checklist li { gap: 0; font-size: 0.92rem; }
.map-note .checklist li::before { content: "•"; color: var(--c-primary); margin-right: 0.6rem; font-weight: 700; }
